diff -Nru mame-0.222+dfsg.1/3rdparty/lua-zlib/lua_zlib.c mame-0.224+dfsg.1/3rdparty/lua-zlib/lua_zlib.c --- mame-0.222+dfsg.1/3rdparty/lua-zlib/lua_zlib.c 2020-06-26 14:54:18.000000000 +0000 +++ mame-0.224+dfsg.1/3rdparty/lua-zlib/lua_zlib.c 2020-08-26 08:57:19.000000000 +0000 @@ -392,7 +392,7 @@ SETLITERAL("_COPYRIGHT", "Copyright (c) 2009-2010 Brian Maher"); SETLITERAL("_DESCRIPTION", "Yet another binding to the zlib library"); - SETLITERAL("_VERSION", "lua-zlib $Id: b619258c75f480717fad20c113c3b1a35f888ce0 $ (tag: mame0222, release0222)"); + SETLITERAL("_VERSION", "lua-zlib $Id: b619258c75f480717fad20c113c3b1a35f888ce0 $ (tag: mame0224)"); /* Expose this to lua so we can do a test: */ SETINT("_TEST_BUFSIZ", LUAL_BUFFERSIZE); diff -Nru mame-0.222+dfsg.1/3rdparty/sol2/sol/container_usertype_metatable.hpp mame-0.224+dfsg.1/3rdparty/sol2/sol/container_usertype_metatable.hpp --- mame-0.222+dfsg.1/3rdparty/sol2/sol/container_usertype_metatable.hpp 2020-06-26 14:54:18.000000000 +0000 +++ mame-0.224+dfsg.1/3rdparty/sol2/sol/container_usertype_metatable.hpp 2020-08-26 08:57:19.000000000 +0000 @@ -273,7 +273,7 @@ auto& src = get_src(L); using std::begin; stack::push(L, pairs_next_call); - stack::push>(L, src, begin(src)); + stack::push_specific>(L, src, begin(src)); stack::push(L, 1); return 3; } @@ -296,7 +296,7 @@ auto& src = get_src(L); using std::begin; stack::push(L, pairs_next_call); - stack::push>(L, src, begin(src)); + stack::push_specific>(L, src, begin(src)); stack::push(L, 0); return 3; } diff -Nru mame-0.222+dfsg.1/3rdparty/sol2/sol/function_types.hpp mame-0.224+dfsg.1/3rdparty/sol2/sol/function_types.hpp --- mame-0.222+dfsg.1/3rdparty/sol2/sol/function_types.hpp 2020-06-26 14:54:18.000000000 +0000 +++ mame-0.224+dfsg.1/3rdparty/sol2/sol/function_types.hpp 2020-08-26 08:57:19.000000000 +0000 @@ -165,7 +165,7 @@ static void set_fx(lua_State* L, Args&&... args) { lua_CFunction freefunc = function_detail::call>; - stack::push>(L, std::forward(args)...); + stack::push_specific>(L, std::forward(args)...); stack::push(L, c_closure(freefunc, 1)); } @@ -181,7 +181,7 @@ struct pusher> { template static int push_func(std::index_sequence, lua_State* L, FP&& fp) { - return stack::push(L, detail::forward_get(fp.arguments)...); + return stack::push_specific(L, detail::forward_get(fp.arguments)...); } static int push(lua_State* L, const function_arguments& fp) { @@ -235,13 +235,13 @@ struct pusher> { static int push(lua_State* L, protect_t&& pw) { lua_CFunction cf = call_detail::call_user>; - int closures = stack::push>>(L, std::move(pw.value)); + int closures = stack::push_specific>>(L, std::move(pw.value)); return stack::push(L, c_closure(cf, closures)); } static int push(lua_State* L, const protect_t& pw) { lua_CFunction cf = call_detail::call_user>; - int closures = stack::push>>(L, pw.value); + int closures = stack::push_specific>>(L, pw.value); return stack::push(L, c_closure(cf, closures)); } }; @@ -314,7 +314,7 @@ template static int push(lua_State* L, C&& c) { lua_CFunction cf = call_detail::call_user>; - int closures = stack::push>>(L, std::forward(c)); + int closures = stack::push_specific>>(L, std::forward(c)); return stack::push(L, c_closure(cf, closures)); } }; @@ -331,7 +331,7 @@ struct pusher>> { static int push(lua_State* L, destructor_wrapper c) { lua_CFunction cf = call_detail::call_user>; - int closures = stack::push>(L, std::move(c)); + int closures = stack::push_specific>(L, std::move(c)); return stack::push(L, c_closure(cf, closures)); } }; diff -Nru mame-0.222+dfsg.1/3rdparty/sol2/sol/object.hpp mame-0.224+dfsg.1/3rdparty/sol2/sol/object.hpp --- mame-0.222+dfsg.1/3rdparty/sol2/sol/object.hpp 2020-06-26 14:54:18.000000000 +0000 +++ mame-0.224+dfsg.1/3rdparty/sol2/sol/object.hpp 2020-08-26 08:57:19.000000000 +0000 @@ -43,7 +43,7 @@ template ::value, typename... Args> R make_reference(lua_State* L, Args&&... args) { - int backpedal = stack::push(L, std::forward(args)...); + int backpedal = stack::push_specific(L, std::forward(args)...); R r = stack::get(L, -backpedal); if (should_pop) { lua_pop(L, backpedal); @@ -99,7 +99,7 @@ basic_object(lua_State* L, int index = -1) noexcept : base_t(L, index) {} basic_object(lua_State* L, ref_index index) noexcept : base_t(L, index) {} template - basic_object(lua_State* L, in_place_type_t, Args&&... args) noexcept : basic_object(std::integral_constant::value>(), L, -stack::push(L, std::forward(args)...)) {} + basic_object(lua_State* L, in_place_type_t, Args&&... args) noexcept : basic_object(std::integral_constant::value>(), L, -stack::push_specific(L, std::forward(args)...)) {} template basic_object(lua_State* L, in_place_t, T&& arg, Args&&... args) noexcept : basic_object(L, in_place, std::forward(arg), std::forward(args)...) {} basic_object& operator=(const basic_object&) = default; diff -Nru mame-0.222+dfsg.1/3rdparty/sol2/sol/simple_usertype_metatable.hpp mame-0.224+dfsg.1/3rdparty/sol2/sol/simple_usertype_metatable.hpp --- mame-0.222+dfsg.1/3rdparty/sol2/sol/simple_usertype_metatable.hpp 2020-06-26 14:54:18.000000000 +0000 +++ mame-0.224+dfsg.1/3rdparty/sol2/sol/simple_usertype_metatable.hpp 2020-08-26 08:57:19.000000000 +0000 @@ -366,7 +366,7 @@ ++uniqueness; const char* gcmetakey = &usertype_traits::gc_table()[0]; - stack::push>(L, metatable_key, uniquegcmetakey, &usertype_traits::metatable()[0], + stack::push_specific>(L, metatable_key, uniquegcmetakey, &usertype_traits::metatable()[0], umx.indexbaseclasspropogation, umx.newindexbaseclasspropogation, std::move(umx.varmap), std::move(umx.registrations) ); diff -Nru mame-0.222+dfsg.1/3rdparty/sol2/sol/stack_core.hpp mame-0.224+dfsg.1/3rdparty/sol2/sol/stack_core.hpp --- mame-0.222+dfsg.1/3rdparty/sol2/sol/stack_core.hpp 2020-06-26 14:54:18.000000000 +0000 +++ mame-0.224+dfsg.1/3rdparty/sol2/sol/stack_core.hpp 2020-08-26 08:57:19.000000000 +0000 @@ -173,9 +173,9 @@ return pusher>{}.push(L, std::forward(t), std::forward(args)...); } - // overload allows to use a pusher of a specific type, but pass in any kind of args - template::value>> - inline int push(lua_State* L, Arg&& arg, Args&&... args) { + // allow a pusher of a specific type, but pass in any kind of args + template + inline int push_specific(lua_State* L, Arg&& arg, Args&&... args) { return pusher>{}.push(L, std::forward(arg), std::forward(args)...); } diff -Nru mame-0.222+dfsg.1/3rdparty/sol2/sol/stack_push.hpp mame-0.224+dfsg.1/3rdparty/sol2/sol/stack_push.hpp --- mame-0.222+dfsg.1/3rdparty/sol2/sol/stack_push.hpp 2020-06-26 14:54:18.000000000 +0000 +++ mame-0.224+dfsg.1/3rdparty/sol2/sol/stack_push.hpp 2020-08-26 08:57:19.000000000 +0000 @@ -546,7 +546,7 @@ } static int push(lua_State* L, const wchar_t(&str)[N], std::size_t sz) { - return stack::push(L, str, str + sz); + return stack::push_specific(L, str, str + sz); } }; @@ -557,7 +557,7 @@ } static int push(lua_State* L, const char16_t(&str)[N], std::size_t sz) { - return stack::push(L, str, str + sz); + return stack::push_specific(L, str, str + sz); } }; @@ -568,7 +568,7 @@ } static int push(lua_State* L, const char32_t(&str)[N], std::size_t sz) { - return stack::push(L, str, str + sz); + return stack::push_specific(L, str, str + sz); } }; diff -Nru mame-0.222+dfsg.1/3rdparty/sol2/sol/usertype_metatable.hpp mame-0.224+dfsg.1/3rdparty/sol2/sol/usertype_metatable.hpp --- mame-0.222+dfsg.1/3rdparty/sol2/sol/usertype_metatable.hpp 2020-06-26 14:54:18.000000000 +0000 +++ mame-0.224+dfsg.1/3rdparty/sol2/sol/usertype_metatable.hpp 2020-08-26 08:57:19.000000000 +0000 @@ -489,7 +489,7 @@ const char* gcmetakey = &usertype_traits::gc_table()[0]; // Make sure userdata's memory is properly in lua first, // otherwise all the light userdata we make later will become invalid - stack::push>(L, metatable_key, uniquegcmetakey, std::move(umx)); + stack::push_specific>(L, metatable_key, uniquegcmetakey, std::move(umx)); // Create the top level thing that will act as our deleter later on stack_reference umt(L, -1); stack::set_field(L, gcmetakey, umt); diff -Nru mame-0.222+dfsg.1/android-project/app/src/main/AndroidManifest.xml mame-0.224+dfsg.1/android-project/app/src/main/AndroidManifest.xml --- mame-0.222+dfsg.1/android-project/app/src/main/AndroidManifest.xml 2020-06-26 14:54:18.000000000 +0000 +++ mame-0.224+dfsg.1/android-project/app/src/main/AndroidManifest.xml 2020-08-26 08:57:19.000000000 +0000 @@ -4,8 +4,8 @@ --> diff -Nru mame-0.222+dfsg.1/.appveyor.yml mame-0.224+dfsg.1/.appveyor.yml --- mame-0.222+dfsg.1/.appveyor.yml 2020-06-26 14:54:18.000000000 +0000 +++ mame-0.224+dfsg.1/.appveyor.yml 2020-08-26 08:57:19.000000000 +0000 @@ -23,8 +23,8 @@ - set MSYSTEM=MINGW64 build_script: - - bash -lc "exec 0 Mon, 31 Aug 2020 07:51:45 +0200 + +mame (0.224+dfsg.1-1) unstable; urgency=medium + + [ Cesare Falco ] + * New upstream release. + * Updated patches. + + [ Jordi Mallach ] + * Let the build system figure out FORCE_DRC_C_BACKEND and NOASM + (hopefully closes: #968883). + + -- Jordi Mallach Sat, 29 Aug 2020 21:43:12 +0200 + +mame (0.223+dfsg.1-1) unstable; urgency=medium + + [ Cesare Falco ] + * New upstream release. + - fixes ftbfs after toolchain upgrades (closes: #966911). + + [ Jordi Mallach ] + * Do not pass -m64 on alpha. + * Drop ftbfs_arm_asmjit.patch, unneeded in new upstream version. + + -- Jordi Mallach Wed, 12 Aug 2020 19:36:58 +0200 + mame (0.222+dfsg.1-2) unstable; urgency=medium * Add patch from upstream git to fix ARM builds. diff -Nru mame-0.222+dfsg.1/debian/patches/ftbfs_alpha.patch mame-0.224+dfsg.1/debian/patches/ftbfs_alpha.patch --- mame-0.222+dfsg.1/debian/patches/ftbfs_alpha.patch 1970-01-01 00:00:00.000000000 +0000 +++ mame-0.224+dfsg.1/debian/patches/ftbfs_alpha.patch 2020-07-10 14:27:46.000000000 +0000 @@ -0,0 +1,21 @@ +Index: mame/makefile +=================================================================== +--- mame.orig/makefile ++++ mame/makefile +@@ -301,12 +301,16 @@ TARGETOS := $(OS) + ifeq ($(ARCHITECTURE),_x86) + MPARAM := -m32 + else ++ifeq ($(firstword $(filter alpha,$(UNAME))),alpha) ++MPARAM := ++else + ifeq ($(ARCHITECTURE),_x64) + MPARAM := -m64 + else + MPARAM := + endif + endif ++endif + + ARCHITECTURE := _x86 + diff -Nru mame-0.222+dfsg.1/debian/patches/ftbfs_arm_asmjit.patch mame-0.224+dfsg.1/debian/patches/ftbfs_arm_asmjit.patch --- mame-0.222+dfsg.1/debian/patches/ftbfs_arm_asmjit.patch 2020-07-06 17:41:48.000000000 +0000 +++ mame-0.224+dfsg.1/debian/patches/ftbfs_arm_asmjit.patch 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ -commit a8bd59055eda6b6656e56e689a8a74f7e835434d -Author: Julian Sikorski -Date: Sat Jun 27 14:50:48 2020 +0200 - - Only build asmjit on x86 and x86_64 - -diff --git a/scripts/src/3rdparty.lua b/scripts/src/3rdparty.lua -index 52e5d862168..7002fdbe0ff 100644 ---- a/scripts/src/3rdparty.lua -+++ b/scripts/src/3rdparty.lua -@@ -2224,6 +2224,7 @@ project "wdlfft" - -- asmjit library - -------------------------------------------------- - -+if not _OPTIONS["FORCE_DRC_C_BACKEND"] then - project "asmjit" - uuid "4539757c-6e99-4bae-b3d0-b342a7c49539" - kind "StaticLib" -@@ -2353,3 +2354,4 @@ project "asmjit" - MAME_DIR .. "3rdparty/asmjit/src/asmjit/x86/x86rapass.cpp", - MAME_DIR .. "3rdparty/asmjit/src/asmjit/x86/x86rapass_p.h", - } -+end -diff --git a/scripts/src/main.lua b/scripts/src/main.lua -index 26e7ab94394..4d787bfbdaf 100644 ---- a/scripts/src/main.lua -+++ b/scripts/src/main.lua -@@ -261,8 +261,12 @@ end - "wdlfft", - ext_lib("jpeg"), - "7z", -+ } -+if not _OPTIONS["FORCE_DRC_C_BACKEND"] then -+ links { - "asmjit", - } -+end - if (STANDALONE~=true) then - links { - ext_lib("lua"), diff -Nru mame-0.222+dfsg.1/debian/patches/hurd.patch mame-0.224+dfsg.1/debian/patches/hurd.patch --- mame-0.222+dfsg.1/debian/patches/hurd.patch 2020-07-06 15:24:52.000000000 +0000 +++ mame-0.224+dfsg.1/debian/patches/hurd.patch 2020-08-29 19:09:45.000000000 +0000 @@ -16,7 +16,7 @@ ifeq ($(firstword $(filter Darwin,$(UNAME))),Darwin) OS := macosx GENIEOS := darwin -@@ -1359,6 +1362,16 @@ linux: generate $(PROJECTDIR)/$(MAKETYPE +@@ -1370,6 +1373,16 @@ linux: generate $(PROJECTDIR)/$(MAKETYPE $(SILENT) $(MAKE) $(MAKEPARAMS) -C $(PROJECTDIR)/$(MAKETYPE)-linux config=$(CONFIG) precompile $(SILENT) $(MAKE) $(MAKEPARAMS) -C $(PROJECTDIR)/$(MAKETYPE)-linux config=$(CONFIG) diff -Nru mame-0.222+dfsg.1/debian/patches/python3.patch mame-0.224+dfsg.1/debian/patches/python3.patch --- mame-0.222+dfsg.1/debian/patches/python3.patch 2020-07-06 15:24:52.000000000 +0000 +++ mame-0.224+dfsg.1/debian/patches/python3.patch 2020-08-29 19:09:45.000000000 +0000 @@ -7,7 +7,7 @@ =================================================================== --- mame.orig/makefile +++ mame/makefile -@@ -412,7 +412,7 @@ endif +@@ -423,7 +423,7 @@ endif endif # BIGENDIAN ifndef PYTHON_EXECUTABLE @@ -16,7 +16,7 @@ else PYTHON := $(PYTHON_EXECUTABLE) endif -@@ -960,7 +960,7 @@ ifeq ($(OS),windows) +@@ -971,7 +971,7 @@ ifeq ($(OS),windows) ifeq (posix,$(SHELLTYPE)) GCC_VERSION := $(shell $(TOOLCHAIN)$(subst @,,$(CC)) -dumpversion 2> /dev/null) CLANG_VERSION := $(shell $(TOOLCHAIN)$(subst @,,$(CC)) --version 2> /dev/null| head -n 1 | grep clang | sed "s/^.*[^0-9]\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\).*$$/\1/" | head -n 1) @@ -25,7 +25,7 @@ GIT_AVAILABLE := $(shell git --version > /dev/null 2>&1 && echo git) else GCC_VERSION := $(shell $(TOOLCHAIN)$(subst @,,$(CC)) -dumpversion 2> NUL) -@@ -1004,7 +1004,7 @@ else +@@ -1015,7 +1015,7 @@ else GCC_VERSION := $(shell $(TOOLCHAIN)$(subst @,,$(CC)) -dumpversion 2> /dev/null) endif CLANG_VERSION := $(shell $(TOOLCHAIN)$(subst @,,$(CC)) --version 2> /dev/null | head -n 1 | grep -e 'version [0-9]\+\.[0-9]\+\(\.[0-9]\+\)\?' -o | grep -e '[0-9]\+\.[0-9]\+\(\.[0-9]\+\)\?' -o | tail -n 1) @@ -34,7 +34,7 @@ GIT_AVAILABLE := $(shell git --version > /dev/null 2>&1 && echo git) endif -@@ -1021,7 +1021,7 @@ endif +@@ -1032,7 +1032,7 @@ endif endif endif diff -Nru mame-0.222+dfsg.1/debian/patches/series mame-0.224+dfsg.1/debian/patches/series --- mame-0.222+dfsg.1/debian/patches/series 2020-07-06 17:42:09.000000000 +0000 +++ mame-0.224+dfsg.1/debian/patches/series 2020-08-12 15:35:18.000000000 +0000 @@ -1,4 +1,5 @@ #genie_freebsd_target.patch +ftbfs_alpha.patch python3.patch hurd.patch sphinx_mathjax_location.patch @@ -7,4 +8,3 @@ sphinx_remove_unresolved_module.patch fix-922619.patch #fix-bx-ppc64el.patch #accepted upstream -ftbfs_arm_asmjit.patch diff -Nru mame-0.222+dfsg.1/debian/rules mame-0.224+dfsg.1/debian/rules --- mame-0.222+dfsg.1/debian/rules 2020-07-06 15:24:52.000000000 +0000 +++ mame-0.224+dfsg.1/debian/rules 2020-08-31 05:48:38.000000000 +0000 @@ -34,10 +34,8 @@ DEBUG= \ TARGETOS=linux \ DISTRO=debian-stable \ - FORCE_DRC_C_BACKEND=1 \ PTR64= \ BIGENDIAN= \ - NOASM=1 \ PYTHON_EXECUTABLE=python3 \ QT_HOME=/usr/lib/$(DEB_HOST_MULTIARCH)/qt5/ \ USE_SYSTEM_LIB_ASIO= \ @@ -71,9 +69,7 @@ ifeq ($(DEB_HOST_ARCH),amd64) DEB_OPTS += \ - FORCE_DRC_C_BACKEND= \ - PTR64=1 \ - NOASM= + PTR64=1 endif ifeq ($(DEB_HOST_ARCH),arm64) @@ -85,14 +81,10 @@ export DEB_LDFLAGS_MAINT_APPEND += -Wl,--allow-multiple-definition endif -ifeq ($(DEB_HOST_ARCH),i386) -DEB_OPTS += \ - FORCE_DRC_C_BACKEND= \ - NOASM= -endif - ifeq ($(DEB_HOST_ARCH),hppa) LINK_WITH_GOLD = +DEB_OPTS += \ + NOASM=1 endif ifeq ($(DEB_HOST_ARCH),ia64) @@ -103,6 +95,8 @@ ifeq ($(DEB_HOST_ARCH),m68k) LINK_WITH_GOLD = +DEB_OPTS += \ + NOASM=1 endif ifeq ($(DEB_HOST_ARCH),mips) @@ -114,17 +108,19 @@ ifeq ($(DEB_HOST_ARCH),mipsel) DEB_OPTS += \ - ARCHOPTS=-Umips + ARCHOPTS=-Umips \ + NOASM=1 LINK_WITH_GOLD = endif ifeq ($(DEB_HOST_ARCH),mips64el) +DEB_OPTS += \ + NOASM=1 endif ifeq ($(DEB_HOST_ARCH),powerpc) DEB_OPTS += \ ARCHOPTS=-Upowerpc \ - NOASM= \ BIGENDIAN=1 LINK_WITH_GOLD = endif @@ -132,15 +128,13 @@ ifeq ($(DEB_HOST_ARCH),ppc64) DEB_OPTS += \ PTR64=1 \ - NOASM= \ BIGENDIAN=1 LINK_WITH_GOLD = endif ifeq ($(DEB_HOST_ARCH),ppc64el) DEB_OPTS += \ - PTR64=1 \ - NOASM= + PTR64=1 LINK_WITH_GOLD = endif @@ -164,6 +158,8 @@ ifeq ($(DEB_HOST_ARCH),sh4) LINK_WITH_GOLD = +DEB_OPTS += \ + NOASM=1 endif ifeq ($(DEB_HOST_ARCH),sparc) @@ -179,19 +175,11 @@ LINK_WITH_GOLD = endif -ifeq ($(DEB_HOST_ARCH),x32) -DEB_OPTS += \ - FORCE_DRC_C_BACKEND= \ - NOASM= -endif - # kFreeBSD architectures ifeq ($(DEB_HOST_ARCH),kfreebsd-amd64) DEB_OPTS += \ TARGETOS=freebsd \ - FORCE_DRC_C_BACKEND= \ PTR64=1 \ - NOASM= \ USE_SYSTEM_LIB_PORTMIDI= export DEB_LDFLAGS_MAINT_APPEND = -ldl endif @@ -199,8 +187,6 @@ ifeq ($(DEB_HOST_ARCH),kfreebsd-i386) DEB_OPTS += \ TARGETOS=freebsd \ - FORCE_DRC_C_BACKEND= \ - NOASM= \ USE_SYSTEM_LIB_PORTMIDI= export DEB_LDFLAGS_MAINT_APPEND = -ldl endif @@ -209,8 +195,6 @@ ifeq ($(DEB_HOST_ARCH),hurd-i386) DEB_OPTS += \ TARGETOS=gnu \ - FORCE_DRC_C_BACKEND= \ - NOASM= \ USE_SYSTEM_LIB_PORTMIDI= \ NO_USE_MIDI=1 LINK_WITH_GOLD = diff -Nru mame-0.222+dfsg.1/docs/source/commandline/commandline-all.rst mame-0.224+dfsg.1/docs/source/commandline/commandline-all.rst --- mame-0.222+dfsg.1/docs/source/commandline/commandline-all.rst 2020-06-26 14:54:18.000000000 +0000 +++ mame-0.224+dfsg.1/docs/source/commandline/commandline-all.rst 2020-08-26 08:57:19.000000000 +0000 @@ -237,9 +237,9 @@ .. Tip:: Output from this command is typically more useful if redirected to - an output file. For instance, doing + an output file. For instance, doing **mame64 -listxml galaxian > galax.xml** will make ``galax.xml`` or - overwrite any existing data in the file with the results of + overwrite any existing data in the file with the results of **-listxml**; this will allow you to view it in a text editor or parse it with external tools. @@ -607,7 +607,7 @@ **-getsoftlist** / **-glist** [<*pattern*>] - Displays the contents of a specific softlist with the filename represented + Displays the contents of a specific softlist with the filename represented by *pattern*. Example: @@ -698,21 +698,21 @@ - dwrite - none - auto - - + - - sdl [#UIFPSDLWindows]_. * - **macOS** - - - - + - + - - none - auto - osx - sdl * - **Linux** - - - - + - + - - none - auto - - + - - sdl .. rubric:: Footnotes @@ -745,16 +745,16 @@ - sdl [#KBIPSDLWindows]_. * - **SDL (macOS and Linux)** - auto [#KBIPAutoSDL]_. - - - - - - + - + - + - - none - sdl * - **Linux** - auto [#KBIPAutoSDL]_. - - - - - - + - + - + - - none - sdl @@ -797,16 +797,16 @@ - sdl [#MIPSDLWindows]_. * - **SDL (macOS and Linux)** - auto [#MIPAutoSDL]_. - - - - - - + - + - + - - none - sdl * - **Linux** - auto [#MIPAutoSDL]_. - - - - - - + - + - + - - none - sdl @@ -841,21 +841,21 @@ - rawinput - win32 - none - - - - + - + - * - **macOS** - auto [#LGIPAutoSDL]_. - - - - + - + - - none - - - - + - + - * - **Linux** - auto [#LGIPAutoLinux]_. - - - - + - + - - none - - + - - x11 .. rubric:: Footnotes @@ -892,9 +892,9 @@ - sdl * - **SDL** - auto [#JIPAutoSDL]_. - - - - - - + - + - + - - none - sdl @@ -1036,7 +1036,7 @@ The default is ``.`` (that is, in the current working directory). Example: - .. code-block:: + .. code-block:: bash mame64 -homepath c:\mame\lua @@ -1051,7 +1051,7 @@ working directory). Example: - .. code-block:: + .. code-block:: bash mame64 -rompath c:\mame\roms;c:\roms\another @@ -1066,7 +1066,7 @@ working directory). Example: - .. code-block:: + .. code-block:: bash mame64 -hashpath c:\mame\hash;c:\roms\softlists @@ -1081,7 +1081,7 @@ working directory). Example: - .. code-block:: + .. code-block:: bash mame64 -samplepath c:\mame\samples;c:\roms\samples @@ -1096,7 +1096,7 @@ working directory). Example: - .. code-block:: + .. code-block:: bash mame64 -artpath c:\mame\artwork;c:\emu\shared-artwork @@ -1111,7 +1111,7 @@ working directory). Example: - .. code-block:: + .. code-block:: bash mame64 -ctrlrpath c:\mame\ctrlr;c:\emu\controllers @@ -1140,7 +1140,7 @@ directory ``ini`` in the current working directory). Example: - .. code-block:: + .. code-block:: bash mame64 -inipath c:\users\thisuser\documents\mameini @@ -1155,7 +1155,7 @@ The default is ``.`` (that is, search in the current working directory). Example: - .. code-block:: + .. code-block:: bash mame64 -fontpath c:\mame\;c:\emu\artwork\mamefonts @@ -1170,7 +1170,7 @@ current working directory). Example: - .. code-block:: + .. code-block:: bash mame64 -cheatpath c:\mame\cheat;c:\emu\cheats @@ -1185,7 +1185,7 @@ current working directory). Example: - .. code-block:: + .. code-block:: bash mame64 -crosshairpath c:\mame\crsshair;c:\emu\artwork\crosshairs @@ -1199,7 +1199,7 @@ working directory). Example: - .. code-block:: + .. code-block:: bash mame64 -pluginspath c:\mame\plugins;c:\emu\lua @@ -1214,7 +1214,7 @@ current working directory). Example: - .. code-block:: + .. code-block:: bash mame64 -languagepath c:\mame\language;c:\emu\mame-languages @@ -1228,7 +1228,7 @@ working directory). Example: - .. code-block:: + .. code-block:: bash mame64 -swpath c:\mame\software;c:\emu\mydisks @@ -1251,7 +1251,7 @@ automatically. Example: - .. code-block:: + .. code-block:: bash mame64 -cfg_directory c:\mame\cfg @@ -1269,7 +1269,7 @@ automatically. Example: - .. code-block:: + .. code-block:: bash mame64 -nvram_directory c:\mame\nvram @@ -1286,7 +1286,7 @@ automatically. Example: - .. code-block:: + .. code-block:: bash mame64 -input_directory c:\mame\inp @@ -1303,7 +1303,7 @@ automatically. Example: - .. code-block:: + .. code-block:: bash mame64 -state_directory c:\mame\sta @@ -1319,7 +1319,7 @@ automatically. Example: - .. code-block:: + .. code-block:: bash mame64 -snapshot_directory c:\mame\snap @@ -1338,7 +1338,7 @@ automatically. Example: - .. code-block:: + .. code-block:: bash mame64 -diff_directory c:\mame\diff @@ -1355,7 +1355,7 @@ created automatically. Example: - .. code-block:: + .. code-block:: bash mame64 -comment_directory c:\mame\comments @@ -1380,7 +1380,7 @@ command. Example: - .. code-block:: + .. code-block:: bash mame64 -norewind @@ -1395,7 +1395,7 @@ clamped to 0. Example: - .. code-block:: + .. code-block:: bash mame64 -rewind_capacity 30 @@ -1407,7 +1407,7 @@ in the specified to be loaded. Example: - .. code-block:: + .. code-block:: bash mame64 -state 1 @@ -1423,7 +1423,7 @@ The default is OFF (**-noautosave**). Example: - .. code-block:: + .. code-block:: bash mame64 -autosave @@ -1438,7 +1438,7 @@ The default is ``NULL`` (no playback). Example: - .. code-block:: + .. code-block:: bash mame64 pacman -playback worldrecord @@ -1458,7 +1458,7 @@ The default is OFF (**-noexit_after_playback**). Example: - .. code-block:: + .. code-block:: bash mame64 pacman -playback worldrecord -exit_after_playback @@ -1473,7 +1473,7 @@ The default is ``NULL`` (no recording). Example: - .. code-block:: + .. code-block:: bash mame64 pacman -record worldrecord @@ -1494,7 +1494,7 @@ By default, no timecode file is saved. Example: - .. code-block:: + .. code-block:: bash mame64 pacman -record worldrecord -record_timecode @@ -1511,7 +1511,7 @@ The default is ``NULL`` (no recording). Example: - .. code-block:: + .. code-block:: bash mame64 pacman -mngwrite pacman-video @@ -1531,7 +1531,7 @@ The default is ``NULL`` (no recording). Example: - .. code-block:: + .. code-block:: bash mame64 pacman -playback worldrecord -exit_after_playback -aviwrite worldrecord @@ -1547,7 +1547,7 @@ .. _mame-commandline-snapname: Example: - .. code-block:: + .. code-block:: bash mame64 pacman -wavewrite pacsounds @@ -1572,21 +1572,21 @@ with the media switch you want to use. Example 1: - .. code-block:: + .. code-block:: bash mame64 robby -snapname foo\%g%i Snapshots will be saved as ``snaps\foo\robby0000.png``, ``snaps\foo\robby0001.png`` and so on. Example 2: - .. code-block:: + .. code-block:: bash mame64 nes -cart robby -snapname %g\%d_cart Snapshots will be saved as ``snaps\nes\robby.png``. Example 3: - .. code-block:: + .. code-block:: bash mame64 c64 -flop1 robby -snapname %g\%d_flop1/%i @@ -1671,19 +1671,19 @@ ``[media]`` with the media switch you want to use. Example 1: - .. code-block:: + .. code-block:: bash mame64 robby -statename foo\%g All save states will be stored inside sta\foo\robby\ Example 2: - .. code-block:: + .. code-block:: bash mame64 nes -cart robby -statename %g/%d_cart All save states will be stored inside sta\nes\robby\ Example 3: - .. code-block:: + .. code-block:: bash mame64 c64 -flop1 robby -statename %g/%d_flop1 All save states will be stored inside sta\c64\robby\ @@ -1878,7 +1878,7 @@ latency. This is particularly effective with VRR (Variable Refresh Rate) displays. - This may cause frame pacing issues in the form of jitter with some + This may cause frame pacing issues in the form of jitter with some systems (especially newer 3D-based systems or systems that run software akin to an operating system), so the default is off (**-nolowlatency**). @@ -1959,7 +1959,7 @@ mame64 pacman -autorol -.. Tip:: If you have a display that can be rotated, **-autorol** or +.. Tip:: If you have a display that can be rotated, **-autorol** or **-autoror** will allow you to get a larger display for both horizontal and vertical systems. @@ -2039,9 +2039,9 @@ **-numscreens** ** - Tells MAME how many output windows or screens to create. For most systems, - a single output window is all you need, but some systems originally used - multiple screens (*e.g. Darius and PlayChoice-10 arcade machines*). Some + Tells MAME how many output windows or screens to create. For most systems, + a single output window is all you need, but some systems originally used + multiple screens (*e.g. Darius and PlayChoice-10 arcade machines*). Some systems with front panel controls and/or status lights also may let you put these in different windows/screens. Each screen (up to 4) has its own independent settings for physical monitor, aspect ratio, resolution, and @@ -2180,6 +2180,7 @@ The default is OFF (**-nosyncrefresh**). .. _mame-commandline-prescale: + Example: .. code-block:: bash @@ -2520,7 +2521,7 @@ ramp, for the system screens. This option does not affect the artwork or other parts of the display. Using the MAME UI, you can individually set the gamma for each system screen; this option controls the initial value for - all visible system screens. The standard and default value is ``1.0``, + all visible system screens. The standard and default value is ``1.0``, which gives a linear ramp from black to white. Selecting lower values (down to 0.1) will increase the nonlinearity toward black, while selecting higher values (up to 3.0) will push the nonlinearity toward white. @@ -2576,7 +2577,10 @@ **-beam_width_min** ** - Sets the vector beam minimum width. + Sets the vector beam minimum width. The beam width varies between + the minimum and maximum beam widths as the intensity of the vector + drawn changes. To disable vector width changes based on intensity, + set the maximum equal to the minimum. Example: .. code-block:: bash @@ -2587,7 +2591,10 @@ **-beam_width_max** ** - Sets the vector beam maximum width. + Sets the vector beam maximum width. The beam width varies between + the minimum and maximum beam widths as the intensity of the vector + drawn changes. To disable vector width changes based on intensity, + set the maximum equal to the minimum. Example: .. code-block:: bash @@ -2598,13 +2605,35 @@ **-beam_intensity_weight** ** - Sets the vector beam intensity weight. + Sets the vector beam intensity weight. This value determines how the + intensity of the vector drawn affects the width. A value of 0 creates + a linear mapping from intensity to width. Negative values mean that + lower intensities will increase the width toward maximum faster, + while positive values will increase the width toward maximum more + slowly. Example: .. code-block:: bash mame64 asteroid -beam_intensity_weight 0.5 +.. _mame-commandline-beamdotsize: + +**-beam_dot_size** ** + + Scale factor to apply to the size of single-point dots in vector games. + Normally these are rendered according to the computed beam width; however, + it is common for this to produce dots that are difficult to see. The + beam_dot_size option applies a scale factor on top of the beam width to + help them show up better. + + The default is ``1``. + + Example: + .. code-block:: bash + + mame64 asteroid -beam_dot_size 2 + .. _mame-commandline-flicker: **-flicker** ** @@ -2828,21 +2857,21 @@ - dsound - xaudio2 - portaudio - - + - - sdl [#SoundWinSDL]_. - none * - **macOS** - - - - + - + - - portaudio - coreaudio - sdl - none * - **Linux** and others - - - - + - + - - portaudio - - + - - sdl - none @@ -2860,9 +2889,9 @@ Higher values increase audio delay but may help avoid buffer under-runs and audio interruptions. - The default is ``1``. + The default is ``1``. - | For PortAudio, see :ref:`mame-commandline-pa-latency`. + | For PortAudio, see the section on :ref:`-pa_latency `. | XAudio2 calculates audio_latency as 10ms steps. | DSound calculates audio_latency as 10ms steps. | CoreAudio calculates audio_latency as 25ms steps. @@ -3045,33 +3074,62 @@ **-joystick_map** ** / **-joymap** ** - Controls how joystick values map to digital joystick controls. MAME accepts - all joystick input from the system as analog data. For true analog - joysticks, this needs to be mapped down to the usual 4-way or 8-way digital - joystick values. To do this, MAME divides the analog range into a 9x9 grid. - It then takes the joystick axis position (for X and Y axes only), maps it to - this grid, and then looks up a translation from a joystick map. This + Controls how analog joystick values map to digital joystick controls. + + Systems such as Pac-Man use a 4-way digital joystick and will exhibit + undesired behavior when a diagonal is triggered; in the case of Pac-Man, + movement will stop completely at intersections when diagonals are triggered + and the game will be considerably harder to play correctly. Many other + arcade cabinets used 4-way or 8-way joysticks (as opposed to full analog + joysticks), so for true analog joysticks such as flight sticks and analog + thumb sticks, this then needs to be mapped down to the expected + 4-way or 8-way digital joystick values. + + To do this, MAME divides the analog range into a 9x9 grid that looks + like this: + + **insert 9x9 grid picture here** + + MAME then takes the joystick axis position (for X and Y axes only), maps it + to this grid, and then looks up a translation from a joystick map. This parameter allows you to specify the map. + For instance, an 8-way joystick map traditionally looks like this: + + **insert 8-way map picture here** + + This mapping gives considerable leeway to the angles accepted for a given + direction, so that being approximately in the area of the direction you want + will give you the results you want. Without that, if you were slightly off + center while holding the stick left, it would not recognize the action + correctly. + The default is ``auto``, which means that a standard 8-way, 4-way, or 4-way diagonal map is selected automatically based on the input port configuration of the current system. - Maps are defined as a string of numbers and characters. Since the grid is - 9x9, there are a total of 81 characters necessary to define a complete map. - Below is an example map for an 8-way joystick: + Generally you will want to set up the **-joystick_map** setting in the + per-system ``.ini`` file as opposed to the main ``MAME.INI`` + file so that the mapping only affects the systems you want it to. See + :ref:`Multiple Configuration Files ` for further + details on per-system configuration. - +-------------+---------------------------------------------------------+ - | | 777888999 | | - | | 777888999 | | Note that the numeric digits correspond to the keys | - | | 777888999 | | on a numeric keypad. So '7' maps to up+left, '4' maps | - | | 444555666 | | to left, '5' maps to neutral, etc. In addition to the | - | | 444555666 | | numeric values, you can specify the character 's', | - | | 444555666 | | which means "sticky". In this case, the value of the | - | | 111222333 | | map is the same as it was the last time a non-sticky | - | | 111222333 | | value was read. | - | | 111222333 | | - +-------------+---------------------------------------------------------+ + Maps are defined as a string of numbers and characters. Since the grid is + 9x9, there are a total of 81 characters necessary to define a complete + map. Below is an example map for an 8-way joystick that matches the + picture shown above: + + +-------------+--------------------------------------------------------+ + | | 777888999 | | + | | 777888999 | | Note that the numeric digits correspond to the keys | + | | 777888999 | | on a numeric keypad. So '7' maps to up+left, '4' maps| + | | 444555666 | | to left, '5' maps to neutral, etc. In addition to the| + | | 444555666 | | numeric values, you can specify the character 's', | + | | 444555666 | | which means "sticky". Sticky map positions will keep| + | | 111222333 | | the output the same as the last non-sticky input sent| + | | 111222333 | | to the system. | + | | 111222333 | | + +-------------+--------------------------------------------------------+ To specify the map for this parameter, you can specify a string of rows separated by a '.' (which indicates the end of a row), like so: @@ -3107,6 +3165,47 @@ up/down mirrors of the first three rows, giving three final rows of 111222333. + With 4-way games, sticky becomes important to avoid problems with + diagonals. Typically you would choose a map that looks something like this: + + **insert 9x9 4-way sticky grid picture here** + + This means that if you press left, then roll the stick towards up (without + re-centering it) you'll pass through the sticky section in the corner. As + you do, MAME will read that sticky corner as **left** as that's the last + non-sticky input it received. As the roll gets into the upward space of + the map, this then switches to an up motion. + + This map would look somewhat like: + + +-------------+---------------------------------------------------------+ + | | s8888888s | | + | | 4s88888s6 | | For this mapping, we have a wide range for the | + | | 44s888s66 | | cardinal directions on 8, 4, 6, and 2. We have sticky| + | | 444555666 | | on the meeting points between those cardinal | + | | 444555666 | | directions where the appropriate direction isn't | + | | 444555666 | | going to be completely obvious. | + | | 44s222s66 | | + | | 4s22222s6 | | + | | s2222222s | | + +-------------+---------------------------------------------------------+ + + To specify the map for this parameter, you can specify a string of rows + separated by a '.' (which indicates the end of a row), like so: + + +-------------------------------------------------------------------------------------------------------+ + | **-joymap s8888888s.4s88888s6.44s888s66.444555666.444555666.444555666.44s222s66.4s22222s6.s2222222s** | + +-------------------------------------------------------------------------------------------------------+ + + Like before, because of the symmetry between top and bottom and left and + right, we can shorten this down to: + + +------------------------------+ + | **-joymap s8.4s8.44s8.4445** | + +------------------------------+ + + + .. _mame-commandline-joystickdeadzone: **-joystick_deadzone** ** / **-joy_deadzone** ** / **-jdz** ** @@ -3645,6 +3744,7 @@ The default is (**-noui_mouse**). .. _mame-commandline-language: + Example: .. code-block:: bash diff -Nru mame-0.222+dfsg.1/docs/source/healthwarning.rst mame-0.224+dfsg.1/docs/source/healthwarning.rst --- mame-0.222+dfsg.1/docs/source/healthwarning.rst 1970-01-01 00:00:00.000000000 +0000 +++ mame-0.224+dfsg.1/docs/source/healthwarning.rst 2020-08-26 08:57:19.000000000 +0000 @@ -0,0 +1,29 @@ +Health Warnings +=============== + +Epilepsy Warning +---------------- + +A very small percentage of individuals may experience epileptic seizures when +exposed to certain light patterns or flashing lights. Exposure to certain +patterns or backgrounds on a television screen or computer monitor, or while +playing video games may induce an epileptic seizure in these individuals. + +Certain conditions may induce previously undetected epileptic symptoms even in +persons who have no history of prior seizures or epilepsy. These conditions can +include emulation accuracy or inaccuracy, computer performance at the time of +running MAME, video card drivers, your monitor, and a lot of other factors. +If you, or anyone in your family, has an epileptic condition, consult your +physician prior to using MAME. + +If you experience any of the following while using MAME, **IMMEDIATELY** +discontinue use and consult your physician before resuming use of MAME. + +* Dizziness +* Altered vision +* Eye or muscle twitches +* Loss of awareness +* Disorientation +* Any involuntary movement +* Convulsions + diff -Nru mame-0.222+dfsg.1/docs/source/index.rst mame-0.224+dfsg.1/docs/source/index.rst --- mame-0.222+dfsg.1/docs/source/index.rst 2020-06-26 14:54:18.000000000 +0000 +++ mame-0.224+dfsg.1/docs/source/index.rst 2020-08-26 08:57:19.000000000 +0000 @@ -17,6 +17,7 @@ :titlesonly: whatis + healthwarning initialsetup/index usingmame/index diff -Nru mame-0.222+dfsg.1/docs/source/initialsetup/compilingmame.rst mame-0.224+dfsg.1/docs/source/initialsetup/compilingmame.rst --- mame-0.222+dfsg.1/docs/source/initialsetup/compilingmame.rst 2020-06-26 14:54:18.000000000 +0000 +++ mame-0.224+dfsg.1/docs/source/initialsetup/compilingmame.rst 2020-08-26 08:57:19.000000000 +0000 @@ -75,7 +75,7 @@ add **OSD=sdl** to the make options. The main emulator binary will have an ``sdl`` prefix prepended (e.g. ``sdlmame64.exe`` or ``sdlmame.exe``). You will need to install the MSYS2 packages for SDL 2 version 2.0.3 or later. -* By default, MAME will include the native Windows debugger. To also inculde +* By default, MAME will include the native Windows debugger. To also include the portable Qt debugger, add **USE_QTDEBUG=1** to the make options. You will need to install the MSYS2 packages for Qt 5. @@ -96,10 +96,13 @@ * Install packages necessary to build MAME. At the very least, you'll need ``bash``, ``git``, ``make``. * For 64-bit builds you'll need ``mingw-w64-x86_64-gcc`` and - ``mingw-w64-x86_64-python2``. + ``mingw-w64-x86_64-python``. * For 32-bit builds you'll need ``mingw-w64-i686-gcc`` and - ``mingw-w64-i686-python2``. + ``mingw-w64-i686-python``. * For debugging you may want to install ``gdb``. +* To link using the LLVM linker (generally much faster than the GNU linker), + you'll need ``mingw-w64-x86_64-lld`` for 64-bit builds, or + ``mingw-w64-i686-lld`` for 32-bit builds. * To build against the portable SDL interfaces, you'll need ``mingw-w64-x86_64-SDL2`` and ``mingw-w64-x86_64-SDL2_ttf`` for 64-bit builds, or ``mingw-w64-i686-SDL2`` and ``mingw-w64-i686-SDL2_ttf`` for 32-bit builds. @@ -139,7 +142,8 @@ Fedora Linux ------------ -You'll need a few prerequisites from your distro. Make sure you get SDL2 2.0.3 or 2.0.4 as earlier versions are buggy. +You'll need a few prerequisites from your Linux distribution. Make sure you get +SDL2 2.0.4 or later as earlier versions are buggy. **sudo dnf install gcc gcc-c++ SDL2-devel SDL2_ttf-devel libXi-devel libXinerama-devel qt5-qtbase-devel qt5-qttools expat-devel fontconfig-devel alsa-lib-devel** @@ -151,7 +155,8 @@ Debian and Ubuntu (including Raspberry Pi and ODROID devices) ------------------------------------------------------------- -You'll need a few prerequisites from your distro. Make sure you get SDL2 2.0.3 or 2.0.4 as earlier versions are buggy. +You'll need a few prerequisites from your Linux distribution. Make sure you get +SDL2 2.0.4 or later as earlier versions are buggy. **sudo apt-get install git build-essential python libsdl2-dev libsdl2-ttf-dev libfontconfig-dev qt5-default** @@ -175,7 +180,7 @@ Apple Mac OS X -------------- -You'll need a few prerequisites to get started. Make sure you're on OS X 10.9 Mavericks or later. You will NEED SDL2 2.0.4 for OS X. +You'll need a few prerequisites to get started. Make sure you're on OS X 10.9 Mavericks or later. You will need SDL2 2.0.4 or later for OS X. * Install **Xcode** from the Mac App Store * Launch **Xcode**. It will download a few additional prerequisites. Let this run through before proceeding. @@ -492,6 +497,16 @@ Unusual Build Configurations ---------------------------- +Linking using the LLVM linker +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The LLVM linker is generally faster than the GNU linker that GCC uses by +default. This is more pronounced on systems with a high overhead for file +system operations (e.g. Microsoft Windows, or when compiling on a disk mounted +over a network). To use the LLVM linker with GCC, ensure the LLVM linker is +installed and add ``-fuse-ld=lld`` to the linker options (e.g. in the +**LDFLAGS** environment variable or in the **ARCHOPTS** setting). + Cross-compiling MAME ~~~~~~~~~~~~~~~~~~~~ diff -Nru mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/breadcrumbs.html mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/breadcrumbs.html --- mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/breadcrumbs.html 2020-06-26 14:54:18.000000000 +0000 +++ mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/breadcrumbs.html 2020-08-26 08:57:19.000000000 +0000 @@ -1,24 +1,82 @@ +{# Support for Sphinx 1.3+ page_source_suffix, but don't break old builds. #} + +{% if page_source_suffix %} +{% set suffix = page_source_suffix %} +{% else %} +{% set suffix = source_suffix %} +{% endif %} + +{% if meta is defined and meta is not none %} +{% set check_meta = True %} +{% else %} +{% set check_meta = False %} +{% endif %} + +{% if check_meta and 'github_url' in meta %} +{% set display_github = True %} +{% endif %} + +{% if check_meta and 'bitbucket_url' in meta %} +{% set display_bitbucket = True %} +{% endif %} + +{% if check_meta and 'gitlab_url' in meta %} +{% set display_gitlab = True %} +{% endif %} +
+ + + {% if (theme_prev_next_buttons_location == 'top' or theme_prev_next_buttons_location == 'both') and (next or prev) %} + + {% endif %}
diff -Nru mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/footer.html mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/footer.html --- mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/footer.html 2020-06-26 14:54:18.000000000 +0000 +++ mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/footer.html 2020-08-26 08:57:19.000000000 +0000 @@ -1,11 +1,11 @@
- {% if next or prev %} + {% if (theme_prev_next_buttons_location == 'bottom' or theme_prev_next_buttons_location == 'both') and (next or prev) %} {% endif %} @@ -16,21 +16,47 @@

{%- if show_copyright %} {%- if hasdoc('copyright') %} - {% trans path=pathto('copyright'), copyright=copyright|e %}© Copyright {{ copyright }}.{% endtrans %} + {% set path = pathto('copyright') %} + {% set copyright = copyright|e %} + © {% trans %}Copyright{% endtrans %} {{ copyright }} {%- else %} - {% trans copyright=copyright|e %}© Copyright {{ copyright }}.{% endtrans %} + {% set copyright = copyright|e %} + © {% trans %}Copyright{% endtrans %} {{ copyright }} {%- endif %} {%- endif %} - {%- if last_updated %} - {% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %} + {%- if build_id and build_url %} + + {# Translators: Build is a noun, not a verb #} + {% trans %}Build{% endtrans %} + {{ build_id }}. + + {%- elif commit %} + + {# Translators: the phrase "revision" comes from Git, referring to a commit #} + {% trans %}Revision{% endtrans %} {{ commit }}. + + {%- elif last_updated %} + + {% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %} + {%- endif %} +

{%- if show_sphinx %} - {% trans %}Built with Sphinx using a theme provided by Read the Docs{% endtrans %}. + {% set sphinx_web = 'Sphinx' %} + {% set readthedocs_web = 'Read the Docs' %} + {# Translators: the variable "sphinx_web" is a link to the Sphinx project documentation with the text "Sphinx" #} + {% trans sphinx_web=sphinx_web, readthedocs_web=readthedocs_web %}Built with {{ sphinx_web }} using a{% endtrans %} + {# Translators: "theme" refers to a theme for Sphinx, which alters the appearance of the generated documenation #} + {% trans %}theme{% endtrans %} + {# Translators: this is always used as "provided by Read the Docs", and should not imply Read the Docs is an author of the generated documentation. #} + {% trans %}provided by {{ readthedocs_web }}{% endtrans %}. {%- endif %} + {%- block extrafooter %} {% endblock %} +
diff -Nru mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/__init__.py mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/__init__.py --- mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/__init__.py 2020-06-26 14:54:18.000000000 +0000 +++ mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/__init__.py 2020-08-26 08:57:19.000000000 +0000 @@ -1,17 +1,34 @@ -"""Sphinx ReadTheDocs theme. +""" +Sphinx Read the Docs theme. From https://github.com/ryan-roemer/sphinx-bootstrap-theme. - """ -import os -VERSION = (0, 1, 8) +from os import path + +import sphinx + -__version__ = ".".join(str(v) for v in VERSION) +__version__ = '0.5.0' __version_full__ = __version__ def get_html_theme_path(): """Return list of HTML theme paths.""" - cur_dir = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) + cur_dir = path.abspath(path.dirname(path.dirname(__file__))) return cur_dir + + +# See http://www.sphinx-doc.org/en/stable/theming.html#distribute-your-theme-as-a-python-package +def setup(app): + if sphinx.version_info >= (1, 6, 0): + # Register the theme that can be referenced without adding a theme path + app.add_html_theme('sphinx_rtd_theme', path.abspath(path.dirname(__file__))) + + if sphinx.version_info >= (1, 8, 0): + # Add Sphinx message catalog for newer versions of Sphinx + # See http://www.sphinx-doc.org/en/master/extdev/appapi.html#sphinx.application.Sphinx.add_message_catalog + rtd_locale_path = path.join(path.abspath(path.dirname(__file__)), 'locale') + app.add_message_catalog('sphinx', rtd_locale_path) + + return {'parallel_read_safe': True, 'parallel_write_safe': True} diff -Nru mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/layout.html mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/layout.html --- mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/layout.html 2020-06-26 14:54:18.000000000 +0000 +++ mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/layout.html 2020-08-26 08:57:19.000000000 +0000 @@ -6,10 +6,11 @@ {%- else %} {%- set titlesuffix = "" %} {%- endif %} +{%- set lang_attr = 'en' if language == None else (language | replace('_', '-')) %} +{%- set sphinx_writer = 'writer-html5' if html5_doctype else 'writer-html4' %} - - + {{ metatags }} @@ -18,125 +19,192 @@ {{ title|striptags|e }}{{ titlesuffix }} {% endblock %} + {# CSS #} + + + {%- for css in css_files %} + {%- if css|attr("rel") %} + + {%- else %} + + {%- endif %} + {%- endfor %} + + {%- for cssfile in extra_css_files %} + + {%- endfor %} + {# FAVICON #} {% if favicon %} {% endif %} - - {# CSS #} - - {# OPENSEARCH #} - {% if not embedded %} - {% if use_opensearch %} - + {# CANONICAL URL #} + {% if theme_canonical_url %} + + {% endif %} + + {# JAVASCRIPTS #} + {%- block scripts %} + + {%- if not embedded %} + {# XXX Sphinx 1.8.0 made this an external js-file, quick fix until we refactor the template to inherert more blocks directly from sphinx #} + {% if sphinx_version >= "1.8.0" %} + + {%- for scriptfile in script_files %} + {{ js_tag(scriptfile) }} + {%- endfor %} + {% else %} + + {%- for scriptfile in script_files %} + + {%- endfor %} {% endif %} + - {% endif %} - - {# RTD hosts this file, so just load on non RTD builds #} - {% if not READTHEDOCS %} - - {% endif %} - - {% for cssfile in css_files %} - - {% endfor %} - - {% for cssfile in extra_css_files %} - - {% endfor %} + {# OPENSEARCH #} + {%- if use_opensearch %} + + {%- endif %} + {%- endif %} + {%- endblock %} {%- block linktags %} {%- if hasdoc('about') %} - + {%- endif %} {%- if hasdoc('genindex') %} - + {%- endif %} {%- if hasdoc('search') %} - + {%- endif %} {%- if hasdoc('copyright') %} - - {%- endif %} - - {%- if parents %} - + {%- endif %} {%- if next %} - + {%- endif %} {%- if prev %} - + {%- endif %} {%- endblock %} {%- block extrahead %} {% endblock %} - - {# Keep modernizr in head - http://modernizr.com/docs/#installing #} - - - + + {% block extrabody %} {% endblock %}
- {# SIDE NAV, TOGGLES ON MOBILE #}
{# MOBILE NAV, TRIGGLES SIDE NAV ON TOGGLE #} -
@@ -144,35 +212,27 @@
{% include "versions.html" %} - {% if not embedded %} - - - {%- for scriptfile in script_files %} - - {%- endfor %} - - {% endif %} - - {# RTD hosts this file, so just load on non RTD builds #} - {% if not READTHEDOCS %} - - {% endif %} - - {# STICKY NAVIGATION #} - {% if theme_sticky_navigation %} + + {# Do not conflict with RTD insertion of analytics script #} + {% if not READTHEDOCS %} + {% if theme_analytics_id %} + + + + {% endif %} {% endif %} {%- block footer %} {% endblock %} diff -Nru mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/layout_old.html mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/layout_old.html --- mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/layout_old.html 2020-06-26 14:54:18.000000000 +0000 +++ mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/layout_old.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,205 +0,0 @@ -{# - basic/layout.html - ~~~~~~~~~~~~~~~~~ - - Master layout template for Sphinx themes. - - :copyright: Copyright 2007-2013 by the Sphinx team, see AUTHORS. - :license: BSD, see LICENSE for details. -#} -{%- block doctype -%} - -{%- endblock %} -{%- set reldelim1 = reldelim1 is not defined and ' »' or reldelim1 %} -{%- set reldelim2 = reldelim2 is not defined and ' |' or reldelim2 %} -{%- set render_sidebar = (not embedded) and (not theme_nosidebar|tobool) and - (sidebars != []) %} -{%- set url_root = pathto('', 1) %} -{# XXX necessary? #} -{%- if url_root == '#' %}{% set url_root = '' %}{% endif %} -{%- if not embedded and docstitle %} - {%- set titlesuffix = " — "|safe + docstitle|e %} -{%- else %} - {%- set titlesuffix = "" %} -{%- endif %} - -{%- macro relbar() %} - -{%- endmacro %} - -{%- macro sidebar() %} - {%- if render_sidebar %} -
-
- {%- block sidebarlogo %} - {%- if logo %} - - {%- endif %} - {%- endblock %} - {%- if sidebars != None %} - {#- new style sidebar: explicitly include/exclude templates #} - {%- for sidebartemplate in sidebars %} - {%- include sidebartemplate %} - {%- endfor %} - {%- else %} - {#- old style sidebars: using blocks -- should be deprecated #} - {%- block sidebartoc %} - {%- include "localtoc.html" %} - {%- endblock %} - {%- block sidebarrel %} - {%- include "relations.html" %} - {%- endblock %} - {%- block sidebarsourcelink %} - {%- include "sourcelink.html" %} - {%- endblock %} - {%- if customsidebar %} - {%- include customsidebar %} - {%- endif %} - {%- block sidebarsearch %} - {%- include "searchbox.html" %} - {%- endblock %} - {%- endif %} -
-
- {%- endif %} -{%- endmacro %} - -{%- macro script() %} - - {%- for scriptfile in script_files %} - - {%- endfor %} -{%- endmacro %} - -{%- macro css() %} - - - {%- for cssfile in css_files %} - - {%- endfor %} -{%- endmacro %} - - - - - {{ metatags }} - {%- block htmltitle %} - {{ title|striptags|e }}{{ titlesuffix }} - {%- endblock %} - {{ css() }} - {%- if not embedded %} - {{ script() }} - {%- if use_opensearch %} - - {%- endif %} - {%- if favicon %} - - {%- endif %} - {%- endif %} -{%- block linktags %} - {%- if hasdoc('about') %} - - {%- endif %} - {%- if hasdoc('genindex') %} - - {%- endif %} - {%- if hasdoc('search') %} - - {%- endif %} - {%- if hasdoc('copyright') %} - - {%- endif %} - - {%- if parents %} - - {%- endif %} - {%- if next %} - - {%- endif %} - {%- if prev %} - - {%- endif %} -{%- endblock %} -{%- block extrahead %} {% endblock %} - - -{%- block header %}{% endblock %} - -{%- block relbar1 %}{{ relbar() }}{% endblock %} - -{%- block content %} - {%- block sidebar1 %} {# possible location for sidebar #} {% endblock %} - -
- {%- block document %} -
- {%- if render_sidebar %} -
- {%- endif %} -
- {% block body %} {% endblock %} -
- {%- if render_sidebar %} -
- {%- endif %} -
- {%- endblock %} - - {%- block sidebar2 %}{{ sidebar() }}{% endblock %} -
-
-{%- endblock %} - -{%- block relbar2 %}{{ relbar() }}{% endblock %} - -{%- block footer %} - -

asdf asdf asdf asdf 22

-{%- endblock %} - - - diff -Nru mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.po mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.po --- mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.po 1970-01-01 00:00:00.000000000 +0000 +++ mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.po 2020-08-26 08:57:19.000000000 +0000 @@ -0,0 +1,143 @@ +# English translations for sphinx_rtd_theme. +# Copyright (C) 2019 ORGANIZATION +# This file is distributed under the same license as the sphinx_rtd_theme +# project. +# FIRST AUTHOR , 2019. +# +# Translators: +# Tom Kunze , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-05-06 13:38-0600\n" +"PO-Revision-Date: 2019-07-16 21:44+0000\n" +"Last-Translator: Tom Kunze , 2019\n" +"Language-Team: German (https://www.transifex.com/readthedocs/teams/101354/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.8.0\n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: sphinx_rtd_theme/breadcrumbs.html:43 sphinx_rtd_theme/breadcrumbs.html:45 +msgid "Edit on GitHub" +msgstr "Auf GitHub bearbeiten" + +#: sphinx_rtd_theme/breadcrumbs.html:50 sphinx_rtd_theme/breadcrumbs.html:52 +msgid "Edit on Bitbucket" +msgstr "Auf Bitbucket bearbeiten" + +#: sphinx_rtd_theme/breadcrumbs.html:57 sphinx_rtd_theme/breadcrumbs.html:59 +msgid "Edit on GitLab" +msgstr "Auf GitLab bearbeiten" + +#: sphinx_rtd_theme/breadcrumbs.html:62 sphinx_rtd_theme/breadcrumbs.html:64 +msgid "View page source" +msgstr "Quelltext anzeigen" + +#: sphinx_rtd_theme/breadcrumbs.html:74 sphinx_rtd_theme/footer.html:5 +msgid "Next" +msgstr "Weiter" + +#: sphinx_rtd_theme/breadcrumbs.html:77 sphinx_rtd_theme/footer.html:8 +msgid "Previous" +msgstr "Zurück" + +#: sphinx_rtd_theme/footer.html:21 sphinx_rtd_theme/footer.html:24 +#: sphinx_rtd_theme/layout.html:96 +msgid "Copyright" +msgstr "Copyright" + +#. Build is a noun, not a verb +#: sphinx_rtd_theme/footer.html:31 +msgid "Build" +msgstr "Build" + +#: sphinx_rtd_theme/footer.html:41 +#, python-format +msgid "Last updated on %(last_updated)s." +msgstr "Zuletzt aktualisiert am %(last_updated)s." + +#. the variable "sphinx_web" is a link to the Sphinx project documentation +#. with +#. the text "Sphinx" +#: sphinx_rtd_theme/footer.html:52 +#, python-format +msgid "Built with %(sphinx_web)s using a" +msgstr "Erstellt mit %(sphinx_web)s mit einem" + +#. this is always used as "provided by Read the Docs", and should not imply +#. Read the Docs is an author of the generated documentation. +#: sphinx_rtd_theme/footer.html:56 +#, python-format +msgid "provided by %(readthedocs_web)s" +msgstr "bereitgestellt von %(readthedocs_web)s" + +#: sphinx_rtd_theme/layout.html:79 +#, python-format +msgid "Search within %(docstitle)s" +msgstr "%(docstitle)s durchsuchen" + +#: sphinx_rtd_theme/layout.html:87 +msgid "About these documents" +msgstr "Über diese Dokumentation" + +#: sphinx_rtd_theme/layout.html:90 +msgid "Index" +msgstr "Index" + +#: sphinx_rtd_theme/layout.html:93 sphinx_rtd_theme/search.html:11 +msgid "Search" +msgstr "Suche" + +#: sphinx_rtd_theme/layout.html:128 +msgid "Logo" +msgstr "Logo" + +#: sphinx_rtd_theme/search.html:29 +msgid "Please activate JavaScript to enable the search functionality." +msgstr "Bitte aktiviere JavaScript, um die Suchfunktion zu nutzen." + +#. Search is a noun, not a verb +#: sphinx_rtd_theme/search.html:37 +msgid "Search Results" +msgstr "Suchergebnisse" + +#: sphinx_rtd_theme/search.html:39 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" +"Es wurden keine mit deiner Suchanfrage übereinstimmenden Dokumente gefunden." +" Achte darauf, dass alle Wörter richtig geschrieben sind und dass genug " +"Kategorien ausgewählt sind." + +#: sphinx_rtd_theme/searchbox.html:4 +msgid "Search docs" +msgstr "Dokumentation durchsuchen" + +#: sphinx_rtd_theme/versions.html:11 +msgid "Versions" +msgstr "Versionen" + +#. The phrase "Read the Docs" is not translated +#: sphinx_rtd_theme/versions.html:24 +msgid "On Read the Docs" +msgstr "Auf Read the Docs" + +#: sphinx_rtd_theme/versions.html:26 +msgid "Project Home" +msgstr "Projektübersicht" + +#: sphinx_rtd_theme/versions.html:29 +msgid "Builds" +msgstr "Builds" + +#~ msgid "Docs" +#~ msgstr "Dokumentation" + +#~ msgid "Free document hosting provided by" +#~ msgstr "Kostenloses Dokumentationen-Hosting zur Verfügung gestellt von" diff -Nru mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/locale/en/LC_MESSAGES/sphinx.po mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/locale/en/LC_MESSAGES/sphinx.po --- mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/locale/en/LC_MESSAGES/sphinx.po 1970-01-01 00:00:00.000000000 +0000 +++ mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/locale/en/LC_MESSAGES/sphinx.po 2020-08-26 08:57:19.000000000 +0000 @@ -0,0 +1,156 @@ +# English translations for sphinx_rtd_theme. +# Copyright (C) 2019 ORGANIZATION +# This file is distributed under the same license as the sphinx_rtd_theme +# project. +# FIRST AUTHOR , 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-05-06 13:38-0600\n" +"PO-Revision-Date: 2019-07-16 15:43-0600\n" +"Last-Translator: FULL NAME \n" +"Language: en\n" +"Language-Team: en \n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.8.0\n" + +#: sphinx_rtd_theme/breadcrumbs.html:43 sphinx_rtd_theme/breadcrumbs.html:45 +msgid "Edit on GitHub" +msgstr "" + +#: sphinx_rtd_theme/breadcrumbs.html:50 sphinx_rtd_theme/breadcrumbs.html:52 +msgid "Edit on Bitbucket" +msgstr "" + +#: sphinx_rtd_theme/breadcrumbs.html:57 sphinx_rtd_theme/breadcrumbs.html:59 +msgid "Edit on GitLab" +msgstr "" + +#: sphinx_rtd_theme/breadcrumbs.html:62 sphinx_rtd_theme/breadcrumbs.html:64 +msgid "View page source" +msgstr "" + +#: sphinx_rtd_theme/breadcrumbs.html:74 sphinx_rtd_theme/footer.html:5 +msgid "Next" +msgstr "" + +#: sphinx_rtd_theme/breadcrumbs.html:77 sphinx_rtd_theme/footer.html:8 +msgid "Previous" +msgstr "" + +#: sphinx_rtd_theme/footer.html:21 sphinx_rtd_theme/footer.html:24 +#: sphinx_rtd_theme/layout.html:96 +msgid "Copyright" +msgstr "" + +#. Build is a noun, not a verb +#: sphinx_rtd_theme/footer.html:31 +msgid "Build" +msgstr "" + +#. the phrase "revision" comes from Git, referring to a commit +#: sphinx_rtd_theme/footer.html:37 +msgid "Revision" +msgstr "" + +#: sphinx_rtd_theme/footer.html:41 +#, python-format +msgid "Last updated on %(last_updated)s." +msgstr "" + +#. the variable "sphinx_web" is a link to the Sphinx project documentation with +#. the text "Sphinx" +#: sphinx_rtd_theme/footer.html:52 +#, python-format +msgid "Built with %(sphinx_web)s using a" +msgstr "" + +#. "theme" refers to a theme for Sphinx, which alters the appearance of the +#. generated documenation +#: sphinx_rtd_theme/footer.html:54 +msgid "theme" +msgstr "" + +#. this is always used as "provided by Read the Docs", and should not imply +#. Read the Docs is an author of the generated documentation. +#: sphinx_rtd_theme/footer.html:56 +#, python-format +msgid "provided by %(readthedocs_web)s" +msgstr "" + +#: sphinx_rtd_theme/layout.html:79 +#, python-format +msgid "Search within %(docstitle)s" +msgstr "" + +#: sphinx_rtd_theme/layout.html:87 +msgid "About these documents" +msgstr "" + +#: sphinx_rtd_theme/layout.html:90 +msgid "Index" +msgstr "" + +#: sphinx_rtd_theme/layout.html:93 sphinx_rtd_theme/search.html:11 +msgid "Search" +msgstr "" + +#: sphinx_rtd_theme/layout.html:121 +msgid "Documentation Home" +msgstr "" + +#: sphinx_rtd_theme/layout.html:128 +msgid "Logo" +msgstr "" + +#: sphinx_rtd_theme/search.html:29 +msgid "Please activate JavaScript to enable the search functionality." +msgstr "" + +#. Search is a noun, not a verb +#: sphinx_rtd_theme/search.html:37 +msgid "Search Results" +msgstr "" + +#: sphinx_rtd_theme/search.html:39 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" + +#: sphinx_rtd_theme/searchbox.html:4 +msgid "Search docs" +msgstr "" + +#: sphinx_rtd_theme/versions.html:11 +msgid "Versions" +msgstr "" + +#: sphinx_rtd_theme/versions.html:17 +msgid "Downloads" +msgstr "" + +#. The phrase "Read the Docs" is not translated +#: sphinx_rtd_theme/versions.html:24 +msgid "On Read the Docs" +msgstr "" + +#: sphinx_rtd_theme/versions.html:26 +msgid "Project Home" +msgstr "" + +#: sphinx_rtd_theme/versions.html:29 +msgid "Builds" +msgstr "" + +#~ msgid "Docs" +#~ msgstr "" + +#~ msgid "Free document hosting provided by" +#~ msgstr "" + diff -Nru mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.po mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.po --- mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.po 1970-01-01 00:00:00.000000000 +0000 +++ mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.po 2020-08-26 08:57:19.000000000 +0000 @@ -0,0 +1,164 @@ +# English translations for sphinx_rtd_theme. +# Copyright (C) 2019 ORGANIZATION +# This file is distributed under the same license as the sphinx_rtd_theme +# project. +# FIRST AUTHOR , 2019. +# +# Translators: +# Anthony , 2019 +# Leonardo J. Caballero G. , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-05-06 13:38-0600\n" +"PO-Revision-Date: 2019-07-16 21:44+0000\n" +"Last-Translator: Leonardo J. Caballero G. , 2020\n" +"Language-Team: Spanish (https://www.transifex.com/readthedocs/teams/101354/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.8.0\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: sphinx_rtd_theme/breadcrumbs.html:43 sphinx_rtd_theme/breadcrumbs.html:45 +msgid "Edit on GitHub" +msgstr "Editar en GitHub" + +#: sphinx_rtd_theme/breadcrumbs.html:50 sphinx_rtd_theme/breadcrumbs.html:52 +msgid "Edit on Bitbucket" +msgstr "Editar en Bitbucket" + +#: sphinx_rtd_theme/breadcrumbs.html:57 sphinx_rtd_theme/breadcrumbs.html:59 +msgid "Edit on GitLab" +msgstr "Editar en GitLab" + +#: sphinx_rtd_theme/breadcrumbs.html:62 sphinx_rtd_theme/breadcrumbs.html:64 +msgid "View page source" +msgstr "Ver código fuente de la página" + +#: sphinx_rtd_theme/breadcrumbs.html:74 sphinx_rtd_theme/footer.html:5 +msgid "Next" +msgstr "Siguiente" + +#: sphinx_rtd_theme/breadcrumbs.html:77 sphinx_rtd_theme/footer.html:8 +msgid "Previous" +msgstr "Anterior" + +#: sphinx_rtd_theme/footer.html:21 sphinx_rtd_theme/footer.html:24 +#: sphinx_rtd_theme/layout.html:96 +msgid "Copyright" +msgstr "Derechos de autor" + +#. Build is a noun, not a verb +#: sphinx_rtd_theme/footer.html:31 +msgid "Build" +msgstr "Construido" + +#. the phrase "revision" comes from Git, referring to a commit +#: sphinx_rtd_theme/footer.html:37 +msgid "Revision" +msgstr "Revisión" + +#: sphinx_rtd_theme/footer.html:41 +#, python-format +msgid "Last updated on %(last_updated)s." +msgstr "Actualizado por última vez en %(last_updated)s." + +#. the variable "sphinx_web" is a link to the Sphinx project documentation +#. with +#. the text "Sphinx" +#: sphinx_rtd_theme/footer.html:52 +#, python-format +msgid "Built with %(sphinx_web)s using a" +msgstr "Construido con %(sphinx_web)s usando un" + +#. "theme" refers to a theme for Sphinx, which alters the appearance of the +#. generated documenation +#: sphinx_rtd_theme/footer.html:54 +msgid "theme" +msgstr "tema" + +#. this is always used as "provided by Read the Docs", and should not imply +#. Read the Docs is an author of the generated documentation. +#: sphinx_rtd_theme/footer.html:56 +#, python-format +msgid "provided by %(readthedocs_web)s" +msgstr "proporcionado por %(readthedocs_web)s" + +#: sphinx_rtd_theme/layout.html:79 +#, python-format +msgid "Search within %(docstitle)s" +msgstr "Buscar en %(docstitle)s" + +#: sphinx_rtd_theme/layout.html:87 +msgid "About these documents" +msgstr "Sobre esta documentación" + +#: sphinx_rtd_theme/layout.html:90 +msgid "Index" +msgstr "Índice" + +#: sphinx_rtd_theme/layout.html:93 sphinx_rtd_theme/search.html:11 +msgid "Search" +msgstr "Búsqueda" + +#: sphinx_rtd_theme/layout.html:121 +msgid "Documentation Home" +msgstr "Inicio de Documentación" + +#: sphinx_rtd_theme/layout.html:128 +msgid "Logo" +msgstr "Logotipo" + +#: sphinx_rtd_theme/search.html:29 +msgid "Please activate JavaScript to enable the search functionality." +msgstr "" +"Por favor, active JavaScript para habilitar la funcionalidad de búsqueda." + +#. Search is a noun, not a verb +#: sphinx_rtd_theme/search.html:37 +msgid "Search Results" +msgstr "Resultados de la búsqueda" + +#: sphinx_rtd_theme/search.html:39 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" +"Su búsqueda no coincide con ningún documento. Por favor, asegúrese de que " +"todas las palabras estén correctamente escritas y que usted haya " +"seleccionado las suficientes categorías." + +#: sphinx_rtd_theme/searchbox.html:4 +msgid "Search docs" +msgstr "Buscar documentos" + +#: sphinx_rtd_theme/versions.html:11 +msgid "Versions" +msgstr "Versiones" + +#: sphinx_rtd_theme/versions.html:17 +msgid "Downloads" +msgstr "Descargas" + +#. The phrase "Read the Docs" is not translated +#: sphinx_rtd_theme/versions.html:24 +msgid "On Read the Docs" +msgstr "En Read the Docs" + +#: sphinx_rtd_theme/versions.html:26 +msgid "Project Home" +msgstr "Página de Proyecto" + +#: sphinx_rtd_theme/versions.html:29 +msgid "Builds" +msgstr "Construcciones" + +#~ msgid "Docs" +#~ msgstr "Documentos" + +#~ msgid "Free document hosting provided by" +#~ msgstr "Alojamiento gratuito de documentos proporcionado por" diff -Nru mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/locale/et/LC_MESSAGES/sphinx.po mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/locale/et/LC_MESSAGES/sphinx.po --- mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/locale/et/LC_MESSAGES/sphinx.po 1970-01-01 00:00:00.000000000 +0000 +++ mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/locale/et/LC_MESSAGES/sphinx.po 2020-08-26 08:57:19.000000000 +0000 @@ -0,0 +1,155 @@ +# English translations for sphinx_rtd_theme. +# Copyright (C) 2019 ORGANIZATION +# This file is distributed under the same license as the sphinx_rtd_theme +# project. +# FIRST AUTHOR , 2019. +# +# Translators: +# Anthony , 2020 +# Ivar Smolin , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-05-06 13:38-0600\n" +"PO-Revision-Date: 2019-07-16 21:44+0000\n" +"Last-Translator: Ivar Smolin , 2020\n" +"Language-Team: Estonian (https://www.transifex.com/readthedocs/teams/101354/et/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.8.0\n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: sphinx_rtd_theme/breadcrumbs.html:43 sphinx_rtd_theme/breadcrumbs.html:45 +msgid "Edit on GitHub" +msgstr "Muuda GitHubis" + +#: sphinx_rtd_theme/breadcrumbs.html:50 sphinx_rtd_theme/breadcrumbs.html:52 +msgid "Edit on Bitbucket" +msgstr "Muuda Bitbucketis" + +#: sphinx_rtd_theme/breadcrumbs.html:57 sphinx_rtd_theme/breadcrumbs.html:59 +msgid "Edit on GitLab" +msgstr "Muuda GitLabis" + +#: sphinx_rtd_theme/breadcrumbs.html:62 sphinx_rtd_theme/breadcrumbs.html:64 +msgid "View page source" +msgstr "Vaata lehe lähtekoodi" + +#: sphinx_rtd_theme/breadcrumbs.html:74 sphinx_rtd_theme/footer.html:5 +msgid "Next" +msgstr "Järgmine" + +#: sphinx_rtd_theme/breadcrumbs.html:77 sphinx_rtd_theme/footer.html:8 +msgid "Previous" +msgstr "Eelmine" + +#: sphinx_rtd_theme/footer.html:21 sphinx_rtd_theme/footer.html:24 +#: sphinx_rtd_theme/layout.html:96 +msgid "Copyright" +msgstr "Autoriõigus" + +#. Build is a noun, not a verb +#: sphinx_rtd_theme/footer.html:31 +msgid "Build" +msgstr "Ehitus" + +#. the phrase "revision" comes from Git, referring to a commit +#: sphinx_rtd_theme/footer.html:37 +msgid "Revision" +msgstr "Redaktsioon" + +#: sphinx_rtd_theme/footer.html:41 +#, python-format +msgid "Last updated on %(last_updated)s." +msgstr "Viimati uuendatud %(last_updated)s." + +#. the variable "sphinx_web" is a link to the Sphinx project documentation +#. with +#. the text "Sphinx" +#: sphinx_rtd_theme/footer.html:52 +#, python-format +msgid "Built with %(sphinx_web)s using a" +msgstr "Ehitatud %(sphinx_web)s'iga," + +#. "theme" refers to a theme for Sphinx, which alters the appearance of the +#. generated documenation +#: sphinx_rtd_theme/footer.html:54 +msgid "theme" +msgstr "kujundusteema" + +#: sphinx_rtd_theme/layout.html:79 +#, python-format +msgid "Search within %(docstitle)s" +msgstr "Otsi dokumendist %(docstitle)s" + +#: sphinx_rtd_theme/layout.html:87 +msgid "About these documents" +msgstr "Nende dokumentide kirjeldused" + +#: sphinx_rtd_theme/layout.html:90 +msgid "Index" +msgstr "Indeks" + +#: sphinx_rtd_theme/layout.html:93 sphinx_rtd_theme/search.html:11 +msgid "Search" +msgstr "Otsing" + +#: sphinx_rtd_theme/layout.html:121 +msgid "Documentation Home" +msgstr "Dokumentatsiooni kodu" + +#: sphinx_rtd_theme/layout.html:128 +msgid "Logo" +msgstr "Logo" + +#: sphinx_rtd_theme/search.html:29 +msgid "Please activate JavaScript to enable the search functionality." +msgstr "Otsimisfunktsiooni lubamiseks aktiveeri palun JavaScript" + +#. Search is a noun, not a verb +#: sphinx_rtd_theme/search.html:37 +msgid "Search Results" +msgstr "Otsingu tulemused" + +#: sphinx_rtd_theme/search.html:39 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" +"Sinu otsingule ei vastanud ükski dokument. Palun veendu, et kõik sisestatud " +"sõnad on õigesti kirjutatud ja sa oled valikud piisaval hulgal kategooriaid." + +#: sphinx_rtd_theme/searchbox.html:4 +msgid "Search docs" +msgstr "Otsi dokumente" + +#: sphinx_rtd_theme/versions.html:11 +msgid "Versions" +msgstr "Versioonid" + +#: sphinx_rtd_theme/versions.html:17 +msgid "Downloads" +msgstr "Allalaadimised" + +#. The phrase "Read the Docs" is not translated +#: sphinx_rtd_theme/versions.html:24 +msgid "On Read the Docs" +msgstr "Saidil Read the Docs" + +#: sphinx_rtd_theme/versions.html:26 +msgid "Project Home" +msgstr "Projekti kodu" + +#: sphinx_rtd_theme/versions.html:29 +msgid "Builds" +msgstr "Ehitused" + +#~ msgid "Docs" +#~ msgstr "Dokumendid" + +#~ msgid "Free document hosting provided by" +#~ msgstr "Dokumentatsiooni majutab tasuta" diff -Nru mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/locale/fr/LC_MESSAGES/sphinx.po mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/locale/fr/LC_MESSAGES/sphinx.po --- mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/locale/fr/LC_MESSAGES/sphinx.po 1970-01-01 00:00:00.000000000 +0000 +++ mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/locale/fr/LC_MESSAGES/sphinx.po 2020-08-26 08:57:19.000000000 +0000 @@ -0,0 +1,154 @@ +# English translations for sphinx_rtd_theme. +# Copyright (C) 2019 ORGANIZATION +# This file is distributed under the same license as the sphinx_rtd_theme +# project. +# FIRST AUTHOR , 2019. +# +# Translators: +# Radina Matic , 2020 +# Anthony , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-05-06 13:38-0600\n" +"PO-Revision-Date: 2019-07-16 21:44+0000\n" +"Last-Translator: Anthony , 2020\n" +"Language-Team: French (https://www.transifex.com/readthedocs/teams/101354/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.8.0\n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: sphinx_rtd_theme/breadcrumbs.html:43 sphinx_rtd_theme/breadcrumbs.html:45 +msgid "Edit on GitHub" +msgstr "Éditer sur GitHub" + +#: sphinx_rtd_theme/breadcrumbs.html:50 sphinx_rtd_theme/breadcrumbs.html:52 +msgid "Edit on Bitbucket" +msgstr "Éditer sur Bitbucket" + +#: sphinx_rtd_theme/breadcrumbs.html:57 sphinx_rtd_theme/breadcrumbs.html:59 +msgid "Edit on GitLab" +msgstr "Éditer sur GitLab" + +#: sphinx_rtd_theme/breadcrumbs.html:62 sphinx_rtd_theme/breadcrumbs.html:64 +msgid "View page source" +msgstr "Afficher la source de la page" + +#: sphinx_rtd_theme/breadcrumbs.html:74 sphinx_rtd_theme/footer.html:5 +msgid "Next" +msgstr "Suivant" + +#: sphinx_rtd_theme/breadcrumbs.html:77 sphinx_rtd_theme/footer.html:8 +msgid "Previous" +msgstr "Précédent" + +#: sphinx_rtd_theme/footer.html:21 sphinx_rtd_theme/footer.html:24 +#: sphinx_rtd_theme/layout.html:96 +msgid "Copyright" +msgstr "Droits d'auteur" + +#. Build is a noun, not a verb +#: sphinx_rtd_theme/footer.html:31 +msgid "Build" +msgstr "Compilation" + +#. the phrase "revision" comes from Git, referring to a commit +#: sphinx_rtd_theme/footer.html:37 +msgid "Revision" +msgstr "Révision" + +#: sphinx_rtd_theme/footer.html:41 +#, python-format +msgid "Last updated on %(last_updated)s." +msgstr "Dernière mise à jour le %(last_updated)s." + +#. the variable "sphinx_web" is a link to the Sphinx project documentation +#. with +#. the text "Sphinx" +#: sphinx_rtd_theme/footer.html:52 +#, python-format +msgid "Built with %(sphinx_web)s using a" +msgstr "Compilé avec %(sphinx_web)s en utilisant un" + +#. "theme" refers to a theme for Sphinx, which alters the appearance of the +#. generated documenation +#: sphinx_rtd_theme/footer.html:54 +msgid "theme" +msgstr "thème" + +#. this is always used as "provided by Read the Docs", and should not imply +#. Read the Docs is an author of the generated documentation. +#: sphinx_rtd_theme/footer.html:56 +#, python-format +msgid "provided by %(readthedocs_web)s" +msgstr "fourni par %(readthedocs_web)s" + +#: sphinx_rtd_theme/layout.html:79 +#, python-format +msgid "Search within %(docstitle)s" +msgstr "Rechercher dans %(docstitle)s" + +#: sphinx_rtd_theme/layout.html:87 +msgid "About these documents" +msgstr "À propos de cette documentation" + +#: sphinx_rtd_theme/layout.html:90 +msgid "Index" +msgstr "Index" + +#: sphinx_rtd_theme/layout.html:93 sphinx_rtd_theme/search.html:11 +msgid "Search" +msgstr "Rechercher" + +#: sphinx_rtd_theme/layout.html:128 +msgid "Logo" +msgstr "Logo" + +#: sphinx_rtd_theme/search.html:29 +msgid "Please activate JavaScript to enable the search functionality." +msgstr "Activez JavaScript pour accéder à la fonction de recherche." + +#. Search is a noun, not a verb +#: sphinx_rtd_theme/search.html:37 +msgid "Search Results" +msgstr "Résultats de la recherche" + +#: sphinx_rtd_theme/search.html:39 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" +"Votre recherche ne correspond à aucun document. Assurez-vous que tous les " +"mots sont correctement orthographiés et que vous avez sélectionné " +"suffisamment de catégories." + +#: sphinx_rtd_theme/searchbox.html:4 +msgid "Search docs" +msgstr "Rechercher docs" + +#: sphinx_rtd_theme/versions.html:11 +msgid "Versions" +msgstr "Versions" + +#: sphinx_rtd_theme/versions.html:17 +msgid "Downloads" +msgstr "Téléchargements" + +#: sphinx_rtd_theme/versions.html:26 +msgid "Project Home" +msgstr "Accueil du projet" + +#: sphinx_rtd_theme/versions.html:29 +msgid "Builds" +msgstr "Compilations" + +#~ msgid "Docs" +#~ msgstr "Docs" + +#~ msgid "Free document hosting provided by" +#~ msgstr "Hébergement gratuit de documents fourni par" diff -Nru mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/locale/nl/LC_MESSAGES/sphinx.po mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/locale/nl/LC_MESSAGES/sphinx.po --- mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/locale/nl/LC_MESSAGES/sphinx.po 1970-01-01 00:00:00.000000000 +0000 +++ mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/locale/nl/LC_MESSAGES/sphinx.po 2020-08-26 08:57:19.000000000 +0000 @@ -0,0 +1,157 @@ +# English translations for sphinx_rtd_theme. +# Copyright (C) 2019 ORGANIZATION +# This file is distributed under the same license as the sphinx_rtd_theme +# project. +# FIRST AUTHOR , 2019. +# +# Translators: +# Jesse Tan, 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-05-06 13:38-0600\n" +"PO-Revision-Date: 2019-07-16 21:44+0000\n" +"Last-Translator: Jesse Tan, 2019\n" +"Language-Team: Dutch (https://www.transifex.com/readthedocs/teams/101354/nl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.8.0\n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: sphinx_rtd_theme/breadcrumbs.html:43 sphinx_rtd_theme/breadcrumbs.html:45 +msgid "Edit on GitHub" +msgstr "Bewerk op GitHub" + +#: sphinx_rtd_theme/breadcrumbs.html:50 sphinx_rtd_theme/breadcrumbs.html:52 +msgid "Edit on Bitbucket" +msgstr "Bewerk op BitBucket" + +#: sphinx_rtd_theme/breadcrumbs.html:57 sphinx_rtd_theme/breadcrumbs.html:59 +msgid "Edit on GitLab" +msgstr "Bewerk op GitLab" + +#: sphinx_rtd_theme/breadcrumbs.html:62 sphinx_rtd_theme/breadcrumbs.html:64 +msgid "View page source" +msgstr "Bekijk paginabron" + +#: sphinx_rtd_theme/breadcrumbs.html:74 sphinx_rtd_theme/footer.html:5 +msgid "Next" +msgstr "Volgende" + +#: sphinx_rtd_theme/breadcrumbs.html:77 sphinx_rtd_theme/footer.html:8 +msgid "Previous" +msgstr "Vorige" + +#: sphinx_rtd_theme/footer.html:21 sphinx_rtd_theme/footer.html:24 +#: sphinx_rtd_theme/layout.html:96 +msgid "Copyright" +msgstr "Copyright" + +#. Build is a noun, not a verb +#: sphinx_rtd_theme/footer.html:31 +msgid "Build" +msgstr "Bouwresultaat" + +#. the phrase "revision" comes from Git, referring to a commit +#: sphinx_rtd_theme/footer.html:37 +msgid "Revision" +msgstr "Revisie" + +#: sphinx_rtd_theme/footer.html:41 +#, python-format +msgid "Last updated on %(last_updated)s." +msgstr "Laatste update op %(last_updated)s." + +#. the variable "sphinx_web" is a link to the Sphinx project documentation +#. with +#. the text "Sphinx" +#: sphinx_rtd_theme/footer.html:52 +#, python-format +msgid "Built with %(sphinx_web)s using a" +msgstr "Gebouwd met %(sphinx_web)s met een" + +#. "theme" refers to a theme for Sphinx, which alters the appearance of the +#. generated documenation +#: sphinx_rtd_theme/footer.html:54 +msgid "theme" +msgstr "thema" + +#. this is always used as "provided by Read the Docs", and should not imply +#. Read the Docs is an author of the generated documentation. +#: sphinx_rtd_theme/footer.html:56 +#, python-format +msgid "provided by %(readthedocs_web)s" +msgstr "geleverd door %(readthedocs_web)s" + +#: sphinx_rtd_theme/layout.html:79 +#, python-format +msgid "Search within %(docstitle)s" +msgstr "Zoek binnen %(docstitle)s" + +#: sphinx_rtd_theme/layout.html:87 +msgid "About these documents" +msgstr "Over deze documenten" + +#: sphinx_rtd_theme/layout.html:90 +msgid "Index" +msgstr "Index" + +#: sphinx_rtd_theme/layout.html:93 sphinx_rtd_theme/search.html:11 +msgid "Search" +msgstr "Zoek" + +#: sphinx_rtd_theme/layout.html:128 +msgid "Logo" +msgstr "Logo" + +#: sphinx_rtd_theme/search.html:29 +msgid "Please activate JavaScript to enable the search functionality." +msgstr "Zet JavaScript aan om de zoekfunctie mogelijk te maken." + +#. Search is a noun, not a verb +#: sphinx_rtd_theme/search.html:37 +msgid "Search Results" +msgstr "Zoekresultaten" + +#: sphinx_rtd_theme/search.html:39 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" +"Zoekpoging vond geen documenten. Zorg ervoor dat alle woorden correct zijn " +"gespeld en dat voldoende categorieën zijn geselecteerd." + +#: sphinx_rtd_theme/searchbox.html:4 +msgid "Search docs" +msgstr "Zoek in documentatie" + +#: sphinx_rtd_theme/versions.html:11 +msgid "Versions" +msgstr "Versies" + +#: sphinx_rtd_theme/versions.html:17 +msgid "Downloads" +msgstr "Downloads" + +#. The phrase "Read the Docs" is not translated +#: sphinx_rtd_theme/versions.html:24 +msgid "On Read the Docs" +msgstr "Op Read the Docs" + +#: sphinx_rtd_theme/versions.html:26 +msgid "Project Home" +msgstr "Project Home" + +#: sphinx_rtd_theme/versions.html:29 +msgid "Builds" +msgstr "Bouwresultaten" + +#~ msgid "Docs" +#~ msgstr "Documentatie" + +#~ msgid "Free document hosting provided by" +#~ msgstr "Gratis hosting voor documentatie verzorgd door" diff -Nru mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/locale/pt_BR/LC_MESSAGES/sphinx.po mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/locale/pt_BR/LC_MESSAGES/sphinx.po --- mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/locale/pt_BR/LC_MESSAGES/sphinx.po 1970-01-01 00:00:00.000000000 +0000 +++ mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/locale/pt_BR/LC_MESSAGES/sphinx.po 2020-08-26 08:57:19.000000000 +0000 @@ -0,0 +1,159 @@ +# English translations for sphinx_rtd_theme. +# Copyright (C) 2019 ORGANIZATION +# This file is distributed under the same license as the sphinx_rtd_theme +# project. +# FIRST AUTHOR , 2019. +# +# Translators: +# Rafael Fontenelle , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-05-06 13:38-0600\n" +"PO-Revision-Date: 2019-07-16 21:44+0000\n" +"Last-Translator: Rafael Fontenelle , 2020\n" +"Language-Team: Portuguese (Brazil) (https://www.transifex.com/readthedocs/teams/101354/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.8.0\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: sphinx_rtd_theme/breadcrumbs.html:43 sphinx_rtd_theme/breadcrumbs.html:45 +msgid "Edit on GitHub" +msgstr "Editar no GitHub" + +#: sphinx_rtd_theme/breadcrumbs.html:50 sphinx_rtd_theme/breadcrumbs.html:52 +msgid "Edit on Bitbucket" +msgstr "Editar no Bitbucket" + +#: sphinx_rtd_theme/breadcrumbs.html:57 sphinx_rtd_theme/breadcrumbs.html:59 +msgid "Edit on GitLab" +msgstr "Editar no GitLab" + +#: sphinx_rtd_theme/breadcrumbs.html:62 sphinx_rtd_theme/breadcrumbs.html:64 +msgid "View page source" +msgstr "Ver código-fonte da página" + +#: sphinx_rtd_theme/breadcrumbs.html:74 sphinx_rtd_theme/footer.html:5 +msgid "Next" +msgstr "Próximo" + +#: sphinx_rtd_theme/breadcrumbs.html:77 sphinx_rtd_theme/footer.html:8 +msgid "Previous" +msgstr "Anterior" + +#: sphinx_rtd_theme/footer.html:21 sphinx_rtd_theme/footer.html:24 +#: sphinx_rtd_theme/layout.html:96 +msgid "Copyright" +msgstr "Copyright" + +#. Build is a noun, not a verb +#: sphinx_rtd_theme/footer.html:31 +msgid "Build" +msgstr "Compilação" + +#. the phrase "revision" comes from Git, referring to a commit +#: sphinx_rtd_theme/footer.html:37 +msgid "Revision" +msgstr "Revisão" + +#: sphinx_rtd_theme/footer.html:41 +#, python-format +msgid "Last updated on %(last_updated)s." +msgstr "Última atualização em %(last_updated)s." + +#. the variable "sphinx_web" is a link to the Sphinx project documentation +#. with +#. the text "Sphinx" +#: sphinx_rtd_theme/footer.html:52 +#, python-format +msgid "Built with %(sphinx_web)s using a" +msgstr "Compilado com %(sphinx_web)s usando um" + +#. "theme" refers to a theme for Sphinx, which alters the appearance of the +#. generated documenation +#: sphinx_rtd_theme/footer.html:54 +msgid "theme" +msgstr "tema" + +#. this is always used as "provided by Read the Docs", and should not imply +#. Read the Docs is an author of the generated documentation. +#: sphinx_rtd_theme/footer.html:56 +#, python-format +msgid "provided by %(readthedocs_web)s" +msgstr "fornecido por %(readthedocs_web)s" + +#: sphinx_rtd_theme/layout.html:79 +#, python-format +msgid "Search within %(docstitle)s" +msgstr "Pesquisar em %(docstitle)s" + +#: sphinx_rtd_theme/layout.html:87 +msgid "About these documents" +msgstr "Sobre esses documentos" + +#: sphinx_rtd_theme/layout.html:90 +msgid "Index" +msgstr "Índice" + +#: sphinx_rtd_theme/layout.html:93 sphinx_rtd_theme/search.html:11 +msgid "Search" +msgstr "Pesquisar" + +#: sphinx_rtd_theme/layout.html:128 +msgid "Logo" +msgstr "Logo" + +#: sphinx_rtd_theme/search.html:29 +msgid "Please activate JavaScript to enable the search functionality." +msgstr "" +"Por favor, ative JavaScript para habilitar a funcionalidade de pesquisa." + +#. Search is a noun, not a verb +#: sphinx_rtd_theme/search.html:37 +msgid "Search Results" +msgstr "Resultados da pesquisa" + +#: sphinx_rtd_theme/search.html:39 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" +"A sua pesquisa não encontrou nenhum documento correspondente. Verifique se " +"todas as palavras estão escritas corretamente e se você selecionou " +"categorias suficientes." + +#: sphinx_rtd_theme/searchbox.html:4 +msgid "Search docs" +msgstr "Pesquisar documentos" + +#: sphinx_rtd_theme/versions.html:11 +msgid "Versions" +msgstr "Versões" + +#: sphinx_rtd_theme/versions.html:17 +msgid "Downloads" +msgstr "Downloads" + +#. The phrase "Read the Docs" is not translated +#: sphinx_rtd_theme/versions.html:24 +msgid "On Read the Docs" +msgstr "No Read the Docs" + +#: sphinx_rtd_theme/versions.html:26 +msgid "Project Home" +msgstr "Página inicial" + +#: sphinx_rtd_theme/versions.html:29 +msgid "Builds" +msgstr "Compilações" + +#~ msgid "Docs" +#~ msgstr "Docs" + +#~ msgid "Free document hosting provided by" +#~ msgstr "Hospedagem de documentos livres fornecida por" diff -Nru mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/locale/ru/LC_MESSAGES/sphinx.po mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/locale/ru/LC_MESSAGES/sphinx.po --- mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/locale/ru/LC_MESSAGES/sphinx.po 1970-01-01 00:00:00.000000000 +0000 +++ mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/locale/ru/LC_MESSAGES/sphinx.po 2020-08-26 08:57:19.000000000 +0000 @@ -0,0 +1,158 @@ +# English translations for sphinx_rtd_theme. +# Copyright (C) 2019 ORGANIZATION +# This file is distributed under the same license as the sphinx_rtd_theme +# project. +# FIRST AUTHOR , 2019. +# +# Translators: +# Dmitry Shachnev , 2019 +# lvv83 , 2019 +# +msgid "" +msgstr "" +"Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-05-06 13:38-0600\n" +"PO-Revision-Date: 2019-07-16 21:44+0000\n" +"Last-Translator: lvv83 , 2019\n" +"Language-Team: Russian (https://www.transifex.com/readthedocs/teams/101354/ru/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.8.0\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" + +#: sphinx_rtd_theme/breadcrumbs.html:43 sphinx_rtd_theme/breadcrumbs.html:45 +msgid "Edit on GitHub" +msgstr "Редактировать на GitHub" + +#: sphinx_rtd_theme/breadcrumbs.html:50 sphinx_rtd_theme/breadcrumbs.html:52 +msgid "Edit on Bitbucket" +msgstr "Редактировать на BitBucket" + +#: sphinx_rtd_theme/breadcrumbs.html:57 sphinx_rtd_theme/breadcrumbs.html:59 +msgid "Edit on GitLab" +msgstr "Редактировать на GitLab" + +#: sphinx_rtd_theme/breadcrumbs.html:62 sphinx_rtd_theme/breadcrumbs.html:64 +msgid "View page source" +msgstr "Просмотреть исходный код страницы" + +#: sphinx_rtd_theme/breadcrumbs.html:74 sphinx_rtd_theme/footer.html:5 +msgid "Next" +msgstr "Следующая" + +#: sphinx_rtd_theme/breadcrumbs.html:77 sphinx_rtd_theme/footer.html:8 +msgid "Previous" +msgstr "Предыдущая" + +#: sphinx_rtd_theme/footer.html:21 sphinx_rtd_theme/footer.html:24 +#: sphinx_rtd_theme/layout.html:96 +msgid "Copyright" +msgstr "Авторские права" + +#. Build is a noun, not a verb +#: sphinx_rtd_theme/footer.html:31 +msgid "Build" +msgstr "Сборка" + +#. the phrase "revision" comes from Git, referring to a commit +#: sphinx_rtd_theme/footer.html:37 +msgid "Revision" +msgstr "Ревизия" + +#: sphinx_rtd_theme/footer.html:41 +#, python-format +msgid "Last updated on %(last_updated)s." +msgstr "Последний раз обновлено %(last_updated)s." + +#. the variable "sphinx_web" is a link to the Sphinx project documentation +#. with +#. the text "Sphinx" +#: sphinx_rtd_theme/footer.html:52 +#, python-format +msgid "Built with %(sphinx_web)s using a" +msgstr "Собрано при помощи %(sphinx_web)s с использованием" + +#. "theme" refers to a theme for Sphinx, which alters the appearance of the +#. generated documenation +#: sphinx_rtd_theme/footer.html:54 +msgid "theme" +msgstr "темы," + +#. this is always used as "provided by Read the Docs", and should not imply +#. Read the Docs is an author of the generated documentation. +#: sphinx_rtd_theme/footer.html:56 +#, python-format +msgid "provided by %(readthedocs_web)s" +msgstr "предоставленной %(readthedocs_web)s" + +#: sphinx_rtd_theme/layout.html:79 +#, python-format +msgid "Search within %(docstitle)s" +msgstr "Поиск в %(docstitle)s" + +#: sphinx_rtd_theme/layout.html:87 +msgid "About these documents" +msgstr "Об этих документах" + +#: sphinx_rtd_theme/layout.html:90 +msgid "Index" +msgstr "Алфавитный указатель" + +#: sphinx_rtd_theme/layout.html:93 sphinx_rtd_theme/search.html:11 +msgid "Search" +msgstr "Поиск" + +#: sphinx_rtd_theme/layout.html:128 +msgid "Logo" +msgstr "Логотип" + +#: sphinx_rtd_theme/search.html:29 +msgid "Please activate JavaScript to enable the search functionality." +msgstr "Активируйте JavaScript, чтобы использовать функционал поиска." + +#. Search is a noun, not a verb +#: sphinx_rtd_theme/search.html:37 +msgid "Search Results" +msgstr "Результаты поиска" + +#: sphinx_rtd_theme/search.html:39 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" +"По Вашему запросу не найдено результатов. Пожалуйста, проверьте, что все " +"слова написаны правильно, и Вы выбрали нужные категории." + +#: sphinx_rtd_theme/searchbox.html:4 +msgid "Search docs" +msgstr "Поиск в документации" + +#: sphinx_rtd_theme/versions.html:11 +msgid "Versions" +msgstr "Версии" + +#: sphinx_rtd_theme/versions.html:17 +msgid "Downloads" +msgstr "Загрузки" + +#. The phrase "Read the Docs" is not translated +#: sphinx_rtd_theme/versions.html:24 +msgid "On Read the Docs" +msgstr "На Read the Docs" + +#: sphinx_rtd_theme/versions.html:26 +msgid "Project Home" +msgstr "Домашняя страница проекта" + +#: sphinx_rtd_theme/versions.html:29 +msgid "Builds" +msgstr "Сборки" + +#~ msgid "Docs" +#~ msgstr "Документация" + +#~ msgid "Free document hosting provided by" +#~ msgstr "Бесплатный хостинг документов, предоставленный" diff -Nru mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/locale/sphinx.pot mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/locale/sphinx.pot --- mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/locale/sphinx.pot 1970-01-01 00:00:00.000000000 +0000 +++ mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/locale/sphinx.pot 2020-08-26 08:57:19.000000000 +0000 @@ -0,0 +1,149 @@ +# Translations template for sphinx_rtd_theme. +# Copyright (C) 2020 ORGANIZATION +# This file is distributed under the same license as the sphinx_rtd_theme +# project. +# FIRST AUTHOR , 2020. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-05-06 13:38-0600\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.8.0\n" + +#: sphinx_rtd_theme/breadcrumbs.html:43 sphinx_rtd_theme/breadcrumbs.html:45 +msgid "Edit on GitHub" +msgstr "" + +#: sphinx_rtd_theme/breadcrumbs.html:50 sphinx_rtd_theme/breadcrumbs.html:52 +msgid "Edit on Bitbucket" +msgstr "" + +#: sphinx_rtd_theme/breadcrumbs.html:57 sphinx_rtd_theme/breadcrumbs.html:59 +msgid "Edit on GitLab" +msgstr "" + +#: sphinx_rtd_theme/breadcrumbs.html:62 sphinx_rtd_theme/breadcrumbs.html:64 +msgid "View page source" +msgstr "" + +#: sphinx_rtd_theme/breadcrumbs.html:74 sphinx_rtd_theme/footer.html:5 +msgid "Next" +msgstr "" + +#: sphinx_rtd_theme/breadcrumbs.html:77 sphinx_rtd_theme/footer.html:8 +msgid "Previous" +msgstr "" + +#: sphinx_rtd_theme/footer.html:21 sphinx_rtd_theme/footer.html:24 +#: sphinx_rtd_theme/layout.html:96 +msgid "Copyright" +msgstr "" + +#. Build is a noun, not a verb +#: sphinx_rtd_theme/footer.html:31 +msgid "Build" +msgstr "" + +#. the phrase "revision" comes from Git, referring to a commit +#: sphinx_rtd_theme/footer.html:37 +msgid "Revision" +msgstr "" + +#: sphinx_rtd_theme/footer.html:41 +#, python-format +msgid "Last updated on %(last_updated)s." +msgstr "" + +#. the variable "sphinx_web" is a link to the Sphinx project documentation with +#. the text "Sphinx" +#: sphinx_rtd_theme/footer.html:52 +#, python-format +msgid "Built with %(sphinx_web)s using a" +msgstr "" + +#. "theme" refers to a theme for Sphinx, which alters the appearance of the +#. generated documenation +#: sphinx_rtd_theme/footer.html:54 +msgid "theme" +msgstr "" + +#. this is always used as "provided by Read the Docs", and should not imply +#. Read the Docs is an author of the generated documentation. +#: sphinx_rtd_theme/footer.html:56 +#, python-format +msgid "provided by %(readthedocs_web)s" +msgstr "" + +#: sphinx_rtd_theme/layout.html:79 +#, python-format +msgid "Search within %(docstitle)s" +msgstr "" + +#: sphinx_rtd_theme/layout.html:87 +msgid "About these documents" +msgstr "" + +#: sphinx_rtd_theme/layout.html:90 +msgid "Index" +msgstr "" + +#: sphinx_rtd_theme/layout.html:93 sphinx_rtd_theme/search.html:11 +msgid "Search" +msgstr "" + +#: sphinx_rtd_theme/layout.html:121 +msgid "Documentation Home" +msgstr "" + +#: sphinx_rtd_theme/layout.html:128 +msgid "Logo" +msgstr "" + +#: sphinx_rtd_theme/search.html:29 +msgid "Please activate JavaScript to enable the search functionality." +msgstr "" + +#. Search is a noun, not a verb +#: sphinx_rtd_theme/search.html:37 +msgid "Search Results" +msgstr "" + +#: sphinx_rtd_theme/search.html:39 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" + +#: sphinx_rtd_theme/searchbox.html:4 +msgid "Search docs" +msgstr "" + +#: sphinx_rtd_theme/versions.html:11 +msgid "Versions" +msgstr "" + +#: sphinx_rtd_theme/versions.html:17 +msgid "Downloads" +msgstr "" + +#. The phrase "Read the Docs" is not translated +#: sphinx_rtd_theme/versions.html:24 +msgid "On Read the Docs" +msgstr "" + +#: sphinx_rtd_theme/versions.html:26 +msgid "Project Home" +msgstr "" + +#: sphinx_rtd_theme/versions.html:29 +msgid "Builds" +msgstr "" + diff -Nru mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/locale/sv/LC_MESSAGES/sphinx.po mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/locale/sv/LC_MESSAGES/sphinx.po --- mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/locale/sv/LC_MESSAGES/sphinx.po 1970-01-01 00:00:00.000000000 +0000 +++ mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/locale/sv/LC_MESSAGES/sphinx.po 2020-08-26 08:57:19.000000000 +0000 @@ -0,0 +1,158 @@ +# English translations for sphinx_rtd_theme. +# Copyright (C) 2019 ORGANIZATION +# This file is distributed under the same license as the sphinx_rtd_theme +# project. +# FIRST AUTHOR , 2019. +# +# Translators: +# Daniel Holmberg , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-05-06 13:38-0600\n" +"PO-Revision-Date: 2019-07-16 21:44+0000\n" +"Last-Translator: Daniel Holmberg , 2020\n" +"Language-Team: Swedish (https://www.transifex.com/readthedocs/teams/101354/sv/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.8.0\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: sphinx_rtd_theme/breadcrumbs.html:43 sphinx_rtd_theme/breadcrumbs.html:45 +msgid "Edit on GitHub" +msgstr "Editera på GitHub" + +#: sphinx_rtd_theme/breadcrumbs.html:50 sphinx_rtd_theme/breadcrumbs.html:52 +msgid "Edit on Bitbucket" +msgstr "Editera på Bitbucket" + +#: sphinx_rtd_theme/breadcrumbs.html:57 sphinx_rtd_theme/breadcrumbs.html:59 +msgid "Edit on GitLab" +msgstr "Editera på GitLab" + +#: sphinx_rtd_theme/breadcrumbs.html:62 sphinx_rtd_theme/breadcrumbs.html:64 +msgid "View page source" +msgstr "Visa sidkälla" + +#: sphinx_rtd_theme/breadcrumbs.html:74 sphinx_rtd_theme/footer.html:5 +msgid "Next" +msgstr "Nästa" + +#: sphinx_rtd_theme/breadcrumbs.html:77 sphinx_rtd_theme/footer.html:8 +msgid "Previous" +msgstr "Tillbaka" + +#: sphinx_rtd_theme/footer.html:21 sphinx_rtd_theme/footer.html:24 +#: sphinx_rtd_theme/layout.html:96 +msgid "Copyright" +msgstr "Upphovsrätt" + +#. Build is a noun, not a verb +#: sphinx_rtd_theme/footer.html:31 +msgid "Build" +msgstr "Bygg" + +#. the phrase "revision" comes from Git, referring to a commit +#: sphinx_rtd_theme/footer.html:37 +msgid "Revision" +msgstr "Ändra" + +#: sphinx_rtd_theme/footer.html:41 +#, python-format +msgid "Last updated on %(last_updated)s." +msgstr "Senast uppdaterad %(last_updated)s." + +#. the variable "sphinx_web" is a link to the Sphinx project documentation +#. with +#. the text "Sphinx" +#: sphinx_rtd_theme/footer.html:52 +#, python-format +msgid "Built with %(sphinx_web)s using a" +msgstr "Gjord med %(sphinx_web)s med hjälp av" + +#. "theme" refers to a theme for Sphinx, which alters the appearance of the +#. generated documenation +#: sphinx_rtd_theme/footer.html:54 +msgid "theme" +msgstr "tema" + +#. this is always used as "provided by Read the Docs", and should not imply +#. Read the Docs is an author of the generated documentation. +#: sphinx_rtd_theme/footer.html:56 +#, python-format +msgid "provided by %(readthedocs_web)s" +msgstr "erhållet av %(readthedocs_web)s" + +#: sphinx_rtd_theme/layout.html:79 +#, python-format +msgid "Search within %(docstitle)s" +msgstr "Sök i %(docstitle)s" + +#: sphinx_rtd_theme/layout.html:87 +msgid "About these documents" +msgstr "Om dessa dokument" + +#: sphinx_rtd_theme/layout.html:90 +msgid "Index" +msgstr "Index" + +#: sphinx_rtd_theme/layout.html:93 sphinx_rtd_theme/search.html:11 +msgid "Search" +msgstr "Sök" + +#: sphinx_rtd_theme/layout.html:121 +msgid "Documentation Home" +msgstr "Dokumentation Hem" + +#: sphinx_rtd_theme/layout.html:128 +msgid "Logo" +msgstr "Logo" + +#: sphinx_rtd_theme/search.html:29 +msgid "Please activate JavaScript to enable the search functionality." +msgstr "" +"Var vänlig och aktivera JavaScript för att möjliggöra sökfunktionaliteten." + +#. Search is a noun, not a verb +#: sphinx_rtd_theme/search.html:37 +msgid "Search Results" +msgstr "Sökresultat" + +#: sphinx_rtd_theme/search.html:39 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" +"Din sökning gav inga träffar. Var vänlig och se till att alla ord är rätt " +"stavade och att du har valt tillräckligt många kategorier." + +#: sphinx_rtd_theme/searchbox.html:4 +msgid "Search docs" +msgstr "Sök i dokumentationen" + +#: sphinx_rtd_theme/versions.html:11 +msgid "Versions" +msgstr "Versioner" + +#: sphinx_rtd_theme/versions.html:17 +msgid "Downloads" +msgstr "Nerladdningar" + +#. The phrase "Read the Docs" is not translated +#: sphinx_rtd_theme/versions.html:24 +msgid "On Read the Docs" +msgstr "På Read the Docs" + +#: sphinx_rtd_theme/versions.html:26 +msgid "Project Home" +msgstr "Projekt Hem" + +#~ msgid "Docs" +#~ msgstr "Dokumentation" + +#~ msgid "Free document hosting provided by" +#~ msgstr "Gratis dokumentations hysning erhållen av" diff -Nru mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/locale/tr/LC_MESSAGES/sphinx.po mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/locale/tr/LC_MESSAGES/sphinx.po --- mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/locale/tr/LC_MESSAGES/sphinx.po 1970-01-01 00:00:00.000000000 +0000 +++ mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/locale/tr/LC_MESSAGES/sphinx.po 2020-08-26 08:57:19.000000000 +0000 @@ -0,0 +1,147 @@ +# English translations for sphinx_rtd_theme. +# Copyright (C) 2019 ORGANIZATION +# This file is distributed under the same license as the sphinx_rtd_theme +# project. +# FIRST AUTHOR , 2019. +# +# Translators: +# BouRock, 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-05-06 13:38-0600\n" +"PO-Revision-Date: 2019-07-16 21:44+0000\n" +"Last-Translator: BouRock, 2020\n" +"Language-Team: Turkish (https://www.transifex.com/readthedocs/teams/101354/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.8.0\n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: sphinx_rtd_theme/breadcrumbs.html:43 sphinx_rtd_theme/breadcrumbs.html:45 +msgid "Edit on GitHub" +msgstr "GitHub'da Düzenle" + +#: sphinx_rtd_theme/breadcrumbs.html:50 sphinx_rtd_theme/breadcrumbs.html:52 +msgid "Edit on Bitbucket" +msgstr "Bitbucket'ta Düzenle" + +#: sphinx_rtd_theme/breadcrumbs.html:57 sphinx_rtd_theme/breadcrumbs.html:59 +msgid "Edit on GitLab" +msgstr "GitLab'ta Düzenle" + +#: sphinx_rtd_theme/breadcrumbs.html:62 sphinx_rtd_theme/breadcrumbs.html:64 +msgid "View page source" +msgstr "Sayfa kaynağını görüntüle" + +#: sphinx_rtd_theme/breadcrumbs.html:74 sphinx_rtd_theme/footer.html:5 +msgid "Next" +msgstr "Sonraki" + +#: sphinx_rtd_theme/breadcrumbs.html:77 sphinx_rtd_theme/footer.html:8 +msgid "Previous" +msgstr "Önceki" + +#: sphinx_rtd_theme/footer.html:21 sphinx_rtd_theme/footer.html:24 +#: sphinx_rtd_theme/layout.html:96 +msgid "Copyright" +msgstr "Telif hakkı" + +#. Build is a noun, not a verb +#: sphinx_rtd_theme/footer.html:31 +msgid "Build" +msgstr "Oluşturma" + +#. the phrase "revision" comes from Git, referring to a commit +#: sphinx_rtd_theme/footer.html:37 +msgid "Revision" +msgstr "Gözden geçirme" + +#: sphinx_rtd_theme/footer.html:41 +#, python-format +msgid "Last updated on %(last_updated)s." +msgstr "Son olarak %(last_updated)s tarihinde güncellendi." + +#. "theme" refers to a theme for Sphinx, which alters the appearance of the +#. generated documenation +#: sphinx_rtd_theme/footer.html:54 +msgid "theme" +msgstr "tema" + +#. this is always used as "provided by Read the Docs", and should not imply +#. Read the Docs is an author of the generated documentation. +#: sphinx_rtd_theme/footer.html:56 +#, python-format +msgid "provided by %(readthedocs_web)s" +msgstr "kullanılarak %(readthedocs_web)s tarafından sağlanmasıyla oluşturuldu" + +#: sphinx_rtd_theme/layout.html:79 +#, python-format +msgid "Search within %(docstitle)s" +msgstr "%(docstitle)s içinde ara" + +#: sphinx_rtd_theme/layout.html:87 +msgid "About these documents" +msgstr "Bu belgeler hakkında" + +#: sphinx_rtd_theme/layout.html:90 +msgid "Index" +msgstr "Dizin" + +#: sphinx_rtd_theme/layout.html:93 sphinx_rtd_theme/search.html:11 +msgid "Search" +msgstr "Arama" + +#: sphinx_rtd_theme/layout.html:128 +msgid "Logo" +msgstr "Logo" + +#: sphinx_rtd_theme/search.html:29 +msgid "Please activate JavaScript to enable the search functionality." +msgstr "" +"Arama işlevselliğini etkinleştirmek için lütfen JavaScript'i etkinleştirin." + +#. Search is a noun, not a verb +#: sphinx_rtd_theme/search.html:37 +msgid "Search Results" +msgstr "Arama Sonuçları" + +#: sphinx_rtd_theme/search.html:39 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "" +"Aramanız hiçbir belgeyle eşleşmedi. Lütfen tüm kelimelerin doğru " +"yazıldığından ve yeterli kategori seçtiğinizden emin olun." + +#: sphinx_rtd_theme/searchbox.html:4 +msgid "Search docs" +msgstr "Belgeleri arayın" + +#: sphinx_rtd_theme/versions.html:11 +msgid "Versions" +msgstr "Sürümler" + +#: sphinx_rtd_theme/versions.html:17 +msgid "Downloads" +msgstr "İndirmeler" + +#. The phrase "Read the Docs" is not translated +#: sphinx_rtd_theme/versions.html:24 +msgid "On Read the Docs" +msgstr "Read the Docs Üzerinde" + +#: sphinx_rtd_theme/versions.html:26 +msgid "Project Home" +msgstr "Proje Ana Sayfa" + +#: sphinx_rtd_theme/versions.html:29 +msgid "Builds" +msgstr "Oluşturmalar" + +#~ msgid "Free document hosting provided by" +#~ msgstr "Ücretsiz belge barındırmayı sağlayan" diff -Nru mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/locale/zh_CN/LC_MESSAGES/sphinx.po mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/locale/zh_CN/LC_MESSAGES/sphinx.po --- mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/locale/zh_CN/LC_MESSAGES/sphinx.po 1970-01-01 00:00:00.000000000 +0000 +++ mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/locale/zh_CN/LC_MESSAGES/sphinx.po 2020-08-26 08:57:19.000000000 +0000 @@ -0,0 +1,151 @@ +# English translations for sphinx_rtd_theme. +# Copyright (C) 2019 ORGANIZATION +# This file is distributed under the same license as the sphinx_rtd_theme +# project. +# FIRST AUTHOR , 2019. +# +# Translators: +# 王赛 , 2019 +# Anthony , 2020 +# +msgid "" +msgstr "" +"Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2020-05-06 13:38-0600\n" +"PO-Revision-Date: 2019-07-16 21:44+0000\n" +"Last-Translator: Anthony , 2020\n" +"Language-Team: Chinese (China) (https://www.transifex.com/readthedocs/teams/101354/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.8.0\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: sphinx_rtd_theme/breadcrumbs.html:43 sphinx_rtd_theme/breadcrumbs.html:45 +msgid "Edit on GitHub" +msgstr "在 GitHub 上修改" + +#: sphinx_rtd_theme/breadcrumbs.html:50 sphinx_rtd_theme/breadcrumbs.html:52 +msgid "Edit on Bitbucket" +msgstr "在 Bitbucket 上修改" + +#: sphinx_rtd_theme/breadcrumbs.html:57 sphinx_rtd_theme/breadcrumbs.html:59 +msgid "Edit on GitLab" +msgstr "在 GitLab 上修改" + +#: sphinx_rtd_theme/breadcrumbs.html:62 sphinx_rtd_theme/breadcrumbs.html:64 +msgid "View page source" +msgstr "查看页面源码" + +#: sphinx_rtd_theme/breadcrumbs.html:74 sphinx_rtd_theme/footer.html:5 +msgid "Next" +msgstr "下一页" + +#: sphinx_rtd_theme/breadcrumbs.html:77 sphinx_rtd_theme/footer.html:8 +msgid "Previous" +msgstr "上一页" + +#: sphinx_rtd_theme/footer.html:21 sphinx_rtd_theme/footer.html:24 +#: sphinx_rtd_theme/layout.html:96 +msgid "Copyright" +msgstr "版权所有" + +#. Build is a noun, not a verb +#: sphinx_rtd_theme/footer.html:31 +msgid "Build" +msgstr "构建" + +#: sphinx_rtd_theme/footer.html:41 +#, python-format +msgid "Last updated on %(last_updated)s." +msgstr "最后更新时间 %(last_updated)s。" + +#. the variable "sphinx_web" is a link to the Sphinx project documentation +#. with +#. the text "Sphinx" +#: sphinx_rtd_theme/footer.html:52 +#, python-format +msgid "Built with %(sphinx_web)s using a" +msgstr "利用 %(sphinx_web)s 构建,使用了 " + +#. "theme" refers to a theme for Sphinx, which alters the appearance of the +#. generated documenation +#: sphinx_rtd_theme/footer.html:54 +msgid "theme" +msgstr "主题" + +#. this is always used as "provided by Read the Docs", and should not imply +#. Read the Docs is an author of the generated documentation. +#: sphinx_rtd_theme/footer.html:56 +#, python-format +msgid "provided by %(readthedocs_web)s" +msgstr "由 %(readthedocs_web)s开发" + +#: sphinx_rtd_theme/layout.html:79 +#, python-format +msgid "Search within %(docstitle)s" +msgstr "在 %(docstitle)s中搜索" + +#: sphinx_rtd_theme/layout.html:87 +msgid "About these documents" +msgstr "关于此文档" + +#: sphinx_rtd_theme/layout.html:90 +msgid "Index" +msgstr "索引" + +#: sphinx_rtd_theme/layout.html:93 sphinx_rtd_theme/search.html:11 +msgid "Search" +msgstr "搜索" + +#: sphinx_rtd_theme/layout.html:128 +msgid "Logo" +msgstr "Logo" + +#: sphinx_rtd_theme/search.html:29 +msgid "Please activate JavaScript to enable the search functionality." +msgstr "请启用 JavaScript 以便使用搜索功能" + +#. Search is a noun, not a verb +#: sphinx_rtd_theme/search.html:37 +msgid "Search Results" +msgstr "搜索结果" + +#: sphinx_rtd_theme/search.html:39 +msgid "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "您的搜索没有匹配到任何文档。请确保所有单词拼写正确,并选择了足够多的类别。" + +#: sphinx_rtd_theme/searchbox.html:4 +msgid "Search docs" +msgstr "在文档中搜索" + +#: sphinx_rtd_theme/versions.html:11 +msgid "Versions" +msgstr "版本列表" + +#: sphinx_rtd_theme/versions.html:17 +msgid "Downloads" +msgstr "下载链接" + +#. The phrase "Read the Docs" is not translated +#: sphinx_rtd_theme/versions.html:24 +msgid "On Read the Docs" +msgstr "托管于 Read the Docs" + +#: sphinx_rtd_theme/versions.html:26 +msgid "Project Home" +msgstr "项目首页" + +#: sphinx_rtd_theme/versions.html:29 +msgid "Builds" +msgstr "构建" + +#~ msgid "Docs" +#~ msgstr "文档" + +#~ msgid "Free document hosting provided by" +#~ msgstr "此文档免费托管于" diff -Nru mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/searchbox.html mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/searchbox.html --- mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/searchbox.html 2020-06-26 14:54:18.000000000 +0000 +++ mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/searchbox.html 2020-08-26 08:57:19.000000000 +0000 @@ -1,7 +1,7 @@ {%- if builder != 'singlehtml' %}
- +
diff -Nru mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/search.html mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/search.html --- mame-0.222+dfsg.1/docs/themes/sphinx_rtd_theme/search.html 2020-06-26 14:54:18.000000000 +0000 +++ mame-0.224+dfsg.1/docs/themes/sphinx_rtd_theme/search.html 2020-08-26 08:57:19.000000000 +0000 @@ -9,7 +9,10 @@ #} {%- extends "layout.html" %} {% set title = _('Search') %} -{% set script_files = script_files + ['_static/searchtools.js'] %} +{%- block scripts %} + {{ super() }} + +{%- endblock %} {% block footer %}