pax_global_header00006660000000000000000000000064141221361040014504gustar00rootroot0000000000000052 comment=6259bbcdd44a028e041f811a888f3cc8ce9c81f8 screensaver.biogenesis-19.0.0-Matrix/000077500000000000000000000000001412213610400175035ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/.github/000077500000000000000000000000001412213610400210435ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/.github/workflows/000077500000000000000000000000001412213610400231005ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/.github/workflows/build.yml000066400000000000000000000044621412213610400247300ustar00rootroot00000000000000name: Build and run tests on: [push, pull_request] env: app_id: screensaver.biogenesis jobs: build: runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: include: - name: "Debian package test" os: ubuntu-18.04 CC: gcc CXX: g++ DEBIAN_BUILD: true #- os: ubuntu-18.04 #CC: gcc #CXX: g++ #- os: ubuntu-18.04 #CC: clang #CXX: clang++ #- os: macos-10.15 steps: - name: Install needed ubuntu depends env: DEBIAN_BUILD: ${{ matrix.DEBIAN_BUILD }} run: | if [[ $DEBIAN_BUILD == true ]]; then sudo add-apt-repository -y ppa:team-xbmc/ppa; fi if [[ $DEBIAN_BUILD == true ]]; then sudo apt-get update; fi if [[ $DEBIAN_BUILD == true ]]; then sudo apt-get install fakeroot; fi - name: Checkout Kodi repo uses: actions/checkout@v2 with: repository: xbmc/xbmc ref: Matrix path: xbmc - name: Checkout screensaver.biogenesis repo uses: actions/checkout@v2 with: path: ${{ env.app_id }} - name: Configure env: CC: ${{ matrix.CC }} CXX: ${{ matrix.CXX }} DEBIAN_BUILD: ${{ matrix.DEBIAN_BUILD }} run: | if [[ $DEBIAN_BUILD != true ]]; then cd ${app_id} && mkdir -p build && cd build; fi if [[ $DEBIAN_BUILD != true ]]; then cmake -DADDONS_TO_BUILD=${app_id} -DADDON_SRC_PREFIX=${{ github.workspace }} -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/xbmc/addons -DPACKAGE_ZIP=1 ${{ github.workspace }}/xbmc/cmake/addons; fi if [[ $DEBIAN_BUILD == true ]]; then wget https://raw.githubusercontent.com/xbmc/xbmc/Matrix/xbmc/addons/kodi-dev-kit/tools/debian-addon-package-test.sh && chmod +x ./debian-addon-package-test.sh; fi if [[ $DEBIAN_BUILD == true ]]; then sudo apt-get build-dep ${{ github.workspace }}/${app_id}; fi - name: Build env: CC: ${{ matrix.CC }} CXX: ${{ matrix.CXX }} DEBIAN_BUILD: ${{ matrix.DEBIAN_BUILD }} run: | if [[ $DEBIAN_BUILD != true ]]; then cd ${app_id}/build; fi if [[ $DEBIAN_BUILD != true ]]; then make; fi if [[ $DEBIAN_BUILD == true ]]; then ./debian-addon-package-test.sh ${{ github.workspace }}/${app_id}; fi screensaver.biogenesis-19.0.0-Matrix/.github/workflows/sync-addon-metadata-translations.yml000066400000000000000000000031221412213610400321550ustar00rootroot00000000000000name: Sync addon metadata translations on: push: branches: [ Matrix, Nexus ] paths: - '**addon.xml.in' - '**resource.language.**strings.po' jobs: default: if: github.repository == 'xbmc/screensaver.biogenesis' runs-on: ubuntu-latest strategy: fail-fast: false matrix: python-version: [ 3.9 ] steps: - name: Checkout repository uses: actions/checkout@v2 with: path: project - name: Checkout sync_addon_metadata_translations repository uses: actions/checkout@v2 with: repository: xbmc/sync_addon_metadata_translations path: sync_addon_metadata_translations - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip python -m pip install sync_addon_metadata_translations/ - name: Run sync-addon-metadata-translations run: | sync-addon-metadata-translations working-directory: ./project - name: Create PR for sync-addon-metadata-translations changes uses: peter-evans/create-pull-request@v3.10.0 with: commit-message: Sync of addon metadata translations title: Sync of addon metadata translations body: Sync of addon metadata translations triggered by ${{ github.sha }} branch: amt-sync delete-branch: true path: ./project reviewers: gade01 screensaver.biogenesis-19.0.0-Matrix/.gitignore000066400000000000000000000011601412213610400214710ustar00rootroot00000000000000# build artifacts build/ screensaver.*/addon.xml # Debian build files debian/changelog debian/files debian/*.log debian/*.substvars debian/.debhelper/ debian/tmp/ debian/kodi-screensaver-*/ obj-x86_64-linux-gnu/ # commonly used editors # vim *.swp # Eclipse *.project *.cproject .classpath *.sublime-* .settings/ # KDevelop 4 *.kdev4 # gedit *~ # CLion /.idea # clion .idea/ # to prevent add after a "git format-patch VALUE" and "git add ." call /*.patch # Visual Studio Code .vscode # to prevent add if project code opened by Visual Studio over CMake file .vs/ # General MacOS .DS_Store .AppleDouble .LSOverride screensaver.biogenesis-19.0.0-Matrix/.travis.yml000066400000000000000000000042131412213610400216140ustar00rootroot00000000000000language: cpp env: global: - app_id=screensaver.biogenesis # # Define the build matrix # matrix: include: - os: linux dist: xenial sudo: required compiler: gcc - os: linux dist: xenial sudo: required compiler: clang - os: linux dist: bionic sudo: required compiler: gcc env: DEBIAN_BUILD=true - os: linux dist: focal sudo: required compiler: gcc env: DEBIAN_BUILD=true - os: osx osx_image: xcode10.2 before_install: - if [[ $DEBIAN_BUILD != true ]] && [[ $TRAVIS_OS_NAME == linux ]]; then sudo apt-get install -y libgl1-mesa-dev; fi - if [[ $DEBIAN_BUILD == true ]]; then sudo add-apt-repository -y ppa:team-xbmc/ppa; fi - if [[ $DEBIAN_BUILD == true ]]; then sudo apt-get install fakeroot; fi # # The addon source is automatically checked out in $TRAVIS_BUILD_DIR, # we'll put the Kodi source on the same level # before_script: - if [[ $DEBIAN_BUILD != true ]]; then cd $TRAVIS_BUILD_DIR/..; fi - if [[ $DEBIAN_BUILD != true ]]; then git clone --branch Matrix --depth=1 https://github.com/xbmc/xbmc.git; fi - if [[ $DEBIAN_BUILD != true ]]; then cd ${app_id} && mkdir build && cd build; fi - if [[ $DEBIAN_BUILD != true ]]; then mkdir -p definition/${app_id}; fi - if [[ $DEBIAN_BUILD != true ]]; then echo ${app_id} $TRAVIS_BUILD_DIR $TRAVIS_COMMIT > definition/${app_id}/${app_id}.txt; fi - if [[ $DEBIAN_BUILD != true ]]; then cmake -DADDONS_TO_BUILD=${app_id} -DADDON_SRC_PREFIX=$TRAVIS_BUILD_DIR/.. -DADDONS_DEFINITION_DIR=$TRAVIS_BUILD_DIR/build/definition -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=$TRAVIS_BUILD_DIR/../xbmc/addons -DPACKAGE_ZIP=1 $TRAVIS_BUILD_DIR/../xbmc/cmake/addons; fi - if [[ $DEBIAN_BUILD == true ]]; then wget https://raw.githubusercontent.com/xbmc/xbmc/Matrix/xbmc/addons/kodi-dev-kit/tools/debian-addon-package-test.sh && chmod +x ./debian-addon-package-test.sh; fi - if [[ $DEBIAN_BUILD == true ]]; then sudo apt-get build-dep $TRAVIS_BUILD_DIR; fi script: - if [[ $DEBIAN_BUILD != true ]]; then make; fi - if [[ $DEBIAN_BUILD == true ]]; then ./debian-addon-package-test.sh $TRAVIS_BUILD_DIR; fi screensaver.biogenesis-19.0.0-Matrix/CMakeLists.txt000066400000000000000000000017031412213610400222440ustar00rootroot00000000000000cmake_minimum_required(VERSION 3.5) project(screensaver.biogenesis) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}) find_package(Kodi REQUIRED) if(NOT WIN32) if(APP_RENDER_SYSTEM STREQUAL "gl" OR NOT APP_RENDER_SYSTEM) find_package(OpenGl REQUIRED) set(DEPLIBS ${OPENGL_LIBRARIES}) set(includes ${OPENGL_INCLUDE_DIR}) add_definitions(${OPENGL_DEFINITIONS}) elseif(APP_RENDER_SYSTEM STREQUAL "gles") find_package(OpenGLES REQUIRED) set(DEPLIBS ${OPENGLES_LIBRARIES}) set(includes ${OPENGLES_INCLUDE_DIR}) add_definitions(${OPENGLES_DEFINITIONS}) endif() endif() include_directories(${includes} ${KODI_INCLUDE_DIR}/.. # Hack way with "/..", need bigger Kodi cmake rework to match right include ways ${PROJECT_SOURCE_DIR}/lib) set(BIOGENESIS_SOURCES src/Life.cpp) set(BIOGENESIS_HEADERS src/types.h) build_addon(screensaver.biogenesis BIOGENESIS DEPLIBS) include(CPack) screensaver.biogenesis-19.0.0-Matrix/FindOpenGLES.cmake000066400000000000000000000036161412213610400226700ustar00rootroot00000000000000#.rst: # FindOpenGLES # ------------ # Finds the OpenGLES2 library # # This will define the following variables:: # # OPENGLES_FOUND - system has OpenGLES # OPENGLES_INCLUDE_DIRS - the OpenGLES include directory # OPENGLES_LIBRARIES - the OpenGLES libraries # OPENGLES_DEFINITIONS - the OpenGLES definitions if(CORE_PLATFORM_NAME_LC STREQUAL rbpi) set(_brcmprefix brcm) endif() if(PKG_CONFIG_FOUND) pkg_check_modules(PC_OPENGLES ${_brcmprefix}glesv2 QUIET) endif() if(NOT CORE_SYSTEM_NAME STREQUAL darwin_embedded AND NOT CORE_SYSTEM_NAME STREQUAL ios) find_path(OPENGLES_INCLUDE_DIR GLES2/gl2.h PATHS ${PC_OPENGLES_INCLUDEDIR}) find_library(OPENGLES_gl_LIBRARY NAMES ${_brcmprefix}GLESv2 PATHS ${PC_OPENGLES_LIBDIR}) else() find_library(OPENGLES_gl_LIBRARY NAMES OpenGLES PATHS ${CMAKE_OSX_SYSROOT}/System/Library PATH_SUFFIXES Frameworks NO_DEFAULT_PATH) set(OPENGLES_INCLUDE_DIR ${OPENGLES_gl_LIBRARY}/Headers) endif() find_path(OPENGLES3_INCLUDE_DIR GLES3/gl3.h) include(FindPackageHandleStandardArgs) find_package_handle_standard_args(OpenGLES REQUIRED_VARS OPENGLES_gl_LIBRARY OPENGLES_INCLUDE_DIR) find_path(OPENGLES3_INCLUDE_DIR GLES3/gl3.h PATHS ${PC_OPENGLES_INCLUDEDIR}) if(OPENGLES_FOUND) set(OPENGLES_LIBRARIES ${OPENGLES_gl_LIBRARY}) if(OPENGLES3_INCLUDE_DIR) set(OPENGLES_INCLUDE_DIRS ${OPENGLES_INCLUDE_DIR} ${OPENGLES3_INCLUDE_DIR}) set(OPENGLES_DEFINITIONS -DHAS_GLES=3) mark_as_advanced(OPENGLES_INCLUDE_DIR OPENGLES3_INCLUDE_DIR OPENGLES_gl_LIBRARY) else() set(OPENGLES_INCLUDE_DIRS ${OPENGLES_INCLUDE_DIR}) set(OPENGLES_DEFINITIONS -DHAS_GLES=2) mark_as_advanced(OPENGLES_INCLUDE_DIR OPENGLES_gl_LIBRARY) endif() endif() screensaver.biogenesis-19.0.0-Matrix/FindOpenGl.cmake000066400000000000000000000024071412213610400224750ustar00rootroot00000000000000#.rst: # FindOpenGl # ---------- # Finds the FindOpenGl library # # This will define the following variables:: # # OPENGL_FOUND - system has OpenGl # OPENGL_INCLUDE_DIRS - the OpenGl include directory # OPENGL_LIBRARIES - the OpenGl libraries # OPENGL_DEFINITIONS - the OpenGl definitions if(PKG_CONFIG_FOUND) pkg_check_modules(PC_OPENGL gl QUIET) endif() if(NOT CORE_SYSTEM_NAME STREQUAL osx) find_path(OPENGL_INCLUDE_DIR GL/gl.h PATHS ${PC_OPENGL_gl_INCLUDEDIR}) find_library(OPENGL_gl_LIBRARY NAMES GL PATHS ${PC_OPENGL_gl_LIBDIR}) else() find_library(OPENGL_gl_LIBRARY NAMES OpenGL PATHS ${CMAKE_OSX_SYSROOT}/System/Library PATH_SUFFIXES Frameworks NO_DEFAULT_PATH) set(OPENGL_INCLUDE_DIR ${OPENGL_gl_LIBRARY}/Headers) endif() include(FindPackageHandleStandardArgs) find_package_handle_standard_args(OpenGl REQUIRED_VARS OPENGL_gl_LIBRARY OPENGL_INCLUDE_DIR) if(OPENGL_FOUND) set(OPENGL_INCLUDE_DIRS ${OPENGL_INCLUDE_DIR}) set(OPENGL_LIBRARIES ${OPENGL_gl_LIBRARY}) set(OPENGL_DEFINITIONS -DHAS_GL=1) endif() mark_as_advanced(OPENGL_INCLUDE_DIR OPENGL_gl_LIBRARY) screensaver.biogenesis-19.0.0-Matrix/Jenkinsfile000066400000000000000000000000371412213610400216670ustar00rootroot00000000000000buildPlugin(version: "Matrix") screensaver.biogenesis-19.0.0-Matrix/LICENSE.md000066400000000000000000000355061412213610400211200ustar00rootroot00000000000000The GNU General Public License, Version 2, June 1991 (GPLv2) ============================================================ > Copyright (C) 1989, 1991 Free Software Foundation, Inc. > 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble -------- The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. Terms And Conditions For Copying, Distribution And Modification --------------------------------------------------------------- **0.** This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. **1.** You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. **2.** You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: * **a)** You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. * **b)** You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. * **c)** If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. **3.** You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: * **a)** Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, * **b)** Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, * **c)** Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. **4.** You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. **5.** You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. **6.** Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. **7.** If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. **8.** If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. **9.** The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. **10.** If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. No Warranty ----------- **11.** BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. **12.** IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. screensaver.biogenesis-19.0.0-Matrix/README.md000066400000000000000000000040301412213610400207570ustar00rootroot00000000000000# screensaver.biogenesis addon for Kodi This is a [Kodi](http://kodi.tv) screensaver addon. [![License: GPL-2.0-or-later](https://img.shields.io/badge/License-GPL%20v2+-blue.svg)](LICENSE.md) [![Build and run tests](https://github.com/xbmc/screensaver.biogenesis/actions/workflows/build.yml/badge.svg?branch=Matrix)](https://github.com/xbmc/screensaver.biogenesis/actions/workflows/build.yml) [![Build Status](https://dev.azure.com/teamkodi/binary-addons/_apis/build/status/xbmc.screensaver.biogenesis?branchName=Matrix)](https://dev.azure.com/teamkodi/binary-addons/_build/latest?definitionId=42&branchName=Matrix) [![Build Status](https://jenkins.kodi.tv/view/Addons/job/xbmc/job/screensaver.biogenesis/job/Matrix/badge/icon)](https://jenkins.kodi.tv/blue/organizations/jenkins/xbmc%2Fscreensaver.biogenesis/branches/) ## Build instructions When building the addon you have to use the correct branch depending on which version of Kodi you're building against. If you want to build the addon to be compatible with the latest kodi `Matrix` commit, you need to checkout the branch with the current kodi codename. Also make sure you follow this README from the branch in question. ### Linux The following instructions assume you will have built Kodi already in the `kodi-build` directory suggested by the README. 1. `git clone --branch Matrix https://github.com/xbmc/xbmc.git` 2. `git clone --branch Matrix https://github.com/xbmc/screensaver.biogenesis.git` 3. `cd screensaver.biogenesis && mkdir build && cd build` 4. `cmake -DADDONS_TO_BUILD=screensaver.biogenesis -DADDON_SRC_PREFIX=../.. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=../../xbmc/kodi-build/addons -DPACKAGE_ZIP=1 ../../xbmc/cmake/addons` 5. `make` The addon files will be placed in `../../xbmc/kodi-build/addons` so if you build Kodi from source and run it directly the addon will be available as a system addon. screensaver.biogenesis-19.0.0-Matrix/appveyor.yml000066400000000000000000000022731412213610400220770ustar00rootroot00000000000000version: BuildNr.{build} image: Visual Studio 2017 shallow_clone: true clone_folder: c:\projects\screensaver.biogenesis environment: app_id: screensaver.biogenesis matrix: - GENERATOR: "Visual Studio 15" CONFIG: Release - GENERATOR: "Visual Studio 15 Win64" CONFIG: Release - GENERATOR: "Visual Studio 15 Win64" CONFIG: Release WINSTORE: -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION="10.0.17763.0" - GENERATOR: "Visual Studio 15 ARM" CONFIG: Release WINSTORE: -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION="10.0.17763.0" build_script: - cd .. - git clone --branch Matrix --depth=1 https://github.com/xbmc/xbmc.git - cd %app_id% - mkdir build - cd build - mkdir -p definition\%app_id% - echo %app_id% %APPVEYOR_BUILD_FOLDER% %APPVEYOR_REPO_COMMIT% > definition\%app_id%\%app_id%.txt - cmake -T host=x64 -G "%GENERATOR%" %WINSTORE% -DADDONS_TO_BUILD=%app_id% -DCMAKE_BUILD_TYPE=%CONFIG% -DADDONS_DEFINITION_DIR=%APPVEYOR_BUILD_FOLDER%/build/definition -DADDON_SRC_PREFIX=../.. -DCMAKE_INSTALL_PREFIX=../../xbmc/addons -DPACKAGE_ZIP=1 ../../xbmc/cmake/addons - cmake --build . --config %CONFIG% --target %app_id% screensaver.biogenesis-19.0.0-Matrix/azure-pipelines.yml000066400000000000000000000035531412213610400233500ustar00rootroot00000000000000variables: app_id: 'screensaver.biogenesis' trigger: branches: include: - Matrix - releases/* paths: include: - '*' exclude: - 'debian/*' jobs: - job: Windows pool: vmImage: 'VS2017-Win2016' strategy: matrix: Win32: GENERATOR: "Visual Studio 15 2017" ARCHITECTURE: Win32 CONFIGURATION: Release Win64: GENERATOR: "Visual Studio 15 2017" ARCHITECTURE: x64 CONFIGURATION: Release Win64-UWP: GENERATOR: "Visual Studio 15 2017" ARCHITECTURE: x64 CONFIGURATION: Release WINSTORE: -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION="10.0.17763.0" ARM64-UWP: GENERATOR: "Visual Studio 15 2017" ARCHITECTURE: ARM64 CONFIGURATION: Release WINSTORE: -DCMAKE_SYSTEM_NAME=WindowsStore -DCMAKE_SYSTEM_VERSION="10.0.17763.0" workspace: clean: all steps: - script: | cd .. git clone --branch Matrix --depth=1 https://github.com/xbmc/xbmc.git kodi cd $(Build.SourcesDirectory) mkdir build cd build mkdir "definition/$(app_id)" echo $(app_id) . . > definition/$(app_id)/$(app_id).txt mklink /J "$(Pipeline.Workspace)/$(app_id)" "$(Build.SourcesDirectory)" - task: CMake@1 inputs: workingDirectory: 'build' cmakeArgs: '-T host=x64 -G "$(GENERATOR)" -A $(ARCHITECTURE) $(WINSTORE) -DADDONS_TO_BUILD=$(app_id) -DCMAKE_BUILD_TYPE=$(CONFIGURATION) -DADDONS_DEFINITION_DIR=$(Pipeline.Workspace)/$(app_id)/build/definition -DADDON_SRC_PREFIX=../.. -DCMAKE_INSTALL_PREFIX=../../kodi/addons -DPACKAGE_ZIP=1 ../../kodi/cmake/addons' - task: CMake@1 inputs: workingDirectory: 'build' cmakeArgs: '--build . --config $(CONFIGURATION) --target $(app_id)' screensaver.biogenesis-19.0.0-Matrix/debian/000077500000000000000000000000001412213610400207255ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/debian/changelog.in000066400000000000000000000003001412213610400231750ustar00rootroot00000000000000kodi-screensaver-biogenesis (#PACKAGEVERSION#-#TAGREV#~#DIST#) #DIST#; urgency=low [ kodi ] * autogenerated dummy changelog -- Nobody Sat, 01 Jun 2013 00:59:22 +0200 screensaver.biogenesis-19.0.0-Matrix/debian/compat000066400000000000000000000000021412213610400221230ustar00rootroot000000000000009 screensaver.biogenesis-19.0.0-Matrix/debian/control000066400000000000000000000013131412213610400223260ustar00rootroot00000000000000Source: kodi-screensaver-biogenesis Priority: extra Maintainer: Nobody Build-Depends: debhelper (>= 9.0.0), cmake, kodi-addon-dev, libgles2-mesa-dev [arm64 armhf], libgl1-mesa-dev [i386 amd64] Standards-Version: 4.1.2 Section: libs Homepage: https://kodi.tv Package: kodi-screensaver-biogenesis Section: libs Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: BioGenesis screensaver for Kodi BioGenesis screensaver for Kodi Package: kodi-screensaver-biogenesis-dbg Section: debug Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: debug symbols for BioGenesis screensaver for Kodi debug symbols for BioGenesis screensaver for Kodi screensaver.biogenesis-19.0.0-Matrix/debian/copyright000066400000000000000000000016701412213610400226640ustar00rootroot00000000000000Format: http://dep.debian.net/deps/dep5 Upstream-Name: screensaver.biogenesis Source: https://github.com/xbmc/screensaver.biogenesis Files: * Copyright: 2005-2021 Team Kodi License: GPL-2+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . On Debian systems, the complete text of the GNU General Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". screensaver.biogenesis-19.0.0-Matrix/debian/kodi-screensaver-biogenesis.install000066400000000000000000000000261412213610400277040ustar00rootroot00000000000000usr/lib/* usr/share/* screensaver.biogenesis-19.0.0-Matrix/debian/rules000077500000000000000000000012011412213610400217770ustar00rootroot00000000000000#!/usr/bin/make -f # -*- makefile -*- # Sample debian/rules that uses debhelper. # This file was originally written by Joey Hess and Craig Small. # As a special exception, when this file is copied by dh-make into a # dh-make output file, you may use that output file without restriction. # This special exception was added by Craig Small in version 0.37 of dh-make. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 %: dh $@ override_dh_auto_configure: dh_auto_configure -- -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUILD_SHARED_LIBS=1 -DUSE_LTO=1 override_dh_installdocs: dh_installdocs --link-doc=kodi-screensaver-biogenesis screensaver.biogenesis-19.0.0-Matrix/debian/source/000077500000000000000000000000001412213610400222255ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/debian/source/format000066400000000000000000000000151412213610400234340ustar00rootroot000000000000003.0 (native) screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/000077500000000000000000000000001412213610400241515ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/addon.xml.in000066400000000000000000000067611412213610400263770ustar00rootroot00000000000000 @ADDON_DEPENDS@ @PLATFORM@ GPL-2.0-or-later https://github.com/xbmc/screensaver.biogenesis resources/icon.png resources/fanart.png resources/screenshot-01.png resources/screenshot-02.png resources/screenshot-03.png BioGenesis pauseskærm BioGenesis Bildschirmschoner BioGenesis screensaver En implementering af John Conways berømte "Game of Life" med 3 brugerdefinerede farveregler. Et par grundlæggende regler styrer, hvilke celler der vil leve i den næste generation, afhængigt af cellernes nuværende tilstand og antallet af dets levende naboer.[CR][CR]Screenshots yder ikke så meget retfærdighed, da systemets bevægelse grænsende mellem stabilitet og kaos er det, der ser interessant ud.[CR][CR]Funktioner:[CR]- Der er implementeret 3 brugerdefinerede farveregler, der hver især giver interessante resultater.[CR]- Kolonifarvende farveceller afhængig af farven på dets 'overordnede' celler.[CR]CR]- Farvelægning i en levetid farver en celle afhængig af, hvor længe den har været i live.[CR]- Nabo, der farver en celle afhængigt af naboens konfiguration.[CR]- Mange parametre kan konfigureres i indstillingerne. Eine Implementierung von John Conways berühmtem "Game of Life" mit 3 benutzerdefinierten Farbregeln. Einige Grundregeln regeln, welche Zellen in der nächsten Generation leben werden, abhängig vom aktuellen Zustand der Zellen und der Anzahl ihrer lebenden Nachbarn.[CR][CR]Screenshots werden nicht so sehr gerecht, da die Bewegung des Systems zwischen Stabilität und Chaos interessant aussieht.[CR][CR]Eigenschaften:[CR] - Es werden jeweils 3 benutzerdefinierte Farbregeln implementiert, die interessante Ergebnisse liefern.[CR] - Farbzellen für Kolonien, abhängig von der Farbe der übergeordneten Zellen.[CR] - Die lebenslange Färbung färbt eine Zelle abhängig davon, wie lange sie noch lebt.[CR] - Nachbarn färben eine Zelle abhängig von der Konfiguration ihrer Nachbarn.[CR] - Viele Parameter sind in den Einstellungen konfigurierbar. An implementation of John Conway's famous "Game of Life" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings. screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/000077500000000000000000000000001412213610400261635ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/fanart.png000066400000000000000000001145641412213610400301570ustar00rootroot00000000000000PNG  IHDRp`;@sBITOtEXtSoftwaregnome-screenshot>)tEXtCreation TimeMi 06 Feb 2019 22:19:34 CETPLTEEΉz6̮Ҷ8ͣv ٛ"""@ QYYfhq v ~ ǟà~ M » ̙ D a/*36*IDATx}SU'fH{4hDB0`#- B0ح F'1U7wkPD9!4jIϖ#Ѥ ""}LMF0RGtǺI 6rݍۈ?Uf֩+^xG_IKXKϡ^gaKat̴ p@i>lSCݟwNt1rߋˈ [Ig-EZOGGz'0 `P0(@ 0(@ `1Q><#m87:W}9&i3\Tw4i=auȥ睍 6GwVHMIۑT}0 { i7YH{z}Җ\:S1Rd19EX^˛ejԋߝNՙ`K7#=k>TFۨwjωi2/Ez[q07!=L^rg0(@ `P@ `P0ǘHy%j:z?OիEn<+Gښ_~^MF:[}ۑ-jk^^ Wב~U!ŽѥM8M#*\ďs/Dz%Aq,ޏ`CuNS^̫Gzq7Kߞ/dShƂ0(@ `P@ `P0ǘHy6NH|;ғtt>֍Sug}6p6Ks*ב~Qxk2Zޢu"l2/F|w/t*<GJk%b:a1F(Tb"m>.EɚX6_>WNl]t[f"힏!mp+A-bI}qyu]YM?`,(P0(@ `0(@ `Pp&'_J׃zK.G\"m"F9m#f2po|,Y^L#mzi3i9Xo2c[޸|R-ӑR# i}җBN8MB^'я?5y4~݈zm4D|-%M^?uGp#DZ ">| H?G3!WC000 `P0(@ 0(@ `1Q>i5t•H#nu"yښv'c2xИb+܏I,DLGӠ]nNE/ϖ;6JևtR&7q&# ӻ]&y?o\FCruVޢjTv1һ{T#Z>Nu6y()󦩗VեGt- W݇r>҇5ʕo&nOJЫ _6җ~[{TfayBVS)'0 `P0(@ 0(@ `1?5\i 1A䄪[~tb#ˈ%_#5yH[zHM{!{ziUl)zh[r)ۙMnѲNlux#rh2̖s>҇ϝS=:i+-^:Y*?NS~M!m>-zqW}NGKqĦH'\&MӖwKU o F@ `P0(P0(@ 1&V"VOIQ}&9(S^k\G[GںDÖם}9t¥Ho#u"i:izH#NY fo">˾Lw#=J<`ѣ|:S:f7F}u_[M[ZǽJC9qU4oE|Z>w)^~(MzRg7oɍH[GKi-q[bw|O#(gty&dC<g0(@ `P@ `P0ǘX/Do<i~Ez#5#mT Z^rgp'dLR17#=koݗ4M݆MZ[>7~^~>VuwI>H{i7MgcZ>bum?~ XP0(@ `P(@ `P)OF:hyH3w# 5V"v~9 .Gz>oя6>BA=HφK[rGJ'LE/_7}GVħF#=h79j1Fp˜H)}`t  coGz 9T}n#K ^Dq~k2|؄,/+?N4EؽnI{K-iZͲH{ia 4cA 0(@ `P0(@ `PcL ˑf".E\^a6NܕHЪMWvtG%#mEs| En 6ۑ40Ρuɜ>4^TGH?GεH/<.tP>a*~+bYiϫ+brO'>()1Rm]dSKy˝wD[N^o|)k,o>#V* o"Å@ `P0(P0(@ 1&Z\K6d +V|q}6i'QΩHգtGl~tH=H/O۪id[-]Q]}ͣ|ZJw?"EF|TntHZ^$7#=[%&RC;64B'#n j< Auub_ CX#ű+^k3Q6ܥmZY?`,(P0(@ `0(@ `Pp_=w!fH"m뽿ӝW#JGƻ-FH'\v&ALGڻQ:#=d9ڍϯD|=;̧r-Ͻqj! c i+V|wVulZG<Z*dkݿanFzVjgoi%6K0}p ďC_F|HӲ2aT"¯">;NuY^>:O `0(@ `P0(@ `Pc%V"h 6im&\&m؉[z[tjWG30;i~h"sSl"c~5#mT6qr3ҳS<˃I;;-EZNnGI{6dM^h2ҁ=GaMs?gs>V]6>i/̀t•HS/d(}/z'uVzňF|RTOz(]|~ XP0(@ `P(@ `P^m)ň"xtmH{)“E;D]֤[G|NHWMGӹͺbt_#[&V"ޏ u}&KP,-R{x5⫖7p4{na+twMz}ȴؔrWW ލRķ&#ԶGJ,4v:B͖V^WٽQoD|^!%mgBC7!oHTYyOzA-+hyt-O mK@ `P0(P0(@ 1&u{OX^>a.5HRf#4jKk^[T[܈|9Z..ҏތOy#]bPw K/F|7q{t}u_"_JM{?҃&'DZ&Ԓ1Y,3v#ϝt0Q25˧fPKBQX[Wmr;W\gW#J'w 3bNVGIԨC6WE&i2= xLuOۑ jЦn@%a|`d~ XP0(@ `P(@ `Psu- e6&"Vl!f-.F|wbv-!~sg# "}l%j Z>C$k޸Y mt*YXW"URA HuMr;ғ1ӑRa{Dڽ(8MJ#&~ XP0(@ `P(@ `P^v'+VѩHoq/1GF-A[,D,в mB&:/#oӑ# -Tj6X[ܖE6;v#m\.ԔN UJ[݈]ܫ瞘oGȡejWHOk^gE]{'0 `P0(@ 0(@ `11-D-f#OA?kNDyLя > +VEڮTNGoz3w"[lu1}[6inGh`2o-E8jP 3^-fut+_ZMFuٲiFCH[MV!w+tjWMf숽p>2o_E/D|_&_'jO `0(@ `P0(@ `Pc׫ݎ$]"mvi-p*w")ފzH[W#JGOj*Prbw"u[܏ 4.D|Ɠ~᎝-Mfh-y -#ؽ/#5fzttnyҶi-hu)݈.E|l1FuCuVms)z AY|iSY:Zn 8L^W^& HW寊>gmyvK}CX*FLڇ҄L'܋0"飷y=ҋ:\GjT_@ `P0(P0(@ 1&NE>z-Dڬ;i+tT#NX~1{^>Y:z-˳1oEzڽ {g:i d"-;OaiuPв[oZڪo|bؔK6Oi\;~+xuA\ďMCa44߉>X?àjF_NHOF#mTR}iL«/3vgid Wue'0 `P0(@ 0(@ `1qu6X\ 6w~LG"GSϧ8ܦu!jv's'#tF'& )^Nttt9Z"m:Nl-Fڨ.x#>.Est;i]Zޢv3ҳtV#;ˋ >RoND<o=CA;i/0ifq1]|4E|nG7">O1;_Lݥ>Nuo,m黤 4cA 0(@ `P0(@ `PcL}6z`*~HJFiruW#ZY=:uطnyX^=Z~toۑ9ͧrf"~kBiI+ň*W,]i: R]R[=VħMևѕpŖ>ӑ#ko2`Y~Kh xzS3EN7~o"|'??+V Q{;ғu A\MjW'67'#4+^a&6.F|ײZJ3knG_DZė-gB&KPR~3wSLkzT{׻]vs~PK[˵oRq}j>=ޢ8}qVĴ.G\u݊ߏ`eߠ> '0 `P0(@ 0(@ `11i|—~[6ǹ#nsDܽY:Rtk^v'-HXwE>4zgхHշ(M=>⇻E|F_yӘdD A"Vn&~&}!/li2yK橐oGwκAճ|5|8nu YVod}1?4Yҹi^: vN΁\~ XP0(@ `P(@ `PCdK',GZ2omk^#oV?7Uk6NHi5&Ch>^*MNGڻQi?5qW"*)ҟEAkߏzr& ii}"u_W}uJ7Z1{蠺>#l9ŚL)_jIT?;H)"oIϧ:q<5[vK&S.ֳ_m\~ XP0(@ `P(@ `P#>+VхH\s?i?\Ěr1F"3[X 7g"NG>hVW~DrdnYZ"p˝Ov>҇^FoMn|3ҳtH"m65F|:׻}l4w%[Ip!fZa.F|Ÿ7͖yQ\Y~;->V=Fm2EnGzdTˑޔ[zB[~ XP0(@ `P(@ `PJՖWXY>^#֪KENHG"n#}t]Q>a2Aމ|MFT+ZýHooD|^Hģ50MrGjyH;#NE:/CXiӰO;qg4 E:R;gw:!OclWymğF|d?[^^U=fgMn&{aھdM2W*oiͽJ+Љ}v"-s#Q"呚|M (hƂ0(@ `P@ `P0ǘ=V""}=b i=Yϖ#}tׇu!'ӑRL'LEodg"V:.GzÕH4uGzQj_܈|P9|fv_:<'Yw_G%]q3Z C"6q7ң'MNZ͇ѭHObw" ]j͗6BűtF@A}wYIRC!mI_F-}ދ0M|mB?`,(P0(@ `0(@ `PpXb?Awҟ-Dwiv-! &wb}6qw.v:w9ڍˏs+ߋu%"wXz JN/v;ғvKua}"RQ}&z]O>UMK[Zz7ң[>oZGP~/t*w_鍛4c㌘CL~|j$c}~ܫ[S5cl*~T(BO!N˯vy[vw۷hƂ0(@ `P@ `P0ǘhwZp,D4g_FNK׫W}1{se7^Q=w*~/GZ[H;s/Dz߽#m+NNۤ#*٩ӑ.E|{jU747oD|dLwKdˎMulux}(&e\(9n:+/^/)bHwԩp3ҳ&i CFꕈ fyXEX.p9қ~WO?`,(P0(@ `0(@ `PpX☴d^;iTCzb:^Eڞq׷iۑRB#~HGP"mt66SSHl4zMѷԔ9Aէ&365TKِVzU^av=</Ez{'&DUu ~[#^!\i j1#iy4[NlT'z^So$t---{~ XP0(@ `P(@ `P/ 6ltt*Ҿ[ˑG0qwu_5"mw"UK֏&2qoFb ݎkʕmtp=򹣰I:z]wZ.6Z{]KҊqJ6ACEoָѠZ}PzJVhr4`Fawj2cS7?XU}48(@ `P0 `P0(8Ƅ&8a+Vs>Enr݅HuFᘴH/D|3rFԓ}6TSܱK֛٭HOrĵA=ouvׇB&#½H[N"?m}ӷm:7}[ݝFl;8Gz}) S0(@ `P(@ `PÓNkF9ŝѽW"6HtBˇn9ڍ^*Asp)zL'lt80"mVϽňZY^s>֕OQX3w[- 44nF|V~I(>ve:^8#[md:5Er#}]r^٘NMv&1ܗ/Љ)>k2RWF/#N8mz!QKW#:mFIu 7~6Ow#>:hƂ0(@ `P@ `P0ǘQ# 6uY_#m vV".Gz3q|^OH+_l.vJG#XBzs?Vo|)#]{*LF:aZr*ᅩ[oGzRS:~/FzHy.GZy:GRѥHgH')Y囬0Xup-4c i-_,nICέOG G=oSUJՑz>҇Pyy=i-IpkVyӝHԛ~ XP0(@ `P(@ `PG|QH;zH>DňM,YCH[SG|s"|f%\Hs^MՈZ[K+VCy9ڝ_oH]/F|W[܊kMY\kEJS rtd <*I9r1X j rjNw?Oׯ~YIGDzr̪sIH/.E|_>\Ϸ">OGw?+NGt=fyN֋&mbM(v~gy!~W!NOl.Mmir[Ш|BU5"(<@p6(P0(@ `0(@ `Pp )iy^LDkyH)#܌gW">⯳7<|t~GX=([hg"nuށ^!&?}?-D\m2|:EZo2LG#- &Sˑ5ocHnG|fB9= V4z7"ˤ ? |.u>HϏo 4g0(@ `P@ `P0Gi9NMl<~HHG-FZE:z'T[b#>JGg"n5yHd{h >Bو_NRudݎ줭q\nHk۰Ss0w;sybjn<2#ҧr_OkS\qbYޭLEi!a7"L'-7p=4_L-vFǶ*>ү1НXF@p&(P0(@ `0(@ `Ppw"=MG"-ta=\p>ҧ]a&@ۡus)^G&n݃HG-f--DZMz2M!F_"G t^wd5YEzSğG@f]c6FZnN:zHD|NqOV|u듦r8uEzbI#\Z^Nq*Ոoc-ii5CE ]O˻&=Е_w#=I؞7ibվ[r&H7:ú &4 tuh˯"5 :iby3A 0(@ `P0(@ `P#MFM"KG[^lTl,LĭaHO[^a:vw)‡mR=ЫvfJ#jt R_O@wҖC:m0{Fەoq7㱵zuA"þj>ZH nEzCwbg5hqDPyAvgQ#~y^h0 `P0(@ 0(@ `0q|Hf"n !#WϝCs}Hk"7i&Z;qo,A voF|Tĝߤ v~&é|EC_O[KR'8b::6x%E|<.wT3HjT݈2Ł>ؾ IʷhC ,EZ>SE-U#m^gkhIۃ1 [| y=}Uh0 `P0(@ 0(@ `0V><ik6R#r1⇖Rnӑ{nEz VR,0q>i|OW"ޣzn\ SvF|&lsP>a>ډ>_naZnQ7\NM&{::!=ηOC$M"~.c[d;ֲN z~} = NH{-p!a-Ać-rz+䧩oY9|t߁Tc>ʛc?lP0(@ `P(@ `Pc#<3bs֫G[*_RGt=i~kNGN{{a?[:s8DĽrˏG~Fڸ(Nn="l2n}{kU~:M6}ѝ_f_ZNup?s0JK(LAʛrSވrXaSŰIݯz߭#6}w~6 oin-3W.\fXۑ 4g0(@ `P@ `P0Gq%"G\k<#}qgMAjw<~ 7y޹HjH[7_ؾ|jꖭ>-wg],M?[Z=N-\G#y%&sDĽ*t>HZ>@]n'Mo$}Bďz#u.7i7Ł>CDs{PhiK?Dz&|ZX&P=ܨ7"SGu8>þiҫ)@ `P0(P0(@ ʇ"-W/1iH[sg#mi!j6 tO4izn#rzm%#~hwFAU=p G\k8?kr;6E44 o1_'#>kr[qZvZNbV&#vc<\MGL=z.7q礵CsUǶAv=Dn-xiHiu{@p&(P0(@ `0(@ `PpH{K,EZny.DX>_ޗ*_x;ic>ߙ=sTĝk9 HjH+7#-GLGEzm߿ҟ݊eCLc MFS-.F#Sw>7DHoW8//_G3p;ҳܣ[+yT|"a-=HK]y;m:xޖ@p&(P0(@ `0(@ `Ppg"m>hrKOEihw"=MG"W&Քӑo嫪Pizaf#n_n>&# V|u--FZ>bW#ɷU|3י4kTgϪs>6;/[u>m=Qzjt;Hۑ4OܽDĽtl `zvW\ZGֶFėՁ.ww4' `0(@ `P0(@ `PalWⱽ\6iwH|a=zGSyIQ#m^˗Oul9i"6 kFi~*Ny|rKAw.a5 &7oi%"Ei;6 'XZc.DxEyam6h4N+dUf3A 0(@ `P0(@ `P#i1iDzhC">7qg2nbt|ĵםb:a&(tH) -؞ehgi0܍eyuk}#5bw1bsT;soŗu(=ىh44VruNĴi=Wv:fG6߿۱M ֽ冾3W:ҟ|rn tU^B"q+?4ys-ҫ4X&<M&r?;M}Ӵ}Ҿ[qCi{N"}LP Qyh0 `P0(@ 0(@ `06v= rHoKߌ"Ɉѩ;3ҹӑHmƋWz~Mߗei |U?;RK"M?E|\]>"=,p'J_G:Kc(ie; \ G?6ۧd{&ݖ[\ W-ٽQHT;Egڢ@w gxֺwao78NsTA_<1F85y:?LP0(@ `P(@ `Pc')g"mO8Ga=d{s'܉|H#+i8>ňpXf)D|{l."N4UdHGoD|9b9ioĞ,ͫߜ9K7yͥH#"='KM>@+̤q5P>:imɉ .k:[= v>ZKS-&Ld*NuK 4g0(@ `P@ `P0G;uo4iם{/t|n&&" Dzz;HO#tLP#=j"퓥HODKverK6{]FnE|vՈo_7lčt|S<~Vʏ>@ZD|@_hXZz9am%Rd7.s[6TE"uM杁nOײGUzuY.moODKU}l3A 0(@ `P0(@ `P#{H)Vϭ^w!DoG\;vb6H/.ι6ik*N UG?M=q~:M#~mF8εiyXw#=&7"<ޤuΞH-IWn9pSHamDz>z4Vaÿ:SS[>ds"fT|{dz 4g0(@ `P@ `P0G;qj7cWbG! 3qR;8жn$Vgo,DZMG"~tZJmSğoG|fK[oGh6&"U,m[yd݋8 Qw'+}|LZG]߾Ebh}5q'& U>Uo%z|]fMn1ih[٨p"-'l>@WrXKfZU>Fay1ʲܪp)P0(@ `0(@ `Pp{=?ֺn.zHգ5i7ŁAMFė=tHMl&VLEڹiKShlyaG3E+41il:vܙH[yȎGoyBmr,QW"~;ɉ{-gۑ= 'mM(L#}1/M[˱Y[#dj>ؘ̕:EB^yl{6?5I>Y&A#V'k-ҸQ!0(@ `P@ `P0Giɟ]n>ZܹHL;wBK#nGLD{a!jxt@o5۽ˣ0M#6&={݌b1ʱ4 ٝHO'5 C;Mv N_ELNڔuM]^Zn-畈o[2#gIK݈OZа6Diu m iYrn.o鄫q ?LP0(@ `P(@ `Pc')g#m܊<M.EZ!-#܈ 3K'6As?o1i#s֍4i^/E|νŵ/a|o"1/t'"=ly?稴̜ ir9ް&(owW/6i7uG>gXڤGa~H3qܨ L'چV;ibMF@B`jY%urM*oS0(@ `P(@ `Pch3.G|b٥Hᅨ@_s!jܹH-v=f+<0i::i{)(t_>|9Y63LEڹU:! +߶[-$ez{)F8Y5i732#5Y:RW;WukS\Wh54]EVY tik4ZVYFݗ*_] ;iܥHE:X&#NEܙUd凬DĽߵ|#~bĕDzCט޽kTt=g#nT _}Hk`~Ūe:ҟW"V^1\i>NxsO4ZOI, ӴfWofGw+?ٱMLݍG?g1/=-uێ ވVsLFzdWu?ңckrݒVar{l?}"|=fM么wkҹYZ%WI3A 0(@ `P0(@ `P#iLDzb"OX2q|ӑ[НHO',EZ^' _Z6InRLFM禣l&{TX.W&"5r"=ޢ<ϒkH܋4jjҾWH#mz4 *5ߏ)"w#[jZ? tI#=k2sU7.M&P]ߚ!-=5YGc H/{wXꈩ{CmTO8(@ `P0 `P0(8X"}^: O9i{trM[&F @M?Rv_EhR\ۈ:БU,2N10 `P0(@ 0(@ `0B֦"LF/Gz7q#0in7.?/p0qo)r s֫^y1⇖h=cw!tt1Jy\܉oGzK ˧ɻ=e;hz߭HϫVj:([o\~&,gi*ɷO7HGljڽ#嶼/_BiNHoF|Q޸=%K_.E|l{`(fydOCdFKyT.5'=]!}4˥;01/}|Y?LP0(@ `P(@ `Pc)_Jķ#"=/p.A"7yIGg"mU0i:c˖\~卧#mODܛb%oGzVMڷ[|jWn={^q%0i7&?t%Wչ/i otȺisXϻiAćhp/tt>ֱu4DZnQ4p4ɱ)\ :}Kߧ?KD^ˍGsn i0X*wI˭Oчe]GMYZnU@p&(P0(@ `0(@ `PpEZWd'|񏩈;Hk֔E K#nf"m VS,F\ir"=;iznzKߗMp>#z%g7",waiqq3و&PÖ?wy0\Y n勥9*~NuHXăds7ⓖ3J ݻFwiQ3 Wu?oQ-gL~t ږՈos갖&R/IۯtB~>(gOʫt' `0(@ `P0(@ `PabW#s3?MDܛ΋V "=7H'1/-l"p|+ߖA[ϝu./izH&#"B{'KCd$}وձɻ; W+-OQzjl:ݻr7X"{_+E-}k6WNrwۑ kOꌘ^3Mjub7ɝHOLɺMS|%S( &zéšVt4[:: ODŽr}_]53A 0(@ `P0(@ `P#59ź>H^~""?5\>i|H||tHA[LG.p!tt<~mܾG/DEw[^ߦ>[{;tBht;vi#u[CE-M,E\NWſD{xݍd1@{TydUg#鄴|l&oڷtUUTw;uXkt߸4,iFLfxljKE|\Sv.E|xh0 `P0(@ 0(@ `0vlwu>ߕH7||~7x6FH-VnHRa|Ń7Yrp+j'(IW#~hׯEzz+/0%ݤЫE|!ǁNi8 t|&3W[[o+܋ۈߏh*daɖ{K6qjj4YDz"[\9ZσKeO]Ҳw>eim:!m8n=Ųn"O'B*MvLiQo:Z7#n>S0(@ `P(@ `Pc3"< V'LDKG"-n[ےk:@;iz|?Di#LEܹy:MWm=|݉NM&=E< ņ54i刭N U7#U:H܋xÿ:'#ؤ۲*ҽpCyPFIti>$M6զ޳7P#mm@Wr;bPJofZVg~ @ `P0(P0(@ ʇ"W/1iki9q9&">|ïuw"fOތb1J랏zQh4L#n򐮎S7{qQ؝HOOpW\fSE/^Jķ-o1iU툗"OwK'OU=ܗ&D C:MWy)H)B}V& ʽ^ceۈEO8(@ `P0 `P0(8 /q0q+0iu'"OVxtHA񹈟4IKs֛ٝHOYнQOݚ_D|quZ^+_ KlcH+)6rwGJķݧCNFMzꟕv?ң&e*NGo9ЫSV?ELj t] Vg#nR#}J/lH܋ҟ=??Yy:R(V8 ;!5IuҐnO\]A 0(@ `P0(@ `P#UϘb{,EZng"}y:#`X^m8Mj2/v'H-0i뤽|y˧@o1io7TĝS[UZΩ?D|NYˉ)b&KT:-;˫^g:Oދ kVnwp!ǖi,͈/ZNbid-?E|uTסH_GsXq@R<]3A 0(׮7U>V{B@C A%:iҎc"^ވ^̚{7<_Hn` `P0(@ `Pc%f"mW>oWR\Z|nk;[G:(0iw1x.ҦY70inޏ$ ~e6/Rtbْ:|/ݟ7- uЛZE:*uKQMz~:N[^>/DZOGӢp#껥94 _HM|)vk~;W[ngCg=L/}L{3M4ӐKm:;w(7IM>(f@:z=қ!/3A 0(@ `P0(@ `PcuHnF|NKVNGiyHx\&^5~#IG^Y6qt[MHR"ػqyuEو[sEzZ>! rSߏFM7Y[󃈏PZH_J;qvÈ,MFuO"}myBƩl%ŪR]߯E|[]i(Z.GZ[4HR-b7}JMr"Hy->h0 `P0(@ 0(@ `13'\ngMn1iMEڽuRQ~хH#R< Duv[g#=Y6o<ɟޝHϻO^&M1-W[KnGz}|HMRMk(v[~j2#mFR6#?F%mCA?DBաru -H+-˗r^^SXݸ n^M6i2[\.@NlUo1 EP7@p&(P0(@ `0(@ `Pp~]x!lĭt\tt:ΉTDi/ӱ@d>Ho'JNEzdW}Z}9҇>UAI/T~I|&#ׯr>tB:-}<uoRC_SuEyd/Ҝ?f1h0 `P0(@ 0(@ `1ӫ-EZ=+t7ic{6Q't깋7".Bt` dԱGIEzH[#H1d0iɟVm;W{~9J-GbSğoF|ӻD>GRnOA Fi^'bOٝ<rg [_k3ص凵}q.=[MÈ.Gpb/F_M!kO8(@ `P0 `P0(8XoFzU>HU/6ik!zטNGiyݥH/֮_#n0IP=w2ޅsu]v"M禱ڬkGO*?T"3/Gp=tt"~l1ZM0/G\Q]i/ER(ZK H^2O]H{ul JKR%h0 `P0(@ 0(@ `1V>iv?-D\OWXqe"lĭϞnQ>a:Ψ|tjw">g(wlK?F|\ 3Y%ըu/?6jO݌ޱCJ^6p)Rb tuYC שP3ՈNC.F|#ܒGp}}hrnڜv-,m/G0⣴yᆴ_#B\-+V"~Cވ b `0(@ `P0(@ `Pcl:DaG'yOsGژ Ɉ{6i+H"me&0w1dĽ3ҳ-e"~ԒM5uVuD|bnӑv0@HHG"]oG|q(\g"=aX*3~'?Eng'-'do"J0Ꞡ_+WyިWOzVkiL߀ߤ"˧Ljzd`_ү/igԾiMMS$ވz>' `0(@ `P0(@ `Pc|x)>l)NEܝws&Q6r %]S^A"~N䅎~m;6Nj\)͋&鉽H_4JFcoG|Q-#l.fHFI#].p)ǖH|"N:H߯~P#T/v>җ.۱=-#>)p+FxZKt>dyYWIy_NHe.iX?LP0(@ `P(@ `Pc\m2ރQ ~¦#,E\Lو[=]8ӣmȤyQ"ňk鄇 ûG:#mLEM1 +i (wiv)_U/?W};7Xj4NFz:fs6R뜑e-DZ{cozK4Dz?\&m&r-7.凬jwd&mui.=ŎO8(@ `P0 `P0(8D?FjrňkgWmIKP-WFڢ{(fj~R;龼El8Ml!zG*P-iyE5ihy&C9>oգFI7'6S'KtHoZ6I+6q_]x.7 N10 `P0(@ 0(@ `1HZ^m1Oiot8qOv8q)jNGکmV'܎J H[#>S[I+=Y{u&#L'Z}|T驹HݧiLE-O4/Gz/_^krK>^,GZkTPզNG[um2#4yͻ ,<1եxM= 9 c_e.WBյ;kf%i5ߋrEj&HWw-׳&YgO~E) 4g0(@ `P@ `P0ׅg"mowq}7N#,E\mrH"m6rlH{Swoq!Fڪv@6ٟ#-p%_oQM}-ۖ//ԫY=4iz&K˹YҤ~K:}>@L4m9y`{Mzs#KĿ!?D|_~H+;`!X Z4{W&+Ra"}&w+jw?<#* 2SSvoD|]>|/ɇZr#>JG8d}#m܏$ͬiL6YSVo蓑R疟SiRgorU}U\z;CSӯ]@p&(P0(@ `0(@ `PpxH;==l.f?[HZ^!N#~H'LFڻӹ6EɈ{_h>F&kw  vk) (eޥs "}򢛖 ?eo\ ,5/G} *wV:HlGjZR7y^"M=]>M6.ݗǩV'+fQkÖ*7.AoqS$cCUu׶3A 0(@ `P0(@ `PcMFKq1i|Df#mX>w:iH+!q5{.מ>oSu7ҳ?Ul>Fx!oFzFzr:Z: # $.W"c)[ޢkrkpPnuik8iot;Qrs/D aJɈ{JO%եHwoLy\@dRz,Ww75)@ `P0(P0(@ 1f"nKV#n"]~F:y"~v\tr7#jyvA"~~z5Xz#LjH/Tѯ! :N&OV=P `o߲7w_5[Fz7q} 8(@ `P0 `P0(8i~HNGڸ^>ݸ|¥Hk#ztL&|4]e;LGIGEznm:~'7"*Pw#r][^e8ۃ4ufauL9q7tnMzeT{Vėv=TzixND>oE!"|7Ⳟ~ӟ=r^^"mعD|^^R+7([ڽz:!{_ľpo3S0(@ `P(@ `PcC>s6[ېfU/4e;}"صHooG|u|/}}h^-mwiq1sq0y.Դ龝~1@0(@ `P(@ `P0Y6ӫFښquoFzu:}!Һ1ߙ3ߎb1Z:a&#nT+E~KmC_SdĽ.ANb}+89j4[z݈NJp?&:$ktir4v~`zun^C:Yj#MeC}E<]Eq;[%|HnDzSğHO4J6D4RF|binU>=Ճ@p&(P0(@ `0(@ `Pp&'GڸÝg#nUpb<io*D+KW[m&_ aw+4`Z^l.fqm[2Ņk:ڲnFzu1tTW6|~޷ H}<'M&Đ[~:"7vm,͡#Tiq<|+܋L䅆՛&M}Sğ#|,ԑow#=Ku#3O]X.SEFh0 `P0(@ 0(@ `1V><iVė鄇Uq#멈soFz#W#}b '܋|Lmh:NH f|čtя+IèɣHk#i:X&"7'^GbعSj#Lj!"~N_rUOsz)}eTSu_S-b7.w COjov6#1 |P-Oj?Dg:گx9`i{>-qh0 `P0(@ 0(@ `1V><i/tl 3G|2q|ň{8c:\X^H_Hi+GHGˣ4 Cf/z!N]aH;cNhپ$=Nu_lʃ6m/=W 囑^ v:WcVɴ1?5JʆO8(@ `P0 `P0(8XK,DZ{=қ깳f"nϽy:: -EZM|п5y=ιH܍rMF݇)OtJEz;qNs.Dzb'[6q7-#~*H;AM zG_Þs{??Dg&M+WZZN^M4O.kم䭈/Oq8f"Ui4)a߈z:{} O@p&(P0(@ `0(@ `Pp^m)j::i+w}'֔s6/]߫6';&#-F\k9"N^l>FnM,t0R^ #4Hgz ?k:z7ҳْfWg`"~7ua˵Tt^'S܅M-'hC"=?M;a^KHtKuvR' `0(@ `P0(@ `PcW[މEz: <iɟG:,DZ?VSwg"n7HOnD|]Hf#mX>w.f)Od9J+HnF|uW󻑞{H셪þ:NRMwq|V]zr59ӯ+~c\0qg>4r_=m@p&(P0(@ `0(@ `Pp~]O>q_w9d i|LTg#m7S>^-o1i$:,__;d#Ort3HTbOZtP>gK\k2EFX~=mH-O81u'7#-#X0"mVϝ5q;0iL7ߍH"p>җrH{)9u{??}?w2?߹1p]<)$UAɒU/zO¯y;IL]LHD[cg}ǔdB)qwYD&أ>^Kha!J4$s!~ZĐQ)VzjZk(kVZm6s/{F +Fcƥw0qgu瘶WYuXNu7N8ɧzgM7rmqǪ}Wϫ~ZjjZ^~_5~o5cbx Qk{9jf~DDV--Z1V0 ?J_[sZsZu~j@BͩO`a[GM~$ݘR^eZӷZɡ2VM#d;[4%Xs-&h3LaΕc{!vji6YZ6{ iwaQ9xg\g74:N_kԑmP.`OpuJ-xjك6_lkDB%y3>h#:wXMLexkw9mZ$i5ߙ֮p׾(̾57#c0D}$[<ᮕJ4^*>sXH,@7 pڏv`pIV$1:.|Pc=ܵJzs4Q!>^ \}Atc1s u̬gcgaJ̬{Klw4ckmw)E sl漯Y ra_.W~-ґ,l5oWjw3+iaq‚/wJ=-e^ԭv?BrV.m\3V~;>[Y V'Pii'$Z'N.+,2FC:{8;wA/;\ ȯ|OOwgL ߓJ"~,r3M(U58z Z] ~j}2pvïVhr$"˓ żp圎'X(ncd0Bk1M w ~nkP8agtޅb{$aB^X;m_\HY8Rwޖ5MifBD'x Mj& w)C0d'#`hp:7^Ie}8 1furh c*DCpWF&ͺ~huѲ0 x֙IR"JŴ uꃑ D2W62FWȤ↿gjO& "\a &7 b!` dze=3.d5ݵ.z%``X[#C x>jdv,94t~һ>eN\#qxc8v/1?( ?wqUA~n ~Y@g"`*;a4EZ@[dQPécHdl Fs?Y7 ymCR 6yvFEAVיbz""X8;KAe"faB Wjf@E ! -fE3mrS Vp NqB,:S爼 8g@ Rj0ʸPm6-DcDhshekYTikWOL3`mYY*XGP@JEJӧBL5< f*<9%X,}gd=~hkY"8XRn0WwЍDD8 : Y Tׁswˀb=ThCBT|$D>FL+`m =OՂV|P92+-D#3_L, 1ErsWc(IDD%,K9s8>"F,(H7-8""R(ψ S!θѧk啡f4M# %Vf[FsB1Q vXX310a*V𵁀 `NSt{A!/A}zuR qP6MM`|}I D'rO3ÀSqb(C>3:z{JE 2Rc6AeHf!)֐x$3)\[#eF֥:Ģ /%D]+Y^rW7UH3|b|=Lܓ001qCcg8"^)\x?oǜ SP$eH3]݂ZgX-,L1ޗrȐ^Y96TÚe]+{I,y2(һ(r''W1 /,KBq7D3˒MpE'!yYC DlBC2 @P _`YWC]*ޒ${E9<6MaHz<&RUm>ڍBny)'\W]6+8ŃfDM*H"U< Ȯwr,(ddE:e(") T?(aUAwL!P/XojXS Jz b,eP6RnWΒ$" ߤj/~#^Td+C`enBќu{c2a!DA.TaVVxOR¤ bթ[&S6GuS%r% EԚX[YgJ<ţ0}T rqKR&˵ Hũͣ g £!DAA| T ,uhOh*W a"ff K=*Qjrue\?we^*>}c[R,FHlFKL0d#n -qxfBaDT+^.j$~QrZ PnG`G*ADĒ_kC#B 6_IGـw@3 Q<|@ ϟ?YPd= /1sU%JÕ>}]YB,`H N }UD(ȑDހz&QcT8qW%^ SN$GⶕJ%M#ͪB n ѸU7hW< H[0A1\$bl"8qyE d'5?. 0 ,h!Hb =gt9ODZMtAtN& O( UJM$9CDWmYa8"ZنiŚxޜ` ܒKVUD|t=6VSGT¿d%X]lbS#5̳GA+\KmE|UzJ4&.۰HIMcf8qY Fhg],ꂙv Ha.0jʴh#<2 g*_KIsuڊRXWG"u-v!> 0QL@.F\(uw: '|x$X a&fw,]xn8uо6tome3*CßADʲ`(c{tBIi$(<`}fv0D[@2>,L#;I@Ѕ/ !r?qk,WRKVޕ{W`BPɎTbY`xDYaȪA>ͰCzJ/T9er, X:mLtݝ*%HKȵ,t EJE|Uh"NmHk@[R5 { ȹ 6t6Vb>GS"%@k'5%TAZA$H* eq*.Uq*zԇY.64Vq䯆*FPm!IEڶ#̓(( r]m* m#;Gh6dHѻDSFWgg$@}kdmA`_ŷ>:\=C?rK;nd\$ &YF a ~$=tuYeډ#cę%+E V vK ]u-J'|kmlu<&ᐐt,N!/d,(ײ;#䁗b>t@r:Eφ&EEͬz$_5kzp-6УP+Eɥ <  dL 7C_*5waq್ERQ2v9OcFFIl|_,[OdߨauK >Yz=2Cj>oOimbZkPF>IN6u"_6*UUz!s^3/kVHPoBCE쪪[Z)"B .V+WT_DBC*ԫ]Ln 2H* $!M(,QQ/>$N;r{"3ܛbFX@9=7ᴱۺښ_:йKD&YLW-|5b<C11YU-Qʀ2K{Qor, I>UUb}@Qv`@ئ\2?j5ٟ%7lQX59HhȖvRq`FJ >/k}oS *ϣiD2sEeQڛTE9W6e1v2CovupUTt87? b 4q8hʻAITq SkF= *SPiPvh.T!-Uo84g ڨgw0s27q[Z+":.*CXQEJCT,и-}uɸ-54~;'rK3~B HkkPi<{:K᠛Q>q &}4mmL1x \Ԃ 9fWcQY B&@mq` f7rRݐEq}'DFJwfDʬ x Sem;^[*u}CR .SwK-07mgfRY*YNNK@`dAB?nPH; )!L k- jnUÀP^]- BTeT 03ȯ(ϛNQf]LT߯%u06XR'E-Ii Mc3..Zt~W߈Ug@}/}hM=)/GgH@ȓHR6H52c ,Amgy8/앙DeU2T!3ZRe%嘰XO.xmjg_?|{wDJtc^tώ$%ugxM{ӝ RBo}a ֡F@9[bDP+h?^xGR :1*r ?)~_"QsT!F:ay;+Jhhqh8Lx+jC[]zZRS*Wt;oPh4uXL0!lBu )+؍]!}i>L7waj{q>:3XF,GrW<:__U |exMx[{.*Bh" qp{gU!CN+'U,g:r6C"|3zUJ :ok5N{Ipk`.wrG>:kjnEUEl?(8 a#8GFu|,s[ᐁcmQM6|ʽv5mrQG#be&T =ݗ ྶ>;M8^J.mSu}?C= ~:YMR忩.M T^aƜ& #$<;hN$ G)&J>00NGulU9VÝȜ]=kWD7wej&N.LQ2iw7ZpkB"2ԛ'jMYWxTFj.ֳbD-%: o8؃ hZ2"xBd@}ԐǨeh@"c9x'-̣V=Gm%X^"k2JLt@FwUZO5/"t]#1 K}|ZS!SȰ"շe\Ts^ l&/K:2qUdܶZIdkxFiZd WCC=Juƌ8/J nSǃ` 6o[B!xt=%(MnJV7<az-+#xy C)h9":Eb1`X=atjF[ϧ y~]Sk\QOLpџ/ *>u&S,!*Ǯ{~ \N+.&uG|O\2J8@LС`F%Ro] gh\8x$YQuDcCƒp= &OUQ8*R$@E4k\ SՌyގC:&@^X+qr`6w@:@ZGvQ;stMUYP'٬Q.͚j! Y!_뒈A UA Y\{v6[q$1:##CuUI·ePNQ܉pX_.6ecwJuB@1pQ0NQ);ԺU#ʵs'0Q0a"1.@@pT+[JKv` k&E | >Luݩ좦0i58i;3=-̂O{`@Zm-mE@^ko1CQQU% S}l=J c>1h~\*ԵóE Lj%O2ׯ|TzCvUꭹr=qɮM7!7Z5|SD8]ҼÛl6/iHE"@bN$wUyAaBP>:釹5U \MH?6Ԫ} UbĨOFs2~:%vh+TpguBB1qT=ZL֩U/\dIm)Fp36jh8Y"T\$$Udx5^턀7 otw*u.mUYI[ojR-Em~yrGHS(&Cx;xOay SюP}FMwI#]V"Cb ܆3U,2Ig8"ugjM@VW]m54GIJlR <؎HY0bVj-(I>dt-I>` Ƿ;t%:G@q$ٺ6Xs9:EBWVt~*9Dxˣ! Un $%1%`Bk~`ƷA_\OЙB5YUx:{!qSynے{""'z 3 _HO WUR^X%:% 1IcUm`,jR-8k3ijn&@F)ƪA\ekLqUNĐ%au<<΂ʦa5Ի\r ́>Hq 2 nS 0&;#y=RLߦN|e)KQßXkQ]b R6m:\N{S9LXАGztTtV$ B];""ENq(WF :e~Q}>t@)Elb28̭Ʀ-JhRNU+%Ip7sɭ9e"gmLe,8w5mzL=dlKI&-# jBXiJL'ѝȂPBCǛ?O:TcLQVP-vkôH/(׫/ 4X#S2AaA-gL%`ћ7QiOF@mfywz[<[ |ZI@%- 1zuN+(3MH'eqA_M bMh`֕%ViWg3t@{t06I9x恧{B흟IJa^}DGr}ң ϻRdT,yۻ D0{᫩SB$}dDgxG,@ 0_9 !dWRB:99^:ڤDV+.#).CH-nݳ5!-ꘪgU (d>mr)^m݂Q_Gm-{';UYyCj8IdA@yu `@GY u ۵r\ |Hz+I|6j;S󮣞 eDߗ&c+Qki`` ,U#N6uZ2`FkbR7 `Qx@׾Zm i5fR E' \|'AJy5aQI uWMzhV=ܬvL¿Pe'f +_3C 63䛵y{^Tp<M$U <~OU#8{c;:kY<F]1a2SUo#J kB3QܫɚXʫ zy&ZsdVm18ye5 ӳ4bl}Ź+F7aUEljHZ1O&%Z)*@6d+>]~t~eIf%EHū\We R9TReΥ`cV-wMmTRףT).zQ׫}pk5_ah*M6NIu|JjSݼ*.†: GJiZzWKnP:9@A\Kljer̦Ji{rx' ^$JN \S*V^[ ''SG!.8dfBMw[z ng ڳhC#U^`̛i_eɯ1^ֱucԉmv[5C0twT_4³u#Ir)*dI!0Az 33TKzɡzORKxݱ\QAOyy3IN>pIRRgdm%uk6$_3 ZR4*ua\Ut&+T[Rd+²^NM;aUݚkA $9$SաSpܣeb7I.:48;aH !ޮ˦"*> nUp=J*ATeC ˞!۵rXΫՠ5D|mF![odሤD4uxU}4n]@J?U;򝁊l͢u!ґC 0BzoTEë縡]@4$J݋|CfVX1WӕwT:^8==ysLR+ ɱDW9 Y T=c-:=RgC}?uPoI pHYs.#.#x?vtIME+;xbKGD99IDATxw\Tɶ}νϽ3J윁&6A "YsΨsƜb@"HP0gg<̜[PmQ`]vB֯Z7GtZP(* BP(*JB'[ !QP:RJc vt R\/ 5֋ B@@Stn30= nWJMX!TvOHG\Y\IўE TvO< onc87 (TT**Jݥ}r=0{-p Z9c0lzPP: Vn'gB\4& tWOuciDPPP:0 2c |1y%9eT?NdIr̘,wH(* BP(* BP(* BP(* -F_=w f'*^{}{!f?**  c)>04h];\?36a]ؠ>BD$8V'醱IP&]fa|p.ς{RI@Nd%u5`")T  Bʀ9{fMC`!vD]9scCJuc$Y̲ ind32/λɝ7!r230 u ltN0:u<;9O!Z>puY"-ZV1\!F,vK׼ @#vSʴ5e -Q]_aL$TTTTTTXa^ѹ>GN"O9stnd ԙe$Kz9; obF&b67qoJ0gf=MyMY>7I_ 80['$8LtT|c.KuvIҹr7ۿ';xpvwpzH>R$;Zn$PPPPPP|\/&Ěy,<,W @0pnﴧA1fI;g};Lf,{#mow|T}<+.;w$awCU;a-:ߖqu׊õ%CqJbL$W:Rd $.w!K$g ] "SC1q󰭘 C,M]IH[ڊ9ϕ܊t[!Lb%*%F{l̵X yOX QgNjEchz{ATs 'gI2y5um*s f=ry!rj;ž!kv:tb ="G +7&>qVK8>.0{j%W8~dedIʚ'sn\W#žȃ.b+.6yP4Mp4DrkLW f;δUrkiD| V+V 'bƪ-n ,I Yv!s4tQ2̂3b%F{?+-އ&&K ߅W#rg%N%d=f&KS) Z F ՕS⏣ MmJx1J0ܽ5K}-*)!KLؼ$! dS\Ԛ٘}teϓ0B{_`hyp{q| vb8z$?ٶ |>i Y-:Dժ0 wi9DRYgbHؼ@߆gt[$l؅bBDN:S4T|!ׯ&Ysieij ܅*T~Fթ20>a\LN1PV6gb_c#.ܴ [dvawx޺4Lt5OB&+d]%]%E*% M9a[POU;-+L1M"_ێ1/0vamj.\.ܯog2ǖL9qK2ꁛ >՟ %{npQR6i'2`Dh#e9hb$JW[kC8C#b onc67K6->bwABpUC 3!K&7Z>oG@gJX!\CZmeYbdfyLwXZ2#͸\ cQm~O$yNG@jiT|M [>vUPHw@ WeUb]2f @͒fU,+Eq#*"L$ר<}A`4\m 䲭^&K]%0,t}[-dl6Zך'ڠ~]m=bD4X)aLwZb .cH[nY6ňֳȳ,y4ܴ͟-\,/t]R}mvkcfuR `rOZ xU)ܪ،,9 '6g>؅8DՑ%mpy.@ OoKà6bLŧ uhigs'ǥo0 p1[Zg d^1kA$WC{2]*g|/ j!Xf!\dQP@>ɇ}Da|MC@PPPnH1Ci:WqQOu7)t tZ2/&k/yhwoLTM:i)Oe{؅ܪ!Jl։$dɰ=Cv$+wOv!mM g\ l&NQKFHFO*;31%ݖ7-׮HsΙ,(;WLrvZ>s{$sX#>;Xk 3n,JI&nf,YLV+Hik$ispМy'm!YM!U"ug6HBypՒ>`vXSf ESyܒ$G |$sa+~t'䘇ql;wN^Hƿqt"Kﰼ%] G7fU#1еCKBo]S7QdI4W #'nVٰmvq7E|I!ޱ'l$iV6b^b#DsێpL}=Yョ|57-t4C֩%Qz蕳%㍻գ*F%_, (6d= {hSȪ&ϛkt },c='Ly;Rޗ Y\NI>~*,:?,9\A*YPx4rIptQ0"KUZBͰon`xyp;2L5<1Wؓ'uA\>A+L Gē+qMm =CBN (TT** K-,2@}ayr%$ҍm@_$ :o'{mީ\}%٘/ HPtW8bOW>eoC^r1=k1ic1EEԔNKC"0^l\K1]vMgx5{IƸVh}ONVz^sȒ#QԛidUFֆ!GIZq"^(QPPPPPCݖ"9pwSvdɝajFa ~kȭaz2v-vsGczd&Y&SP|؞$!napTzq`! :ou YgHڊ!.]13g^Iޓ`mGP7`^q LT#+51 KH3c'r9h,sQN$1uЛdITuVWx5!42Ah 9ٽ/vh/[$5zz4fИS%@ڨp>ytyy(LY`yHǎ@$jrվA^Nyu;]RƲ]:QxxDNufuLm"X$h+LuVndIVu?&a1!ν/o$0~5YYlMmgqGJMKnc8Y)C.KYޫ-}1+-}<ȒA+#~/! TA$w=`ӂybI nS(TT**Jy:9z!I!ס7Tp%Q5N誵W,Q_ vC8iPt3t~ Yr uL.*a7B se2LI[}񒊸.wTY 靖!v;T׍*hwfR9WMc|5%]qV!au_Ո<)y込~0YmL.2Fc\\%c{Yϲ!d Ծ#[iYkmHq动4sMQIQ5NHxPAĽrcBF.`b,2A!osu,Qt t-ƛpT** @k}UXc]%A!V=Y(Q O)o wgdI·.>@!bw rEa8* " wLl۶o9|BǏۻ))Pj#FPGF-**KF>NPFBPs|ʔgϞeXB gc/'oPk0^jyGW{o>:7:w.Fp'4ߒl/ 9@ fAs0f%$CS&C,ߚI f"ghbx8 Ck2j_>Po$ÕMB-kL+Wy#'n`-̷_aN[6 ߐ4bCM`ܡC9i{}ƕ{XkYBcwϑ%-W c9WȳoK ]oKob]nz6&OEIɍO]:S'|7$.bth؆@zЯ޾cG$a&Qa&Kz>P#7OOkγ x@g$PU.V{M>Io@=m_xSK C% K27Y~'Г5|޿AY"hz=Yd \E˹|}9~B{#oLo%Aߋ{AWHߔ_wB0U;:wfW"?6+kKP_D?=T-?^~A' G.pW[u[*~(a tCiz—.>߇ȽE&[{U^R<$C@%g;HG$={t4tI(^( @!:2zgb' dDsɹG^G]x޴Ԭ8r 'c8Ȫg~a1{:٘d{:s̹]Zm۶?jrM;mbI𪃵W,r_5旳YKWXU rRpfkLylqY >7a"\m[>kY-0=Zo:0*8R3@<%k\ j>y7g8-0`=Zʞ7u0΂}-W:/W @$E9F$lV7J"YSbd1}5@smR ϏtۡIχ (״ ͓MkzjX9 Mp: YqS7$4)CKٟd:NC@n:BN8NtL`UW_"xݐS[y;Xo³vV@I'>Xpul ~%.U4k]}gzq gmj0b{aMYjY챤s|u)-Pںn}Or?&u ̊{ ~n\Aq`OϏys mC \f0%Q'Q+S n%lf'vÅ?O1 ne,H޽ܹswo+ ƍog^v̙3;v ꍦu0== Qr} ?_>8!={0l޾} L>oUAtmrn/^KOnnn]^^ZN9r>m0\[}COoBPfS:B=ck_Y)G}|gZI/c~|븧~?Q_>dܹ:~ ~sNXX8M>*60>j(--mt[СCMʬ&v[e"^{c* 6Q[ˮή5c2ʁ]=ːM7 O{pda^Y3#}-D'npFFA?^Op$CYGmO}:rj޽M6 2Bm@όo'N\S \B.{)46R ,R5 S<qFfRG}09sF[*"|fމ/8\ʷ?Q~4'nY诲k.M'~WJM{ի!m :}?ŋ6\]5mϚNۑ]6mB/Hm0S]C@1<;"Q^S}׮G=o+G6'jֵ dFUWWk9'췭o$M^.dt.n!0"?$ ^KzN $]@_f~Wj~޶8={3@MuC6AԿ*Ijs҃٬%1V?p͝1A NQdqk[y#8wӦMkoFƏg|zjxqݻԳkep8Fj!V]PH( ~NQP u9Fs! ['p>Io&^cRop VԌG 1unmR Edcp"q~O|1``~׻WG_R7^WZ~V.GHr<~/:;®(\3koܸ1?S{jqɄ"hj[YUoD?~UzӟޡNϽcoW75so&Nph?cm߀q,/{I9*O27ƃ!_V&͋/Qۖ$Y2f"ƅ.]/M9.n[  璒l+tۿ_}T'xڵkzb6F`OVs3v\vU(iP9o;9) UeV-ʧgѷ-g\$Gl-Ww4yكp 0a4٘1MO-Y򂂋 r֭[8)'lٲyйA2R #: < {jE0J˳?Qۺ бGD_XT_z=13IN*ee6y ˛y^xQ~HFSgv=WPmPgq'Nī0ѣMYr`ܹ-oapK`/i⤽ޚoSk<w`B{皞վ|y&ͬEg/-@>u _1:HSF!dN N"YsәGO~-Ӵ]hԩBBB,BfjYJ5m߶X[F6k)cT/vu 1?K(SA 82yك`RR[>*/2>0b6R9@Vl@s~rL"[{=\{'ՠJΝ;! A. f#F@w*= ?d6Ph|t 6r.1g?irJ (UZϙW^VڜG]8L=]} {F^|a7Od LkOo}ZcN{wyyW(?t5hlmѼndee2RZS\T'-whXƞe|CRRco0LaR9&tLKKQ:XYY>6pA(shZ"OgnmN9s&2ۺU'zN TQc*4)v_/4wΙxK}諊 }~֯_O{)@".u]h'Ǐu14Zt#lȿg_a&XUh)@^~6CiY眝9C@(CPҁߕ6#46RZY\ ]p {|LfZuim|R*ϋ`ܧ+.6N>xd7q}O~OC@Z|Nz}yՐ!CH(<[WWs3vj3`6ܹ.[XǼ0+ Ԙ_"Z73|J>/: ̒GV;^X^74 ee -X?~ իwŏǁ4wРAdηep<`8G A9h=3j@u_c ,ԂoC 1fPfdxsӧ@%ѴbYm`W{?hZ<rҴOCZ@r|4yv{ZrH}r/_U!yy^|K:0;hܦIO1tFV(SDSK9m ArJΜ9C [dr߰A*TO? T%4&Hg\n" "Language-Team: Afrikaans (South Africa) \n" "Language: af_za\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.6.2\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "Algemeen" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.am_et/000077500000000000000000000000001412213610400343645ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000054551412213610400364260ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.am_et# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2021-05-20 22:29+0000\n" "Last-Translator: Christian Gade \n" "Language-Team: Amharic (Ethiopia) \n" "Language: am_et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.6.2\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "ባጠቃላይ" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.ar_sa/000077500000000000000000000000001412213610400343645ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000055601412213610400364230ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.ar_sa# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2021-05-20 22:29+0000\n" "Last-Translator: Christian Gade \n" "Language-Team: Arabic (Saudi Arabia) \n" "Language: ar_sa\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Generator: Weblate 4.6.2\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "عام" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.az_az/000077500000000000000000000000001412213610400344035ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000054361412213610400364440ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.az_az# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2021-05-20 22:29+0000\n" "Last-Translator: Christian Gade \n" "Language-Team: Azerbaijani \n" "Language: az_az\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.6.2\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "Ümumi" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.be_by/000077500000000000000000000000001412213610400343575ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000053271412213610400364170ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.be_by# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: be_by\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.bg_bg/000077500000000000000000000000001412213610400343375ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052151412213610400363730ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.bg_bg# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: bg_bg\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.bs_ba/000077500000000000000000000000001412213610400343455ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000055751412213610400364120ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.bs_ba# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2021-05-20 22:29+0000\n" "Last-Translator: Christian Gade \n" "Language-Team: Bosnian (Bosnia and Herzegovina) \n" "Language: bs_ba\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.6.2\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "Opšte" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.ca_es/000077500000000000000000000000001412213610400343515ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000054431412213610400364100ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.ca_es# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2021-05-20 22:29+0000\n" "Last-Translator: Christian Gade \n" "Language-Team: Catalan (Spain) \n" "Language: ca_es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.6.2\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "General" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.cs_cz/000077500000000000000000000000001412213610400344005ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000054661412213610400364440ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.cs_cz# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2021-05-20 22:29+0000\n" "Last-Translator: Christian Gade \n" "Language-Team: Czech \n" "Language: cs_cz\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 4.6.2\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "Obecné" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.cy_gb/000077500000000000000000000000001412213610400343625ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000053101412213610400364120ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.cy_gb# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: cy_gb\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=(n==0) ? 0 : (n==1) ? 1 : (n==2) ? 2 : (n==3) ? 3 :(n==6) ? 4 : 5;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.da_dk/000077500000000000000000000000001412213610400343415ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000074241412213610400364010ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.da_dk# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: translations@kodi.tv\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2021-08-04 13:29+0000\n" "Last-Translator: Christian Gade \n" "Language-Team: Danish \n" "Language: da_dk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.7.2\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "BioGenesis pauseskærm" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "En implementering af John Conways berømte \"Game of Life\" med 3 brugerdefinerede farveregler. Et par grundlæggende regler styrer, hvilke celler der vil leve i den næste generation, afhængigt af cellernes nuværende tilstand og antallet af dets levende naboer.[CR][CR]Screenshots yder ikke så meget retfærdighed, da systemets bevægelse grænsende mellem stabilitet og kaos er det, der ser interessant ud.[CR][CR]Funktioner:[CR]- Der er implementeret 3 brugerdefinerede farveregler, der hver især giver interessante resultater.[CR]- Kolonifarvende farveceller afhængig af farven på dets 'overordnede' celler.[CR]CR]- Farvelægning i en levetid farver en celle afhængig af, hvor længe den har været i live.[CR]- Nabo, der farver en celle afhængigt af naboens konfiguration.[CR]- Mange parametre kan konfigureres i indstillingerne." # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "Generel" msgctxt "#30001" msgid "Minimum grid size" msgstr "Minimum gitterstørrelse" msgctxt "#30002" msgid "Maximum grid size" msgstr "Maksimal gitterstørrelse" msgctxt "#30003" msgid "Reset time" msgstr "Nulstil tid" msgctxt "#30004" msgid "Preset change" msgstr "Ændring af forudindstilling" msgctxt "#30005" msgid "Minimum line size" msgstr "Minimum linjestørrelse" msgctxt "#30006" msgid "Use colony colouring" msgstr "Anvend kolonifarvelægning" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "Anvend livstidsfarvelægning" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "Anvend nabofarvelægning" resource.language.de_de/000077500000000000000000000000001412213610400343375ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000074401412213610400363750ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.de_de# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: translations@kodi.tv\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2021-07-26 14:29+0000\n" "Last-Translator: Christian Gade \n" "Language-Team: German \n" "Language: de_de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.7.2\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "BioGenesis Bildschirmschoner" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "Eine Implementierung von John Conways berühmtem \"Game of Life\" mit 3 benutzerdefinierten Farbregeln. Einige Grundregeln regeln, welche Zellen in der nächsten Generation leben werden, abhängig vom aktuellen Zustand der Zellen und der Anzahl ihrer lebenden Nachbarn.[CR][CR]Screenshots werden nicht so sehr gerecht, da die Bewegung des Systems zwischen Stabilität und Chaos interessant aussieht.[CR][CR]Eigenschaften:[CR] - Es werden jeweils 3 benutzerdefinierte Farbregeln implementiert, die interessante Ergebnisse liefern.[CR] - Farbzellen für Kolonien, abhängig von der Farbe der übergeordneten Zellen.[CR] - Die lebenslange Färbung färbt eine Zelle abhängig davon, wie lange sie noch lebt.[CR] - Nachbarn färben eine Zelle abhängig von der Konfiguration ihrer Nachbarn.[CR] - Viele Parameter sind in den Einstellungen konfigurierbar." # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "Allgemein" msgctxt "#30001" msgid "Minimum grid size" msgstr "Minimale Rastergröße" msgctxt "#30002" msgid "Maximum grid size" msgstr "Maximale Rastergröße" msgctxt "#30003" msgid "Reset time" msgstr "Zeit zurücksetzen" msgctxt "#30004" msgid "Preset change" msgstr "Presetwechsel" msgctxt "#30005" msgid "Minimum line size" msgstr "Minimale Zeilengröße" msgctxt "#30006" msgid "Use colony colouring" msgstr "Verwenden Sie Koloniefarbe" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "Verwenden Sie lebenslange Farben" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "Verwenden Sie die Nachbarfarbe" resource.language.el_gr/000077500000000000000000000000001412213610400343675ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000054361412213610400364300ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.el_gr# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2021-05-20 22:29+0000\n" "Last-Translator: Christian Gade \n" "Language-Team: Greek \n" "Language: el_gr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.6.2\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "Γενικά" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.en_au/000077500000000000000000000000001412213610400343665ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052151412213610400364220ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.en_au# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: en_au\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.en_gb/000077500000000000000000000000001412213610400343515ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000053341412213610400364070ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.en_gb# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Kodi Translation Team\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/kodi-main/language/en_GB/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" #[Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. #[Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ #For example, prefer wording as "This new string" instead of "This New String". #[Referencing] If a suitable string already exists, reuse it, making a note of where it's used! #[Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" #When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. #For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.en_nz/000077500000000000000000000000001412213610400344105ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052151412213610400364440ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.en_nz# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: en_nz\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.en_us/000077500000000000000000000000001412213610400344105ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052151412213610400364440ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.en_us# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: en_us\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.eo/000077500000000000000000000000001412213610400337615ustar00rootroot00000000000000strings.po000066400000000000000000000052121412213610400357330ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.eo# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: eo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.es_ar/000077500000000000000000000000001412213610400343705ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052151412213610400364240ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.es_ar# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: es_ar\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.es_es/000077500000000000000000000000001412213610400343755ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000054611412213610400364340ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.es_es# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2021-07-05 07:29+0000\n" "Last-Translator: Alfonso Cachero \n" "Language-Team: Spanish (Spain) \n" "Language: es_es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.7.1\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "General" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.es_mx/000077500000000000000000000000001412213610400344125ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000054611412213610400364510ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.es_mx# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2021-02-21 20:28+0000\n" "Last-Translator: Edson Armando \n" "Language-Team: Spanish (Mexico) \n" "Language: es_mx\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.4.2\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "General" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.et_ee/000077500000000000000000000000001412213610400343605ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052151412213610400364140ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.et_ee# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: et_ee\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.eu_es/000077500000000000000000000000001412213610400343775ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052151412213610400364330ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.eu_es# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: eu_es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.fa_af/000077500000000000000000000000001412213610400343335ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052141412213610400363660ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.fa_af# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: fa_af\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.fa_ir/000077500000000000000000000000001412213610400343575ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052141412213610400364120ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.fa_ir# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: fa_ir\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.fi_fi/000077500000000000000000000000001412213610400343535ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052151412213610400364070ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.fi_fi# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: fi_fi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.fo_fo/000077500000000000000000000000001412213610400343675ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052151412213610400364230ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.fo_fo# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: fo_fo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.fr_ca/000077500000000000000000000000001412213610400343515ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052141412213610400364040ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.fr_ca# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: fr_ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.fr_fr/000077500000000000000000000000001412213610400343755ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052141412213610400364300ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.fr_fr# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: fr_fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.gl_es/000077500000000000000000000000001412213610400343705ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052151412213610400364240ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.gl_es# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: gl_es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.he_il/000077500000000000000000000000001412213610400343575ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000061501412213610400364120ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.he_il# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2021-07-05 07:29+0000\n" "Last-Translator: Yaron Shahrabani \n" "Language-Team: Hebrew (Israel) \n" "Language: he_il\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && n % 10 == 0) ? 2 : 3));\n" "X-Generator: Weblate 4.7.1\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "כללי" msgctxt "#30001" msgid "Minimum grid size" msgstr "גודל רשת מזערי" msgctxt "#30002" msgid "Maximum grid size" msgstr "גודל רשת מרבי" msgctxt "#30003" msgid "Reset time" msgstr "איפוס הזמן" msgctxt "#30004" msgid "Preset change" msgstr "שינוי ערכה מוגדרת" msgctxt "#30005" msgid "Minimum line size" msgstr "גודל שורה מזערי" msgctxt "#30006" msgid "Use colony colouring" msgstr "להשתמש בצביעה קבוצתית" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "להשתמש בצביעה למשך החיים" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "להשתמש בצביעה לפי שכנות" resource.language.hi_in/000077500000000000000000000000001412213610400343655ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052141412213610400364200ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.hi_in# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: hi_in\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.hr_hr/000077500000000000000000000000001412213610400344015ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000053271412213610400364410ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.hr_hr# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: hr_hr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.hu_hu/000077500000000000000000000000001412213610400344075ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052151412213610400364430ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.hu_hu# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: hu_hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.id_id/000077500000000000000000000000001412213610400343475ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052101412213610400363760ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.id_id# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: id_id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.is_is/000077500000000000000000000000001412213610400344055ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052431412213610400364420ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.is_is# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: is_is\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n % 10 != 1 || n % 100 == 11;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.it_it/000077500000000000000000000000001412213610400344075ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052151412213610400364430ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.it_it# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: it_it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.ja_jp/000077500000000000000000000000001412213610400343625ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052101412213610400364110ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.ja_jp# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ja_jp\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.ko_kr/000077500000000000000000000000001412213610400344045ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000053611412213610400364420ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.ko_kr# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: translations@kodi.tv\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2021-09-17 03:30+0000\n" "Last-Translator: Minho Park \n" "Language-Team: Korean \n" "Language: ko_kr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.8\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "일반" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.lt_lt/000077500000000000000000000000001412213610400344155ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000054051412213610400364520ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.lt_lt# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: lt_lt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? 1 : 2);\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.lv_lv/000077500000000000000000000000001412213610400344215ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000053451412213610400364610ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.lv_lv# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: lv_lv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19) ? 0 : ((n % 10 == 1 && n % 100 != 11) ? 1 : 2);\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.mi/000077500000000000000000000000001412213610400337635ustar00rootroot00000000000000strings.po000066400000000000000000000052111412213610400357340ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.mi# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: mi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.mk_mk/000077500000000000000000000000001412213610400343755ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052361412213610400364340ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.mk_mk# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: mk_mk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.ms_my/000077500000000000000000000000001412213610400344235ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052101412213610400364520ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.ms_my# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ms_my\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.mt_mt/000077500000000000000000000000001412213610400344175ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000053261412213610400364560ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.mt_mt# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: mt_mt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=n==1 ? 0 : n==0 || ( n%100>1 && n%100<11) ? 1 : (n%100>10 && n%100<20 ) ? 2 : 3;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.my_mm/000077500000000000000000000000001412213610400344155ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052101412213610400364440ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.my_mm# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: my_mm\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.nb_no/000077500000000000000000000000001412213610400343725ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052151412213610400364260ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.nb_no# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: nb_no\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.nl_nl/000077500000000000000000000000001412213610400344015ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052151412213610400364350ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.nl_nl# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: nl_nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.pl_pl/000077500000000000000000000000001412213610400344055ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000054601412213610400364430ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.pl_pl# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: translations@kodi.tv\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2021-08-04 13:29+0000\n" "Last-Translator: Marek Adamski \n" "Language-Team: Polish \n" "Language: pl_pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.7.2\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "Ogólne" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.pt_br/000077500000000000000000000000001412213610400344055ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000054011412213610400364360ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.pt_br# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: translations@kodi.tv\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2021-08-17 09:52+0000\n" "Last-Translator: Christian Gade \n" "Language-Team: Portuguese (Brazil) \n" "Language: pt_br\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.7.2\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "Geral" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.pt_pt/000077500000000000000000000000001412213610400344255ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052141412213610400364600ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.pt_pt# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: pt_pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.ro_ro/000077500000000000000000000000001412213610400344175ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052751412213610400364610ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.ro_ro# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ro_ro\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.ru_ru/000077500000000000000000000000001412213610400344335ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000055141412213610400364710ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.ru_ru# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: translations@kodi.tv\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2021-08-13 07:30+0000\n" "Last-Translator: Dmitry Petrov \n" "Language-Team: Russian \n" "Language: ru_ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.7.2\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "Общие" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.sk_sk/000077500000000000000000000000001412213610400344115ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052521412213610400364460ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.sk_sk# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: sk_sk\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.sl_si/000077500000000000000000000000001412213610400344105ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000054571412213610400364540ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.sl_si# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: translations@kodi.tv\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2021-08-17 09:52+0000\n" "Last-Translator: Christian Gade \n" "Language-Team: Slovenian \n" "Language: sl_si\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n" "X-Generator: Weblate 4.7.2\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "Splošno" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.sq_al/000077500000000000000000000000001412213610400343765ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000054471412213610400364410ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.sq_al# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2021-05-20 22:29+0000\n" "Last-Translator: Christian Gade \n" "Language-Team: Albanian \n" "Language: sq_al\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.6.2\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "Të përgjithshëm" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.sr_rs/000077500000000000000000000000001412213610400344275ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000053271412213610400364670ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.sr_rs# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: sr_rs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.sr_rs@latin/000077500000000000000000000000001412213610400355575ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000053311412213610400376120ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.sr_rs@latin# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: sr_Latn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.sv_se/000077500000000000000000000000001412213610400344165ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052151412213610400364520ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.sv_se# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: sv_se\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.ta_in/000077500000000000000000000000001412213610400343715ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052151412213610400364250ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.ta_in# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: ta_in\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.tg_tj/000077500000000000000000000000001412213610400344065ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052101412213610400364350ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.tg_tj# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: tg_tj\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.th_th/000077500000000000000000000000001412213610400344055ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052101412213610400364340ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.th_th# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: th_th\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.tr_tr/000077500000000000000000000000001412213610400344315ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052151412213610400364650ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.tr_tr# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: tr_tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.uk_ua/000077500000000000000000000000001412213610400344035ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000053271412213610400364430ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.uk_ua# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: uk_ua\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.uz_uz/000077500000000000000000000000001412213610400344535ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052151412213610400365070ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.uz_uz# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: uz_uz\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.vi_vn/000077500000000000000000000000001412213610400344205ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052101412213610400364470ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.vi_vn# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: vi_vn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.zh_cn/000077500000000000000000000000001412213610400344005ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000053721412213610400364400ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.zh_cn# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: translations@kodi.tv\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: 2021-09-17 03:30+0000\n" "Last-Translator: taxigps \n" "Language-Team: Chinese (China) \n" "Language: zh_cn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.8\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "常规" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" resource.language.zh_tw/000077500000000000000000000000001412213610400344325ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/languagestrings.po000066400000000000000000000052151412213610400364660ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/language/resource.language.zh_tw# Kodi Media Center language file # Addon Name: Asterwave # Addon id: screensaver.biogenesis # Addon Provider: Team Kodi msgid "" msgstr "" "Project-Id-Version: KODI Main\n" "Report-Msgid-Bugs-To: https://github.com/xbmc/screensavers.biogenesis/issues/\n" "POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "Language: zh_tw\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" msgctxt "Addon Summary" msgid "BioGenesis screensaver" msgstr "" msgctxt "Addon Description" msgid "An implementation of John Conway's famous \"Game of Life\" with 3 custom coloring rules. A few basic rules govern which cells will live in the next generation depending on the cells current state and the number of its live neighbors.[CR][CR]Screenshots don't do this much justice as the motion of the system bordering between stability and chaos is what looks interesting.[CR][CR]Features:[CR] - 3 custom coloring rules are implemented each yielding interesting results.[CR] - Colony coloring color cells depending on the color of its 'parent' cells.[CR] - Lifetime coloring colors a cell depending on how long its been alive.[CR] - Neighbor coloring a cell depending on the configuration of its neighbors.[CR] - Many parameters are configurable in the settings." msgstr "" # [Consistency] Make terms, settings names, brands and other minutiae, consistent throughout file. # [Capitalization] Avoid capitalizing every second word. See http://grammarist.com/capitalization/ # For example, prefer wording as "This new string" instead of "This New String". # [Referencing] If a suitable string already exists, reuse it, making a note of where it's used! # [Description / location] For example, "#. Description of some setting" used on "#: xbmc/addons/guidialogaddoninfo.cpp" # When writing a description or setting, refer to a setting name in quotes. See existing entries for guidance. # For example, "Press \"OK\" for \"All seasons\"" instead of "Press OK for All seasons" after first word. # Following strings used for addon settings dialog msgctxt "#30000" msgid "General" msgstr "" msgctxt "#30001" msgid "Minimum grid size" msgstr "" msgctxt "#30002" msgid "Maximum grid size" msgstr "" msgctxt "#30003" msgid "Reset time" msgstr "" msgctxt "#30004" msgid "Preset change" msgstr "" msgctxt "#30005" msgid "Minimum line size" msgstr "" msgctxt "#30006" msgid "Use colony colouring" msgstr "" msgctxt "#30007" msgid "Use lifetime colouring" msgstr "" msgctxt "#30008" msgid "Use neighbour colouring" msgstr "" screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/screenshot-01.png000066400000000000000000000336631412213610400312770ustar00rootroot00000000000000PNG  IHDRp`;@sBITOtEXtSoftwaregnome-screenshot>)tEXtCreation TimeMi 06 Feb 2019 22:18:34 CETse)PLTE/5ģ"B$t$_%=)q-6/7 9:YB3BC D#EEGGXGhHINnQSRTVݠYfYnZv\z_hiLkmnsv|-׀'܁eXʆ܊w/WRtZƞğW颥vx̧hկ6ίw]H"z?n[8G“5$r)gmϊ1eAтnUմQ[hA"Lߒ.Cvw# 55IDATxkgΒnmi"!sK8C@21I/Y-s(9HnuU3;s<3Ft@/O.pPjlX8a48f`[e|~UJ,| @ 0`` @ 0`0` @ 00` @  0` @  0` @@ 44بs:4ԹFȘ'-/]Lm* G 0`  @ 0`` @ 0`0` @ 00` @  0` @  0`'cl4جs 3~ \4/~@}?S,o* )Oo^@ 0`  @ 0`` @ 0`0` @ 00` @  0` @  0#;1yў縐b4بswu`О2uR9#4yѭJ,[-` @  0` @  0` @@ 0` @ @ 0`  @ 0`` @xzyr" ^9`Ģ=q! ͌jlԹ0h|Ɨ^;E ~טJ#\M @'`0` @  0` @  0` @@ 0` @ @ 0`  @ 0`` #\iYQkԱMFEO[G? Myҵ4Xo]JOn=$9)4AZ+` @ 00` @  0` @  0` @@ 0` @ @ 0`  @`z'U^8ƶZNw| i='v& 5IW`#/Jܥ5~ sl- ֻn> voVq^49  D^@ 0`  @ 0`` @ 0`0` @ 00` @  0` @  0#˓i1g34EO۔(a- 'w:-3j3ipip=w㷩W  0` @ @ 0`  @ 0`` @ 0`0` @ 00` @  0kZ#_d% 慯M_)4=4U9V`c1-K4ՔS_L~Z "w)ZsX̧noT 8l& s\< 84=/>Oo 40` @  0` @@ 0` @ @ 0`  @ 0`` @ 0`0` ^۬n=t& E\Lti]9i0x'-~kwKiU9`_q8/Χ|8OڔkLak$9OܥsLgf  0` @ @ 0`  @ 0`` @ 0`0` @ 00` @  0`FמG]Ius1 E縞5`5{RlS >L]|ڙ48טN(qIr. ESh0` @  0` @  0` @@ 0` @ @ 0`  @ 0`` @0b:YHRabl;asi猆-3bNhϧN:wv. X8g+` @ 00` @  0` @  0` @@ 0` @ @ 0`  @`zgiBԹFw~Vϕ4a']Lon. ]5`ĢΩ79\_y^ҞN:נ*ph0` @  0` @  0` @@ 0` @ @ 0`  @ 0`` @0b<9O5`5J45+ip5\ES[yQL4e:-]|%H~PW @ 0`0` @ 00` @  0` @  0` @@ 0` @ @ l_@ 0`  @ 0`` @ 0`0` @ 00` @  0` @  0-k0M4EG\TbQ]+?ipЕ']J%[OO [V`g4&/f`?ﲞ[u4vX?c+i[bQ9.:';48s @ @ 0`` @ 0`0` @ 00` @  0` @  0` @@ 5zݹ48.qx5->S< ~Uj| IEv) sc;/iY9V`7/JܥĻ\Jut5 v{1 ip]W @ 0`0` @ 00` @  0` @  0` @@ 0` @ @ @˚<\E4?_yWu4]yQNw ӷh6`3/rY%;u4<y48Y+` @ 00` @  0` @  0` @@ 0` @ @ 0`  @e,\I._ࣼ:bܪs &M{HY:4͋:Q.iu>7cN4>/9+` @ 00` @  0` @  0` @@ 0` @ @ 0`  @eͰ^w. bu1 nŰNl+qwJHܥ+V`7_4rX?oy~+` @ 00` @  0` @  0` @@ 0` @ @ 0`  @e#848vFipĢsԹF慟`# 6uWz<_X醮y6 CZџW  0` @ @ 0`  @ 0`` @ 0`0` @ 00` @  0Թ:2 {% > lH:w,D׳i_ `0` @  0` @  0` @@ 0` @ @ 0`  @ 0`` 7yug:_@ 0:o==e 000000000          0000 _oIENDB`screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/screenshot-02.png000066400000000000000000000320631412213610400312710ustar00rootroot00000000000000PNG  IHDRp`;@sBITOtEXtSoftwaregnome-screenshot>)tEXtCreation TimeMi 06 Feb 2019 22:18:40 CET|PLTE 0 ;HJRSʶTZZ)_3dMe#fl=tڢvw|xIy{҃FuΆ_ȋ7Ǡ/{&q18r=YP(ۿtNĚ2[kʳAƂ͉̈+D9^ڗ#ڱjh/ 2IDATxKgLzV *kjDBb6 rk}#7~<2&##_egDKED*WG 0` @ @ 0`  @ 0`` @ 0`0` @ 00` @  0` @  0 9zh7Z]8ډVeg{<yA:mw9V':Veg_W  0` @ @ 0`  @ 0`` @ 0`0` @ 00` @  0` @  j:G@̱g'Z]V^4;gk Z:(0ZT+` @ 00` @  0` @  0` @@ 0` @ @ 0`  @ 0`` @HQ4;vR/8Zw=X;29lEp<%8V'U- 40` @  0` @@ 0` @ @ 0`  @ 0`` @ 0`0` @ 00`,R3V*m7Z]35OۉV{<9ڊV ڏVg}~I6yA` @ 00` @  0` @  0` @@ 0` @ @ 0`  @ 0`` ;f}~Ϊ<8ZYٛWۍV_`Ù샭hu|ӃhuZvVz>;e#Z:؏Vg}~I6Ѐ_W  0` @ @ 0`  @ 0`` @ 0`0` @ 00` @  0` @  j:GPh5+;s,ӻh>9O؊V}A: g~Ag?Zlh0` @  0` @  0` @@ 0` @ @ 0`  @ 0`` @ 0`0` X,8Z;.ZgΓeڊVgEy8 onrhu3V*Wy 0` @@ 0` @ @ 0`  @ 0`` @ 0`0` @ 00` @  0`kjc4'Uy?W7V>?fy>IK0V*WP 0`  @ 0`` @ 0`0` @ 00` @  0` @  0` @ 0` x'o g،V7y/$ZMΪ<€[ 0` @  0` @@ 0` @ @ 0`  @ 0`` @ 0`0` @  @ tf%Z=:(h=Z݅h5ox7M8scU^`00` @  0` @@ 0` @ @ 0`  @ 0`` @ 0`0` @ 00` JztPYVYVwᬁٌV7 =^@ 0`  @ 0`` @ 0`0` @ 00` @  0` @  0` @@ E JztPYVegg[VwwݞQoF9X̱Ch5mٽ `0` @  0` @  0` @@ 0` @ @ 0`  @ 0`` @ 0`0`TUZta=݅(ZhuUvYÐ+` @ 00` @  0` @  0` @@ 0` @ @ 0`  @ 0`` @H]˭E3"Mop6s[V~`}0V32mG>_Mihlh0` @  0` @  0` @@ 0` @ @ 0`  @ 0`` @ 0`0` X.ܭE.iT&Z}rFGj?EY_(ZD?Y8ޟ_#~ox 0` @@ 0`ˮD`&AL(b <(H<Q0f1j46 }Cf~3@K  0` @  0` @@ 0` @ @ 0`  @ 0`` @ФL4; ge?\VZVUfUd.ZTlWo%ՇpVDUFG7egg+Z]ܞFWegm~DUf#Gp%P~ @/`0` @  0` @  0` @@ 0` @ @ 0`  @ 0`` @ 0`0`T3fg^66hhEPײW+{h%7>*w*W G7m~h›>V|npVl?EU4?00` @  0` @@ 0` @ @ 0`  @ 0`` @ 0`0` @ 00`Dp޵7Nj?ixhuRj[k٫iD= {ca-Z6V^˥hu^h[5O  0` @ @ 0`  @ 0`` @ 0`0` @ 00` @  0` @  j3IBS"9F-GpVE_bnG/egg[V{>֢Na3Zmu}{޵֣v٫iYwէpr)~  0` @ @ 0`  @ 0`` @ 0`0` @ 00` @  0` @  0MD6GrSf*Z]t՗j+jޔk^Xh5^f;eg^KFwFO?@ 0`  @ 0`` @ 0`0` @ 00` @  0` @  0` @@ & L:tI/uGVUJsPt0ZTAa=Zm7W+{SJh0` @  0` @  0` @@ 0` @ @ 0`  @ 0`` @ 0`0` hҠfY&?Tw@sjܟ']f;ޜYViY73k; 40` @  0` @@ 0` @ @ 0`  @ 0`` @ 0`0` @ 00`4iP3,k6ߴh5w ո?v^Mc)Zt֣ٶWQ05i^` @ 00` @  0` @  0` @@ 0` @ @ 0`  @ 0`` f:mM϶FM90Z̪)tEXtCreation TimeMi 06 Feb 2019 22:18:52 CET*]IDATxmc7 c;c(Q)=XMDiRIىIy* )$[R(VOh2ZjTHs;ls_}cf5?|~yy=u: ?>H4Y󓂂~6&S}]N:oS$ ];,$Â$we'O*?_Z{5QzUqW )g3d7NWKU?N.s7؍_M2 8Ϫc[J~2Hgm-9;K4,pN ?EtYB z:i[2 jؙA໷3 \7< ;<[[\ҷl?z?/s5fThHh dhHh dhHh dhHh [wA3GrQ/mmQo ҩɿo=?)H$O_N6e$q<2H*,pQ m<5H[eJ+嶨81zq5c* Ҳ/Zg_?Oef {m :gZ']Wu)`^94Ht̂mgL^0y8^͸hoCץkM"Ӄ. қ_9gUG鱭q-aF:}[)^h3H/,iN +` e:McԂy~i[2 8;3H|v)vp6S\de>Rfo˸^ ;/|Az/3 8-HTwk쫃' XGGA{9e2 Jd%CQ׍B4 @24@ $C4 @24@ $C4 @24@ $C4 @24@ P0G[_ E_Y0墠`~ mgd0٪ }Ŷ5O/}]N:oS-هO[iq[3G<2H*sQ m<5H[UÂK_,H^@<&zu/ufA5z0U\\Aȅ76(|&/R30zCfkv]1.CGۉe0xctBYpwE?׌.>zS$sAWOYAzloܶBZ6%0ݖA:m K4s=o8H=}Aw$vW3J(n?,waԂ|jx3_y,Hl8 m ,&+3 <)XtKg=fWOR_fov-(S2 UϾ:H;}")2]~Z>qdM. a.}ƥrYug $C4 @24@ $C4 @24@ $C4 @24@ $C4 @24@T:t; hʳUA:=v V46!yޑ_rNQc_k۔ *>m5[mi1 ,=/mYP"pޝ =} 8' wq5]Ҧ7W/_d.P+F.`˻G~twE?g_d)6nmn,{ꠠW]^v]Pеף5sAWJe}Fݳq~~-Ҵ݉Aqf>|QH;ѯGGgsŗ0+H_0,"g-z-tQϾ:H;}yiAtǑ\ݾɥ2 \K-RHh dhHh dhHh dhHh dhnuJa[. ҡedNql5A. Ja'{X+w_k6]#x#HFƾ.H'Yi -?n;t/.NeJ[tjaְm m9fT ^_Kep[N|8H||C#dqbV;ޝ_P2^[6^ݷ,?EUO6vب^;. ҁ{"һS G]YPK6깣>K:K Nŷ5~Xn]D SK\ZZ/`RO~7#\de>'duAZ2 Xaw:5}3 zX+w.` N~;HsfkXvyA2GXxdv;-˂oe),rÒsC3GxGNYO.ZSoJv| >!3?'H׻2}8)z8y \ cВA:pӆ APNЈ_FU%Qыּ[O,(|WAza/3G{M6:~KWԜKtޙ#{鿞v۶0Ҷs0B{__<@tLwsa:Eg G.;; s^[/,0W== ]=\KGÂY lraZ e] }LQ2;jT6jjfAka| к; ۯ<ոݦ/\d2u ]vF]QSʿ' 1YP SwXt%?(޾"HѢGQ#ٖFK(^qt^̂Yˢݰ^ 3P #\ }-ޠoPw FA]?m Hh dhHh dhHh dhHh dhɬXr߸ sȜbkNAAɛ/ 1m,p~oqc,` ˮ;/H{=ZfA N}?wng<4F AAq5c6,97H;y=^A^)#(HWF7%H|>=U ^H'Eo)'}y,Qã )7muSP]F Sg5_>4(JTF2gSfAt5S2 teNץA:duS{鿞vP̓[i۹3GxʗN-0z5z_|ł q#?NS Shݞ۷^Ū'7nWpWWx{X9+& mmPf'(g>\ }ILQI]rcdwԨ mF(A:uRXdU7n3Gr q|SM̂Z| dN{ _o_hûf-z-,ȿkw=5flu}tmř.ךd#IolQZ dhHh dhHh dhHh dhHhV'K}nYP3s=CjQر6(XѼsfA-]w^zvMn᝛,`[rMx)&ViqIlԆ%i>2 XzStʎ y3 auL/<m҉[d5|]PNk :tȿLQ HnW=W=g?2tg9AA72 ^UPpa/8Yo4ҲsbNץA:duoLxʗN_{/0orDŴ[zgF0^[3.3GY|ē?K),Et 3 hؿ'HiA:g{D_ƮYPK6j| к8櫢6盂toeҤFAzؽOn~ЅtvI\^E Œik'g׿G3 Xg54:ok[-,ݻ&M,(`V<Hh dhHh dhHh dhHh dh)`% >M[~9Az!5cIfvMn,()ZEAp~{A~[|)(zE0n 8EpuAN Y7muP WԺ5S0j؎ :yfA)3(hT[9E54(JT诘O?x$sw:(̂; mVƆ=3gT<2(h=$~t]CVg-3 a/P3G8|$)_ H>=tGO3GxoݢEt 3GuLr XÈ+tFaR52 XC)\0.gw,7Όq̂RXV?"݁ia=pK}\5øg950;ok[-,Gi&0og;MEk ThHh dhHh dhHh dhHh [[P*Ҳ S ,} A;.,p%ݭidjyK A}E@-7dA:g雎}1(h5cƍ'H(nڰ!HСnM e}),r԰A:uV̂)3HտvGQj!O.pUY mOdWㄦo3(0sy)lT 7s{4xm7=_d /GtcO1A:p5_q\ifA-7G/i; ^3H/#ʦ1ゴ䉙p&u]6#={p/_ 钿D-ҤF{ؽ{Տwc`-% >N,?E8NoQR8㞉~'^^į}tmG?Ep槃Wb#Io2 ؇ o+?B)j^/ThHh dhHh dhHh dhHh [C,hv{y]Io<'HO3Ϋ]͞PkaAsg37e8)AvɇhuAûkز m̂k҆ yQ|o.&z=Q4Q^4vofA-9l>X,ylLvr)^4H/aֲA:̂k輵omO]>YrƹAA/(t }S\3wk6&ogիߝdfA- @24@ $C4 @24@ $C4 @24@ $C4 @24@ $C4@uYqտ oi v޻<T槯 ߞ;+`McʃI+- 瞂DrkNms-U֭_0g! ~9 XÆ{iSg"+]? >_5Ƞx$ ~ۢϊg_gNfApsQꞙ#\]@>Q~KE ={iF74 Sޕ9„Er,|i hBq6/I0̂7?=6^zC[WojU +O0Bκ}]uo Ox+s#Plusi`fA҆ yQ'Rz5Aڵ#1Az/[=cE cafAlnݟY(?> "mڬ?B)JI;?u3΍ޫGYN^sr>lL-RHh dhHh dhHh dhHh dhnuA?-`n H;{w~xRe{X>,H{Zr>1(Xty EEfA#?M,ȜۿsAFm5H?_1ߍ<(Ɍgj3,zkT}S؇Gi_gIS i~SpzEwVodfσ2 \ ͂tˀk>LQv_KwE%F~9p?1MJa2H}T)κ}]uo$ɕ ު{d|}RfߚұeW֦_d_3/9M۟҇Z\Q3ߺ8:ELaV/&HzU+ OqAJNiЖA:Z4ޫgWx=t }٘RXQ_tԵ@*4@ $C4 @24@eރ|NS3:IƈA$4(% G(%^0**`Kh+^p4AE DP"$1d*'UTԩzݳϷZk] lhȆh lhȆh lh =ңs>)HGtZämAA)HO)_ NP=?: æ{ w_ljgU"S=((5{. ҵN/ yKљ<䗋$y?_=)A:NJx}guAN' S\q% ܦ}Eѧn,^P|8HϛsM} }ㄫlQF?~NX;r }O6y]ψmxy\G7v үܲn^|wxk' ouGiΝA4ܺ?bl/GoEU ^L۸&H'uYKw=&Y㵙Ay' צ)aAFr\Az0B 1>HkW,pTJt؂ 0hre?UWeν9=⦓vljwWDF)H9YP| gm>)HdA k(^ NvvdAro?>LfaNsHMg sO}xMXZet }UAKvB4 @64@ dC4 @64@ dC4 @64@ dC4 @64@ Z VdMi=?iw} ůz m6-{ݖ dA5 wɂ{/Hk~{6YbAAkdA%o^.Y~ڑ e͏zio-^\G7v үܲ19:G_T [}MEAzɂkxh+{sKf>>}ƾRyr0 ]6ͭ#&G~QB1Ag_|i.=#xmf=~\E ]q1-<?ie6O^m6]v0E k4Wu}w/(ȳSvJt؂ 0E>hTOI0NND/8xڜ 7>ɂy擂^.^P|9H/?S\wчL;5_%郣xh+>']$H_m`3ީϦ_z*Hw [/kωrȆh lhȆh lhȆh lhȆh lhhj֏nw^rpm#=2/mtĭAaشJXv[玣p~6Ht]rϽ5=,9уɂJ6 ]w Oȝ]mϿv]6E=:k;/r0mA:%aC+^@k zf+VTi߾ %auAzk[ȚE?JXG7v үܲږ?l!kHzMAzؓ+} >~p%,Ӝ;tk?7(]6"[}U })ɂuL{QYg}~3rq1ɂ,.woz-^^[,HNfs iwh=6Hw_N>7 =}ŧؼ=V}hnѹ=]m%,[oxAr s'DnČGh)(x CcҼ]wX}rtF #ߍw;sEV->H<}lˏT fAk).4H= YP hXZ꿉ޚw@.4@ dC4 @64@ dC4 @64@ dC4 @64@ dC4 M-(g־qXP=R6 ,(5iGWJ.2Y0kg1,H.ske6Wf/.>Ek;' *D| m{}Gv9A6,^P ;9 A]x;v DTƭҫgJdq+VTi߾I ggǑ~ AS_U,&Y<65=o/aQ w=osQr,A~зS_L>~Sm98H?d{D[qؓKK鐁u^tӜ;tkp뗣s7܋3_75lXvu~w},woz-ay tC%, =||E>7 =}pWkK;m8yj+N+'ib䏘ѵqNj4Dt.a'X2"H/8xweA:F?;<@բ냴qmů"9E k\2{i>8z@W'1wߍ}M@.4@ dC4 @64@ dC4 @64@ dC4 @64@ dC4 M-g־qX هKXCIA0lZ k0aqv1(Yݖ玣dqfmlְz 5{qr6 ]w O.ҶW|ow?8һ^NOܵy\fM'8 @F 7Z>*Hg=V`ؘup׸Az^YUAڷoc k{Azwk#luvvԤ3iϔŧ|Ui!χ\=Yསr׾]}GW}AھEɂS,==jN$0A:Ms8.C佞=v{=햽Ơm$Yŧ2~`]aY{AޓO.AMjt64+[E ŧؽsJtNI_;Cu^^;-H|8ܲx2t Ҫp6w.>CϘႚWx/`AS$G(>ERբJJXlֻWwǫΈɂ&Y~ @64@ dC4 @64@ dC4 @64@ dC4 @64@ dC4@Sk{׮. w*:W1H5|f{Aeqb&/j ҩ*a8H{~P {aB:cP`M-AAG' *aO_&vKTU=*{^͵t[Ȼ.ҶBqAZUX%,{ WHiA%TV/o{ ˼d }[]KEyyYi-k.>B+? VxDv?H['cݒ,(>ׇV"*ͪi7ڢgWtecޟ2.H2UVaCwN m/k;MݏHz^oç% _ENAZ5rsG?ΈgLh!p[Y\愝ӃtFۉɂp>zEɂUo;rI+^8 =e9%PܶüaMekƗW~xA6ՙ/D dC4 @64@ dC4 @64@ dC4 @64@ dC4 @64@4V%̱gi]6Tɋt*[mi/h| 7ۺoYP|Wqb1AJɂ&>8t/۽/?5H{8 {>韜k:G߇%[ViAb AZ{^u #T]6H#YP|tؚu@>tԞI-̟=HY5I ggeyAzKG/(*N[>H=Yͺd}qnu%B|a[ׯ;# ;,(aXՏ<ٷ+aZvD?bi,YP|7:%׮UG.pڊ0WDX5A{oe~w>xcg4fQ:97;ic_̾b.,XxlTW| CuaSܬmG}_Ćc7%,CG-Nv^Pp//?5H{qm*O,HG}ҿn7zϺ&xZyhܴm& }p@sҶ-d CKヴZ[_آ}4V 6f] ?oF,(am5:Op\4~>=ح&mAUY\# ;Z]Gn,~GEkv\;1[Vg<|K/髂Oq;z0Y5A{oψud K )^PU,_o:7o[A:g}AS% S/7b~1#/2HOwN`e탂o6<: sʚ/F%atm#|eLѬl~ @64@ dC4 @64@ dC4 @64@ dC4 @64@ dC4@Sk*X6H/3 FhA u9yQcN\UVxlTŁY ,Ćc744.;O {!YPU =tK.xƱUu% kxeA:ɂ6*[]pE5=7-(*NZArkktq;)>RY6YP| 7z54>zʝ\BaB]}[s[Yi7#HkOHCpG5¶_wrSA/MaQ \M9 3vD?i髂h_p kxFCn}m]ތ>lѴ,LKTU,}{Y7,Pz;htmY~ @64@ dC4 @64@ dC4 @64@ dC4 @64@ dC4@Ske J3nŁA:'G(>EA:upU/m/O$YzAA% | `udA SqhP-?=Zz ] *f=} I/Q}ikeS#,kNϿ}?pe_w 9#INs ү=yI(a S~Qw% lTOsty3wc&HP|KiTgg?<2Ye~âjM$XΙAgN.rJgJ 9Q/mWd kteG(>5}+a.kߞ,HNqe1B ^=vnƈpVA& *շ @64@ dC4 @64@ dC4 @64@ dC4 @64@ dC4@SkBOqCPd3~,H^E Sbտ<"^]Xúi[$ ,hCbڟ_}>:lL4˂t'K!H/-x'gaIA% -MOi]se>u[cIk=Ed }[-G_=~ݡgʚ6Aڧ~W kXT?*H<]%x =y뒡Ͽ,8OAFFν0Hx$YP WqUAn4M/ {xA%\fKfƒ /r~uG(>i՞)J9]@s2සtG&Gu A:Smr3$G7lE.7YoWNLI4Avɂ<φ(+(aZ哗De.}Uw]{_S| .}>H?pZ #$ k㋏P|Ϊ}?H8ǃ 6!,h # ȅh lhȆh lhȆh lhȆh lh{}} ~z}^ۂ>߸>Y\CՊic_Gb)qbBs[^]Q%H٘,p_(H][T9nz"H:[|y g.>ūS&mAW% /l= ֵgEBGA뚯/HK[ _vC,HF5vAZ֞3{?iP8Y`sӟk,M[Ndrḯ#{A⫇% Zz(=&(r<ܟ,(aN{!H<آLY~n{"YP|gOڱ بq3Gl{mD #& S,}{r Үܫw% ZȱIw}ea}mCȅh lhȆh lhȆh lhȆh lhJVytn`DrWǼ':f;3GL(a#7۫>I鏆=R {܊2gK4{^zeŧ8nz{}1%4Wc=Hg~]6'UvYLVVص(-nBmV׬4VtDQrD #VDbc8Ă1(1T'A"A("PӬ&]6.zm{Ϟ>̗s?sՓ/jl(G\,HNQaTvU?+˯FЈA:bXGst%O` i\|vP᧒5$G5~EPzBlT=Ch9]Y2=DNlQC巂iy~/_KTʴǃ` ^CL_ÆD_%(retwnעm㸪ޒNX]qs0o?)YPuݲ ujmk:(+ɂ' oc y-?0CŶo ҎD>VA]+֍~jg }9%Xüdfݰ(>VW펚j[5@ҋ#(}yk[OpW7l ?h-گ֭A묳,3(|] ̨=+ǒ9~ }u`dA؇F?h"9#Wlbuȅh lhȆh lhȆh lhȆh lh5AەYFˣ,2HZOr׮AzMka'm;cƱAڻ6hJ2#4ku n[:OP0pV]٨CҏμfEu~gqALx:5 #z.ACFOZmdAⳃO% ObOv;Aȣl巂IdqW2H{6 H[v~ 9ōF!)NZZԿm FVx޴\ ^CLl\wqPХ #h wzeA%o o7GOO1l!!Źl }`hΪ ݮ69ʩWi껋p;oOut'=ný{a4zPX7 BϪY7,J/>ŐF_?v,ȹAz Jp?=om~G;.=l ?hqq\n ]g,(%ZN[%sҍA.Mdn/HgXȨY9(uȅh lhȆh lhȆh lhȆh lh5b5{//p)а ]zJ0Bq/iD+Un%Xêcw%>k)A:oȘ&ku n+>Q}YuYl!KGGg& S\":wW˿puP^Ö"[]uG\aޡ{-\ ŖN?e{r =wq? % y'(xmQɂGrxu75sqo'S|>4HqU mɂ ,(}8ikARwO|9YpتA$ JQ]]?8۟*`jj_C, KG̺.:l$ۃŧh;rK7~~<>#4 % =a炴?|,(qѨ >dV`'FYgz)JY5wh^ިYE#s@,vۃ4KΪ ݮkXb>9| ϴdA N n\SO 0ExaMt? =o0k d ׺*6 0֭gU|dAwus%@y0],# @64@ dC4 @64@ dC4 @64@ dC4 @64@ dC4@Ck6aܳA<~>zKΛ٩6b画ݘ)V%H{#$YJȅh lhȆh lhȆh lhȆh lh50 ?SOa-Aa#vN;Hۍ:Yb[wۋi|ƌSfvLQR>HO,p%Pnnl,xoǽ {o 5YPYF1=Hw-jLn˃tܟ,4n_UW/AOq,(}}AчoZ};ka5sq{8YP;v;Aȣ,8`k۩5&HWSͥO|9YU=kJp5"W.v;1˂$ ^R߮.^Jvҝ*Ino,pO~/Ho<S*y(AAr CeqM^}Hc>vgdGsGU]=jאּU/SHz=(U&7&͗tOmOCM3?|B4 @64@ dC4 @64@ dC4 @64@ dC4 @64@ К%+_SOh<7Hٓ(#3,pLC/MP0ɂ {o >0$H{_,p-5}M,()J`K7鼓f$G8nwէUrn;+t},(^t ލYY{Fi9>h#-smQFn}>Ho"Ԫ rvo'sq{8Y`sz +9Z }8 vj^Q<կq\Q>ܹvqPjp9az$ <[FUq\)P~`[T>V*H{ͺgL,r΁#ҿpnu[vcOAw?Z,(赠OxZW|7>rki- ұ (^3ؔ,XP}py0O}fWBC^7HiaK:'g1ERo[ZU' \*9=R=x\ȅh lhȆh lhȆh lhȆh lh5+E\AO/(|~Ӥ =ɂks=Y}(54AӺdX2kspǶ(#7y sοf1EqgV[N-ÀC7E_?ܹvqPjEߝ8|[P0n^r8=#i˹}һ)P^R5ܵ7kZo` ~OԖɂkStɂS`&bLA:eGe9LG~R}SohAz-~nZ=xAr /z1Ho|ۆs;w-edAer*(x=1]}齶-:@͗tOmb=7]iwV)@y;ȅh lhȆh lhȆh lhȆh lh55Aؕ=%X奏^tM7' J<7Hٓ%q8-padS,hSI|?tA`h P_NVTl.^/MBvtC;iF`Ak{/足2(Xna0#$ A_}#!+Fg& &+(fުAA9ůLQko=n,liLn}>Ho"9!kUrA/%vǚ=-o FV3lbψArnu7tn }/t\Iܵ7kZO7jOqAl%8qG=]N^|;:- 289E;]AG+WݲSG1}ٔp"7ܺ-H1YCyK'cmQ2b۰ q~YCAKtAAKpeAz什<9(M5 }=ɂSmKfv e8m ҎH_]ڏ7Y|K:'`=7]T5t=5HNx2ȅh lhȆh lhȆh lhȆh lh5KV\p }ʞp>zf>x%X&驝o.M/ ;eUAB{`l akD۫Zf+ .hQ|I drX3$GUtQrNO-K0%5l @64@ dC4 @64@ dC4 @64@ dC4 @64@ dC4@Ck8c9MS;\(z 5}& 8Yb^+ Ix4eϜ rd w Ҋ o/醓Md5A:蜻%8Z,p=7&?ߪ[|n;+t}YlԄ{6KUwsO1ݢ qfo#M=zqdA ׊_~_O}QcIT?#zᆲ} ְs Aڮ I⹪ d=lR^FdA9LQ+N^8/Mi|&^`5nvqG= ^vA^= ҙ=GvȮZ' )&H_ŧ>lʎ, eێ },>ť6ďɍ}VD/Ygqu C6$ 8׾ mﯩ/(YsEQ>ŧUtQS[Uu'4@.4@ dC4 @64@ dC4 @64@ dC4 @64@ dC4 Y9Y6_5k,->B)WOve˾YkA~,("xan8ruWt+V.Hλ3YDzI`|O^zvǃ/ENxWoy<@m8xA9f^| g+o(aXiV~+J'@V3[;wJ`WR)G/#H\9xÇG'/Xqʾ;/5ip_GLAzƶ&^5nvdArqG=-ӝG$| }g$ 81qA=/YZ:@o~8]ݛuOߛ=_qa}9lQ ?dCq=/H{\Q8@[Nl^e䯿_' k(Ù3y?}CdA5t=5z8NJs[B4 @64@ dC4 @64@ dC4 @64@ dC4 @64@ Кقk,Mŕ?Np/U\\>˃1u\Z A:`K0ū5q__ ]Lï ҾLdqkF}Moeq=>H߸[ Hǃ7?`)N{_&3=S-:sAKXd|n}<(wՙk$Lo]2 ɗtUp6^M4jn)Y i RXdCtC_pjoTWt,$q{n!H?pf!O ҫd<_mzBqɟ2y:Q,x A:Qg}3ѿ_Hbf s󢟓.u]SpC6'ˎdlrW鿞#`2Ѧ vS̑oF?IT]}o?~{̓H=O | ]}L[tm|(H2,yC! Zp="H|ϓP mi.E?uPv{wI),r3Cx؎>QjJȤE-?շ@* @0 $4 @2 @0 $4 @2 @0 $4 @2 @0 $4 5^Xi^gP:~|x~yP8wOefAZ:7 W.`wF뗙SX7:H^8˫s˜ maTWQ Ҫ58%H4ޘYXפcPpA39ځAKkS}5tcg/6'em>}A{ )g.}>HxIM>F[+*je%8_Uq~Ef!{t̂umr,HUUf St<¨A:|df'=Oyy*'wn NEW:f6]me.s? 1g TTt=12̂=fAz'/<Р0̫GZ"g7y4\}|rà;tIVIK ~^={ E.-}oWՕ߼6>}wYH] عeN0#߯,Q;v 67AՙځAK3 I v/'wG_iQnjA{wflQaJNZ~^M.̴Ck_=~jfflC]%q҉ Z?E5M=iI\Ťgw]^gVqQ2\>0 $4 @2 @0 $4 @2 @0 $4 @2 @0 $4 @2 @ԴzWiv<¼݂tDud';W νwagòO3 K\CJP JNZ~^QUOo|ѻܥ_vAa\_fjN>skW0lC '&k({h|/6giَxoPpq|{ȧl +OÆb1og!ɭk}4 @2 @0 $4 @2 @0 $4 @2 @0 $4 @2 @0 Ppm]mMʖ qW~-3A']BAzov>†b1og3Ԕ}Y(`';HXa;F zآ< |;29zicfE 涙Gp zŒۿ*H5UG~(5"3'~=˖#cs}CNbkVvLdʦ ?SBE>-ްvl԰E+2,aٸ#J.$![= Pn=}4?>& daHh daHh daHh daHhVs RWV,dCAFvW:H=3 +Vg!Fs3 /? O5+pʠhx̫M7ɐAz?|dʦ NRE`֮<=dk^-tշ@* @0 $4 @2 @0 $4 @2 @0 $4 @2 @0 $4 5^),7O>7H{{f!.2xwV =u6/:ee Xêwiw>Ho]6d.2ܷϫgfX5LY#0 zdKw~ڱsI]+ -?WLӂk)ܱ8^!eyV6iFf!6~t=B)MjksUA:I@xo tŚ#L=?=ƙSyO|yf>jInRX↙Gy^iq'NbA3 nva]*:6H+F'ɔMѷ lѻ܎3 pWN,jA룟,d.![3 ׄ< ř{XfhE~uAo}4 @2 @0 $4 @2 @0 $4 @2 @0 $4 @2 @0 Pp^{B,|&g?}_~mOʊ{/Ԏ{CAFUM}a. Ҟ1VAk(` ?4H;~nw'8vOb\^iFs X Y]Poޠf jN-%S칬q6`>Ho]G,L^5(L!s IH^AU Dxc<;[_ 3)џ8Y7eMP17c7ZE}n}nn_YAI7[_?ӅOqۃΛf2O1|_uoZV?T֤WBfjKoM=?r>ޥo maf!K6A+2u qD)2TUԑ'[_9nSPh5S5T7]W)ⷂ/yf!"/SgrNN }5lmKCGȯ߫As3 cqcqâWeMG-/)` 72Hg+>&d& daHh daHh daHh daHhVoA{KwdaA}B[__[]YGaw騟v,Ԏ}X_,_CYAZI=x?m 4m[t/c-` ҎV'ja`[z*fgaߦAڴӂBŷ[#?En #}{iJ^91zLkSuE.h:cm6;{{ۗ%(t_1kؿ mϯ ҟq7MJa#HOyeMk2{_ny }gxP쫧0(qt^l|^M v^ow#t//g3Dݗyfט2 z <{{UO)X5)hzB)\۶i:d߫?BS]#/lNO3 r,m @2 @0 $4 @2 @0 $4 @2 @0 $4 @2 @0 $4@Mg jv @[TS 3 pW랝VW&s>HG[f!) ;ߞw>&,?HW6I*6niv@lŅ33 N{dMNo#s3 OQ A}RX ҆3[gjHמ7  X>5^Ϸg}iN 2 Il_~5nR#}{i2 ^tƳjF ٶ ]v錵ћ Ii; Ho_VG@fV7u~ÑGj,Ut/H7ش5\ A'#W -ۻ.e{^ ҧ\P;.s&Ak# 6H~#$Ꮅ;=gJ*ݶ%H!P"+87 }Ad2O1uA:~㙅î'!-m @2 @0 $4 @2 @0 $4 @2 @0 $4 @2 @0 $4@MW9 7Aс,;nPͩf, {aMV]_Hb|g}i# ̂\7P.Zܨ#ZkPm$P ؇G=<*ya x\[tT5&qoz3HlY趠vWk au)luݿ#-Y+- ny1. ^WU,?I/x!H8!e6+HwXUG_9۰ʉ7iɳ>{L9}ƋlYxA{f.rϢ.Ľh:cm=6}A:iYSY~{ e xc:dhHh [maɏ;E 93cßf/ȿg]׽Sf͊iU[3 J(::=Hk8.g~~㥰C6H,bf7A.`lx |JGۂt}3Gl/'5,H kpۣ'k,eRA:x̂)Fv\s6wsj_Y`)킴mv ~gt8Hʢ̂'&G?O8.T]?H+v-,ȜH㻂ѡ1p-a dhHh dhHh dhHh dhHhVfƉ3i95ɖό Q9w}^NywnL_Az}pAz_qn:]~'lߜ5H.dÓ7i<9ܷ: ԌjG&Ƨ|C Zdz,sRXie0A:  +kt -7baA:NɔM>| W0B- ݷ N<'k m9痙GnF׌jBY1յ_dRyf#; lYS_讲7eC瑛~>~feO_Pa~/} a`7tIO3 \V>*Hۭ] 僃+,r Suq ص9rhv΂Nca~]T֡JiWn檠1R9u]@*4@ $C4 @24@ $C4 @24@ $C4 @24@ $C4 խNscI}p`fA58AK->H Z3sgi?H(^=Hݶ\=MOqo_:[A:}8t ҳ?ٔY7gDa+[/lE|ڐKvd$q?"HeofK_,r̂AiaAA:t]Y)̓G&S6%1E-AWF=7nmQV S? -̂$.] ҋ?.̄KԩGf_fԌjBY15l=HU=䂯IFv\s6w+ ֙#UFwgUnwr,FF7,pM%=~feOΜ"sSd u z|85yQY[THh dhHh dhHh dhHh dhՙmkOZ>#Xs "O H}plGʼnMÛŷRb͋.~÷3sPpp۾w H=4ۃmO1qyeN; sW_PV?4`>Ig&:t?Q\Q>Hf3G5g +t/HbZ?}t dߜ=]lT_Y_$C^o /ّKu>W~RXdךKgbAg[WtO ,AɔMnAF%Y(_ω>}+).xx^y0!*nvUk5&HNtaFv\s6wE9퉝A3 ):tɫA˒8{Q-_epw/,ìգP*fiSK|oztg=.5d پ|Tl~vfAEG,pKbҒ~14z|k64 ,xhຆlraV7=_>~ y5t=6[$-S]V}fNE|ڐKv0'׃~YPC>f\}})z}%(X9̂R]ue#)HLٔYP3`냂ΏpRƹEYb9ѧ\oeԌyUuf?^]ySLhzmfA3+Ar/w: s ~=2Hמ?'U;+z` me50g#HG|ЕpRYѯG7_`y?P[  =W]?(صK׍ ׺_o EeǴԵ@*4@ $C4 @24@ $C4 @24@ $C4 @24@ $C4 խNs~ ę  XÎAڦm ~޼cfAGΐAznd w-:ÃElQuy ̂lhu993Gu 4*(hxv37 1wgd?`^$c灙> mjI|V}fNEc7Š`pC^o /DN֕e[T oW3./+jk詸#O>?E/>+o^+wjDrユYav^0{-`$<ߚY:ۯGd$q*zg0B掃2 \ˡK^ Ư_f˷߿%Ht֣[V髏,Ȝb{Ӄt=5(ĜpdvhԘ5ϰ5t~ƙS&z~jxFoWhjݢ?ֶ,eu&ThHh dhHh dhHh dhHh [ݶ_?coPpɇ-8g қ4aGʼn mSU/ zgH =wְK_~]͸^=H6AEN\^SKG 6AA_ȧn +,Xm۹NAٙpR#,̈ m^=<\0s#vEtl}㼸0z>d_-qV-,sҊ1ヴiIL5?úsAںÈ-tn 򯡀}= ]9̂)o?B)jF!g/9BEGϊ_AWL\ƛi}St^0)zE =bg:Azd=t:n^;?B)6{A:?:QR3Tf\vʠG{׌sgUߺ"AE &5d͜*HLƯ.oL^upg^Cw{_NzY1˨L $C4 @24@ $C4 @24@ $C4 @24@ $C4 @24@T:xAzɇ-؈'MUF-o~gA:-#&WKG 6,AA+>>-|c;)=hTZ<; s[λKafDSymHtq$.6C^+ƌ>3Ռ5 xqc_ 3g_1t̂Ro aKA,9 m]QW-tnc_ ҕ3._[7 ǏdԌ. ҳ ,Ȝggp;VFl{I#@:j{-E6=7zg~zoA]_代 ξ5tܼ8H7wT5z[8k~a{.][̧sGj`fA-٨Nwu0(X=ty.]~5ݹ*Ho]7̂5YtNz7It^ \yg]7hGIfAGq֚藠{g(5wV"T $C4 @24@ $C4 @24@ $C4 @24@ $C4 @24@T:{[$S;*Niz}h}uh۳5,o~Ʈ.^7deAA92?B-1ApE#\:h6L :}\fAP k4*H[-p{C2G쾗ͯ,ȜbgFi?mڐ/ p6ۮsScijxwa$6o/_)atװpAnfyfpzEز(Hv\KNVﱯgl((hHf[. ҳ L(v٦̂R>+҇_:/hznB;2 \ E^ c0E͋tsA[װ双,p5iC'D_Lힿ&'dYÂkhA2 Ja' 8]+d_CYt&.yn@2lԝ;pݼӾ;sҪ 3:!oL^u50ZT~?g)Įm)zp ̂jYF]gHh dhHh dhHh dhHh dhձhGʼn mSU" bC emVvqA^7&u]i 3 J(6`zvWBav_P %W\KN-=JZuyG^;] < mRXyFQ,)e.kjxqc_ ^@A)\ Ǭ!3_oA%G) s G(;+?,?wgY6!HWj+҇_:/¿m7i+`掃2 G3tB|ILAa5hmvݖٮ>: mM V6Ȝ笃Azt̂$%athst5V sW3 I]v mz0B&~C4<Ŗ{n H,w%PA-9 zk] }EXWjKC/\Ckxn\*ǭu3l.(8G-W'-jm?mx6覚q6[,X2XP0p| f 1yfAϴMOb{uUfA͸X(` 0fU{$HĝR8YGEL]YP Gqxp -[*#˃;wv,Ȝb؈tp.zi\pHh dhHh dhHh dhHh dhՙy`Zi:QZlh{atlIێ}-H5-Ԝծ*HVYP"˱6x&>EM[> 3 ǚɷ5-5" p}Ah]=wO V9E vͻ0(x?O Ҳo=ag`j 2yD T^VM9E:AO`_/HFA۲#>:^}EXWZ3G"l1v0 o]Ml-S<]  lrxs蟿 }-W'TTn+v.`JGoDGoiyǃG79hިfp 0Ktǔ 8F2؟N<m 3:z2`VZlXuXua ؀̂)(WGZ߇Ã{i٢U^7\9=)RQB4 @24@ $C4 @24@ $C4 @24@ $C4 @24@ P<0-4o^]&fߋvrv2%C: 7^_^?g UV9HۘYr.K{yki7>1 HѾ2 J\ 5SwBG1ag zo)n:Hڳ:AOJa ~p_<(H[v$[-?\߰l|3#"e7iO0Ϝ(`ݷN?2) O._PQ<ӂ?|\ ZCFQ 0Ek !7<̂$r[_s# fI3gӱgEf f 1ykw|)y H{d*G@fu+)2GOY~7Wi$q ҲE XCwva؈tI^ޓpG dhHh dhHh dhkVՙ/dRhM%Anpk %Bb7(1ĠHDĀlA0 J"AbRSce3Ngav^{T lhȆh jQdzm{ڢM=ه1O.iJ8K%l|t/Lv/jMA+tvM.XdAr}%}8|Aݸ+}V7YqؒҾ]Q3iclnn=5YPbj1)HO{mcN}|"2漦Az n2(ͮr؇q7GoS,7zpPy5v ~Hi=ot []Ǐ s8Y ]?=5Y0m烂1rotP2+7KÞ _7}{[񂺱M )ckm9A#m6l jvS^[/YX |O1HcqIA{y9{4,vĖ A:Ik2r-Kw(>cˢU/~|kdX, 0x |4#]̯'{[P"߼g wM+^>L'j26Y=yrȆh lhȆh lhȆh lhȆh lhmGق9Aj6/L?=A~~9 ozrgWD0&}x۳AzK0’Ҿ]QꆆK. ҟ]?9BctsɂWqp,(Svs ~ȷ~z0HO^Cޜ4HO7YP|uPPsaU9\у}p;F?SAz' a LN,HLz*Y`^{ş =-,H;=x +L{Kd1Ŏ-YP| Ϳ:Hw[9A\ߤTH˷_d>a;bf,ektzY\_8;ӿxo cેkMF' OQeBμ`RSP[ν }.3 m6dA5, 0ɂU_z`sAAmyy0' ֍l~ڮZz2i5- Ҋ]/' JQMO% @64@ dC4 @64@ dC4 @64@ dC4 @64@ dC4@m;*Ytُ_Dr^#HϟкxApKAz>ےYW C\,;HNi,|{I;آ#4AN:p`^ɂr̳VW{.K/i;\hclnn=k88lv6=,Ymjmpчbld1g, >y_, o`G(^EAAͅU%Xу}Y܋5tEv'ŧ(eAz-䅯% < iIOe1%xo tgr S f{κM7-9B/,(}{Ko~AS$7-H+){q7/ OƠ:& %y%Ϭ+Ñ{|W-&GeBμ`aW=uw>v-ɂrǖStX٦y8+AQKwtϨf- 3|3H_z`s_Ho[,(5`M3,% lZԡǝ%XCMsbufv\hȆh lhȆh lhȆh lhȆh jQɊ?~>Azǵa/LOh,( {SrVVxMWn0>H499‚qt6O{ =igg\o>nAzoSwsY'"#n'nӧxOFz5EG *YP wDS& ZOWixK{ɂ>tGGʁ[maK'\}&=KVxo tgSǂӃW% sku2x#H>kؽ%ZC J0BQۂtɂ|PpIԓO_T'~Ysϯk ~quSdsf%XW 5V5t~ v%X"H͞ kxfM^,*W=uw>v-{X2;邪o;J 6G#lv̦iw/(UԴ<'H+v\ܯY lhȆh lhȆh lhȆh lhȆhvT!zps.Qrw\.YԖ[:, һ7)>B'ܒ,pZ dA؇Wou*>BA+{$ kmA; ҁSgq-W]=G.}}dA9\{I;$ OQ*8Hߘ/#Wsit*9AP0P yz }qrekD/]Zȥۣﻳφ; XwS`r柮Үu _{*n-u×ENqkUs4*H7ݙYpcA%XF݃UVskɂqx#H>#YPO>= 芿dqgW7 W$ S\ }u<_69H;U4 n/'w꡶AےdAoL__ 񷜝,xͣAyۯ:z,/^0cPjm{im˒0#CEsEGhiO&GشI%؇yKSkrtΎv\hȆh lhȆh lhȆh lhȆh jQ%7w[:, һ7E\S8m_Vzׯv,Tm.H;u>_,R4(X['E֓{vAǭU x>+o=(%H=Aźf+u zXU| wmhvڝ,(Jp/ޫ+HOvm>cU! u5.''~ {| (iz_\{-Yg#3g2-(r{gt/*;hljZ5 =oɂS模7(^\ѽobe'9涽e JpkG*]wo*W' YPE-HNi[5tmҲfsaiO&G8Uɂ:yu|8gGL.h@.4@ dC4 @64@ dC4 @64@ dC4 @64@ dC4 ?wvn\o ;m,pV)W{y @[ɉqa #"AfMek.Lxdɞt_w>AznɂS$Gz_>i8(dO?7/*~gAu]}6H+8)v\ fs3W#z<,p]魝v' OawibwM-G )^<BbeErGF-_w 97=W?usl?o;G9R:hVWb~ur|(H}d뢿&VnVmzIŧvwmfsqOh|E[oԫѷFد7>}hOj lhȆh lhȆh lhȆh lhȆhvm ;;_gڞ̓ˊ{Hz唫w-;tDVC, !YdvU%؇wF,>B)9ЪJPP|gϯ/y[K0B9qa ,8bY8Yl̀wׅ>|ڶA/-gi.}QhܻEdA9\,H׶\^!HѫSr5ѻʊ,% ᅃw ob'/{O ;zkvmQt8hkdy FO\5jloSOr3i<ǣ"֕7~NP͗YlԻg]'H \ӼCvݽyN0ѯ^9l̢Gi&G8U 7[oYYlJ~b^A:#m>ڧȅh lhȆh lhȆh lhȆh lh5l x=:Bk{6.+vۢ7$HM[7.SҳyI(gG>PJ OI8lN{A:,ְrx^7o_BPp'(>Ba^aCjv 6YcKv jm/^>A}& J将zޥ->"; |q tGo1(pOS$ Yr?i[kr3A:K0Az9M?*(dwiϛɠ`Rˋ><9 |E%8H|w7%\lrv=67p&6HOZ 9Ecrr~O~ |d=vuAz.;kbe9\抵ゴg)[/IyjfV\6"9_`dpNm{mrwϺ&HO~F/JxB%5.% a̢_nZ0E.d˯̪QiɩNv&/B4 @64@ dC4 @64@ dC4 @64@ dC4 @64@ PێWnQ7$HM[w.Yw M 97i`ߺ7HO2GVZ@.4@ dC4 @64@ dC4 @64@ dC4 @64@ dC4 dŰtv6rgܐ m6e-3Y6 =Iy A~ɂlԒ݃UuoPpi7%HP|zbN{A:G {L\P0dE84H̱E7ol3:B?u\mfFF3xk5z;.Y$L$ !%6gt'` M?*H{kpT]iO1aA:廦Gi5xA vA5Azh{}',xv9/b,_69H; w_{u\m.^/[grNA:P; ֐cYCErkdA9\Sw nז]iO-G )^P|mW7S|m]Ƒx ]a#$ zu,_:Mg-H;[ϖ*FP[oɂc,(5!:3'}Ȗ]J`vam{R|x ҏ|8 h_d=G@.4@ dC4 @64@ dC4 @64@ dC4 @64@ dC4 dŀ7{:w7'\zܛAƉU3=i)sKŗDǾ3s_%l)A{;ɂ,.+ ҇(Y+sFaȜY\[ػ=0BZ tz p. g/^~ ='{[Xռyv߽;YP|\CWGa9 |\'nyŷt ~wE;FeϰEcAr|d'~tGɂ\fǟ ҍ߭La;ltOѫˎ ]u/\XCmM`1 6ܼ/H=M<Ќ]ktd. l2dAtbg[T|kٛAާ!Y/n]}zSȜ{+)x ҏk8 h_POT5z]7E},uѶȅh lhȆh kQZUgt:+ h-@-Q@PĈ`(h 28QD鶻W߻{OwW~Y{y;@64@ dC4 @64@ dC4 @64@ Pv[J0B >ɂ,]nL0 hf9E,/g;%YEsAymQ}?id˿|5~ĉQ' ̎kU,"[uH@yu =uÆa#M[K}&HOP?l? mYL_U_Qu-*Gu >' a̻ {%Xà_O Yꇣ;Iôa,Wkz]!gC۲_u܏+YP| -H?Ia.fcN䪧SPAZqk%؇'V) ^͒%X SVW|WEPfN>9YbCdA90k/nU_5Z ٯ} .M4WĉQ׏ ]d0֭ ŧ(>'tr̷n~5Y⚣n~%YPYk|xN) -̻ {ŧiA:ÜBFV?f:ͼôa'/p%s`,_vr F`(HIa'6IN6md9lRSI/霑'G8x;AnCJpgm<ڤMO'֒OI$} 8dAr tJ?5zQvRqoj;Sy࢙3>Z ٯ} .-^P9qA:j]tMa˂~]m2u֭ J0BZAzn)>>'trV󣢯Q_-`Ktߺ2o~p m}udAyN~xNGGS%HL\Jf ioE ꇣ;sc 9Ť A:btiѧNvL9kt/;9Y`W7(('= d'_62H6))J`t*oaUOiɧ$ *~2Hҩ檇isw$ "vzokzA:cOlAzҼɂn [\]Y/T NNQ| s/ -wz_Ngv@.4@ dC4 @64@ dC4 @64@ dC4 @64@ dC4 umyTq{P) Ɩ CrK] ˍɂǛ<k+|‹{Nx;ή ҹT/HaGkt~1#'Flvѵo<7~fr=. /uM8S[6$ ><vk n:"}9xI)œN Fs+Az Ggq-,HN9mt' O@fO-I`Aڻ}&./^S>(:3uX6 Vq]\ꇣY:sc)&NґKZv~־Urn>&H%}|ؤ%צ #MJ_sW鉵p}C3dG% R{IWQAZqkYLQޡG/>Ūiswd1Eq]n e% ^[A.sg,|3A'?۷yPpҼůM-N~_<~ɂk8'H+g(>W7}iPr3.\+YP?j#Ge1uhw[B4 @64@ dC4 @64@ dC4 @64@ dC4 @64@ Pv@U=V9-A:fr ;VZo`PpƶJPP? /C+֞*->Սŧwvm}"YN/ ,HgWL-^PhSb=.Y0{h:M/c _,F ={cL_#+WN [+7ܝ,(>Ȇ[i{/ɻs/%0񞷃tEJ_^_-|iPлn.O$xNai7鰊pUJtn0#{>|־W7[*[~a0,i#a܍uetm_яɓfvb} 8dmU5 Ҏ3:B]zdIik$ 76:YPWQY=3Hk/3`/sŷN ο{.[n1QJ˗' W=aV 3vB|X%ך#g[% Lx!M}ftMF=WqUX;vח`ꓞG, E,FfvuLu 遣' *V=(H;#9BƮhȭRWvl<0H|?Y`KzfT .E։Awϕ`jΉbɂWQ)N8hM>^{/۲-rȆh lhȆh lhȆh lhȆh lhk"\%H,9‹M ~,h =i_[ s`fWw ҁU˒ VhrUۓ d]s*_"H9YPSdgg9'zʡѓdA9lsw/u-AA95i v=>냂C$ Jp} &G8懋(+kJQS˺_ w_/0z]alBeAڲ[j]5L uQS,ʝP276+H9rP9,f;2f|GS%Ao>oSPpyj'#+F;ǝ.H__6YP| Dd|r ~/# 5Hve 9!щQG5xvnw`l8*HǷ~7Ƿ>YoP~ArXa̮αdF/Mᅭpu&HViiON9$YPSws'X5։Awϕ` pQ}{ɂF4ڨ˷߇⋤;(:gYn\hȆh lhȆh lhȆh lhȆh n%c[t}C/εEd9}T T)LQe ܮ Jokl)]s;9A:G(>E Bqpq0ŕӂ֊aɂ#tP)ɂL,n{P0mU)wݠ{F7pS>8E AwNvwQ#bWW <[~5Dߚ+IGSOz~nb(Ǵ^{ 0vB]?z{i{?Ma]P궥8G[&' 8z_C3kSm_١/!How}iM>*Ye>hJ酪]%X7&=yz⋼꽚 |PeEIw~\z@yFu":USe tkY\ŴoN9d낂wX|dAܸAkO1z`u],HN|AAzŽYpGEAz$GXq{ |VdA>ոNFF dC4 @64@ dC4 @64@ dC4 @64@ dC4 @64@Եݒ JeÃt#HdqOS5 s4[nvu XlqqAAclR]s(>łggH' S xW1A:%s7tŪû97(X眜~nl m<dA:P[GQg=P )鈡ma }=,vZPpkŰެ%H;9|;AzGCJY FS#^=H'm,pW5gݖ,(w#4 nQK6պ,Xy;z[U~{A?,h } z&z[NOo/ G~۽ n~Z[%H4+jEhU\ǽս~,9ºc9u{AzY3& N۾:HChbپVGaAӏ*}xpї%GIo;pߘDa%kH꽚 |P'u+ 3otق ڵwA{-?&YP| '>{\>wҋŧxQԁyŽRt`/~nn;(dzvjG lhȆh lhȆh lhȆh lhȆh[!eĔ7eo趴*HvAGܑbtd.0 3q{{*H?_{jrŝicn6֪iUb ^m??(Xw@瘑O=,Y@6+f꓉zW{j f-AzX7N-l/h͏^לu[rg~+HOU$HOcE}OAg5i7a'Z\rX亃.Ҷݗ,(>ExLz y 2/k#Hnk@pW%5ue͐ko(i oeqf\VȾSD;9{ ~]UO{2__+9YPEn m |)"H?>zS9,?Ϝ7x;a~{n-jP&4ZwIU4] Hv] \5 xǍȍ{=>~o4(HO1˷& Y`Kf9md]ygvdArnKti_c~:H <%YPS$=?qV0jPOӸ rldU. i5ݒp:W}TS,xO>i~ п 6]6$(h1uFr#<}KDdAx bq~{pjfr79"Y|L| u }=ů[0E ,_.H\,HNq–Ab lw阡G% ̱t\˪_޸-(uMq5!H; ]|5G?TF=ylKi/◜!& m2iWZGoE}[R5~{nq9779 Mr̦֮=juA=BK[{/.*E>5_:inA7(ҺmrȆh lhȆh lhȆh lhȆh lhkقAuɂr];뭗& OҪ ]ڭ~ŀO霁d1g `'KkO+;zAZ5V4HtKdq:W}T<'H{4?9Bu/tِ m1uF~>Ax'%(8fɂ٣AŊ>j垓#zD)pWf NJ,_.(smฅ-{mL$@]rtVxk1n>eUꕳ&iAK'tGJPe[ m7˚ҩ% 47~=WSԌ*4vr=)K=9ºcɂw]~uȕ&iA%X^#_r3u ~$z7Qw[ui 㳘"G'E?{;/_?yz`iAvl2_7ݾ2YpA;\y$Y|v ۛV.sB;$ ^:ಠ&אx o_6z[6,[{/.*>EKoAfͮG[YkI ^P 5TNE.^0G01LATT@d@2M $^( T2 /`&l)5Zky|}|l @6 @0 d4 @6 @0 d4 @6 @0 d4 @6 @0 d4@Mc ēf%ۢC{[ZojXy҃AjԵ%XĵQ:/VLGηEyj,[,~Eim7Y:K)7*)J(7ם$HxgPEA& ];ƓP2+ޟ,C7)U7mQm} m6a|S`Hu~sFE߸vk#%6zvή,?E .StI{O] ZE);OlMP# /_2Y$qN!H53Y(E&pnxUGB9mUSx'z-=qfkAqec^@. @0 d4 @6 @0 d4 @6 @0 d4 @6 @0 d4 5N9,b SyÓ7AZ9"y w5L^ҽkO/o-;7yG( ΚoyTjyj,./eZ|MP轭sBԇ$ ^S%stݽAȦ鎶^2( xM;kwVagߛn!Apם$HxgIV;*H?}f 䪠𽞏$ e3?)'cNdC)UAvDq[~#ϫP ]d~0$?oΨƵ[le[S"HՔAճtvŠd,< Eû& %(OD;мdo/:yd!>9nV^7v{ Y:D㾷+J8YN_zb w-:H.5d/#K݊ @d63A|Dž%XÈ Sa[ =o>Iᄅ'pB恵/8û zJ~bDWmOM~AZq|WF?63G~'ٽNbPپzB^N^B JX 4 @6 @0 d4 @6 @0 d4 @6 @0 d4 @6 @0 P|vcoi6Y{~'yV6Hd]) :{מVPKA|9ɂGv }Wdr^7{"HŏPu;o7k8 @<6 b//AuG& 6g"aZް\͛=` GzExW;*H?Q[9Z/$f O UtIMu7% SnE{{P;3A|DžO1Ÿg)_F;{o PAz`ߥ޾j>oO ҅' E?0j|tP1"Yb5o7YH~AZq|O#Zyۢ2zYxؼϤd)ب7}"HAg^N^# \|Ω< YH8/ضgggGH[ xlAz_` o>'aHnƕ% Oi萠fdv KǦAMUP^Q[I-;4[P|7\љ尓͝A.F(=khn 5+^HONxWқהVtBS~'wv\Az`ߥO17b%dWS #d6ovka+?z9H~d!y_{G:vZUk/ONZ+S~YmaX>(pywGOqMda}AarBrk}*H;cK}ӎV"(Qg{FE'1kʨyy\C N/-.F׭DwiP| 7 /xcG7'm,_ï*F$ #%6G/دeJceAZd!y/M^xP8sec8jCAQkk Sy5/);O/Fl' laȆh laȆh laȆh laȆhV'٨(H+&w z+~⧀A⧘vӎ0ަB7^<§whzJ {N,dl|:H_j{QWWW?V| $ myZv~uPXs5B腳bbU,>;uY{wC$ E{0[ t*E5@*I]K /~Ven^5 {G[ =o)~Ym7"ZD-,~Q餱-_UO _,&wF%8°/ZӺW/VA:g% S =}%(ԎŘMA:c8}V[P>A:u%G=)5]34z<C#}raȆh laȆh laȆh laȆh liuZ _rVwoyKq~}D  w˸G(~ Z |4[T2W?78H`VBE:oS.~ʹva6%7kVOl];.sA~n> גr؇[>dK,r˓AY%sU3k7ߪ2:]݅l0Hۓ, g:M=5A:BV>y KP5~kP4EdўfyL5Wnwk9,S [5{U?> m 0uF͢LM.<G(kWH @6 @0 d4 @6 @0 d4 @6 @0 d4 @6 @0 d4@Mj?Zluh47=풅_((|ݞ=.H2.Y2h,^HaԽAvx<<,H;_=\S~np>|dkvӎ0ަBk’^~6ڇ26K Ϯ0%y-OViKy-Az껋lrɜ }#Av̌4HܦCc{X>vݱA?߷Ehn倵MjevxCp]9,ǦAMwfoK<彞e/J!,gud!yezDoq]/N 4Bx-7/^HaAj"/d̖a'lUl0HF&7olP|s[ߴH5skݜsS-euӲAZPyqџkT#ǝGM>hğ_Ja wUCm>ҽraȆh laȆh laȆh laȆh liuJp&H\:س!(<ְ]>t$HW7YBr Ҷ߀t"vӎ voӞ%;Òsdo29Y%u#?Ŗ'+%݅H-Az՞ɂ=<̟U+_*>3#! CcGػ~j6h?{qߙ 7NdpL{';Z{JKs*đ laȆh laȆh laȆh laȆhV'U7Az? wAa}u E^gC>ְeG ]tg9bwGiLJ x>H=y;yݾɂ]2 s"LNly2H[^ Q H-Az՞B[}*/W/$w^ oxn<~,xUL\[ՙ \0=SPSY+H?Ҹ"iK~Ard[yz m5tQqM~zH~ˌ {>fKᄖ9fqQzՎ|{zIC/Ctfq97 ҁv$QSz7ym %C#߈~|rGt9W] }(94 @6 @0 d4 @6 @0 d4 @6 @0 d4 @6 @0 Pd6}9Ad!y+lK<鲣InJp +܋!#~3|k7 ?,;,*z_Kw.E8,HϙVP9v d?%YxËAg湶 =eB؇͢NG&p*/W׎:~5U27.Hg}xaAAfv nX,l;ؠOB 8by=2YHbn 〵MjNkpaDmyg6|[Uy[}~BS P[Kӓ,; N>֔cV 4.Eni/H[n>q;ΰE':soO~]}Eӕj#ҫ5Wsz$Yx}ȯi3,Mj͘ yB_z$HsU.[qȅh laȆh laȆh laȆh laI6v4q68aAnߗ%XC{6c % h>ˎ&ApWf% %ب!#wSj]߀trxnx޲< Ho۷W? #\&HA]g*e8,Hϙ7}f<F#A+w$Of[)vY_1$H}-:̺Fm; mB9aB{& p/fyWrB y܂c{}-Ҏ˫=lP[ }K)8DǬti,C&;FFWQ`3'?' S==zвȺG//d?[^1Ha s%XÈW;3&~nk#G?]Y67ydAzUGx}ȯ_H܅T;O5Wz 4 @6 @0 d4 @6 @0 d4 @6 @0 d4 @6 @0 P?Ď?Ҧ۾Vy¦6(PnF/{*H'^~qBM;pWf`'ޣfL? 폶uAz pK?+H{nqS, 3d6jqAki&lgJ7mwiyM*~{Aˋ<#w,xi+N׻,`UkiZs_e|:(Ky0հrno?aX85,d&,"QbLvpbD3PI~:sZh#w. :~<>{GH4 h  @2d(@P $CH4 h  @2d(@P $C`Ͱܴ{
50 1 1 500 250 1 1 500 2000 100 100 10000 30 1 1 100 3 1 1 10 true true true
screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/shaders/000077500000000000000000000000001412213610400276145ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/shaders/GL/000077500000000000000000000000001412213610400301165ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/shaders/GL/frag.glsl000066400000000000000000000001501412213610400317140ustar00rootroot00000000000000#version 150 // Varyings in vec4 v_color; out vec4 fragColor; void main() { fragColor = v_color; } screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/shaders/GL/vert.glsl000066400000000000000000000002421412213610400317570ustar00rootroot00000000000000#version 150 // Attributes in vec4 a_position; in vec4 a_color; // Varyings out vec4 v_color; void main() { gl_Position = a_position; v_color = a_color; } screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/shaders/GLES/000077500000000000000000000000001412213610400303465ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/shaders/GLES/frag.glsl000066400000000000000000000001651412213610400321520ustar00rootroot00000000000000#version 100 precision mediump float; // Varyings varying vec4 v_color; void main() { gl_FragColor = v_color; } screensaver.biogenesis-19.0.0-Matrix/screensaver.biogenesis/resources/shaders/GLES/vert.glsl000066400000000000000000000003161412213610400322110ustar00rootroot00000000000000#version 100 precision mediump float; // Attributes attribute vec4 a_position; attribute vec4 a_color; // Varyings varying vec4 v_color; void main() { gl_Position = a_position; v_color = a_color; } screensaver.biogenesis-19.0.0-Matrix/src/000077500000000000000000000000001412213610400202725ustar00rootroot00000000000000screensaver.biogenesis-19.0.0-Matrix/src/Life.cpp000066400000000000000000000477311412213610400216710ustar00rootroot00000000000000/* * Copyright (C) 2016-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2004 Team XBMC * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. */ /* * Ver 1.0 2007-02-12 by Asteron http://asteron.projects.googlepages.com/home */ #include #include "types.h" #include #include #ifdef WIN32 #include #else #include #include #endif struct CUSTOMVERTEX { float x, y, z; // The transformed position for the vertex. CRGBA color; // The vertex colour. }; struct Cell { CRGBA color; // The cell color. short lifetime; char nextstate, state; }; #define DEAD 0 #define ALIVE 1 #define COLOR_TIME 0 #define COLOR_COLONY 1 #define COLOR_NEIGHBORS 2 #ifdef WIN32 ID3D11DeviceContext* g_pContext = nullptr; ID3D11Buffer* g_pVBuffer = nullptr; ID3D11PixelShader* g_pPShader = nullptr; #endif struct Grid { int minSize; int maxSize; int width; int height; int spacing; int resetTime; int cellSizeX; int cellSizeY; int colorType; int ruleset; int frameCounter; int maxColor; int presetChance; int allowedColoring; int cellLineLimit; CRGBA palette[800]; Cell * cells; Cell * fullGrid; }; class ATTRIBUTE_HIDDEN CScreensaverBiogenesis : public kodi::addon::CAddonBase , public kodi::addon::CInstanceScreensaver #ifndef WIN32 , public kodi::gui::gl::CShaderProgram #endif { public: CScreensaverBiogenesis(); // kodi::addon::CInstanceScreensaver bool Start() override; void Stop() override; void Render() override; #ifndef WIN32 // kodi::gui::gl::CShaderProgram void OnCompiledAndLinked() override; bool OnEnabled() override { return true; }; #endif private: static const int PALETTE_SIZE; static const int MAX_COLOR; Grid m_grid; int m_width; int m_height; float m_ratio; CRGBA randColor(); void SetDefaults(); void SeedGrid(); void presetPalette(); void CreateGrid(); void reducePalette(); void DrawGrid(); void UpdateStates(); void StepLifetime(); void StepNeighbors(); void StepColony(); void Step(); CRGBA HSVtoRGB( float h, float s, float v ); void DrawRectangle(int x, int y, int w, int h, const CRGBA& dwColour); #ifdef WIN32 void InitDXStuff(void); #else GLint m_aPosition = -1; GLint m_aColor = -1; GLuint m_vertexVBO; GLuint m_indexVBO; #endif }; const int CScreensaverBiogenesis::PALETTE_SIZE = sizeof(Grid::palette)/sizeof(CRGBA); CRGBA COLOR_TIMES[] = { CRGBA(30,30,200,255), CRGBA(120,10,255,255), CRGBA(50,100,250,255), CRGBA(0,250,200,255), CRGBA(60,250,40,255), CRGBA(244,200,40,255), CRGBA(250,100,30,255), CRGBA(255,10,20,255) }; const int CScreensaverBiogenesis::MAX_COLOR = sizeof(COLOR_TIMES)/sizeof(CRGBA); float frand() { return ((float) rand() / (float) RAND_MAX); } //////////////////////////////////////////////////////////////////////////// // Kodi has loaded us into memory, we should set our core values // here and load any settings we may have from our config file // CScreensaverBiogenesis::CScreensaverBiogenesis() { m_grid.cells = nullptr; m_grid.fullGrid = nullptr; m_width = Width(); m_height = Height(); m_ratio = (float)m_width/(float)m_height; SetDefaults(); CreateGrid(); #ifdef WIN32 g_pContext = reinterpret_cast(Device()); InitDXStuff(); #endif } // Kodi tells us we should get ready // to start rendering. This function // is called once when the screensaver // is activated by Kodi. bool CScreensaverBiogenesis::Start() { #ifndef WIN32 std::string fraqShader = kodi::GetAddonPath("resources/shaders/" GL_TYPE_STRING "/frag.glsl"); std::string vertShader = kodi::GetAddonPath("resources/shaders/" GL_TYPE_STRING "/vert.glsl"); if (!LoadShaderFiles(vertShader, fraqShader) || !CompileAndLink()) { kodi::Log(ADDON_LOG_ERROR, "Failed to create and compile shader"); return false; } glGenBuffers(1, &m_vertexVBO); glGenBuffers(1, &m_indexVBO); #endif SeedGrid(); return true; } // Kodi tells us to render a frame of // our screensaver. This is called on // each frame render in Kodi, you should // render a single frame only - the DX // device will already have been cleared. void CScreensaverBiogenesis::Render() { #ifndef WIN32 glClearColor(0.0f, 0.0f, 0.0f, 1.0f); glClear(GL_COLOR_BUFFER_BIT); #endif if (m_grid.frameCounter++ == m_grid.resetTime) CreateGrid(); Step(); DrawGrid(); } // Kodi tells us to stop the screensaver // we should free any memory and release // any resources we have created. void CScreensaverBiogenesis::Stop() { delete m_grid.fullGrid; m_grid.fullGrid = nullptr; #ifdef WIN32 SAFE_RELEASE(g_pPShader); SAFE_RELEASE(g_pVBuffer); #else glBindBuffer(GL_ARRAY_BUFFER, 0); glDeleteBuffers(1, &m_vertexVBO); glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, 0); glDeleteBuffers(1, &m_indexVBO); #endif } CRGBA CScreensaverBiogenesis::randColor() { float h=(float)(rand()%360), s = 0.3f + 0.7f*frand(), v=0.67f+0.25f*frand(); if (m_grid.colorType == COLOR_NEIGHBORS || m_grid.colorType == COLOR_TIME) { s = 0.9f + 0.1f*frand(); //v = 0.5f + 0.3f*frand(); } return HSVtoRGB(h,s,v); } void CScreensaverBiogenesis::SetDefaults() { m_grid.minSize = 50; m_grid.maxSize = 250; m_grid.spacing = 1; m_grid.resetTime = 2000; m_grid.presetChance = 30; m_grid.allowedColoring = 7; m_grid.cellLineLimit = 3; } void CScreensaverBiogenesis::SeedGrid() { memset(m_grid.cells,0, m_grid.width*m_grid.height*sizeof(Cell)); for ( int i = 0; i 5 ? (int)(m_ratio * m_grid.cellSizeX) : m_grid.cellSizeX; m_grid.width = m_width/m_grid.cellSizeX; m_grid.height = m_height/m_grid.cellSizeY; if (m_grid.cellSizeX <= m_grid.cellLineLimit ) m_grid.spacing = 0; else m_grid.spacing = 1; if (m_grid.fullGrid) delete m_grid.fullGrid; m_grid.fullGrid = new Cell[m_grid.width*(m_grid.height+2)+2]; memset(m_grid.fullGrid,0, (m_grid.width*(m_grid.height+2)+2) * sizeof(Cell)); m_grid.cells = &m_grid.fullGrid[m_grid.width + 1]; m_grid.frameCounter = 0; do { m_grid.colorType = rand()%3; } while (!(m_grid.allowedColoring & (1 << m_grid.colorType)) && m_grid.allowedColoring != 0); m_grid.ruleset = 0; for (i=0; i< PALETTE_SIZE; i++) m_grid.palette[i] = randColor(); m_grid.maxColor = MAX_COLOR; if (m_grid.colorType == COLOR_TIME && (rand()%100 < m_grid.presetChance)) for (i=0; i< MAX_COLOR; i++) m_grid.palette[i] = COLOR_TIMES[i]; else m_grid.maxColor += (rand()%2)*(rand()%60); //make it shimmer sometimes if (m_grid.colorType == COLOR_TIME && rand()%3) { for (i=m_grid.maxColor-1; i>i ; } // This simplifies the neighbor palette based off of symmetry void CScreensaverBiogenesis::reducePalette() { int i = 0, bits[8], inf, temp; for(i = 0; i < 256; i++) { inf = i; unpackBits(i, bits); for(int k = 0; k < 2; k++) { for(int j = 0; j<4; j++) if ((temp = packBits(rotateBits(bits))) < inf) inf = temp; flipBits(bits); } m_grid.palette[i] = m_grid.palette[inf]; } } void CScreensaverBiogenesis::DrawGrid() { #ifdef WIN32 g_pContext->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP); UINT strides = sizeof(CUSTOMVERTEX), offsets = 0; g_pContext->IASetVertexBuffers(0, 1, &g_pVBuffer, &strides, &offsets); g_pContext->PSSetShader(g_pPShader, NULL, 0); #endif for(int i = 0; i= m_grid.maxColor) m_grid.cells[i].lifetime = m_grid.maxColor - 1; m_grid.cells[i].color = m_grid.palette[m_grid.cells[i].lifetime]; } else m_grid.cells[i].nextstate = DEAD; } } UpdateStates(); } void CScreensaverBiogenesis::StepNeighbors() { UpdateStates(); int i; for(i = 0; iMap(g_pVBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &res))) { memcpy(res.pData, cvVertices, sizeof(cvVertices)); g_pContext->Unmap(g_pVBuffer, 0); } g_pContext->Draw(4, 0); #endif } #ifdef WIN32 const BYTE PixelShader[] = { 68, 88, 66, 67, 18, 124, 182, 35, 30, 142, 196, 211, 95, 130, 91, 204, 99, 13, 249, 8, 1, 0, 0, 0, 124, 1, 0, 0, 4, 0, 0, 0, 48, 0, 0, 0, 124, 0, 0, 0, 188, 0, 0, 0, 72, 1, 0, 0, 65, 111, 110, 57, 68, 0, 0, 0, 68, 0, 0, 0, 0, 2, 255, 255, 32, 0, 0, 0, 36, 0, 0, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 0, 36, 0, 0, 2, 255, 255, 31, 0, 0, 2, 0, 0, 0, 128, 0, 0, 15, 176, 1, 0, 0, 2, 0, 8, 15, 128, 0, 0, 228, 176, 255, 255, 0, 0, 83, 72, 68, 82, 56, 0, 0, 0, 64, 0, 0, 0, 14, 0, 0, 0, 98, 16, 0, 3, 242, 16, 16, 0, 1, 0, 0, 0, 101, 0, 0, 3, 242, 32, 16, 0, 0, 0, 0, 0, 54, 0, 0, 5, 242, 32, 16, 0, 0, 0, 0, 0, 70, 30, 16, 0, 1, 0, 0, 0, 62, 0, 0, 1, 73, 83, 71, 78, 132, 0, 0, 0, 4, 0, 0, 0, 8, 0, 0, 0, 104, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0, 0, 15, 15, 0, 0, 122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 122, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 12, 0, 0, 0, 83, 86, 95, 80, 79, 83, 73, 84, 73, 79, 78, 0, 67, 79, 76, 79, 82, 0, 84, 69, 88, 67, 79, 79, 82, 68, 0, 171, 79, 83, 71, 78, 44, 0, 0, 0, 1, 0, 0, 0, 8, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, 83, 86, 95, 84, 65, 82, 71, 69, 84, 0, 171, 171 }; void CScreensaverBiogenesis::InitDXStuff(void) { ID3D11Device* pDevice = nullptr; g_pContext->GetDevice(&pDevice); CD3D11_BUFFER_DESC vbDesc(sizeof(CUSTOMVERTEX) * 5, D3D11_BIND_VERTEX_BUFFER, D3D11_USAGE_DYNAMIC, D3D11_CPU_ACCESS_WRITE); pDevice->CreateBuffer(&vbDesc, nullptr, &g_pVBuffer); pDevice->CreatePixelShader(PixelShader, sizeof(PixelShader), nullptr, &g_pPShader); SAFE_RELEASE(pDevice); } #else void CScreensaverBiogenesis::OnCompiledAndLinked() { // Variables passed directly to the Vertex shader m_aPosition = glGetAttribLocation(ProgramHandle(), "a_position"); m_aColor = glGetAttribLocation(ProgramHandle(), "a_color"); } #endif // WIN32 ADDONCREATOR(CScreensaverBiogenesis); screensaver.biogenesis-19.0.0-Matrix/src/types.h000066400000000000000000000112131412213610400216050ustar00rootroot00000000000000/* * Copyright (C) 2005-2021 Team Kodi (https://kodi.tv) * Copyright (C) 2005 Joakim Eriksson * * SPDX-License-Identifier: GPL-2.0-or-later * See LICENSE.md for more information. */ #pragma once #include #include #include /***************************** D E F I N E S *******************************/ typedef signed char s8; typedef unsigned char u8; typedef signed short s16; typedef unsigned short u16; typedef signed long s32; typedef unsigned long u32; typedef int64_t s64; typedef uint64_t u64; typedef float f32; typedef double f64; #define null 0 const f32 PI = 3.14159265358979323846f; const f32 FLOATEPSILON = 0.00001f; /****************************** M A C R O S ********************************/ #define SAFE_DELETE(_p) { if(_p) { delete _p; _p=NULL; } } #define SAFE_DELETE_ARRAY(_p) { if(_p) { delete [] _p; _p=NULL; } } #define SAFE_RELEASE(_p) { if(_p) { _p->Release(); _p=NULL; } } // Direct 3d verify #define DVERIFY( _func ) \ { \ HRESULT _retCode = _func; \ if( _retCode != D3D_OK) \ { \ char buf[2000]; \ sprintf(buf, "\""#_func"\" returned 0x%lx in\n" __FILE__ "(%ld)\n", _retCode, __LINE__); \ OutputDebugString(buf); \ return false; \ } \ } #define DEGTORAD(d) ((d)*(PI / 180.0f)) #define RADTODEG(r) ((r)*(180.0f / PI)) /***************************** C L A S S E S *******************************/ //////////////////////////////////////////////////////////////////////////// // class CRGBA { public: union { f32 col[4]; struct { f32 r,g,b,a; }; }; CRGBA() { col[0] = col[1] = col[2] = 1.0f; col[3] = 1.0f; } CRGBA(f32 R, f32 G, f32 B, f32 A) { col[0]=R; col[1]=G; col[2]=B; col[3]=A; } CRGBA(int R, int G, int B, int A) { col[0]=R/255.0f; col[1]=G/255.0f; col[2]=B/255.0f; col[3]=A/255.0f; } u32 RenderColor(void) const; void Set(f32 R, f32 G, f32 B, f32 A) { col[0]=R; col[1]=G; col[2]=B; col[3]=A; } CRGBA& operator = (const CRGBA& c) { r = c.r; g = c.g; b = c.b; a = c.a; return *this; } bool operator == (const CRGBA& c) { return r==c.r && g==c.g && b==c.b && a == c.a; } static CRGBA Lerp(const CRGBA& a, const CRGBA& e, float ratio) { CRGBA result; result.r = a.r*(1.0f-ratio)+e.r*ratio; result.g = a.g*(1.0f-ratio)+e.g*ratio; result.b = a.b*(1.0f-ratio)+e.b*ratio; result.a = 1.0; return result; } }; //////////////////////////////////////////////////////////////////////////// // class CVector { public: CVector() { } CVector(f32 _x, f32 _y, f32 _z) { x = _x; y = _y; z = _z; } void Zero() { x = y = z = 0.0f; } void Set(f32 _x, f32 _y, f32 _z) { x = _x; y = _y; z = _z; } f32 x; f32 y; f32 z; }; /***************************** G L O B A L S *******************************/ /***************************** I N L I N E S *******************************/ inline f32 Clamp(f32 x, f32 min, f32 max) { return (x <= min ? min : (x >= max ? max : x)); } inline f32 RandFloat(void) { return (1.0f / RAND_MAX) * ((f32)rand()); } inline int ISEQUAL(f32 a,f32 b,f32 absprec) { return (fabs((a)-(b))<=absprec); } inline int Rand(int max) { return rand() % max; } //////////////////////////////////////////////////////////////////////////// // A fast float to int version inline s32 FloatToInt(f32 f) { return (s32)f; // s32 res; // __asm fld f // __asm fistp res // return res; } //////////////////////////////////////////////////////////////////////////// // Converts a float (0.0-1.0) to 0-255 inline u8 FloatToByte(f32 fval) { if (fval >= 1.0f) return 255; if (fval <= 0.0f) return 0; return (u8)FloatToInt(fval * 255.5f); } //////////////////////////////////////////////////////////////////////////// // Returns a u32 color data, which is used in rendering. // inline u32 CRGBA::RenderColor(void) const { return ((((u32)FloatToByte(a) << 24) | ( (u32)FloatToByte(r) << 16) | ( (u32)FloatToByte(g) << 8) | (u32)FloatToByte(b))); } //////////////////////////////////////////////////////////////////////////// // inline f32 DotProduct(const CVector& v1, const CVector& v2) { return v1.x*v2.x + v1.y * v2.y + v1.z*v2.z; } //////////////////////////////////////////////////////////////////////////// // inline f32 InterpolateFloat(f32 v1, f32 v2, f32 t, bool linear) { assert((t >= 0.0f) && (t <= 1.0f)); if (linear) { return v1 + t*(v2 - v1); } // Compute Hermite spline coefficients for t, where 0 <= t <= 1. f32 t2 = t * t; f32 t3 = t * t2; f32 z = 3.0f * t2 - t3 - t3; return v1*(1.0f - z) + v2*z; }