[
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.md",
    "content": "---\nname: Bug report\nabout: Create a report to help us improve\n\n---\n\n**Describe the bug**\nA clear and concise description of what the bug is.\n\n**To Reproduce**\nSteps to reproduce the behavior:\n1. Go to '...'\n2. Click on '....'\n3. Scroll down to '....'\n4. See error\n\n**Expected behavior**\nA clear and concise description of what you expected to happen.\n\n**Screenshots**\nIf applicable, add screenshots to help explain your problem.\n\n**Desktop (please complete the following information):**\n - OS: [e.g. iOS]\n - Browser [e.g. chrome, safari]\n - Version [e.g. 22]\n\n**Smartphone (please complete the following information):**\n - Device: [e.g. iPhone6]\n - OS: [e.g. iOS8.1]\n - Browser [e.g. stock browser, safari]\n - Version [e.g. 22]\n\n**Additional context**\nAdd any other context about the problem here.\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.md",
    "content": "---\nname: Feature request\nabout: Suggest an idea for this project\n\n---\n\n**Is your feature request related to a problem? Please describe.**\nA clear and concise description of what the problem is. Ex. I'm always frustrated when [...]\n\n**Describe the solution you'd like**\nA clear and concise description of what you want to happen.\n\n**Describe alternatives you've considered**\nA clear and concise description of any alternative solutions or features you've considered.\n\n**Additional context**\nAdd any other context or screenshots about the feature request here.\n"
  },
  {
    "path": ".gitignore",
    "content": "# IDE\n/.idea/\n/*.iml\n\n# language.mo files\n#/locales/*/LC_MESSAGES/language.mo\n"
  },
  {
    "path": "CDNSP-GUI-Bob.py",
    "content": "#!/usr/bin/env python3\r\n# -*- coding: utf-8 -*-\r\n# Credit:\r\n# Thanks to Zotan (DB and script), Big Poppa Panda, AnalogMan, F!rsT-S0uL\r\n# Design inspiration: Lucas Rey's GUI (https://darkumbra.net/forums/topic/174470-app-cdnsp-gui-v105-download-nsp-gamez-using-a-gui/)\r\n# Thanks to the developer(s) that worked on CDNSP_Next for the cert fix!\r\n# Thanks to the help of devloper NighTime, kvn1351, gizmomelb, theLorknessMonster, vertigo\r\n# CDNSP - GUI - Bob - v6.0.1\r\nimport sys\r\nimport time\r\nimport random\r\nimport gettext\r\nimport platform\r\nimport locale\r\nimport json\r\nimport os\r\n\r\n__gui_version__ = \"6.0.2\"\r\n__lang_version__ = \"1.0.0\"\r\n\r\nglobal sys_locale\r\n\r\nif platform.system() != 'Darwin':\r\n    sys_locale = locale.getdefaultlocale() # Detect system locale to fix Window size on Chinese Windows Computer\r\n    sys_locale = sys_locale[0]\r\nelse:\r\n    sys_locale = \"Mac\"\r\n\r\nif sys_locale != \"zh_CN\":\r\n    main_win = \"1076x684+100+100\"\r\n    queue_win = \"620x300+1177+100\"\r\n    scan_win = \"415x100+100+170\"\r\n    base64_win = \"497x100+95+176\"\r\nelse:\r\n    main_win = \"1250x684+100+100\"\r\n    queue_win = \"720x300+770+100\"\r\n    scan_win = \"420x85+100+100\"\r\n    base64_win = \"500x105+100+100\"\r\n        \r\nconfig = {\"Options\": {\r\n            \"Download_location\":  \"\",\r\n            \"NSP_location\": \"\",\r\n            \"Game_location\": \"\",\r\n            \"NSP_repack\":         \"True\",\r\n            \"Mute\":               \"False\",\r\n            \"Titlekey_check\":     \"True\",\r\n            \"noaria\":             \"True\",\r\n            \"Disable_game_image\": \"False\",\r\n            \"Shorten\": \"False\",\r\n            \"Tinfoil\": \"False\",\r\n            \"SysVerZero\": \"False\",\r\n            \"Main_win\": main_win,\r\n            \"Queue_win\": queue_win,\r\n            \"Update_win\": \"600x400+120+200\",\r\n            \"Scan_win\": scan_win,\r\n            \"Base64_win\": base64_win,\r\n            \"Language\": \"en\",\r\n            \"Mode\": \"CDNSP\",\r\n            \"No_demo\": \"False\",\r\n            \"No_japanese_games\": \"False\",\r\n            \"Disable_description\": \"False\"}\r\n          }\r\n\r\n# Check if the GUI config JSON file has the needed keys\r\nf = open(\"CDNSP-GUI-config.json\", 'r')\r\nf_load = json.load(f)\r\nf.close()\r\n\r\nif os.path.isfile(\"CDNSP-GUI-config.json\"):\r\n    for json_key in config[\"Options\"]:\r\n        if json_key not in f_load[\"Options\"]:\r\n            print(\"Missing json key -\",json_key,\", it has been added in for you\")\r\n            f_load[\"Options\"][json_key] = config[\"Options\"][json_key]\r\n\r\n    f = open(\"CDNSP-GUI-config.json\", 'w')\r\n    json.dump(f_load, f, indent=4)\r\n    f.close()\r\nelse:\r\n    f = open(\"CDNSP-GUI-config.json\", 'w')\r\n    json.dump(config, f, indent=4)\r\n    f.close()    \r\n\r\nf = open(\"CDNSP-GUI-config.json\", 'r')\r\n\r\nj = json.load(f)\r\n\r\ntry:\r\n    chosen_lang = j[\"Options\"][\"Language\"]\r\nexcept:\r\n    f.close()\r\n    j[\"Options\"][\"Language\"] = \"en\" # Default to English language\r\n    with open(\"CDNSP-GUI-config.json\", 'w') as f:\r\n        json.dump(j, f, indent=4)\r\n    f.close()\r\n    chosen_lang = \"en\"\r\n\r\ndef set_lang(default_lang = \"en\"):\r\n    try:\r\n        lang = gettext.translation('language', localedir='locales', languages=[default_lang])\r\n        lang.install()\r\n        print(\"Current language: {}\".format(default_lang))\r\n    except:\r\n        lang = gettext.translation('language', localedir='locales', languages=[\"en\"])\r\n        lang.install()\r\n        print(\"Language files not available yet!\")\r\nset_lang(chosen_lang)\r\n\r\nif not os.path.isdir(\"Config\"):\r\n    os.mkdir(\"Config\")\r\n\r\nif not os.path.isdir(\"Images\"):\r\n    os.mkdir(\"Images\")\r\n\r\nbuild_text = _(\"\\nBuilding the current state list... Please wait, this may take some time \\\r\ndepending on how many games you have.\")\r\n\r\n# Check that user is using Python 3\r\nif (sys.version_info > (3, 0)):\r\n    # Python 3 code in this block\r\n    pass\r\nelse:\r\n    # Python 2 code in this block\r\n    print(_(\"\\n\\nError - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"))\r\n    time.sleep(1000)\r\n    sys.exit()\r\n\r\nfrom tkinter import *\r\nimport os\r\nfrom tkinter import messagebox\r\nimport tkinter.ttk as ttk\r\nfrom importlib import util\r\nimport subprocess\r\nimport urllib.request\r\nimport pip\r\nfrom pathlib import Path\r\n\r\ndef check_req_file(file):\r\n    if not os.path.exists(file):\r\n        url = 'https://raw.githubusercontent.com/Bob123a1/CDNSP-GUI-Files/master/{}'.format(file)  \r\n        urllib.request.urlretrieve(url, file)\r\n\r\ndef install_module(module):\r\n    try:\r\n        subprocess.check_output(\"pip3 install {}\".format(module), shell=True)\r\n    except:\r\n        print(_(\"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\").format(module))\r\n\r\ndef add_to_installed(tid, ver):\r\n    print(tid, ver)\r\n    installed_tid = []\r\n    installed_ver = []\r\n    if os.path.isfile(\"Config/installed.txt\"):\r\n        file = open(\"Config/installed.txt\", \"r\", encoding=\"utf8\")\r\n        for game in file.readlines():\r\n            installed_tid.append(game.split(\",\")[0].strip())\r\n            installed_ver.append(game.split(\",\")[1].strip())\r\n        file.close()\r\n        if tid in installed_tid:\r\n            if int(ver) > int(installed_ver[installed_tid.index(tid)]):\r\n                installed_ver[installed_tid.index(tid)] = ver\r\n                \r\n        else:\r\n            installed_tid.append(tid)\r\n            installed_ver.append(ver)\r\n        file = open(\"Config/installed.txt\", \"w\", encoding=\"utf8\")\r\n        for i in range(len(installed_tid)):\r\n            file.write(\"{}, {}\\n\".format(installed_tid[i], installed_ver[i]))\r\n        file.close()\r\n    \r\n    \r\nprint(_(\"\\nChecking if all required modules are installed!\\n\\n\"))\r\ntry:\r\n    import requests\r\nexcept ImportError:\r\n    install_module(\"requests\")\r\n    import requests       \r\n\r\ntry:\r\n    from tqdm import tqdm\r\nexcept ImportError:\r\n    install_module(\"tqdm\")\r\n    from tqdm import tqdm  \r\n\r\ntry:\r\n    import unidecode   \r\nexcept ImportError:\r\n    install_module(\"unidecode\")\r\n    import unidecode    \r\n\r\ntry:\r\n    from PIL import Image, ImageTk   \r\nexcept ImportError:\r\n    install_module(\"Pillow\")\r\n    from PIL import Image, ImageTk\r\n\r\ntry:\r\n    from bs4 import BeautifulSoup\r\nexcept ImportError:\r\n    install_module(\"beautifulsoup4\")\r\n    from bs4 import BeautifulSoup\r\n\r\ntry:\r\n    import ssl\r\nexcept:\r\n    install_module(\"pyopenssl\")\r\n    import ssl\r\n\r\nssl._create_default_https_context = ssl._create_unverified_context # Thanks to user rdmrocha on Github\r\n\r\nreq_file = [\"CDNSPconfig.json\", \"keys.txt\", \"nx_tls_client_cert.pem\", \"titlekeys.txt\",\\\r\n            \"titlekeys_overwrite.txt\", \"Nut_titlekeys.txt\", \"cert_dead.jpg\"]\r\ntry:\r\n    for file in req_file:\r\n        check_req_file(file)\r\n    print(_(\"Everything looks good!\"))\r\nexcept Exception as e:\r\n    print(_(\"Unable to get required files! Check your internet connection: [{}]\").format(str(e)))\r\n\r\n# CDNSP script\r\n\r\nimport argparse\r\nimport base64\r\nimport platform\r\nimport re\r\nimport shlex\r\nimport xml.dom.minidom as minidom\r\nimport xml.etree.ElementTree as ET\r\nfrom binascii import hexlify as hx, unhexlify as uhx\r\nfrom io import TextIOWrapper\r\nimport os, sys\r\nimport subprocess\r\nimport urllib3\r\nimport json\r\nimport shutil\r\nimport argparse\r\nimport configparser\r\nfrom hashlib import sha256\r\nfrom struct import pack as pk, unpack as upk\r\nfrom binascii import hexlify as hx, unhexlify as uhx\r\nimport xml.etree.ElementTree as ET, xml.dom.minidom as minidom    \r\nimport re\r\nimport datetime\r\nimport calendar\r\nimport operator\r\nimport base64\r\nimport shlex\r\nfrom distutils.version import StrictVersion as StrV\r\nimport re\r\nimport shutil\r\nimport requests\r\nimport xml.etree.ElementTree as ET, xml.dom.minidom as minidom\r\nimport unicodedata as ud\r\n\r\nfrom tkinter import filedialog\r\nimport threading\r\nsys_name = \"Win\"\r\nglobal noaria\r\nnoaria = True\r\nimport webbrowser\r\ntitlekey_list = []\r\n\r\nglobal tqdmProgBar\r\ntqdmProgBar = True\r\n\r\nsysver0 = False\r\n\r\n#Global Vars\r\ntruncateName = False\r\ntinfoil = False\r\nenxhop = False\r\ncurrent_mode = \"\"\r\nnsp_location = \"\"\r\npause_download = False\r\ndownloading = False # Thanks to rockbass2560 on Github\r\ninstalled_global = {}\r\n\r\ndef read_at(f, off, len):\r\n    f.seek(off)\r\n    return f.read(len)\r\n\r\ndef read_u8(f, off):\r\n    return upk('<B', read_at(f, off, 1))[0]\r\n\r\ndef read_u16(f, off):\r\n    return upk('<H', read_at(f, off, 2))[0]\r\n\r\ndef read_u32(f, off):\r\n    return upk('<I', read_at(f, off, 4))[0]\r\n    \r\ndef read_u48(f, off):\r\n    s = upk('<HI', read_at(f, off, 6))\r\n    return s[1] << 16 | s[0]\r\n\r\ndef read_u64(f, off):\r\n    return upk('<Q', read_at(f, off, 8))[0]\r\n    \r\ndef sha256_file(fPath):\r\n    f = open(fPath, 'rb')\r\n    fSize = os.path.getsize(fPath)\r\n    hash = sha256()\r\n    \r\n    if fSize >= 10000:\r\n        t = tqdm(total=fSize, unit='B', unit_scale=True, desc=os.path.basename(fPath), leave=False)\r\n        while True:\r\n            buf = f.read(4096)\r\n            if not buf:\r\n                break\r\n            hash.update(buf)\r\n            t.update(len(buf))\r\n        t.close()\r\n    else:\r\n        hash.update(f.read())\r\n    f.close()\r\n    return hash.hexdigest()\r\n    \r\ndef bytes2human(n, f='%(value).3f %(symbol)s'):\r\n    n = int(n)\r\n    if n < 0:\r\n        raise ValueError('n < 0')\r\n    symbols = ('B', 'KB', 'MB', 'GB', 'TB')\r\n    prefix = {}\r\n    for i, s in enumerate(symbols[1:]):\r\n        prefix[s] = 1 << (i + 1) * 10\r\n    for symbol in reversed(symbols[1:]):\r\n        if n >= prefix[symbol]:\r\n            value = float(n) / prefix[symbol]\r\n            return f % locals()\r\n    return f % dict(symbol=symbols[0], value=n)\r\n\r\ndef get_name(tid):\r\n    if current_mode_global == \"Nut\":\r\n        try:\r\n            if tid.endswith('800'):\r\n                tid = '%s000' % tid[:-3]\r\n            name = title_list[titleID_list.index(tid.lower())]\r\n            name = re.sub(r'[/\\\\:*?!\"|™©®()]+', \"\", unidecode.unidecode(name))\r\n            print(name)\r\n            return name\r\n        except:\r\n            return \"UNKNOWN TITLE\"\r\n    elif current_mode_global == \"CDNSP\":\r\n        try:\r\n            with open('titlekeys.txt',encoding=\"utf8\") as f:\r\n                lines = f.readlines()\r\n        except Exception as e:\r\n            print(\"Error:\", e)\r\n            exit()\r\n        for line in lines:\r\n            if line.strip() == '':\r\n                return\r\n            temp = line.split(\"|\")\r\n            if tid.endswith('800'):\r\n                tid = '%s000' % tid[:-3]\r\n            if tid.strip() == temp[0].strip()[:16]:\r\n                return re.sub(r'[/\\\\:*?!\"|™©®()]+', \"\", unidecode.unidecode(temp[2].strip()))\r\n    return \"UNKNOWN TITLE\"\r\n    \r\ndef safe_name(name):\r\n    return re.sub('[^\\x00-\\x7f]', '', ud.normalize('NFD', name))\r\n    \r\ndef safe_filename(safe_name):\r\n    return re.sub('[<>.:\"/\\\\|?*]+', '', safe_name)\r\n    \r\ndef check_tid(tid):\r\n    return re.match('0100[0-9a-fA-F]{12}', tid)\r\n    \r\ndef check_tkey(tkey):\r\n    return re.match('[0-9a-fA-F]{32}', tkey)\r\n    \r\ndef load_config(fPath):\r\n    dir = os.path.dirname(__file__)\r\n\r\n    config = {'Paths': {\r\n        'hactoolPath': 'hactool',\r\n        'keysPath': 'keys.txt',\r\n        'NXclientPath': 'nx_tls_client_cert.pem',\r\n        'ShopNPath': 'ShopN.pem'},\r\n        'Values': {\r\n            'Region': 'US',\r\n            'Firmware': '5.1.0-3',\r\n            'DeviceID': '6265A5E4140FF804',\r\n            'Environment': 'lp1',\r\n            'TitleKeysURL': '{}'.format(base64.b64decode(\"aHR0cDovL3NuaXAubGkvbmV3a2V5ZGI=\").decode(\"ascii\")),\r\n            'NspOut': '_NSPOUT',\r\n            'AutoUpdatedb': 'False'}}\r\n    try:\r\n        f = open(fPath, 'r')\r\n    except FileNotFoundError:\r\n        f = open(fPath, 'w')\r\n        json.dump(config, f)\r\n        f.close()\r\n        f = open(fPath, 'r')\r\n\r\n    j = json.load(f)\r\n\r\n    hactoolPath = j['Paths']['hactoolPath']\r\n    keysPath = j['Paths']['keysPath']\r\n    NXclientPath = j['Paths']['NXclientPath']\r\n    ShopNPath = j['Paths']['ShopNPath']\r\n\r\n    reg = j['Values']['Region']\r\n    fw = j['Values']['Firmware']\r\n    did = j['Values']['DeviceID']\r\n    env = j['Values']['Environment']\r\n    dbURL = j['Values']['TitleKeysURL']\r\n    nspout = j['Values']['NspOut']\r\n\r\n    if platform.system() == 'Linux':\r\n        hactoolPath = './' + hactoolPath + '_linux'\r\n\r\n    if platform.system() == 'Darwin':\r\n        hactoolPath = './' + hactoolPath + '_mac'\r\n\r\n    return hactoolPath, keysPath, NXclientPath, ShopNPath, reg, fw, did, env, dbURL, nspout\r\n    \r\ndef gen_tik(fPath, rightsID, tkey, mkeyrev):\r\n    f = open(fPath, 'wb')\r\n\r\n    f.write(b'\\x04\\x00\\x01\\x00')\r\n    f.write(0x100 * b'\\xFF')\r\n    f.write(0x3C  * b'\\x00')\r\n    f.write(b'Root-CA00000003-XS00000020')\r\n    f.write(0x6   * b'\\x00')\r\n    f.write(0x20  * b'\\x00')\r\n    if tkey:\r\n        f.write(uhx(tkey))\r\n    else:\r\n        f.write(0x10 * b'\\x00')\r\n    f.write(0xF0  * b'\\x00')\r\n    f.write(b'\\x02\\x00\\x00\\x00\\x00')\r\n    f.write(pk('<B', int(mkeyrev)))\r\n    f.write(0xA   * b'\\x00')\r\n    f.write(0x10  * b'\\x00')\r\n    f.write(uhx(rightsID))\r\n    f.write(0x8   * b'\\x00')\r\n    f.write(b'\\xC0\\x02\\x00\\x00\\x00\\x00\\x00\\x00')\r\n\r\n    f.close()\r\n    return fPath\r\n    \r\ndef gen_cert(fPath):\r\n    f = open(fPath, 'wb')\r\n    f.write(uhx(b'''\\\r\n00010003704138efbbbda16a987dd901\r\n326d1c9459484c88a2861b91a312587a\r\ne70ef6237ec50e1032dc39dde89a96a8\r\ne859d76a98a6e7e36a0cfe352ca89305\r\n8234ff833fcb3b03811e9f0dc0d9a52f\r\n8045b4b2f9411b67a51c44b5ef8ce77b\r\nd6d56ba75734a1856de6d4bed6d3a242\r\nc7c8791b3422375e5c779abf072f7695\r\nefa0f75bcb83789fc30e3fe4cc839220\r\n7840638949c7f688565f649b74d63d8d\r\n58ffadda571e9554426b1318fc468983\r\nd4c8a5628b06b6fc5d507c13e7a18ac1\r\n511eb6d62ea5448f83501447a9afb3ec\r\nc2903c9dd52f922ac9acdbef58c60218\r\n48d96e208732d3d1d9d9ea440d91621c\r\n7a99db8843c59c1f2e2c7d9b577d512c\r\n166d6f7e1aad4a774a37447e78fe2021\r\ne14a95d112a068ada019f463c7a55685\r\naabb6888b9246483d18b9c806f474918\r\n331782344a4b8531334b26303263d9d2\r\neb4f4bb99602b352f6ae4046c69a5e7e\r\n8e4a18ef9bc0a2ded61310417012fd82\r\n4cc116cfb7c4c1f7ec7177a17446cbde\r\n96f3edd88fcd052f0b888a45fdaf2b63\r\n1354f40d16e5fa9c2c4eda98e798d15e\r\n6046dc5363f3096b2c607a9d8dd55b15\r\n02a6ac7d3cc8d8c575998e7d796910c8\r\n04c495235057e91ecd2637c9c1845151\r\nac6b9a0490ae3ec6f47740a0db0ba36d\r\n075956cee7354ea3e9a4f2720b26550c\r\n7d394324bc0cb7e9317d8a8661f42191\r\nff10b08256ce3fd25b745e5194906b4d\r\n61cb4c2e000000000000000000000000\r\n00000000000000000000000000000000\r\n00000000000000000000000000000000\r\n00000000000000000000000000000000\r\n526f6f74000000000000000000000000\r\n00000000000000000000000000000000\r\n00000000000000000000000000000000\r\n00000000000000000000000000000000\r\n00000001434130303030303030330000\r\n00000000000000000000000000000000\r\n00000000000000000000000000000000\r\n00000000000000000000000000000000\r\n000000007be8ef6cb279c9e2eee121c6\r\neaf44ff639f88f078b4b77ed9f9560b0\r\n358281b50e55ab721115a177703c7a30\r\nfe3ae9ef1c60bc1d974676b23a68cc04\r\nb198525bc968f11de2db50e4d9e7f071\r\ne562dae2092233e9d363f61dd7c19ff3\r\na4a91e8f6553d471dd7b84b9f1b8ce73\r\n35f0f5540563a1eab83963e09be90101\r\n1f99546361287020e9cc0dab487f140d\r\n6626a1836d27111f2068de4772149151\r\ncf69c61ba60ef9d949a0f71f5499f2d3\r\n9ad28c7005348293c431ffbd33f6bca6\r\n0dc7195ea2bcc56d200baf6d06d09c41\r\ndb8de9c720154ca4832b69c08c69cd3b\r\n073a0063602f462d338061a5ea6c915c\r\nd5623579c3eb64ce44ef586d14baaa88\r\n34019b3eebeed3790001000100000000\r\n00000000000000000000000000000000\r\n00000000000000000000000000000000\r\n00000000000000000000000000000000\r\n00010004969fe8288da6b9dd52c7bd63\r\n642a4a9ae5f053eccb93613fda379920\r\n87bd9199da5e6797618d77098133fd5b\r\n05cd8288139e2e975cd2608003878cda\r\nf020f51a0e5b7692780845561b31c618\r\n08e8a47c3462224d94f736e9a14e56ac\r\nbf71b7f11bbdee38ddb846d6bd8f0ab4\r\ne4948c5434eaf9bf26529b7eb83671d3\r\nce60a6d7a850dbe6801ec52a7b7a3e5a\r\n27bc675ba3c53377cfc372ebce02062f\r\n59f37003aa23ae35d4880e0e4b69f982\r\nfb1bac806c2f75ba29587f2815fd7783\r\n998c354d52b19e3fad9fbef444c48579\r\n288db0978116afc82ce54dacb9ed7e1b\r\nfd50938f22f85eecf3a4f426ae5feb15\r\nb72f022fb36ecce9314dad131429bfc9\r\n675f58ee000000000000000000000000\r\n00000000000000000000000000000000\r\n00000000000000000000000000000000\r\n00000000000000000000000000000000\r\n526f6f742d4341303030303030303300\r\n00000000000000000000000000000000\r\n00000000000000000000000000000000\r\n00000000000000000000000000000000\r\n00000001585330303030303032300000\r\n00000000000000000000000000000000\r\n00000000000000000000000000000000\r\n00000000000000000000000000000000\r\n0000000000000000d21d3ce67c1069da\r\n049d5e5310e76b907e18eec80b337c47\r\n23e339573f4c664907db2f0832d03df5\r\nea5f160a4af24100d71afac2e3ae75af\r\na1228012a9a21616597df71eafcb6594\r\n1470d1b40f5ef83a597e179fcb5b57c2\r\nee17da3bc3769864cb47856767229d67\r\n328141fc9ab1df149e0c5c15aeb80bc5\r\n8fc71be18966642d68308b506934b8ef\r\n779f78e4ddf30a0dcf93fcafbfa131a8\r\n839fd641949f47ee25ceecf814d55b0b\r\ne6e5677c1effec6f29871ef29aa3ed91\r\n97b0d83852e050908031ef1abbb5afc8\r\nb3dd937a076ff6761ab362405c3f7d86\r\na3b17a6170a659c16008950f7f5e06a5\r\nde3e5998895efa7deea060be9575668f\r\n78ab1907b3ba1b7d0001000100000000\r\n00000000000000000000000000000000\r\n00000000000000000000000000000000\r\n00000000000000000000000000000000'''.replace(b'\\n', b'')))\r\n    f.close()\r\n    return fPath\r\n    \r\ndef decrypt_NCA(fPath, outDir=''):\r\n    if not outDir:\r\n        outDir = os.path.splitext(fPath)[0]\r\n    os.makedirs(outDir, exist_ok=True)\r\n    \r\n    commandLine = hactoolPath + ' \"' + fPath + '\"' + keysArg\\\r\n                  + ' --exefsdir=\"'    + outDir + '/exefs\"'\\\r\n                  + ' --romfsdir=\"'    + outDir + '/romfs\"'\\\r\n                  + ' --section0dir=\"' + outDir + '/section0\"'\\\r\n                  + ' --section1dir=\"' + outDir + '/section1\"'\\\r\n                  + ' --section2dir=\"' + outDir + '/section2\"'\\\r\n                  + ' --section3dir=\"' + outDir + '/section3\"'\\\r\n                  + ' --header=\"'      + outDir + '/Header.bin\"'\r\n                  \r\n    pipes = subprocess.Popen(commandLine, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)\r\n    _, std_err = pipes.communicate()\r\n\r\n    if pipes.returncode != 0:\r\n        err_msg = '%s. Code: %s' % (std_err.strip(), pipes.returncode)\r\n        raise Exception(err_msg)\r\n    elif len(std_err):\r\n        raise Exception(std_err)\r\n        \r\n    return outDir\r\n    \r\ndef get_name_from_nacp(fPath):\r\n    dir = decrypt_NCA(fPath)\r\n    nacpPath = os.path.join(dir, 'romfs', 'control.nacp')\r\n    try: \r\n        f = open(nacpPath, 'rb')\r\n        name = f.read(0x200).strip(b'\\x00').decode()\r\n        f.close()\r\n        return safe_name(name)\r\n    except FileNotFoundError:\r\n        return ''\r\n\r\ndef cert_dead():\r\n    print(\"\\n\\n\" + _('Request rejected by server! You may need a new cert.'))\r\n\r\n    messagebox.showinfo(\"\",  _('Request rejected by server! You may need a new cert.'))\r\n\r\n    if os.path.isfile('cert_dead.jpg'):\r\n        img2 = ImageTk.PhotoImage(Image.open('cert_dead.jpg'))\r\n        imageLabel_widget.configure(image=img2, text=\"\")\r\n        imageLabel_widget.image = img2\r\n\r\n    sys.exit()\r\n\r\ndef make_request(method, url, certificate='', hdArgs={}):\r\n    if edgeToken == None:\r\n        print(\"\\n\"+_(\"Error, Unable to make request without the token\"))\r\n        return None\r\n\r\n    try:\r\n        expiry_time = int(edgeToken[edgeToken.index(\"=\")+1:edgeToken.index(\"~\")])\r\n    except ValueError:\r\n        print(\"\\n\"+_(\"Your token file is not formatted correctly\"))\r\n        return None\r\n\r\n    if expiry_time < time.time():\r\n        print(\"\\n\"+_(\"Your token has expired, please get a new token before making request\"))\r\n        return None\r\n        \r\n    if not certificate: # Workaround for defining errors\r\n        certificate = NXclientPath\r\n\r\n    global fw\r\n    if fw != '6.2.0-1.0':\r\n        fw = '6.2.0-1.0' # Hard coded to the latest Switch firmware version\r\n    \r\n    reqHd = {'X-Nintendo-DenebEdgeToken': edgeToken,\r\n             'User-Agent': 'NintendoSDK Firmware/%s (platform:NX; did:%s; eid:%s)' % (fw, did, env),\r\n             'Accept-Encoding': 'gzip, deflate',\r\n             'Accept': '*/*',\r\n             'Connection': 'keep-alive'}\r\n    reqHd.update(hdArgs)\r\n    \r\n    r = requests.request(method, url, cert=certificate, headers=reqHd, verify=False, stream=True)\r\n    \r\n    if r.status_code == 403:\r\n        print(\"\\n\\n\" + _('Request rejected by server! You may need a new cert.'))\r\n        return None\r\n    if r.status_code == 404:\r\n        print('Error, File doesn\\'t exist on the CDN')\r\n        return None\r\n    \r\n    return r\r\n    \r\ndef print_info(tid):\r\n    print('\\n%s:' % tid)\r\n    if tid.endswith('000'):\r\n        basetid   = tid\r\n        updatetid = '%016x' % (int(tid, 16) + 0x800)\r\n    elif tid.endswith('800'):\r\n        basetid   = '%016x' % (int(tid, 16) & 0xFFFFFFFFFFFFF000)\r\n        updatetid = tid\r\n    else:\r\n        basetid     = '%016x' % (int(tid, 16) - 0x1000 & 0xFFFFFFFFFFFFF000)\r\n        updatetid   = basetid[:-3] + '800'\r\n        \r\n    try:\r\n        _, name, size = get_info(tid=basetid)\r\n    except requests.exceptions.SSLError:\r\n        print('\\tCould not get info from Shogun')\r\n        name = ''\r\n        size = 0\r\n        \r\n    if name:\r\n        print('\\tName: %s' % name)\r\n    if size:\r\n        print('\\tSize: %s' % bytes2human(size))\r\n        \r\n    if tid != basetid:    \r\n        versions = get_versions(tid)\r\n        print('\\n\\tAvailable versions for %s:' % tid)\r\n        print('\\t\\tv' + ' v'.join(versions))\r\n    \r\n    print('\\n\\tBase TID:   %s' % basetid)\r\n    versions = get_versions(basetid)\r\n    print('\\tAvailable versions for %s:' % basetid)\r\n    print('\\t\\tv' + ' v'.join(versions))\r\n    \r\n    print('\\n\\tUpdate TID: %s' % updatetid)\r\n    versions = get_versions(updatetid)\r\n    print('\\tAvailable versions for %s:' % updatetid)\r\n    if versions:\r\n        print('\\t\\tv' + ' v'.join(versions))\r\n    else:\r\n        print('\\t\\t%s has no version available' % updatetid)\r\n    \r\ndef get_info(tid='', freeword=''):\r\n    print(tid)\r\n    if tid:\r\n        url = 'https://bugyo.hac.%s.eshop.nintendo.net/shogun/v1/contents/ids?shop_id=4&lang=en&country=%s&type=title&title_ids=%s'\\\r\n            % (env, reg, tid)\r\n        r = make_request('GET', url, certificate=ShopNPath)\r\n        j = r.json()\r\n        nsuid = j['id_pairs'][0]['id']\r\n        print(nsuid)\r\n    elif freeword:\r\n        url = 'https://bugyo.hac.lp1.eshop.nintendo.net/shogun/v1/titles?shop_id=4&lang=en&offset=0&country=%s&limit=25&sort=popular&freeword=%s'\\\r\n               % (reg, freeword)\r\n        r = make_request('GET', url, certificate=ShopNPath)\r\n        j = r.json()\r\n        nsuid = j['contents'][0]['id']\r\n    \r\n    try:\r\n        url = 'https://bugyo.hac.%s.eshop.nintendo.net/shogun/v1/titles/%s?shop_id=4&lang=en&country=%s' % (env, nsuid, reg)\r\n        r = make_request('GET', url, certificate=ShopNPath)\r\n        j = r.json()\r\n        \r\n        if freeword:\r\n            try:\r\n                tid = j['applications'][0]['id']\r\n            except KeyError:\r\n                print('Found no result for %s on Shogun' % freeword)\r\n                raise\r\n        \r\n        try:\r\n            name = j['formal_name']\r\n            name = safe_name(name)\r\n        except IndexError:\r\n            name = ''\r\n        \r\n        try:\r\n            size = j['total_rom_size']\r\n        except IndexError:\r\n            size = 0\r\n            \r\n    except IndexError:\r\n        print('\\tTitleID not found on Shogun!')\r\n        \r\n    return tid, name, size\r\n    \r\ndef get_versions(tid):\r\n##    url = 'https://tagaya.hac.%s.eshop.nintendo.net/tagaya/hac_versionlist' % env\r\n    url = 'https://superfly.hac.%s.d4c.nintendo.net/v1/t/%s/dv' % (env,tid)\r\n    r = make_request('GET', url)\r\n    try:\r\n        j = r.json()\r\n    except AttributeError:\r\n        return \"none\"\r\n    print(j)\r\n\r\n    try:\r\n        if j['error']:\r\n            return ['none']\r\n    except Exception as e:\r\n        pass\r\n    try:\r\n        lastestVer = j['version']\r\n        if lastestVer < 65536:\r\n            return ['%s' % lastestVer]\r\n        else:\r\n            versionList = ('%s' % \"-\".join(str(i) for i in range(0x10000, lastestVer+1, 0x10000))).split('-')\r\n            return versionList\r\n    except Exception as e:\r\n        return ['none']\r\n       \r\ndef check_versions(fPath):\r\n    f = open(fPath, 'r')\r\n\r\n    old = {}\r\n    for line in f.readlines():\r\n            tid, ver = line.strip().split('-')\r\n            old[tid] = ver\r\n    \r\n    n = 1\r\n    new = {}\r\n    for tid in old:\r\n        sys.stdout.write('\\rChecking for updates for title %s of %s...' % (n, len(old)))\r\n        sys.stdout.flush()\r\n        n += 1\r\n        \r\n        latestVer = get_versions(tid)[-1]\r\n        \r\n        if latestVer and int(latestVer) > int(old[tid]):\r\n            new[tid] = latestVer\r\n\r\n        if tid.endswith('000'):\r\n            updatetid = '%016x'.lower() % (int(tid, 16) + 0x800)\r\n            if updatetid not in old:\r\n                updateVer = get_versions(updatetid)\r\n                if updateVer:\r\n                    new[updatetid] = updateVer[-1]\r\n    sys.stdout.write('\\r\\033[F')\r\n    \r\n    if new:\r\n        for tid in new:\r\n            print('New update available for %s: v%s' % (tid, new[tid]))\r\n        \r\n        dl = input('\\nType anything to download the new updates: ')\r\n        if dl:\r\n            for tid in new:\r\n                download_game(tid, new[tid], nspRepack=True, verify=True)\r\n    else:\r\n        print('No new update was found for any of the downloaded titles!')\r\n            \r\n    f.close()\r\n\r\ndef download_file(url, fPath, fSize=0):\r\n    fName = os.path.basename(fPath).split()[0]\r\n    \r\n    if os.path.exists(fPath) and fSize != 0:\r\n        dlded = os.path.getsize(fPath)\r\n            \r\n        if dlded == fSize:\r\n            print('\\t\\tDownload is already complete, skipping!')\r\n            return fPath\r\n        elif dlded < fSize:\r\n            print('\\t\\tResuming download...')\r\n            r = make_request('GET', url, hdArgs={'Range': 'bytes=%s-' % dlded})\r\n            f = open(fPath, 'ab')\r\n        else:\r\n            print('\\t\\tExisting file is bigger than expected (%s/%s), restarting download...' % (dlded, fSize))\r\n            dlded = 0\r\n            r = make_request('GET', url)\r\n            f = open(fPath, \"wb\")\r\n    else:\r\n        dlded = 0\r\n        r = make_request('GET', url)\r\n        fSize = int(r.headers.get('Content-Length'))\r\n        f = open(fPath, 'wb')\r\n        \r\n    if fSize >= 10000:\r\n        t = tqdm(initial=dlded, total=int(fSize), desc=fName, unit='B', unit_scale=True, leave=False, mininterval=0.5)\r\n        global downloading\r\n        downloading = True\r\n        for chunk in r.iter_content(4096):\r\n            f.write(chunk)\r\n            dlded += len(chunk)\r\n            t.update(len(chunk))\r\n            if pause_download:\r\n                while pause_download:\r\n                    time.sleep(.5)\r\n        downloading = False\r\n        t.close()\r\n    else:\r\n        f.write(r.content)\r\n        dlded += len(r.content)\r\n    \r\n    if fSize != 0 and dlded != fSize:\r\n        raise ValueError('Downloaded data is not as big as expected (%s/%s)!' % (dlded, fSize))\r\n        \r\n    f.close()    \r\n    print('\\r\\t\\tSaved to %s!' % os.path.basename(f.name))\r\n    return fPath\r\n    \r\ndef download_cetk(rightsID, fPath):\r\n    url = 'https://atum.hac.%s.d4c.nintendo.net/r/t/%s?device_id=%s' % (env, rightsID, did)\r\n    r = make_request('HEAD', url)\r\n    id = r.headers.get('X-Nintendo-Content-ID')\r\n    \r\n    url = 'https://atum.hac.%s.d4c.nintendo.net/c/t/%s?device_id=%s' % (env, id, did)\r\n    cetk = download_file(url, fPath, fSize=2496)\r\n    \r\n    return cetk\r\n        \r\ndef download_title(gameDir, tid, ver, tkey='', nspRepack=False, verify=False, n=''):\r\n    print('\\n%s v%s:' % (tid, ver))\r\n    if len(tid) != 16:\r\n        tid = (16-len(tid)) * '0' + tid\r\n    \r\n    url = 'https://atum%s.hac.%s.d4c.nintendo.net/t/a/%s/%s?device_id=%s' % (n, env, tid, ver, did)\r\n    r = make_request('HEAD', url)\r\n    if r == None:\r\n        return (None, \"\")\r\n    CNMTid = r.headers.get('X-Nintendo-Content-ID')\r\n    \r\n    print('\\tDownloading CNMT (%s.cnmt.nca)...' % CNMTid)\r\n    url = 'https://atum%s.hac.%s.d4c.nintendo.net/c/a/%s?device_id=%s' % (n, env, CNMTid, did)\r\n    fPath = os.path.join(gameDir, CNMTid + '.cnmt.nca')\r\n    cnmtNCA = download_file(url, fPath)\r\n    \r\n    cnmtDir = decrypt_NCA(cnmtNCA)\r\n    CNMT = cnmt(os.path.join(cnmtDir, 'section0', os.listdir(os.path.join(cnmtDir, 'section0'))[0]), \r\n                os.path.join(cnmtDir, 'Header.bin'))\r\n    \r\n    if nspRepack:\r\n        outf = os.path.join(gameDir, '%s.xml' % os.path.basename(cnmtNCA).strip('.nca'))\r\n        cnmtXML = CNMT.gen_xml(cnmtNCA, outf)\r\n        \r\n        rightsID = '%032x' % ((int(tid, 16) << 64) + int(CNMT.mkeyrev))\r\n        \r\n        tikPath  = os.path.join(gameDir, rightsID+'.tik')\r\n        certPath = os.path.join(gameDir, rightsID+'.cert')\r\n        if CNMT.type == 'Application' or CNMT.type == 'AddOnContent':\r\n            gen_cert(certPath)\r\n            gen_tik(tikPath, rightsID, tkey, CNMT.mkeyrev)\r\n            \r\n            print('\\t\\tGenerated %s and %s!' % (os.path.basename(certPath), os.path.basename(tikPath)))\r\n        elif CNMT.type == 'Patch':\r\n            print('\\tDownloading CETK...')\r\n            \r\n            with open(download_cetk(rightsID, os.path.join(gameDir, rightsID+'.cetk')), 'rb') as cetk:\r\n                cetk.seek(0x180)\r\n                tkey = hx(cetk.read(0x10)).decode()\r\n                print('\\t\\t\\tTitlekey: %s' % tkey)\r\n                \r\n                with open(tikPath, 'wb') as tik:\r\n                    cetk.seek(0x0)\r\n                    tik.write(cetk.read(0x2C0))\r\n                    \r\n                with open(certPath, 'wb') as cert:\r\n                    cetk.seek(0x2C0)\r\n                    cert.write(cetk.read(0x700))\r\n                    \r\n            print('\\t\\tExtracted %s and %s from CETK!' % (os.path.basename(certPath), os.path.basename(tikPath)))\r\n            \r\n    NCAs = {\r\n        0: [],\r\n        1: [],\r\n        2: [],\r\n        3: [],\r\n        4: [],\r\n        5: [],\r\n        6: [],\r\n    }\r\n    \r\n    name = ''\r\n    for type in [0, 3, 4, 5, 1, 2, 6]: # Download smaller files first\r\n        list = CNMT.parse(CNMT.contentTypes[type])\r\n        for ncaID in list:\r\n            print('\\tDownloading %s entry (%s.nca)...' % (CNMT.contentTypes[type], ncaID))\r\n            url = 'https://atum%s.hac.%s.d4c.nintendo.net/c/c/%s?device_id=%s' % (n, env, ncaID, did)\r\n            fPath = os.path.join(gameDir, ncaID + '.nca')\r\n            fSize = list[ncaID][1]\r\n            \r\n            NCAs[type].append(download_file(url, fPath, fSize))\r\n            print(list[ncaID][2])\r\n            if verify:\r\n                print('\\t\\tVerifying file...')\r\n                if sha256_file(fPath) == list[ncaID][2]:\r\n                    print('\\t\\t\\tHashes match, file is correct!')\r\n                else:\r\n                    print('\\t\\t\\t%s is corrupted, hashes don\\'t match!' % os.path.basename(fPath))\r\n           \r\n            if type == 3:\r\n                name = get_name_from_nacp(NCAs[type][-1])\r\n    \r\n    if not name:\r\n        name = ''\r\n        \r\n    if nspRepack:\r\n        files = []\r\n        if tkey:\r\n            files.append(certPath)\r\n            files.append(tikPath)\r\n        for key in [1, 5, 2, 4, 6]:\r\n            if NCAs[key]:\r\n                files.extend(NCAs[key])\r\n        files.append(cnmtNCA)\r\n        files.append(cnmtXML)\r\n        if NCAs[3]:\r\n            files.extend(NCAs[3])\r\n        \r\n        return files, name\r\n    else:\r\n        return gameDir, name\r\n\r\ndef download_title_tinfoil(gameDir, tid, ver, tkey='', nspRepack=False, n='', verify=False):\r\n    print('\\n%s v%s:' % (tid, ver))\r\n    tid = tid.lower();\r\n    tkey = tkey.lower();\r\n    if len(tid) != 16:\r\n        tid = (16 - len(tid)) * '0' + tid\r\n\r\n    url = 'https://atum.hac.%s.d4c.nintendo.net/t/a/%s/%s?device_id=%s' % (env, tid, ver, did)\r\n    print(url)\r\n    try:\r\n        r = make_request('HEAD', url)\r\n    except Exception as e:\r\n        print(\"Error downloading title. Check for incorrect titleid or version.\")\r\n        return\r\n    CNMTid = r.headers.get('X-Nintendo-Content-ID')\r\n\r\n    if CNMTid == None:\r\n        print('title not available on CDN')\r\n        return None\r\n\r\n    print('\\nDownloading CNMT (%s.cnmt.nca)...' % CNMTid)\r\n    url = 'https://atum%s.hac.%s.d4c.nintendo.net/c/a/%s?device_id=%s' % (n, env, CNMTid, did)\r\n    fPath = os.path.join(gameDir, CNMTid + '.cnmt.nca')\r\n    cnmtNCA = download_file(url, fPath)\r\n    cnmtDir = decrypt_NCA(cnmtNCA)\r\n    CNMT = cnmt(os.path.join(cnmtDir, 'section0', os.listdir(os.path.join(cnmtDir, 'section0'))[0]),\r\n                os.path.join(cnmtDir, 'Header.bin'))\r\n\r\n    if nspRepack == True:\r\n        outf = os.path.join(gameDir, '%s.xml' % os.path.basename(cnmtNCA.strip('.nca')))\r\n        cnmtXML = CNMT.gen_xml_tinfoil(cnmtNCA, outf)\r\n\r\n        rightsID = '%s%s%s' % (tid, (16 - len(CNMT.mkeyrev)) * '0', CNMT.mkeyrev)\r\n\r\n        tikPath = os.path.join(gameDir, '%s.tik' % rightsID)\r\n        certPath = os.path.join(gameDir, '%s.cert' % rightsID)\r\n        if CNMT.type == 'Application' or CNMT.type == 'AddOnContent':\r\n            shutil.copy(os.path.join(os.path.dirname(__file__), 'Certificate.cert'), certPath)\r\n\r\n            if tkey != '':\r\n                with open(os.path.join(os.path.dirname(__file__), 'Ticket.tik'), 'rb') as intik:\r\n                    data = bytearray(intik.read())\r\n                    data[0x180:0x190] = uhx(tkey)\r\n                    data[0x286] = int(CNMT.mkeyrev)\r\n                    data[0x2A0:0x2B0] = uhx(rightsID)\r\n\r\n                    with open(tikPath, 'wb') as outtik:\r\n                        outtik.write(data)\r\n                print('\\nGenerated %s and %s!' % (os.path.basename(certPath), os.path.basename(tikPath)))\r\n            else:\r\n                print('\\nGenerated %s!' % os.path.basename(certPath))\r\n        elif CNMT.type == 'Patch':\r\n            print('\\nDownloading cetk...')\r\n\r\n            with open(download_cetk(rightsID, os.path.join(gameDir, '%s.cetk' % rightsID)), 'rb') as cetk:\r\n                cetk.seek(0x180)\r\n                tkey = hx(cetk.read(0x10)).decode()\r\n                print('\\nTitlekey: %s' % tkey)\r\n\r\n                with open(tikPath, 'wb') as tik:\r\n                    cetk.seek(0x0)\r\n                    tik.write(cetk.read(0x2C0))\r\n\r\n                with open(certPath, 'wb') as cert:\r\n                    cetk.seek(0x2C0)\r\n                    cert.write(cetk.read(0x700))\r\n\r\n            print('\\nExtracted %s and %s from cetk!' % (os.path.basename(certPath), os.path.basename(tikPath)))\r\n\r\n    NCAs = {}\r\n    for type in [3]:  # Download smaller files first\r\n        for ncaID in CNMT.parse(CNMT.ncaTypes[type]):\r\n            print('\\nDownloading %s entry (%s.nca)...' % (CNMT.ncaTypes[type], ncaID))\r\n            url = 'https://atum%s.hac.%s.d4c.nintendo.net/c/c/%s?device_id=%s' % (n, env, ncaID, did)\r\n            fPath = os.path.join(gameDir, ncaID + '.nca')\r\n            NCAs.update({type: download_file(url, fPath)})\r\n            if verify:\r\n                if calc_sha256(fPath) != CNMT.parse(CNMT.ncaTypes[type])[ncaID][2]:\r\n                    print('\\n\\n%s is corrupted, hashes don\\'t match!' % os.path.basename(fPath))\r\n                else:\r\n                    print('\\nVerified %s...' % os.path.basename(fPath))\r\n\r\n    if nspRepack == True:\r\n        files = []\r\n        files.append(certPath)\r\n        if tkey != '':\r\n            files.append(tikPath)\r\n        files.append(cnmtXML)\r\n        try:\r\n            files.append(NCAs[3])\r\n        except KeyError:\r\n            pass\r\n\r\n        return files\r\n    \r\ndef download_game(tid, ver, tkey='', nspRepack=False, verify=False, clean=False, path_Dir=\"\", nsp_dir=\"\"):\r\n    read_installed()\r\n    if tid in installed_global:\r\n        try:\r\n            existing_ver = installed_global[tid]\r\n            existing_ver = int(existing_ver)\r\n        except:\r\n            existing_ver = 0\r\n        if int(ver) <= existing_ver:\r\n            print(\"\\nAlready have version: {} for this TID: {}\".format(ver, tid))\r\n            return None\r\n\r\n    nsp_dir = nsp_location\r\n    name = get_name(tid)\r\n    status_label.config(text=_(\"Downloading: \")+name)\r\n    global titlekey_check\r\n    gameType = ''\r\n    basetid = ''\r\n    \r\n    if ver == \"none\":\r\n        ver = 0\r\n    \r\n    if name == 'Unknown Title':\r\n        temp = \"[\" + tid + \"]\"\r\n    else:\r\n        temp = name + \" [\" + tid + \"]\"\r\n\r\n    if tid.endswith('000'):  # Base game\r\n        gameType = 'BASE'\r\n    elif tid.endswith('800'):  # Update\r\n        basetid = '%s000' % tid[:-3]\r\n        gameType = 'UPD'\r\n    else:  # DLC\r\n        basetid = '%s%s000' % (tid[:-4], str(int(tid[-4], 16) - 1))\r\n        gameType = 'DLC'\r\n        \r\n    if path_Dir == \"\":\r\n        path_Dir = os.path.join(os.path.dirname(__file__), \"_NSPOUT\")\r\n\r\n    if nsp_dir == \"\":\r\n        nsp_dir = os.path.join(os.path.dirname(__file__), \"_NSPOUT\")\r\n    \r\n    gameDir = os.path.join(path_Dir, tid)\r\n\r\n    if not os.path.exists(gameDir):\r\n        os.makedirs(gameDir, exist_ok=True)\r\n        \r\n    outputDir = nsp_dir\r\n\r\n    if not os.path.exists(outputDir):\r\n        os.makedirs(outputDir, exist_ok=True)\r\n\r\n   \r\n    if name != \"\":\r\n        if gameType == \"DLC\":\r\n            outf = os.path.join(outputDir, '%s [%s][v%s]' % (name,tid,ver))\r\n        elif gameType == 'BASE':\r\n            outf = os.path.join(outputDir, '%s [%s][v%s]' % (name,tid,ver))\r\n        else:\r\n            outf = os.path.join(outputDir, '%s [%s][%s][v%s]' % (name,gameType,tid,ver))\r\n    else:\r\n        if gameType == \"DLC\":\r\n            outf = os.path.join(outputDir, '%s [%s][v%s]' % (name,tid,ver))\r\n        elif gameType == 'BASE':\r\n            outf = os.path.join(outputDir, '%s [v%s]' % (tid,ver))\r\n        else:\r\n            outf = os.path.join(outputDir, '%s [%s][v%s]' % (tid,gameType,ver))\r\n    outname = outf.split(outputDir)[1][1:]\r\n\r\n    if truncateName:\r\n        name = name.replace(' ','')[0:20].replace(\":\", \"\")\r\n        outf = os.path.join(outputDir, '%s%sv%s' % (name,tid,ver))\r\n\r\n    if tinfoil:\r\n        outf = outf + '[tf]'\r\n\r\n    outf = outf + '.nsp'\r\n    \r\n    if current_mode == \"Nut\":\r\n        if not tid.endswith(\"800\"):\r\n            if tkey == \"00000000000000000000000000000000\":\r\n                outf = outf[0:-4] + '.nsx'\r\n                tkey = \"00000000000000000000000000000000\"\r\n\r\n    for item in os.listdir(outputDir):\r\n        if item.find('%s' % tid) != -1:\r\n            if item.find('v%s' % ver) != -1:\r\n                if not tinfoil:\r\n                    print('%s already exists, skipping download' % outf)\r\n                    shutil.rmtree(gameDir)\r\n                    return\r\n    os.makedirs(gameDir, exist_ok=True)\r\n    \r\n    if tid.endswith('800'):\r\n        basetid = '%016x' % (int(tid, 16) & 0xFFFFFFFFFFFFF000)\r\n    elif not tid.endswith('000'):\r\n        basetid = '%016x' % (int(tid, 16) - 0x1000 & 0xFFFFFFFFFFFFF000)\r\n    else:\r\n        basetid = tid\r\n    if tinfoil:\r\n        files = download_title_tinfoil(gameDir, tid, ver, tkey, nspRepack, verify=verify)\r\n    else:\r\n        files, name = download_title(gameDir, tid, ver, tkey, nspRepack, verify)\r\n\r\n    if files == None:\r\n        shutil.rmtree(gameDir)\r\n        return\r\n    \r\n    if nspRepack:\r\n        os.makedirs(path_Dir, exist_ok=True)\r\n        NSP = nsp(outf, files)\r\n        NSP.repack()\r\n        shutil.rmtree(gameDir, ignore_errors=True)\r\n\r\n    add_to_installed(tid, ver)\r\n    status_label.config(text=_(\"Download finished!\"))\r\n    return gameDir\r\n    \r\ndef download_sysupdate(ver):\r\n    if ver == 'LTST':\r\n        url = 'https://sun.hac.%s.d4c.nintendo.net/v1/system_update_meta?device_id=%s' % (env, did)\r\n        r = make_request('GET', url)\r\n        j = r.json()\r\n        ver = str(j['system_update_metas'][0]['title_version'])\r\n    \r\n    sysupdateDir = os.path.join(os.path.dirname(__file__), '0100000000000816-SysUpdate', ver)\r\n    os.makedirs(sysupdateDir, exist_ok=True)\r\n    \r\n    url = 'https://atumn.hac.%s.d4c.nintendo.net/t/s/0100000000000816/%s?device_id=%s' % (env, ver, did)\r\n    r = make_request('HEAD', url)\r\n    cnmtID = r.headers.get('X-Nintendo-Content-ID')\r\n    \r\n    print('\\nDownloading CNMT (%s)...' % cnmtID)\r\n    url = 'https://atumn.hac.%s.d4c.nintendo.net/c/s/%s?device_id=%s' % (env, cnmtID, did)\r\n    fPath = os.path.join(sysupdateDir, '%s.cnmt.nca' % cnmtID)\r\n    cnmtNCA = download_file(url, fPath)\r\n    \r\n    cnmtDir = decrypt_NCA(cnmtNCA)\r\n    CNMT = cnmt(os.path.join(cnmtDir, 'section0', os.listdir(os.path.join(cnmtDir, 'section0'))[0]), \r\n                os.path.join(cnmtDir, 'Header.bin'))\r\n    \r\n    titles = CNMT.parse()\r\n    for title in titles:\r\n        dir = os.path.join(sysupdateDir, title)\r\n        os.makedirs(dir, exist_ok=True)\r\n        download_title(dir, title, titles[title][0], n='n')\r\n        \r\n    return sysupdateDir    \r\n    \r\nclass cnmt:\r\n    titleTypes = {\r\n        0x1: 'SystemProgram',\r\n        0x2: 'SystemData',\r\n        0x3: 'SystemUpdate',\r\n        0x4: 'BootImagePackage',\r\n        0x5: 'BootImagePackageSafe',\r\n        0x80:'Application',\r\n        0x81:'Patch',\r\n        0x82:'AddOnContent',\r\n        0x83:'Delta'\r\n    }\r\n    contentTypes  = {\r\n        0:'Meta', \r\n        1:'Program', \r\n        2:'Data', \r\n        3:'Control', \r\n        4:'HtmlDocument', \r\n        5:'LegalInformation', \r\n        6:'DeltaFragment'\r\n    }\r\n\r\n    def __init__(self, fPath, hdPath):                    \r\n        f = open(fPath, 'rb')\r\n        \r\n        self.path     = fPath\r\n        self.type     = self.titleTypes[read_u8(f, 0xC)]\r\n        self.id       = '%016x' % read_u64(f, 0x0)\r\n        self.ver      = str(read_u32(f, 0x8))\r\n        self.sysver   = str(read_u64(f, 0x28))\r\n        self.dlsysver = str(read_u64(f, 0x18))\r\n        self.digest   = hx(read_at(f, f.seek(0, 2)-0x20, f.seek(0, 2))).decode()\r\n\r\n        self.packTypes = {0x1: 'SystemProgram',\r\n                          0x2: 'SystemData',\r\n                          0x3: 'SystemUpdate',\r\n                          0x4: 'BootImagePackage',\r\n                          0x5: 'BootImagePackageSafe',\r\n                          0x80: 'Application',\r\n                          0x81: 'Patch',\r\n                          0x82: 'AddOnContent',\r\n                          0x83: 'Delta'}\r\n\r\n        self.ncaTypes = {0: 'Meta', 1: 'Program', 2: 'Data', 3: 'Control',\r\n                         4: 'HtmlDocument', 5: 'LegalInformation', 6: 'DeltaFragment'}\r\n\r\n        \r\n        with open(hdPath, 'rb') as ncaHd:\r\n            self.mkeyrev = str(read_u8(ncaHd, 0x220))\r\n        \r\n        f.close()\r\n\r\n    def parse(self, contentType=''):\r\n        f = open(self.path, 'rb')\r\n        \r\n        data = {}\r\n        if self.type == 'SystemUpdate':\r\n            metaEntriesNB = read_u16(f, 0x12)\r\n            for n in range(metaEntriesNB):\r\n                offset = 0x20 + 0x10*n\r\n                tid  = '%016x' % read_u64(f, offset)\r\n                ver  = str(read_u32(f, offset+0x8))\r\n                titleType = self.titleTypes[read_u8(f, offset+0xC)]\r\n                \r\n                data[tid] = ver, titleType\r\n        else:\r\n            tableOffset = read_u16(f,0xE)\r\n            contentEntriesNB = read_u16(f, 0x10)\r\n            for n in range(contentEntriesNB):\r\n                offset = 0x20 + tableOffset + 0x38*n\r\n                hash = hx(read_at(f, offset, 0x20)).decode()\r\n                tid  = hx(read_at(f, offset+0x20, 0x10)).decode()\r\n                size = read_u48(f, offset+0x30)\r\n                type = self.contentTypes[read_u16(f, offset+0x36)]\r\n                \r\n                if type == contentType or contentType == '':\r\n                    data[tid] = type, size, hash\r\n    \r\n        f.close()\r\n        return data\r\n     \r\n    def gen_xml(self, ncaPath, outf):\r\n        data = self.parse()\r\n            \r\n        ContentMeta = ET.Element('ContentMeta')\r\n        \r\n        ET.SubElement(ContentMeta, 'Type').text                          = self.type\r\n        ET.SubElement(ContentMeta, 'Id').text                            = '0x' + self.id\r\n        ET.SubElement(ContentMeta, 'Version').text                       = self.ver\r\n        ET.SubElement(ContentMeta, 'RequiredDownloadSystemVersion').text = self.dlsysver\r\n        \r\n        n = 1\r\n        for tid in data:\r\n            locals()[\"Content\"+str(n)] = ET.SubElement(ContentMeta, 'Content')\r\n            ET.SubElement(locals()[\"Content\"+str(n)], 'Type').text          = data[tid][0]\r\n            ET.SubElement(locals()[\"Content\"+str(n)], 'Id').text            = tid\r\n            ET.SubElement(locals()[\"Content\"+str(n)], 'Size').text          = str(data[tid][1])\r\n            ET.SubElement(locals()[\"Content\"+str(n)], 'Hash').text          = data[tid][2]\r\n            ET.SubElement(locals()[\"Content\"+str(n)], 'KeyGeneration').text = self.mkeyrev\r\n            n += 1\r\n            \r\n        # cnmt.nca itself\r\n        cnmt = ET.SubElement(ContentMeta, 'Content')\r\n        ET.SubElement(cnmt, 'Type').text          = 'Meta'\r\n        ET.SubElement(cnmt, 'Id').text            = os.path.basename(ncaPath).split('.')[0]\r\n        ET.SubElement(cnmt, 'Size').text          = str(os.path.getsize(ncaPath))\r\n        ET.SubElement(cnmt, 'Hash').text          = sha256_file(ncaPath)\r\n        ET.SubElement(cnmt, 'KeyGeneration').text = self.mkeyrev\r\n            \r\n        ET.SubElement(ContentMeta, 'Digest').text                = self.digest\r\n        ET.SubElement(ContentMeta, 'KeyGenerationMin').text      = self.mkeyrev\r\n        ET.SubElement(ContentMeta, 'RequiredSystemVersion').text = self.sysver\r\n        if self.type == 'Application':\r\n            ET.SubElement(ContentMeta, 'PatchId').text       = '0x%016x' % (int(self.id, 16) + 0x800)\r\n        elif self.type == 'Patch':\r\n            ET.SubElement(ContentMeta, 'OriginalId').text    = '0x%016x' % (int(self.id, 16) & 0xFFFFFFFFFFFFF000)\r\n        elif self.type == 'AddOnContent':    \r\n            ET.SubElement(ContentMeta, 'ApplicationId').text = '0x%016x' % (int(self.id, 16) - 0x1000 & 0xFFFFFFFFFFFFF000)\r\n        \r\n        string = ET.tostring(ContentMeta, encoding='utf-8')\r\n        reparsed = minidom.parseString(string)\r\n        with open(outf, 'wb') as f:\r\n            f.write(reparsed.toprettyxml(encoding='utf-8', indent='  ')[:-1])\r\n            \r\n        print('\\t\\tGenerated %s!' % os.path.basename(outf))\r\n        return outf\r\n\r\n    def gen_xml_tinfoil(self, ncaPath, outf):\r\n        data = self.parse()\r\n        hdPath = os.path.join(os.path.dirname(ncaPath),\r\n                              '%s.cnmt' % os.path.basename(ncaPath).split('.')[0], 'Header.bin')\r\n        print(hdPath)\r\n        with open(hdPath, 'rb') as ncaHd:\r\n            mKeyRev = str(read_u8(ncaHd, 0x220))\r\n        print(mKeyRev)\r\n        ContentMeta = ET.Element('ContentMeta')\r\n\r\n        ET.SubElement(ContentMeta, 'Type').text = self.type\r\n        ET.SubElement(ContentMeta, 'Id').text = '0x%s' % self.id\r\n        ET.SubElement(ContentMeta, 'Version').text = self.ver\r\n        ET.SubElement(ContentMeta, 'RequiredDownloadSystemVersion').text = self.dlsysver\r\n\r\n        n = 1\r\n        for tid in data:\r\n            if data[tid][0] == 'Control':\r\n                locals()[\"Content\" + str(n)] = ET.SubElement(ContentMeta, 'Content')\r\n                ET.SubElement(locals()[\"Content\" + str(n)], 'Type').text = data[tid][0]\r\n                ET.SubElement(locals()[\"Content\" + str(n)], 'Id').text = tid\r\n                ET.SubElement(locals()[\"Content\" + str(n)], 'Size').text = str(data[tid][1])\r\n                ET.SubElement(locals()[\"Content\" + str(n)], 'Hash').text = str(data[tid][2])\r\n                ET.SubElement(locals()[\"Content\" + str(n)], 'KeyGeneration').text = mKeyRev\r\n                n += 1\r\n\r\n        # cnmt.nca itself\r\n        hash = sha256()\r\n        with open(ncaPath, 'rb') as nca:\r\n            hash.update(nca.read())  # Buffer not needed\r\n        ET.SubElement(ContentMeta, 'Digest').text = self.digest\r\n        ET.SubElement(ContentMeta, 'KeyGenerationMin').text = self.mkeyrev\r\n        global sysver0\r\n        ET.SubElement(ContentMeta, 'RequiredSystemVersion').text = ('0' if sysver0 else self.sysver)\r\n        if self.id.endswith('800'):\r\n            ET.SubElement(ContentMeta, 'PatchId').text = '0x%s000' % self.id[:-3]\r\n        else:\r\n            ET.SubElement(ContentMeta, 'PatchId').text = '0x%s800' % self.id[:-3]\r\n        string = ET.tostring(ContentMeta, encoding='utf-8')\r\n        reparsed = minidom.parseString(string)\r\n        with open(outf, 'w') as f:\r\n            f.write(reparsed.toprettyxml(encoding='utf-8', indent='  ').decode()[:-1])\r\n\r\n        print('\\nGenerated %s!' % os.path.basename(outf))\r\n        return outf\r\n\r\nclass nsp:\r\n    def __init__(self, outf, files):\r\n        self.path = outf\r\n        self.files = files\r\n        \r\n    def repack(self):\r\n        print('\\tRepacking to NSP...')\r\n        \r\n        hd = self._gen_header()\r\n        \r\n        totSize = len(hd) + sum(os.path.getsize(file) for file in self.files)\r\n        if os.path.exists(self.path) and os.path.getsize(self.path) == totSize:\r\n            print('\\t\\tRepack %s is already complete!' % self.path)\r\n            return\r\n            \r\n        t = tqdm(total=totSize, unit='B', unit_scale=True, desc=os.path.basename(self.path), leave=False)\r\n        \r\n        t.write('\\t\\tWriting header...')\r\n        outf = open(self.path, 'wb')\r\n        outf.write(hd)\r\n        t.update(len(hd))\r\n        \r\n        for file in self.files:\r\n            t.write('\\t\\tAppending %s...' % os.path.basename(file))\r\n            with open(file, 'rb') as inf:\r\n                while True:\r\n                    buf = inf.read(4096)\r\n                    if not buf:\r\n                        break\r\n                    outf.write(buf)\r\n                    t.update(len(buf))\r\n        t.close()\r\n        \r\n        outf.close()\r\n        print('\\t\\tRepacked to %s!' % outf.name)\r\n        \r\n    def _gen_header(self):\r\n        filesNb = len(self.files)\r\n        stringTable = '\\x00'.join(os.path.basename(file) for file in self.files)\r\n        headerSize = 0x10 + filesNb*0x18 + len(stringTable)\r\n        remainder = 0x10 - headerSize%0x10\r\n        headerSize += remainder\r\n        \r\n        fileSizes = [os.path.getsize(file) for file in self.files]\r\n        fileOffsets = [sum(fileSizes[:n]) for n in range(filesNb)]\r\n        \r\n        fileNamesLengths = [len(os.path.basename(file))+1 for file in self.files] # +1 for the \\x00\r\n        stringTableOffsets = [sum(fileNamesLengths[:n]) for n in range(filesNb)]\r\n        \r\n        header =  b''\r\n        header += b'PFS0'\r\n        header += pk('<I', filesNb)\r\n        header += pk('<I', len(stringTable)+remainder)\r\n        header += b'\\x00\\x00\\x00\\x00'\r\n        for n in range(filesNb):\r\n            header += pk('<Q', fileOffsets[n])\r\n            header += pk('<Q', fileSizes[n])\r\n            header += pk('<I', stringTableOffsets[n])\r\n            header += b'\\x00\\x00\\x00\\x00'\r\n        header += stringTable.encode()\r\n        header += remainder * b'\\x00'\r\n        \r\n        return header\r\n\r\n  \r\n# End of CDNSP script\r\n# --------------------------\r\n# GUI code begins\r\n\r\ndef game_image(tid, ver, tkey=\"\", nspRepack=False, n='',verify=False):\r\n    import glob\r\n    if not os.path.isdir(\"Images\"):\r\n        os.mkdir(\"Images\")\r\n    if not os.path.isdir(\"Images/{}\".format(tid)):\r\n        os.mkdir(\"Images/{}\".format(tid))\r\n    \r\n    gameDir = \"Images/{}\".format(tid)\r\n    \r\n    if os.path.isdir(os.path.dirname(os.path.abspath(__file__))+'/Images/{}/section0/'.format(tid)):\r\n        for fname in os.listdir(os.path.dirname(os.path.abspath(__file__))+'/Images/{}/section0/'.format(tid)):\r\n            if fname.endswith('.jpg'):\r\n                return (gameDir, \"Exist\")\r\n        \r\n    tid = tid.lower();\r\n    tkey = tkey.lower();\r\n    if len(tid) != 16:\r\n        tid = (16-len(tid)) * '0' + tid\r\n        \r\n    url = 'https://atum%s.hac.%s.d4c.nintendo.net/t/a/%s/%s?device_id=%s' % (n, env, tid, ver, did)\r\n    check = False\r\n    try:\r\n        r = make_request('HEAD', url)\r\n        check = True\r\n    except Exception as e:\r\n        print(e)\r\n\r\n    if r == None:\r\n        return (\"\", \"Error\")\r\n    \r\n    if check:\r\n        CNMTid = r.headers.get('X-Nintendo-Content-ID')\r\n\r\n        if CNMTid is None:\r\n            print(\"not a valid title\")\r\n            return (\"\", \"Error\")\r\n            \r\n        fPath = os.path.join(gameDir, CNMTid + '.cnmt.nca')\r\n        cnmtNCA = download_file(url, fPath)\r\n        cnmtDir = decrypt_NCA(cnmtNCA)\r\n    ##    print(os.path.join(cnmtDir, 'section0', os.listdir(os.path.join(cnmtDir, 'section0'))[0]), \r\n    ##                os.path.join(cnmtDir, 'Header.bin'))\r\n    ##    sys.exit()\r\n        CNMT = cnmt(os.path.join(cnmtDir, 'section0', os.listdir(os.path.join(cnmtDir, 'section0'))[0]), \r\n                    os.path.join(cnmtDir, 'Header.bin'))\r\n        \r\n        NCAs = {\r\n            0: [],\r\n            1: [],\r\n            2: [],\r\n            3: [],\r\n            4: [],\r\n            5: [],\r\n            6: [],\r\n        }\r\n        for type in [3]: # Download smaller files first\r\n            list = CNMT.parse(CNMT.contentTypes[type])\r\n            for ncaID in list:\r\n                print('\\tDownloading %s entry (%s.nca)...' % (CNMT.contentTypes[type], ncaID))\r\n                url = 'https://atum%s.hac.%s.d4c.nintendo.net/c/c/%s?device_id=%s' % (n, env, ncaID, did)\r\n                fPath = os.path.join(gameDir, \"control\" + '.nca')\r\n                fSize = list[ncaID][1]\r\n                \r\n                NCAs[type].append(download_file(url, fPath, fSize))\r\n                \r\n                if verify:\r\n                    print('\\t\\tVerifying file...')\r\n                    if sha256_file(fPath) == list[ncaID][2]:\r\n                        print('\\t\\t\\tHashes match, file is correct!')\r\n                    else:\r\n                        print('\\t\\t\\t%s is corrupted, hashes don\\'t match!' % os.path.basename(fPath))\r\n        return (gameDir, \"N\")\r\n    else:\r\n        print(\"UnboundLocalError: local variable 'r' referenced before assignment\\nIncorrect TID? Skipping\")\r\n        return (gameDir, \"Error\")\r\n    \r\ndef read_game_info():\r\n    try:\r\n        file = open(\"Config/Game_info.json\", \"r\", encoding=\"utf8\")\r\n        global game_info_json\r\n        game_info_json = json.load(file)\r\n        file.close()\r\n    except:\r\n        print(_(\"Missing Game_info.json file in the Config folder, attempting to download one for you\"))\r\n        urllib.request.urlretrieve(\"https://raw.githubusercontent.com/Bob123a1/CDNSP-GUI-Files/master/Config/Game_info.json\", \"Config/Game_info.json\")\r\n\r\n        if os.path.isfile(\"Config/Game_info.json\"):\r\n            file = open(\"Config/Game_info.json\", \"r\", encoding=\"utf8\")\r\n            game_info_json = json.load(file)\r\n            file.close()\r\n        else:\r\n            file = open(\"Config/Game_info.json\", \"w\", encoding=\"utf8\")\r\n            file.write(\"{}\")\r\n            file.close()\r\n            read_game_info()\r\n\r\nread_game_info()\r\n\r\ndef updateJsonFile(key, value, root=\"\"):\r\n    if os.path.isfile(\"CDNSP-GUI-config.json\"):\r\n        with open(\"CDNSP-GUI-config.json\", \"r\") as jsonFile:\r\n            data = json.load(jsonFile)\r\n\r\n        data[\"Options\"][\"{}\".format(key)] = value\r\n\r\n        with open(\"CDNSP-GUI-config.json\", \"w\") as jsonFile:\r\n            json.dump(data, jsonFile, indent=4)\r\n    else:\r\n        print(_(\"Error!, Missing CDNSP-GUI-config.json file\"))\r\n\r\n    if key == \"Language\":\r\n        root.destroy()\r\n        set_lang(value)\r\n        main()\r\n\r\ndef get_current_mode():\r\n    try:\r\n        file = open(\"CDNSP-GUI-config.json\", \"r\", encoding=\"utf8\")\r\n        f = json.load(file)\r\n        file.close()\r\n        return f[\"Options\"][\"Mode\"]\r\n    except:\r\n        print(_(\"There's a problem with your GUI config json file, try to delete it and restart the GUI\"))\r\n\r\ndef GUI_config(fPath):\r\n    if sys_locale != \"zh_CN\":\r\n        main_win = \"1076x684+100+100\"\r\n        queue_win = \"620x300+1177+100\"\r\n        scan_win = \"415x100+100+170\"\r\n        base64_win = \"497x100+95+176\"\r\n    else:\r\n        main_win = \"1250x684+100+100\"\r\n        queue_win = \"720x300+770+100\"\r\n        scan_win = \"420x85+100+100\"\r\n        base64_win = \"500x105+100+100\"\r\n\r\n    # Set the default settings for the CDNSP GUI config file\r\n    config = {\"Options\": {\r\n                \"Download_location\":  \"\",\r\n                \"NSP_location\": \"\",\r\n                \"Game_location\": \"\",\r\n                \"NSP_repack\":         \"True\",\r\n                \"Mute\":               \"False\",\r\n                \"Titlekey_check\":     \"True\",\r\n                \"noaria\":             \"True\",\r\n                \"Disable_game_image\": \"False\",\r\n                \"Shorten\": \"False\",\r\n                \"Tinfoil\": \"False\",\r\n                \"SysVerZero\": \"False\",\r\n                \"Main_win\": main_win,\r\n                \"Queue_win\": queue_win,\r\n                \"Update_win\": \"600x400+120+200\",\r\n                \"Scan_win\": scan_win,\r\n                \"Base64_win\": base64_win,\r\n                \"Language\": \"en\",\r\n                \"Mode\": \"CDNSP\",\r\n                \"No_demo\": \"False\",\r\n                \"No_japanese_games\": \"False\",\r\n                \"Disable_description\": \"False\"}}\r\n\r\n    try:\r\n        f = open(fPath, 'r')\r\n    except FileNotFoundError:\r\n        f = open(fPath, 'w')\r\n        json.dump(config, f, indent=4)\r\n        f.close()\r\n        f = open(fPath, 'r')\r\n\r\n    j = json.load(f)\r\n\r\n    def str2bool(v):\r\n        return v.lower() == \"true\"\r\n    \r\n    download_location  = j['Options']['Download_location']\r\n    try:\r\n        nsp_location = j['Options']['NSP_location']\r\n    except KeyError:\r\n        nsp_location = \"\"\r\n    game_location = j['Options']['Game_location']\r\n    repack  = str2bool(j['Options']['NSP_repack'])\r\n    mute  = str2bool(j['Options']['Mute'])\r\n    titlekey_check  = str2bool(j['Options']['Titlekey_check'])\r\n    noaria  = str2bool(j['Options']['noaria'])\r\n    disable_game_image  = str2bool(j['Options']['Disable_game_image'])\r\n    shorten = str2bool(j['Options']['Shorten'])\r\n    tinfoil = str2bool(j['Options']['Tinfoil'])\r\n    sysver0 = str2bool(j['Options']['SysVerZero'])\r\n    main_win  = j['Options']['Main_win']\r\n    queue_win  = j['Options']['Queue_win']\r\n    update_win  = j['Options']['Update_win']\r\n    scan_win = j['Options']['Scan_win']\r\n    base64_win = j['Options']['Base64_win']\r\n    language = j['Options']['Language']\r\n    mode = j['Options']['Mode']\r\n    no_demo = str2bool(j['Options']['No_demo'])\r\n    no_japanese_games = str2bool(j['Options']['No_japanese_games'])\r\n    disable_description = str2bool(j['Options']['Disable_description'])\r\n    \r\n    if not os.path.exists(download_location): # If the custom download directory doesn't exist then use default path\r\n        download_location = \"\"\r\n        updateJsonFile(\"Download_location\", download_location)\r\n    return download_location, nsp_location, game_location, repack, mute, titlekey_check, noaria, \\\r\n           disable_game_image, shorten, tinfoil, sysver0, main_win, queue_win, update_win, \\\r\n           scan_win, base64_win, language, mode, no_demo, no_japanese_games, disable_description\r\n\r\nclass Application():\r\n\r\n    def __init__(self, root, titleID, titleKey, title, dbURL, info_list=None):\r\n\r\n        global main_win\r\n        global queue_win\r\n        global update_win_size\r\n        global scan_win\r\n        global base64_win\r\n        global langauge\r\n        global nsp_location\r\n        \r\n        configGUIPath = os.path.join(os.path.dirname(__file__), 'CDNSP-GUI-config.json') # Load config file\r\n        self.path, nsp_location, self.game_location, self.repack, self.mute, self.titlekey_check, noaria_temp, \\\r\n                   self.game_image_disable, shorten_temp, tinfoil_temp, sysver0_temp, main_win, \\\r\n                   queue_win, update_win, scan_win, \\\r\n                   base64_win, language, self.current_mode, no_demo, \\\r\n                   no_japanese_games, self.game_desc_disable = GUI_config(configGUIPath) # Get config values\r\n\r\n        \r\n        update_win_size = update_win\r\n        \r\n        self.root = root\r\n        self.root.geometry(main_win)\r\n        self.titleID = titleID\r\n        self.titleKey = titleKey\r\n        self.title = title\r\n        self.first_queue = True\r\n        self.queue_list = []\r\n        self.persistent_queue = []\r\n        self.db_URL = dbURL\r\n        self.current_status = []\r\n        self.info_list = info_list\r\n        self.auto_shutdown = False\r\n        \r\n        self.listWidth = 67\r\n        global current_mode\r\n        current_mode = self.current_mode\r\n        global sys_name\r\n        \r\n##        global save_game_folder\r\n##        save_game_folder = False -- To be worked on in the future\r\n        \r\n        global titlekey_check\r\n        titlekey_check = self.titlekey_check\r\n\r\n        if platform.system() == 'Linux':\r\n            sys_name = \"Linux\"\r\n\r\n        if platform.system() == 'Darwin':\r\n            sys_name = \"Mac\"\r\n            self.listWidth = 39\r\n        self.sys_name = sys_name\r\n\r\n        global noaria\r\n        noaria = True\r\n\r\n        global truncateName\r\n        truncateName = shorten_temp\r\n        \r\n        global tinfoil\r\n        tinfoil = tinfoil_temp\r\n\r\n        global sysver0\r\n        sysver0 = sysver0_temp\r\n\r\n        # Top Menu bar\r\n        self.menubar = Menu(self.root)\r\n\r\n        # Download Menu Tab\r\n        self.downloadMenu = Menu(self.menubar, tearoff=0)\r\n        self.downloadMenu.add_command(label=_(\"Select Download Location\"), command=self.change_dl_path)\r\n        self.downloadMenu.add_command(label=_(\"Select NSP Repack Location\"), command=self.change_nsp_path)\r\n        self.downloadMenu.add_separator() # Add separator to the menu dropdown\r\n        self.downloadMenu.add_command(label=_(\"Preload Game Images\"), command=self.preload_images)\r\n        self.downloadMenu.add_command(label=_(\"Update Version List\"), command=self.update_ver_list)\r\n##        self.downloadMenu.add_command(label=_(\"Preload Game Descriptions\"), command=self.preload_desc)\r\n        # Not if I want to preload game description, since some games can't be found on the CDN\r\n        self.downloadMenu.add_separator() # Add separator to the menu dropdown\r\n        self.downloadMenu.add_command(label=_(\"Load Saved Queue\"), command=self.import_persistent_queue)\r\n        self.downloadMenu.add_command(label=_(\"Save Queue\"), command=self.export_persistent_queue)\r\n        self.downloadMenu.add_separator() # Add separator to the menu dropdown\r\n        self.downloadMenu.add_command(label=_(\"Download All\"), command=self.download_all_games)\r\n\r\n        # Options Menu Tab\r\n        self.optionMenu = Menu(self.menubar, tearoff=0)\r\n        self.optionMenu.add_command(label=_(\"DISABLE GAME DESCRIPTION\"), command=self.disable_game_description)\r\n        self.optionMenu.add_command(label=_(\"DISABLE GAME IMAGE\"), command=self.disable_game_image)\r\n        self.optionMenu.add_separator() # Add separator to the menu dropdown\r\n        self.optionMenu.add_command(label=_(\"Mute All Pop-ups\"), command=self.mute_all)\r\n        self.optionMenu.add_command(label=_(\"Disable NSP Repack\"), command=self.nsp_repack_option)\r\n        self.optionMenu.add_command(label=_(\"Disable Titlekey check\"), command=self.titlekey_check_option)\r\n        self.optionMenu.add_separator() # Add separator to the menu dropdown\r\n        self.optionMenu.add_command(label=_(\"Enable Shorten Name\"), command=self.shorten)\r\n        self.optionMenu.add_command(label=_(\"Enable Tinfoil Download\"), command=self.tinfoil_change)\r\n        self.optionMenu.add_command(label=_(\"Enable SysVer 0 Patch\"), command=self.sysver_zero)\r\n        self.optionMenu.add_separator() # Add separator to the menu dropdown\r\n        self.optionMenu.add_command(label=_(\"Save Windows Location and Size\"), command=self.window_save)\r\n\r\n        \r\n        # Tool Menu Tab\r\n        self.toolMenu = Menu(self.menubar, tearoff=0)\r\n        self.toolMenu.add_command(label=_(\"Scan for existing games\"), command=self.my_game_GUI)\r\n        self.toolMenu.add_separator() # Add separator to the menu dropdown\r\n        self.toolMenu.add_command(label=_(\"Base64 Decoder\"), command=self.base_64_GUI)\r\n        self.toolMenu.add_command(label=_(\"Unlock NSX Files\"), command=self.unlock_nsx_gui_func)\r\n        self.toolMenu.add_command(label=_(\"Refresh List\"), command=lambda: self.update_list(rebuild=True))\r\n        self.toolMenu.add_command(label=_(\"Auto Shutdown: OFF\"), command=self.shutdown_set)        \r\n        self.toolMenu.add_separator() # Add separator to the menu dropdown\r\n        self.toolMenu.add_command(label=_(\"Update GUI and Language Files\"), command=self.download_update)\r\n        \r\n\r\n        # Language Menu Tab\r\n        self.langMenu = Menu(self.menubar, tearoff=0)\r\n        self.langMenu.add_command(label='Afrikaans (Afrikaans)', command=lambda: updateJsonFile('Language', 'af', root=self.root))\r\n        self.langMenu.add_command(label='Arabic (العربية)', command=lambda: updateJsonFile('Language', 'ar', root=self.root))\r\n        self.langMenu.add_command(label='Chinese Simplified (简体中文)', command=lambda: updateJsonFile('Language', 'zh-cn', root=self.root))\r\n        self.langMenu.add_command(label='Chinese Traditional (繁體中文)', command=lambda: updateJsonFile('Language', 'zh-tw', root=self.root))\r\n        self.langMenu.add_command(label='Czech (Čeština)', command=lambda: updateJsonFile('Language', 'cs', root=self.root))\r\n        self.langMenu.add_command(label='Dutch (Nederlands)', command=lambda: updateJsonFile('Language', 'nl', root=self.root))\r\n        self.langMenu.add_command(label='English', command=lambda: updateJsonFile('Language', 'en', root=self.root))\r\n        self.langMenu.add_command(label='French (Français)', command=lambda: updateJsonFile('Language', 'fr', root=self.root))\r\n        self.langMenu.add_command(label='German (Deutsch)', command=lambda: updateJsonFile('Language', 'de', root=self.root))\r\n        self.langMenu.add_command(label='Greek (Ελληνικά)', command=lambda: updateJsonFile('Language', 'el', root=self.root))\r\n        self.langMenu.add_command(label='Hebrew (עברית)', command=lambda: updateJsonFile('Language', 'he', root=self.root))\r\n        self.langMenu.add_command(label='Hungarian (Magyar)', command=lambda: updateJsonFile('Language', 'hu', root=self.root))\r\n        self.langMenu.add_command(label='Indonesian (Bahasa Indonesia)', command=lambda: updateJsonFile('Language', 'id', root=self.root))\r\n        self.langMenu.add_command(label='Italian (Italiano)', command=lambda: updateJsonFile('Language', 'it', root=self.root))\r\n        self.langMenu.add_command(label='Japanese (日本語)', command=lambda: updateJsonFile('Language', 'ja', root=self.root))\r\n        self.langMenu.add_command(label='Korean (한국어)', command=lambda: updateJsonFile('Language', 'ko', root=self.root))\r\n        self.langMenu.add_command(label='Malaysian (Bahasa Melayu)', command=lambda: updateJsonFile('Language', 'ms', root=self.root))\r\n        self.langMenu.add_command(label='Persian (پارسی)', command=lambda: updateJsonFile('Language', 'fa', root=self.root))\r\n        self.langMenu.add_command(label='Polish (Polski)', command=lambda: updateJsonFile('Language', 'pl', root=self.root))\r\n        self.langMenu.add_command(label='Portuguese (Português)', command=lambda: updateJsonFile('Language', 'pt', root=self.root))\r\n        self.langMenu.add_command(label='Russian (Русский)', command=lambda: updateJsonFile('Language', 'ru', root=self.root))\r\n        self.langMenu.add_command(label='Spanish (Español)', command=lambda: updateJsonFile('Language', 'es', root=self.root))\r\n        self.langMenu.add_command(label='Thai (ไทย)', command=lambda: updateJsonFile('Language', 'th', root=self.root))\r\n        self.langMenu.add_command(label='Turkish (Türkçe)', command=lambda: updateJsonFile('Language', 'tr', root=self.root))\r\n        self.langMenu.add_command(label='Vietnamese (Tiếng Việt)', command=lambda: updateJsonFile('Language', 'vi', root=self.root))\r\n\r\n        # About Menu\r\n        self.aboutMenu = Menu(self.menubar, tearoff=0)\r\n        self.aboutMenu.add_command(label=_('Credits'), command=lambda: self.credit_gui())\r\n        \r\n        # Menubar config\r\n        self.menubar.add_cascade(label=_(\"Download\"), menu=self.downloadMenu)\r\n        self.menubar.add_cascade(label=_(\"Options\"), menu=self.optionMenu)\r\n        self.menubar.add_cascade(label=_(\"Tools\"), menu=self.toolMenu)\r\n        self.menubar.add_cascade(label=_(\"Language\"), menu=self.langMenu)\r\n        self.menubar.add_cascade(label=_(\"About\"), menu=self.aboutMenu)\r\n        self.root.config(menu=self.menubar)\r\n\r\n        # Change Menu Label Based on loaded values\r\n        if self.game_desc_disable == True:\r\n            self.optionMenu.entryconfig(0, label= _(\"ENABLE GAME DESCRIPTION\"))\r\n        else:\r\n            self.optionMenu.entryconfig(0, label= _(\"DISABLE GAME DESCRIPTION\"))\r\n        if self.repack == True:\r\n            self.optionMenu.entryconfig(4, label= _(\"Disable NSP Repack\"))\r\n        else:\r\n            self.optionMenu.entryconfig(4, label= _(\"Enable NSP Repack\"))\r\n        if self.mute == True:\r\n            self.optionMenu.entryconfig(3, label= _(\"Unmute All Pop-ups\"))\r\n        else:\r\n            self.optionMenu.entryconfig(3, label= _(\"Mute All Pop-ups\"))\r\n        if self.titlekey_check == True:\r\n            self.optionMenu.entryconfig(5, label= _(\"Disable Titlekey Check\"))\r\n        else:\r\n            self.optionMenu.entryconfig(5, label= _(\"Enable Titlekey Check\"))\r\n        if self.game_image_disable == True:\r\n            self.optionMenu.entryconfig(1, label= _(\"ENABLE GAME IMAGE\"))\r\n        else:\r\n            self.optionMenu.entryconfig(1, label= _(\"DISABLE GAME IMAGE\"))\r\n        if truncateName == True:\r\n            self.optionMenu.entryconfig(7, label= _(\"Disable Shorten Name\"))\r\n        else:\r\n            self.optionMenu.entryconfig(7, label= _(\"Enable Shorten Name\"))\r\n        if tinfoil == True:\r\n            self.optionMenu.entryconfig(8, label= _(\"Disable Tinfoil Download\"))\r\n        else:\r\n            self.optionMenu.entryconfig(8, label= _(\"Enable Tinfoil Download\"))\r\n        if sysver0 == True:\r\n            self.optionMenu.entryconfig(9, label= _(\"Disable SysVer 0 Patch\"))\r\n        else:\r\n            self.optionMenu.entryconfig(9, label= _(\"Enable SysVer 0 Patch\"))\r\n\r\n        # Status Label\r\n        global status_label\r\n        \r\n        self.status_label = Label(self.root, text=_(\"Status:\"))\r\n        self.status_label.grid(row=0, column=0, columnspan=2, sticky=NS)\r\n        status_label = self.status_label\r\n        \r\n        # Game selection section\r\n        self.search_var = StringVar()\r\n        self.search_var.trace(\"w\", lambda name, index, mode: self.update_list(True, label=\"\"))\r\n\r\n        game_selection_frame = Frame(self.root)\r\n        game_selection_frame.grid(row=1, column=0, padx=20, pady=20, sticky=N)\r\n\r\n        # Filter entrybox\r\n        if sys_name != \"Mac\":\r\n            entryWidth = self.listWidth + 3\r\n        else:\r\n            entryWidth = self.listWidth\r\n        self.entry = Entry(game_selection_frame, textvariable=self.search_var, width=entryWidth)\r\n        self.entry.grid(row=0, column=0, columnspan=1, sticky=N)\r\n\r\n        # Setup Scrollbar\r\n        self.scrollbar = Scrollbar(game_selection_frame)\r\n##        self.scrollbar.grid(row=1, column=1, sticky=N+S+W)\r\n        self.title_list = Listbox(game_selection_frame, exportselection = False,\\\r\n                                  yscrollcommand = self.scrollbar.set, width=self.listWidth, selectmode=EXTENDED)\r\n        self.title_list.bind('<<ListboxSelect>>', self.game_info)\r\n##        self.title_list.grid(row=1, column=0, sticky=W)\r\n        self.scrollbar.config(command = self.title_list.yview)\r\n\r\n        # Setup Treeview and Two Scrollbars\r\n        container = ttk.Frame(game_selection_frame)\r\n        container.grid(row=1, column=0, columnspan=2)\r\n        self.tree = ttk.Treeview(columns=(\"num\", \"tid\", \"G\", \"S\", \"R\"), show=\"headings\", selectmode=EXTENDED)\r\n        self.tree.bind('<<TreeviewSelect>>', self.game_info)\r\n        self.tree.heading(\"num\", text=\"#\", command=lambda c=\"num\": self.sortby(self.tree, c, 0))\r\n        self.tree.column(\"num\", width=50)\r\n        self.tree.heading(\"tid\", text=_(\"TitleID\"), command=lambda c=\"tid\": self.sortby(self.tree, c, 0))\r\n        self.tree.column(\"tid\", width=160)\r\n        self.tree.heading(\"G\", text=_(\"Game\"), command=lambda c=\"G\": self.sortby(self.tree, c, 0))\r\n        self.tree.column(\"G\", width=590)\r\n        self.tree.heading(\"S\", text=_(\"State\"), command=lambda c=\"S\": self.sortby(self.tree, c, 0))\r\n        self.tree.column(\"S\", width=130)\r\n        self.tree.heading(\"R\", text=_(\"Release Date\"), command=lambda c=\"R\": self.sortby(self.tree, c, 0))\r\n        self.tree.column(\"R\", width=130)\r\n        vsb = ttk.Scrollbar(orient=\"vertical\", command=self.tree.yview)\r\n        hsb = ttk.Scrollbar(orient=\"horizontal\", command=self.tree.xview)\r\n        self.tree.configure(yscrollcommand=vsb.set, xscrollcommand=hsb.set)\r\n        self.tree.grid(column=0, row=0, sticky='nsew', in_=container, columnspan=2)\r\n        vsb.grid(column=2, row=0, sticky='ns', in_=container)\r\n        hsb.grid(column=0, row=1, sticky='ew', in_=container)\r\n        container.grid_columnconfigure(0, weight=1)\r\n        container.grid_rowconfigure(0, weight=1)\r\n\r\n        # Game image section\r\n        self.image_text_label = Label(game_selection_frame, text=_(\"Game Image:\"))\r\n        self.image_text_label.grid(row=2, column=0, pady=(20, 0))\r\n\r\n        self.image = Image.open(\"blank.jpg\")\r\n        self.photo = ImageTk.PhotoImage(self.image)\r\n        global imageLabel_widget\r\n        self.imageLabel = Label(game_selection_frame, image=self.photo, borderwidth=0, highlightthickness=0, cursor=\"hand2\")\r\n        imageLabel_widget = self.imageLabel\r\n        self.imageLabel.bind(\"<Button-1>\", self.eShop_link)\r\n        self.imageLabel.image = self.photo # keep a reference!\r\n        self.imageLabel.grid(row=3, column=0, sticky=N, pady=0)\r\n\r\n        Label(game_selection_frame, text=_(\"Click the game image above \\nto open the game in the eShop!\")).grid(row=4, column=0)\r\n\r\n        # Game info section\r\n        Label(game_selection_frame, text=_(\"Game Info:\")).grid(row=2, column=1, pady=(20, 0))\r\n        game_text = Text(game_selection_frame, width=50, height=17, wrap=WORD)\r\n\r\n        self.game_text = game_text\r\n        game_text.grid(row=3, column=1, sticky=N)\r\n\r\n        # GameName\r\n        #self.gametitle_label = Label(game_selection_frame, text=_(\"GameName:\"))\r\n        #self.gametitle_label.grid(row=4, column=1)\r\n        self.game_title = StringVar()\r\n        self.gametitle_entry = Entry(game_selection_frame, textvariable=self.game_title)\r\n        self.gametitle_entry.grid(row=0, column=1, columnspan=1, sticky=E+W, padx=(0,0))\r\n        #-------------------------------------------\r\n\r\n        # Game title info section\r\n\r\n        game_info_frame = Frame(self.root)\r\n        game_info_frame.grid(row=1, column=1, sticky=N)\r\n        \r\n        # Demo filter\r\n        filter_frame = Frame(game_info_frame)\r\n        filter_frame.grid(row=0, column=0, columnspan=2, pady=(0,0), sticky=NS)\r\n        self.current_mode_text = Label(filter_frame, text=_(\"Current mode is: {}\").format(self.current_mode))\r\n        self.current_mode_text.grid(row=0, column=0, sticky=NS, pady=(0, 10))\r\n        self.list_mode = Button(filter_frame, text=_(\"CDNSP Mode\").replace(\"\\n\", \"\"), command=self.change_mode)\r\n\r\n        if self.current_mode == \"CDNSP\":\r\n            self.list_mode.config(text=_(\"Nut Mode\").replace(\"\\n\", \"\"))\r\n        elif self.current_mode == \"Nut\":\r\n            self.list_mode.config(text=_(\"CDNSP Mode\").replace(\"\\n\", \"\"))\r\n        self.list_mode.grid(row=1, column=0, sticky=NS, pady=(0, 20))\r\n            \r\n        self.demo = IntVar()\r\n        if no_demo:\r\n            self.demo.set(1)\r\n        else:\r\n            self.demo.set(0)\r\n        Checkbutton(filter_frame, text=_(\"No Demo\"), \\\r\n                    variable=self.demo, command=self.filter_game)\\\r\n                    .grid(row=2, column=0, sticky=NS)\r\n        self.jap = IntVar()\r\n        if no_japanese_games:\r\n            self.jap.set(1)\r\n        else:\r\n            self.jap.set(0)\r\n        Checkbutton(filter_frame, text=_(\"No Japanese Game\"), \\\r\n                    variable=self.jap, command=self.filter_game)\\\r\n                    .grid(row=3, column=0, pady=(5,0), sticky=NS)\r\n        \r\n        # Title ID info\r\n        self.titleID_label = Label(game_info_frame, text=_(\"Title ID:\"))\r\n        self.titleID_label.grid(row=1, column=0, pady=(20,0), columnspan=2)\r\n\r\n        self.game_titleID = StringVar()\r\n        self.gameID_entry = Entry(game_info_frame, textvariable=self.game_titleID)\r\n        self.gameID_entry.grid(row=2, column=0, columnspan=2)\r\n\r\n        # Title Key info\r\n        self.titleID_label = Label(game_info_frame, text=_(\"Title Key:\"))\r\n        self.titleID_label.grid(row=3, column=0, pady=(20,0), columnspan=2)\r\n\r\n        self.game_titleKey = StringVar()\r\n        self.gameKey_entry = Entry(game_info_frame, textvariable=self.game_titleKey)\r\n        self.gameKey_entry.grid(row=4, column=0, columnspan=2)\r\n\r\n        # Select update versions\r\n        self.version_label = Label(game_info_frame, text=_(\"Select update version:\"))\r\n        self.version_label.grid(row=5, column=0, pady=(20,0), columnspan=2)\r\n\r\n        self.version_option = StringVar()\r\n        self.version_select = ttk.Combobox(game_info_frame, textvariable=self.version_option, state=\"readonly\", postcommand=self.get_update_lastestVer)\r\n        self.version_select[\"values\"] = ([_('Latest')])\r\n        self.version_select.set(_(\"Latest\"))\r\n        self.version_select.grid(row=6, column=0, columnspan=2)\r\n        \r\n        # Download options\r\n        self.download_label = Label(game_info_frame, text=_(\"Download options:\"))\r\n        self.download_label.grid(row=7, column=0, pady=(20,0), columnspan=2)\r\n\r\n        MODES = [\r\n            (_(\"Base game + Update + DLC\"), \"B+U+D\"),\r\n            (_(\"Base game + Update\"), \"B+U\"),\r\n            (_(\"Update + DLC\"), \"U+D\"),\r\n            (_(\"Base game only\"), \"B\"),\r\n            (_(\"Update only\"), \"U\"),\r\n            (_(\"All DLC\"), \"D\")\r\n        ]\r\n\r\n        self.updateOptions = StringVar()\r\n        self.updateOptions.set(\"B+U+D\")\r\n        \r\n        self.radio_btn_collection = []\r\n        row_count = 8\r\n        for index in range(len(MODES)):\r\n            a = Radiobutton(game_info_frame, text=MODES[index][0],\r\n                        variable=self.updateOptions, value=MODES[index][1])\r\n            a.grid(row=row_count, column=0, sticky=W, columnspan=2)\r\n            row_count += 1\r\n            self.radio_btn_collection.append(a)\r\n\r\n        # Queue and Download button\r\n        queue_btn = Button(game_info_frame, text=_(\"Add to queue\"), command=self.add_selected_items_to_queue)\r\n        queue_btn.grid(row=50, column=0, pady=(20,0))\r\n        if _(\"Download_bottom\") != \"Download_bottom\":\r\n            download_bottom_txt = _(\"Download_bottom\")\r\n        else:\r\n            download_bottom_txt = _(\"Download\")\r\n        dl_btn = Button(game_info_frame, text=download_bottom_txt, command=self.download)\r\n        dl_btn.grid(row=50, column=1, pady=(20,0), padx=(5,0))\r\n        self.pause_btn = Button(game_info_frame, text=(\"Pause Download\"), command=self.pause_download_command)\r\n        self.pause_btn.grid(row=51, column=0, pady=(20,0), columnspan=2)\r\n\r\n        update_btn = Button(game_info_frame, text=_(\"Update Titlekeys\"), command=self.update_titlekeys)\r\n        update_btn.grid(row=52, column=0, pady=(20, 0), columnspan=2)\r\n\r\n        #-----------------------------------------\r\n        # Setup GUI Functions\r\n        url = 'https://raw.githubusercontent.com/Bob123a1/CDNSP-GUI-Files/master/Config/Version_info.json'\r\n        file = os.path.join(\"Config\", \"Version_info.json\")\r\n        urllib.request.urlretrieve(url, file)\r\n        self.my_game_scan(a_dir=self.path, silent=True)\r\n        self.update_list(rebuild=True)\r\n        self.filter_game()\r\n        self.queue_menu_setup()\r\n        self.load_persistent_queue() # only load the queue once the UI is initialized\r\n        try:\r\n            self.status_label.config(text=_(\"Status: Done!\"))\r\n        except:\r\n            pass\r\n        update_result = self.check_update()\r\n        self.update_result = update_result\r\n        display = True\r\n        display_text = \"\"\r\n        \r\n        # G - Indicates an update for the GUI,\r\n        # L - Indicates an update for the Language files\r\n        if update_result == \"GL\":\r\n            display_text = _(\"Status:\")+ \" \" + _(\"New GUI version and Language Files available!\")\r\n        elif update_result == \"G\":\r\n            display_text = _(\"Status:\")+ \" \" + _(\"New GUI version available!\")\r\n        elif update_result == \"L\":\r\n            display_text = _(\"Status:\")+ \" \" + _(\"New Language Files available!\")\r\n        else:\r\n            display = False\r\n        if display:\r\n            threading.Timer(3, lambda: self.done_status(display_text)).start()\r\n            \r\n        #-----------------------------------------\r\n\r\n    def queue_menu_setup(self):\r\n        # Queue Menu\r\n        global queue_win\r\n        self.queue_win = Toplevel(self.root)\r\n        self.queue_win.title(_(\"Queue Menu\"))\r\n        self.queue_win.geometry(queue_win)\r\n        self.queue_win.withdraw() # Hide queue window, will show later\r\n\r\n        # Top Menu bar\r\n        menubar = Menu(self.queue_win)\r\n\r\n        # Download Menu Tab\r\n        downloadMenu = Menu(menubar, tearoff=0)\r\n        downloadMenu.add_command(label=_(\"Load Saved Queue\"), command=self.import_persistent_queue)\r\n        downloadMenu.add_command(label=_(\"Save Queue\"), command=self.export_persistent_queue)\r\n        \r\n        # Menubar config\r\n        menubar.add_cascade(label=_(\"Download\"), menu=downloadMenu)\r\n        self.queue_win.config(menu=menubar)\r\n\r\n        # Queue GUI\r\n        self.queue_scrollbar = Scrollbar(self.queue_win)\r\n        self.queue_scrollbar.grid(row=0, column=3, sticky=N+S+W)\r\n        \r\n        if self.sys_name == \"Mac\":\r\n            self.queue_width = self.listWidth+28\r\n        else:\r\n            self.queue_width = 100 # Windows \r\n        self.queue_title_list = Listbox(self.queue_win, yscrollcommand = self.queue_scrollbar.set, width=self.queue_width, selectmode=EXTENDED)\r\n        self.queue_title_list.grid(row=0, column=0, sticky=W, columnspan=3)\r\n        self.queue_scrollbar.config(command = self.queue_title_list.yview)\r\n\r\n        Button(self.queue_win, text=_(\"Remove selected game\"), command=self.remove_selected_items).grid(row=1, column=0, pady=(30,0))\r\n        Button(self.queue_win, text=_(\"Remove all\"), command=self.remove_all_and_dump).grid(row=1, column=1, pady=(30,0))\r\n        Button(self.queue_win, text=_(\"Download all\"), command=self.download_all).grid(row=1, column=2, pady=(30,0))\r\n        self.stateLabel = Label(self.queue_win, text=_(\"Click download all to download all games in queue!\"))\r\n        self.stateLabel.grid(row=2, column=0, columnspan=3, pady=(20, 0))\r\n\r\n    # Sorting function for the treeview widget\r\n    def sortby(self, tree, col, descending):\r\n        \"\"\"sort tree contents when a column header is clicked on\"\"\"\r\n        # grab values to sort\r\n        data = [(self.tree.set(child, col), child) for child in self.tree.get_children('')]\r\n        # if the data to be sorted is numeric change to float\r\n        #data =  change_numeric(data)\r\n        # now sort the data in place\r\n        \r\n        data.sort(reverse=descending)\r\n        \r\n        for ix, item in enumerate(data):\r\n            self.tree.move(item[1], '', ix)\r\n        # switch the heading so it will sort in the opposite direction\r\n        self.tree.heading(col, command=lambda col=col: self.sortby(tree, col, \\\r\n            int(not descending)))\r\n\r\n    def remove_all(self, dump_queue = False):\r\n        self.queue_list = []\r\n        self.persistent_queue = []\r\n        self.queue_title_list.delete(0, \"end\")\r\n        if dump_queue: self.dump_persistent_queue()\r\n\r\n    def remove_all_and_dump(self):\r\n        self.remove_all(True)\r\n\r\n    def threaded_eShop_link(self, evt):\r\n        tid = self.game_titleID.get()\r\n        isDLC = False\r\n        if not tid.endswith(\"00\"):\r\n            isDLC = True\r\n            tid = \"{}\".format(tid[0:12])\r\n            indices = [i for i, s in enumerate(self.titleID) if tid in s]\r\n            if len(indices) >= 2:\r\n                for t in indices:\r\n                    if self.titleID[t].endswith(\"000\"):\r\n                        tid = self.titleID[t]\r\n                        break\r\n                if tid.endswith(\"000\"):\r\n                    isDLC = False\r\n        if not isDLC:\r\n            region = [\"US\", \"EU\", \"GB\", \"FR\", \\\r\n                      \"JP\", \"RU\", \"DE\", \"BE\", \"NL\",\\\r\n                      \"ES\", \"IT\", \"AT\", \"PT\", \"CH\",\\\r\n                      \"ZA\", \"CA\"]\r\n            # Thanks to user szczuru#7105 for find them for me :)\r\n    ##        https://ec.nintendo.com/apps/01000320000cc000/FR\r\n            url = \"\"\r\n            for c in region:\r\n                r = requests.get(\"https://ec.nintendo.com/apps/{}/{}\".format(tid, c))\r\n                if r.status_code == 200:\r\n                    url = \"https://ec.nintendo.com/apps/{}/{}\".format(tid, c)\r\n                    break\r\n            if url != \"\":\r\n                webbrowser.open(url, new=0, autoraise=True)\r\n        self.root.config(cursor=\"\")\r\n        self.imageLabel.config(cursor=\"hand2\")\r\n                \r\n    def eShop_link(self, evt):\r\n        if self.game_titleID.get() != \"\":\r\n            thread = threading.Thread(target = lambda: self.threaded_eShop_link(evt))\r\n            self.root.config(cursor=\"watch\")\r\n            self.imageLabel.config(cursor=\"watch\")\r\n            thread.start()\r\n                                      \r\n    def update_list(self, search=False, rebuild=False, label=\"Status:\"):\r\n        if label == \"Status:\":\r\n            label = _(label)\r\n        #_(\"Status: Getting game status... Please wait\")\r\n        self.root.config(cursor=\"watch\")\r\n        \r\n        if rebuild: # Rebuild current_status.txt file\r\n            print(_(\"\\nBuilding the current state list... Please wait, this may take some time \\\r\ndepending on how many games you have.\"))\r\n            updates_tid = []\r\n            installed = []\r\n            new_tid = []\r\n            global known_ver\r\n            known_ver = {}\r\n\r\n            # -> Read_file\r\n            self.title_list.delete(0, END)\r\n            \r\n            self.titleID = []\r\n            self.titleKey = []\r\n            self.title = []\r\n            self.info_list = []\r\n\r\n            global titleID_list\r\n            global titleKey_list\r\n            global title_list\r\n            global info_list\r\n\r\n            titleID_list, titleKey_list, title_list, info_list = read_titlekey_list()\r\n\r\n            self.titleID = titleID_list\r\n            self.titleKey = titleKey_list\r\n            self.title = title_list\r\n            self.info_list = info_list\r\n\r\n\r\n            if not os.path.isfile(\"Config/Version_info.json\"):\r\n                print(_(\"\\nCan't find {} file!\\n\").format(\"Version_info.json\"))\r\n                print(_(\"Attempting to download the Version_info.json file for you\"))\r\n                urllib.request.urlretrieve(\"https://raw.githubusercontent.com/Bob123a1/CDNSP-GUI-Files/master/Config/Version_info.json\", \"Config/Version_info.json\")\r\n                \r\n            if os.path.isfile(\"Config/Version_info.json\"):\r\n                ver_file = open(\"Config/Version_info.json\", \"r\", encoding=\"utf8\")\r\n                known_ver = json.load(ver_file)\r\n                ver_file.close()\r\n            file_path = r\"Config/installed.txt\"\r\n            if os.path.exists(file_path):\r\n                file = open(file_path, \"r\")\r\n                for line in file.readlines():\r\n                    if line[-1] == \"\\n\":\r\n                        line = line[:-1].lower()\r\n                    installed.append(line.lower())\r\n                file.close()\r\n                for info in installed:\r\n                    tid = info.split(\",\")[0].strip()\r\n                    ver = info.split(\",\")[1].strip()\r\n                    if ver == \"none\":\r\n                        ver = \"0\"\r\n                    if tid in known_ver:\r\n                        tid = tid.lower()\r\n                        try:\r\n                            known_ver_num = known_ver[tid]\r\n                            if known_ver_num == \"none\":\r\n                                known_ver_num = \"0\"\r\n                            if int(known_ver_num) > int(ver):\r\n                                if tid.endswith(\"00\"):\r\n                                    tid = \"{}000\".format(tid[0:13])\r\n                                updates_tid.append(tid)\r\n                        except Exception as e:\r\n                            print(\"Tid: {} has caused an error, it has the version of {}.\\nError: {}\".format(tid, ver, e))\r\n            else:\r\n                file = open(file_path, \"w\")\r\n                file.close()\r\n\r\n            new_path = r\"Config/new.txt\"\r\n            if os.path.isfile(new_path):\r\n                file = open(new_path, \"r\")\r\n                for line in file.readlines():\r\n                    if line[-1] == \"\\n\":\r\n                        line = line[:-1]\r\n                    new_tid.append(line[:16])\r\n                file.close()\r\n            installed = [install.split(\",\")[0] for install in installed]\r\n\r\n##            status_file = open(r\"Config/Current_status.txt\", \"w\", encoding=\"utf-8\") Not going to rely on writing to a text file anymore\r\n            titles_dict = {}\r\n\r\n            if os.path.isfile(\"Config/titles.json\"):\r\n                with open(\"Config/titles.json\", \"r\", encoding=\"utf-8\") as file:\r\n                    file_json = json.load(file)\r\n                    for key in file_json:\r\n                        key_u = key.upper()\r\n                        titles_dict[key_u] = file_json[key][\"releaseDate\"]\r\n            else:\r\n                print(\"\\n\" + _(\"Unable to find titles.json file. Check changelog for more information on how to download it.\") + \"\\n\")\r\n                \r\n\r\n            self.status_list = []\r\n\r\n            for tid in self.titleID:\r\n                tid = tid.lower()\r\n                number = int(self.titleID.index(tid))+1\r\n                game_name = self.title[number-1]\r\n                if game_name[-1] == \"\\n\":\r\n                    game_name = game_name[:-1]\r\n                state = \"\"\r\n\r\n                if tid in new_tid:\r\n                    state = \"New\"\r\n                \r\n                if tid in installed:\r\n                    state = \"Own\"\r\n                \r\n                if tid in updates_tid:\r\n                    state = \"Update\"\r\n\r\n                tid_u = str(tid).upper()\r\n                if tid_u in titles_dict:\r\n                    if titles_dict[tid_u] == None or titles_dict[tid_u] == \"\":\r\n                        release_date = \"0000-00-00\"\r\n                    else:\r\n                        release_date = str(titles_dict[tid_u])\r\n                        release_date = release_date[:4]+\"-\"+release_date[4:6]+\"-\"+release_date[6:8]\r\n                else:\r\n                    release_date = \"0000-00-00\"\r\n                # Thanks to Moko0815 for the solution to fill with leading 0s\r\n                tree_row = (str(number).zfill(4), tid, game_name, state, release_date)\r\n                self.status_list.append(str(tree_row))\r\n##            threading.Timer(1, self.done_status).start()\r\n            self.done_status()\r\n            self.update_list()\r\n            \r\n##        elif search:\r\n##            search_term = self.search_var.get()\r\n##            self.tree.delete(*self.tree.get_children())\r\n##            for game_status in self.current_status:\r\n##                number = game_status[0].strip()\r\n##                tid = game_status[1].strip()\r\n##                game_name = game_status[2].strip()\r\n##                state = game_status[3].strip()\r\n##                release_date = game_status[4].strip()\r\n##                \r\n##                tree_row = (str(number).zfill(4), tid, game_name, state, release_date)\r\n##                if search_term.lower().strip() in game_name.lower() or search_term.lower().strip() in tid.lower():\r\n##                    self.tree.insert('', 'end', values=tree_row)\r\n                    \r\n        else:\r\n            self.current_status = []\r\n            if self.status_list:\r\n                for line in self.status_list:\r\n                    if line[-1] == \"\\n\":\r\n                        line = line[:-1]\r\n                    # Thanks to user danch15 on Github\r\n                    if \"New\" in line:\r\n                        line = line.replace(\"'New'\", \"'\" + _(\"New\") + \"'\")\r\n                    if \"Own\" in line:\r\n                        line = line.replace(\"'Own'\", \"'\" + _(\"Own\") + \"'\")\r\n                    if \"Update\" in line:\r\n                        line = line.replace(\"'Update'\", \"'\" + _(\"Update\") + \"'\")\r\n                    status_list = eval(line)\r\n                    self.current_status.append(status_list)\r\n                self.make_list()\r\n                self.filter_game()\r\n            else:\r\n                print(_(\"Error, Current_status.txt doesn't exist\"))\r\n  \r\n        self.tree.yview_moveto(0)\r\n        # Reset the sorting back to default (descending)\r\n        self.tree.heading(\"num\", text=\"#\", command=lambda c=\"num\": self.sortby(self.tree, c, 1))\r\n        self.tree.heading(\"tid\", text=_(\"TitleID\"), command=lambda c=\"tid\": self.sortby(self.tree, c, 1))\r\n        self.tree.heading(\"G\", text=_(\"Game\"), command=lambda c=\"G\": self.sortby(self.tree, c, 1))\r\n        self.tree.heading(\"S\", text=_(\"State\"), command=lambda c=\"S\": self.sortby(self.tree, c, 1))\r\n\r\n        # Reset cursor status\r\n        self.root.config(cursor=\"\")\r\n        try:\r\n            self.imageLabel.config(cursor=\"hand2\")\r\n        except:\r\n            pass\r\n        \r\n    def done_status(self, display_text=\"Status: Done!\"):\r\n        display_text = _(display_text)\r\n        try:\r\n            self.status_label.config(text=display_text)\r\n        except RuntimeError as e:\r\n            print(e)\r\n        print(display_text)\r\n        \r\n    def threaded_game_info(self, evt):\r\n        selection=self.tree.selection()[0]\r\n        selected = self.tree.item(selection,\"value\") # Returns the selected value as a dictionary\r\n        \r\n        if selection:\r\n            w = evt.widget\r\n            self.is_DLC = False\r\n##            try:\r\n            value = selected[2]\r\n            if \"[DLC]\" in value:\r\n                for radio in self.radio_btn_collection:\r\n                    radio.configure(state = DISABLED)\r\n                self.is_DLC=True\r\n            else:\r\n                for radio in self.radio_btn_collection:\r\n                    radio.configure(state = \"normal\")\r\n            value = int(selected[0])\r\n            value -= 1\r\n            self.game_titleID.set(self.titleID[value])\r\n            self.game_titleKey.set(self.titleKey[value])\r\n            self.game_title.set(self.title[value])\r\n            self.get_update_lastestVer()\r\n##            except:\r\n##                pass\r\n\r\n            tid = self.titleID[value]\r\n            thread = threading.Thread(target = lambda: self.game_desc(tid))\r\n            thread.start()\r\n            \r\n            isDLC = False\r\n            if not tid.endswith(\"00\"):\r\n                isDLC = True\r\n                tid = \"{}\".format(tid[0:12])\r\n                indices = [i for i, s in enumerate(self.titleID) if tid in s]\r\n                if len(indices) >= 2:\r\n                    for t in indices:\r\n                        if self.titleID[t].endswith(\"000\"):\r\n                            tid = self.titleID[t]\r\n                            break\r\n                    if tid.endswith(\"000\"):\r\n                        isDLC = False\r\n            \r\n            if edgeToken == None and not self.game_image_disable:\r\n                image_name = \"{}.jpg\".format(tid.lower())\r\n\r\n                if not os.path.isfile(\"Images/{}\".format(image_name)):\r\n                    url = \"https://terannet.sirv.com/CDNSP/{}\".format(image_name)\r\n                    r = requests.get(url)\r\n\r\n                    if r.status_code != 200:\r\n                        isDLC = True\r\n                        print(\"\\n\"+_(\"Unable to get game image\"))\r\n                    else:\r\n                        file_name = os.path.join(\"Images\", image_name)\r\n                        urllib.request.urlretrieve(url, file_name)\r\n                \r\n            change_img = False\r\n            if not self.game_image_disable and not isDLC:\r\n                if not os.path.isfile(\"Images/{}.jpg\".format(tid)):\r\n                    base_ver = get_versions(tid)[-1]\r\n                    result = game_image(tid, base_ver, self.titleKey[self.titleID.index(tid)])\r\n                    if result[1] != \"Error\":\r\n                        change_img = True\r\n                        if result[1] != \"Exist\":\r\n                            if self.sys_name == \"Win\":\r\n                                subprocess.check_output(\"{0} -k keys.txt {1}\\\\control.nca --section0dir={1}\\\\section0\".format(hactoolPath, result[0].replace(\"/\", \"\\\\\")), shell=True)\r\n                            else:\r\n                                subprocess.check_output(\"{0} -k keys.txt '{1}/control.nca' --section0dir='{1}/section0'\".format(hactoolPath, result[0]), shell=True)\r\n                            icon_list = [\"icon_AmericanEnglish.dat\", \"icon_BritishEnglish.dat\",\\\r\n                                         \"icon_CanadianFrench.dat\", \"icon_German.dat\", \\\r\n                                         \"icon_Italian.dat\", \"icon_Japanese.dat\", \\\r\n                                         \"icon_LatinAmericanSpanish.dat\", \"icon_Spanish.dat\", \\\r\n                                         \"icon_Korean.dat\", \"icon_TraditionalChinese.dat\"]\r\n                            file_name = \"\"\r\n                            dir_content = os.listdir(os.path.dirname(os.path.abspath(__file__))+'/Images/{}/section0/'.format(tid))\r\n                            for i in icon_list:\r\n                                if i in dir_content:\r\n                                    file_name = i.split(\".\")[0]\r\n                                    break\r\n                            try:\r\n                                os.rename('{}/section0/{}.dat'.format(result[0], file_name), '{}/section0/{}.jpg'.format(result[0], file_name))\r\n                                shutil.copyfile('{}/section0/{}.jpg'.format(result[0], file_name), 'Images/{}.jpg'.format(tid))\r\n                                shutil.rmtree(os.path.dirname(os.path.abspath(__file__))+'/Images/{}'.format(tid))\r\n                            except Exception as e:\r\n                                print(_(\"An error has occured, click on the game image to try again\" + \"\\n\" + _(\"Error:\") + \" {}\".format(e)))\r\n                    else:\r\n                        img2 = ImageTk.PhotoImage(Image.open('blank.jpg'))\r\n                        self.imageLabel.configure(image=img2, text=\"\")\r\n                        self.imageLabel.image = img2\r\n                else:\r\n                    change_img = True\r\n                if change_img:\r\n                    img2 = ImageTk.PhotoImage(Image.open(os.path.dirname(os.path.abspath(__file__))+'/Images/{}.jpg'.format(tid)))\r\n                    self.imageLabel.configure(image=img2, text=\"\")\r\n                    self.imageLabel.image = img2\r\n                    # print(\"\\nIt took {} seconds to get the image\\n\".format(end - start))\r\n                \r\n            else:\r\n                img2 = ImageTk.PhotoImage(Image.open('blank.jpg'))\r\n                self.imageLabel.configure(image=img2, text=\"\")\r\n                self.imageLabel.image = img2\r\n##            \r\n##            except:\r\n##                pass\r\n    def game_info(self, evt):\r\n        self.imageLabel.config(image=\"\", text=_(\"\\n\\n\\nDownloading game image...\"))\r\n        thread = threading.Thread(target = lambda: self.threaded_game_info(evt))\r\n        thread.start()\r\n\r\n    def game_desc(self, tid):\r\n        #self.infoLabel.config(image=\"\", text=_(\"\\n\\n\\nDownloading game info...\"))\r\n        if self.game_desc_disable == False:\r\n            global game_info_json\r\n            if not tid.endswith(\"00\"):\r\n                tid = \"{}\".format(tid[0:12])\r\n                indices = [i for i, s in enumerate(self.titleID) if tid in s]\r\n                if len(indices) >= 2:\r\n                    for t in indices:\r\n                        if self.titleID[t].endswith(\"000\"):\r\n                            tid = self.titleID[t]\r\n                            break\r\n            if tid in game_info_json:\r\n                description = \"\"\r\n                if game_info_json[tid][\"intro\"].replace(\"\\n\", \"\") == \"\":\r\n                    description += \"No intro\\n\"\r\n                else:\r\n                    description += \"{}\\n\".format(game_info_json[tid][\"intro\"]\\\r\n                                                 .replace(\"\\n\\n\", \" \").replace(\"\\n\", \"\").strip())\r\n\r\n                info_name = {\"Game Description:\": \"description\",\r\n                             \"Release Date:\": \"release_date_string\",\r\n                             \"Publisher:\": \"publisher\",\r\n                             \"Category:\": \"category\",\r\n                             \"Rating:\": \"rating\",\r\n                             \"Game Size:\": \"Game_size\",\r\n                             \"Number of Players:\": \"number_of_players\",\r\n                             \"eShop Game Price:\": \"US_price\"\r\n                             }\r\n\r\n                for game_name, game_key in info_name.items():\r\n                    if game_key == \"description\":\r\n                        description += \"\\n{} {}\\n\\n\".format(_(game_name), game_info_json[tid][\"{}\".format(game_key)]\\\r\n                                                           .replace(\"\\n\\n\", \" \").replace(\"\\n\", \"\").strip())\r\n                    elif game_key == \"Game_size\":\r\n                        try:\r\n                            game_size_temp = bytes2human(float(game_info_json[tid][\"{}\".format(game_key)].replace(\"\\n\", \"\").strip()))\r\n                            game_size_temp_size = float(game_size_temp[0:-3])\r\n                            description += \"{} {:.2f} {}\\n\".format(_(game_name), game_size_temp_size, game_size_temp[-2:])\r\n                        except:\r\n                            description += \"{} {}\\n\".format(_(game_name), _(\"Unable to get game size\"))\r\n                    elif game_key == \"US_price\":\r\n                        description += \"{} ${}\\n\".format(_(game_name), game_info_json[tid][\"{}\".format(game_key)].replace(\"\\n\", \"\").strip())\r\n                    else:\r\n                        description += \"{} {}\\n\".format(_(game_name), game_info_json[tid][\"{}\".format(game_key)].replace(\"\\n\", \"\").strip())\r\n                                                                             \r\n                self.game_text.delete(\"1.0\", END)\r\n                self.game_text.insert(INSERT, description)\r\n\r\n                self.game_text.tag_add(\"All\", \"1.0\", \"end\")\r\n                self.game_text.tag_config(\"All\", font=(\"Open Sans\", 10))\r\n                \r\n                self.game_text.tag_add(\"Intro\", \"1.0\", \"1.end\")\r\n                self.game_text.tag_config(\"Intro\", justify=\"center\", font=(\"Open Sans\", 10, \"bold\"))\r\n\r\n                counter = 3\r\n                for game_name, game_key in info_name.items():\r\n                    self.game_text.tag_add(\"{}\".format(_(game_name)), \"{}.0\".format(counter), \"{}.{}\".format(counter, len(_(game_name))))\r\n                    self.game_text.tag_config(\"{}\".format(_(game_name)), font=(\"Open Sans\", 10, \"bold\"), spacing2=\"2\", spacing3=\"3\")\r\n                    if counter == 3:\r\n                        counter += 2\r\n                    else:\r\n                        counter += 1\r\n            else:\r\n                self.game_text.delete(\"1.0\", END)\r\n                self.game_text.insert(INSERT, _(\"\\n\\n\\nDownloading game info...\"))\r\n                thread = threading.Thread(target = lambda: self.download_desc(tid))\r\n                thread.start()\r\n        else:\r\n            self.game_text.delete(\"1.0\", END)\r\n            self.game_text.insert(INSERT, \"\")\r\n            \r\n    def download_desc(self, tid, silent=False):\r\n        # Coded by Panda\r\n        global game_info_json\r\n        done = False\r\n        if tid in game_info_json:\r\n            done = True\r\n        if done == False:\r\n##            try:\r\n            titleinfo = {}\r\n            titleinfo['titleid'] = tid\r\n            titleinfo['date_added'] = time.strftime('%Y%m%d')\r\n            titleinfo['last_updated'] = time.strftime('%Y%m%d')\r\n\r\n            #initialize empty values\r\n            titleinfo[\"release_date_string\"] = \"\"\r\n            titleinfo[\"release_date_iso\"] = \"\"\r\n            titleinfo[\"title\"] = \"\"\r\n            titleinfo[\"nsuid\"] = \"\"\r\n            titleinfo[\"slug\"] = \"\"\r\n            titleinfo[\"game_code\"] = \"\"\r\n            titleinfo[\"category\"] = \"\"\r\n            titleinfo[\"rating_content\"] = \"\"\r\n            titleinfo[\"number_of_players\"] = \"\"\r\n            titleinfo[\"rating\"] = \"\"\r\n            titleinfo[\"amiibo_compatibility\"] = \"\"\r\n            titleinfo[\"developer\"] = \"\"\r\n            titleinfo[\"publisher\"] = \"\"\r\n            titleinfo[\"front_box_art\"] = \"\"\r\n            titleinfo[\"intro\"] = \"\"\r\n            titleinfo[\"description\"] = \"\"\r\n            titleinfo[\"dlc\"] = \"\"\r\n            titleinfo[\"US_price\"] = \"\"\r\n            titleinfo[\"Game_size\"] = \"\"\r\n\r\n            result = requests.get(\"https://ec.nintendo.com/apps/%s/US\" % tid)\r\n            # result.status_code == 200\r\n            if result.status_code == 200:\r\n                if result.url != 'https://www.nintendo.com/games/':\r\n                    soup = BeautifulSoup(result.text, \"html.parser\")\r\n                    if soup.find(\"meta\", {\"property\": \"og:url\"}) != None:\r\n                        slug = soup.find(\"meta\", {\"property\": \"og:url\"})[\"content\"].split('/')[-1]\r\n                        infoJson = json.loads(requests.get(\"https://www.nintendo.com/json/content/get/game/%s\" % slug).text)[\"game\"]\r\n                        if \"release_date\" in infoJson:\r\n                            titleinfo[\"release_date_string\"] = infoJson[\"release_date\"]\r\n                            titleinfo[\"release_date_iso\"] = datetime.datetime.strftime(datetime.datetime.strptime(infoJson[\"release_date\"], \"%b %d, %Y\"),'%Y%m%d')\r\n\r\n                        if \"title\" in infoJson:\r\n                            titleinfo[\"title\"] = infoJson[\"title\"]\r\n\r\n                        if \"nsuid\" in infoJson:\r\n                            titleinfo[\"nsuid\"] = infoJson[\"nsuid\"]\r\n\r\n                        if \"slug\" in infoJson:\r\n                            titleinfo[\"slug\"] = infoJson[\"slug\"]\r\n\r\n                        if \"game_code\" in infoJson:\r\n                            titleinfo[\"game_code\"] = infoJson[\"game_code\"]\r\n\r\n                        catagories = []\r\n                        if \"game_category_ref\" in infoJson:\r\n                            catindex = 0\r\n                            if \"title\" in infoJson[\"game_category_ref\"]:\r\n                                catagories.append(infoJson[\"game_category_ref\"][\"title\"])\r\n                            else:\r\n                                for game_category in infoJson[\"game_category_ref\"]:\r\n                                    catagories.append(infoJson[\"game_category_ref\"][catindex][\"title\"])\r\n                                    catindex += 1\r\n                            if len(catagories) > 0:\r\n                                titleinfo[\"category\"] = ','.join(catagories)\r\n\r\n                        esrbcontent = []\r\n                        if \"esrb_content_descriptor_ref\" in infoJson:\r\n                            esrbindex = 0\r\n                            if \"title\" in infoJson[\"esrb_content_descriptor_ref\"]:\r\n                                esrbcontent.append(infoJson[\"esrb_content_descriptor_ref\"][\"title\"])\r\n                            else:\r\n                                for descriptor in infoJson[\"esrb_content_descriptor_ref\"]:\r\n                                    esrbcontent.append(infoJson[\"esrb_content_descriptor_ref\"][esrbindex][\"title\"])\r\n                                    esrbindex += 1\r\n                            if len(esrbcontent) > 0:\r\n                                titleinfo[\"content\"] = ','.join(esrbcontent)\r\n\r\n                        if \"number_of_players\" in infoJson:\r\n                            titleinfo[\"number_of_players\"] = infoJson[\"number_of_players\"]\r\n\r\n                        if \"eshop_price\" in infoJson:\r\n                            titleinfo[\"US_price\"] = infoJson[\"eshop_price\"]\r\n\r\n                        if \"esrb_rating_ref\" in infoJson:\r\n                            if \"title\" in infoJson[\"esrb_rating_ref\"]:\r\n                                titleinfo[\"rating\"] = infoJson[\"esrb_rating_ref\"][\"esrb_rating\"][\"short_description\"]\r\n\r\n                        if \"amiibo_compatibility\" in infoJson:\r\n                            titleinfo[\"amiibo_compatibility\"] = infoJson[\"amiibo_compatibility\"]\r\n \r\n                        if \"dlc\" in infoJson:\r\n                            titleinfo[\"dlc\"] = infoJson[\"dlc\"]\r\n\r\n                        if \"developer_ref\" in infoJson:\r\n                            if \"title\" in infoJson[\"developer_ref\"]:\r\n                                titleinfo[\"developer\"] = infoJson[\"developer_ref\"][\"title\"]\r\n\r\n\r\n                        if \"publisher_ref\" in infoJson:\r\n                            if \"title\" in infoJson[\"publisher_ref\"]:\r\n                                titleinfo[\"publisher\"] = infoJson[\"publisher_ref\"][\"title\"]\r\n\r\n                        if \"front_box_art\" in infoJson:\r\n                            if \"image\" in infoJson[\"front_box_art\"]:\r\n                                if \"image\" in infoJson[\"front_box_art\"][\"image\"]:\r\n                                    if \"url\" in infoJson[\"front_box_art\"][\"image\"][\"image\"]:\r\n                                        titleinfo[\"front_box_art\"] = infoJson[\"front_box_art\"][\"image\"][\"image\"][\"url\"]\r\n\r\n                        if \"intro\" in infoJson:\r\n                            try:\r\n                                details = BeautifulSoup(infoJson[\"intro\"][0],\"html.parser\")\r\n                                try:\r\n                                    details = details.decode(formatter=None)\r\n                                except:\r\n                                    details = details.decode()\r\n                                details = re.sub('<[^<]+?>', '', details).strip()\r\n                                details = re.sub(' +', ' ', details)\r\n                                details = re.sub('\\n ', '\\n', details)\r\n                                details = re.sub('\\n\\n+', '\\n\\n', details)\r\n                                titleinfo[\"intro\"] = details\r\n                            except Exception as e:\r\n                                pass\r\n\r\n                        if \"game_overview_description\" in infoJson:\r\n                            details = BeautifulSoup(infoJson[\"game_overview_description\"][0],\"html.parser\")\r\n                            try:\r\n                                details = details.decode(formatter=None)\r\n                            except:\r\n                                details = details.decode()\r\n                            details = re.sub('<[^<]+?>', '', details).strip()\r\n                            details = re.sub(' +', ' ', details)\r\n                            details = re.sub('\\n ', '\\n', details)\r\n                            details = re.sub('\\n\\n+', '\\n\\n', details)\r\n                            titleinfo[\"description\"] = details\r\n\r\n                        result = requests.get(\"https://ec.nintendo.com/apps/%s/AU\" % tid)\r\n                        _json = ''\r\n                        if result.status_code == 200:\r\n                            _json = json.loads(result.text.split('NXSTORE.titleDetail.jsonData = ')[1].split('NXSTORE.titleDetail')[0].replace(';',''))\r\n                        else:\r\n                            result = requests.get(\"https://ec.nintendo.com/apps/%s/JP\" % tid)\r\n                            \r\n                            if result.status_code == 200:\r\n                                _json = json.loads(result.text.split('NXSTORE.titleDetail.jsonData = ')[1].split('NXSTORE.titleDetail')[0].replace(';',''))\r\n                        if _json != '':\r\n        ##                    print(_json[\"total_rom_size\"])\r\n        ##                    sys.exit()\r\n\r\n                            if \"total_rom_size\" in _json:\r\n                                titleinfo[\"Game_size\"] = str(_json[\"total_rom_size\"])\r\n\r\n                            game_info_json[tid] = titleinfo\r\n\r\n            if tid not in game_info_json:\r\n                result = requests.get(\"https://ec.nintendo.com/apps/%s/AU\" % tid)\r\n                _json = ''\r\n                if result.status_code == 200:\r\n                    _json = json.loads(result.text.split('NXSTORE.titleDetail.jsonData = ')[1].split('NXSTORE.titleDetail')[0].replace(';',''))\r\n                else:\r\n                    result = requests.get(\"https://ec.nintendo.com/apps/%s/JP\" % tid)\r\n                    \r\n                    if result.status_code == 200:\r\n                        _json = json.loads(result.text.split('NXSTORE.titleDetail.jsonData = ')[1].split('NXSTORE.titleDetail')[0].replace(';',''))\r\n                if _json != '':\r\n##                    print(_json[\"total_rom_size\"])\r\n##                    sys.exit()\r\n\r\n                    if \"total_rom_size\" in _json:\r\n                        titleinfo[\"Game_size\"] = str(_json[\"total_rom_size\"])\r\n\r\n                    if \"release_date_on_eshop\" in _json:\r\n                        titleinfo[\"release_date_iso\"] = _json[\"release_date_on_eshop\"].replace('-','')\r\n                        titleinfo[\"release_date_string\"] = datetime.datetime.strftime(datetime.datetime.strptime(_json[\"release_date_on_eshop\"].replace('-',''),'%Y%m%d' ),\"%b %d, %Y\")\r\n                    \r\n                    if \"formal_name\" in _json:\r\n                        titleinfo[\"title\"] = _json[\"formal_name\"]\r\n                    \r\n                    if \"id\" in _json:\r\n                        titleinfo[\"nsuid\"] = \"%s\" % _json[\"id\"]\r\n                        \r\n                    titleinfo[\"slug\"] = \"\"\r\n                    titleinfo[\"game_code\"] = \"\"\r\n\r\n                    if \"genre\" in _json:\r\n                        titleinfo[\"category\"] = _json[\"genre\"].replace(' / ',',')\r\n\r\n                    if \"rating_info\" in _json:\r\n                        if \"rating\" in _json[\"rating_info\"]:\r\n                            rating = ''\r\n                            if \"name\" in _json[\"rating_info\"]['rating']:\r\n                                rating = \"Rated %s\" % _json[\"rating_info\"]['rating']['name']\r\n\r\n                            if \"age\" in _json[\"rating_info\"]['rating']:\r\n                                rating = rating + \" for ages %s and up\" % _json[\"rating_info\"]['rating']['age']\r\n\r\n                            titleinfo[\"rating\"] = rating\r\n\r\n                        if \"content_descriptors\" in _json[\"rating_info\"]:\r\n                            content = []\r\n                            for descriptor in  _json[\"rating_info\"][\"content_descriptors\"]:\r\n                                content.append(descriptor['name'])\r\n                            titleinfo[\"rating_content\"] = ','.join(content)\r\n\r\n                \r\n                    if \"player_number\" in _json:\r\n                        if 'offline_max' in _json[\"player_number\"]:\r\n                            titleinfo[\"number_of_players\"] = \"up to %s players\" % _json[\"player_number\"][\"offline_max\"]\r\n\r\n                        if 'local_max' in _json[\"player_number\"]:\r\n                            titleinfo[\"number_of_players\"] = \"up to %s players\" % _json[\"player_number\"][\"local_max\"]\r\n\r\n                    titleinfo[\"amiibo_compatibility\"] = \"\"\r\n\r\n                    titleinfo[\"developer\"] = \"\"\r\n\r\n                    if \"publisher\" in _json:\r\n                        titleinfo[\"publisher\"] = _json[\"publisher\"][\"name\"]\r\n\r\n                    if \"applications\" in _json:\r\n                        if \"image_url\" in _json[\"applications\"][0]:\r\n                            titleinfo[\"front_box_art\"] = _json[\"applications\"][0]['image_url']\r\n                    \r\n                    if \"hero_banner_url\" in _json:\r\n                        titleinfo[\"front_box_art_alt\"] = _json[\"hero_banner_url\"]\r\n\r\n                    if \"catch_copy\" in _json:\r\n                        titleinfo[\"intro\"] = _json[\"catch_copy\"]\r\n\r\n                    if \"description\" in _json:\r\n                        titleinfo[\"description\"] = _json[\"description\"]\r\n\r\n                    titleinfo[\"dlc\"] = \"\"\r\n                    game_info_json[tid] = titleinfo\r\n                \r\n                else:\r\n                    f = open(\"Config/missing.txt\", 'a', encoding=\"utf8\")\r\n                    f.write(tid+\"|title doesn't exist at ec.nintendo.com\"+'\\n')\r\n                    f.close()\r\n                    if not silent:\r\n                        self.game_text.delete(\"1.0\", END)\r\n                        self.game_text.insert(INSERT, _(\"\\n\\n\\nUnable to find game info\"))\r\n                    done = True\r\n\r\n##            except Exception as e:\r\n##                #print(repr(e))\r\n##                f = open(\"Config/missing.txt\", 'a', encoding=\"utf8\")\r\n##                f.write(tid+'|'+ repr(e) +'\\n')\r\n##                f.close()\r\n##                self.game_text.delete(\"1.0\", END)\r\n##                self.game_text.insert(INSERT, _(\"\\n\\n\\nUnable to find game info\"))\r\n##                done = True\r\n\r\n        if not done:\r\n            with open(\"Config/Game_info.json\", \"w\", encoding=\"utf8\") as jsonFile:\r\n                json.dump(game_info_json, jsonFile, indent=4)\r\n            jsonFile.close()\r\n            if not silent:\r\n                self.game_desc(tid)\r\n            \r\n\r\n    \r\n    def threaded_download(self):\r\n        option = self.updateOptions.get()\r\n##        try:\r\n        tid = self.game_titleID.get()\r\n        updateTid = tid\r\n        tkey = self.game_titleKey.get()\r\n        ver = self.version_option.get()\r\n        \r\n        if len(tkey) != 32 and self.titlekey_check:\r\n            self.messages(_('Error'), _('Titlekey {} is not a 32-digits hexadecimal number!').format(tkey))                \r\n        elif len(tid) != 16:\r\n            self.messages(_('Error'), _('TitleID {} is not a 16-digits hexadecimal number!').format(tid))\r\n        else:\r\n            if _(\"Latest\") in ver:\r\n                updateTid = tid\r\n                if tid.endswith('000'):\r\n                    updateTid = '%s800' % tid[:-3]\r\n                elif tid.endswith('800'):\r\n                    baseTid = '%s000' % tid[:-3]\r\n                    updateTid = tid\r\n                ver = get_versions(updateTid)[-1]\r\n            elif \"none\" in ver:\r\n                ver == \"none\"\r\n                    \r\n            if tid.endswith('000'):\r\n                updateTid = '%s800' % tid[:-3]\r\n            elif tid.endswith('800'):\r\n                baseTid = '%s000' % tid[:-3]\r\n                updateTid = tid\r\n                \r\n            if option == \"U\" or self.is_DLC == True:\r\n                if ver != \"none\":\r\n                    self.messages(\"\", _(\"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"))\r\n                    download_game(updateTid, ver, tkey, nspRepack=self.repack, path_Dir=self.path)\r\n                    self.messages(\"\", _(\"Download finished!\"))\r\n                else:\r\n                    self.messages(\"\", _(\"No updates available for the game\"))\r\n                    \r\n            elif option == \"B+U+D\":\r\n                base_tid = \"{}000\".format(tid[0:13])\r\n                self.messages(\"\", _(\"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"))\r\n                base_ver = get_versions(base_tid)[-1]\r\n                download_game(base_tid, base_ver, tkey, nspRepack=self.repack, path_Dir=self.path)\r\n                if ver != 'none':\r\n                    updateTid = \"{}800\".format(tid[0:13])\r\n                    download_game(updateTid, ver, tkey, nspRepack=self.repack, path_Dir=self.path)\r\n                DLC_titleID = []\r\n                tid = \"{}\".format(tid[0:12])\r\n                indices = [i for i, s in enumerate(self.titleID) if tid in s]\r\n                for index in indices:\r\n                    if not self.titleID[index].endswith(\"00\"):\r\n                        DLC_titleID.append(self.titleID[index])\r\n                for DLC_ID in DLC_titleID:\r\n                    DLC_ver = get_versions(DLC_ID)[-1]\r\n                    download_game(DLC_ID, DLC_ver, self.titleKey[self.titleID.index(DLC_ID)], nspRepack=self.repack, path_Dir=self.path)\r\n                self.messages(\"\", _(\"Download finished!\"))\r\n\r\n            elif option == \"U+D\":\r\n                if ver != \"none\":\r\n                    updateTid = \"{}800\".format(tid[0:13])\r\n                    self.messages(\"\", _(\"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"))\r\n                    download_game(updateTid, ver, tkey, nspRepack=self.repack, path_Dir=self.path)\r\n                DLC_titleID = []\r\n                tid = \"{}\".format(tid[0:12])\r\n                indices = [i for i, s in enumerate(self.titleID) if tid in s]\r\n                for index in indices:\r\n                    if not self.titleID[index].endswith(\"00\"):\r\n                        DLC_titleID.append(self.titleID[index])\r\n                for DLC_ID in DLC_titleID:\r\n                    DLC_ver = get_versions(DLC_ID)[-1]\r\n                    download_game(DLC_ID, DLC_ver, self.titleKey[self.titleID.index(DLC_ID)], nspRepack=self.repack, path_Dir=self.path)\r\n                self.messages(\"\", _(\"Download finished!\"))\r\n\r\n\r\n            elif option == \"D\":\r\n                self.messages(\"\", _(\"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"))\r\n                DLC_titleID = []\r\n                tid = \"{}\".format(tid[0:12])\r\n                indices = [i for i, s in enumerate(self.titleID) if tid in s]\r\n                for index in indices:\r\n                    if not self.titleID[index].endswith(\"00\"):\r\n                        DLC_titleID.append(self.titleID[index])\r\n                for DLC_ID in DLC_titleID:\r\n                    DLC_ver = get_versions(DLC_ID)[-1]\r\n                    download_game(DLC_ID, DLC_ver, self.titleKey[self.titleID.index(DLC_ID)], nspRepack=self.repack, path_Dir=self.path)\r\n                self.messages(\"\", _(\"Download finished!\"))\r\n\r\n                \r\n            elif option == \"B\":\r\n                base_tid = \"{}000\".format(tid[0:13])\r\n                self.messages(\"\", _(\"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"))\r\n                base_ver = get_versions(base_tid)[-1]\r\n                download_game(base_tid, base_ver, tkey, nspRepack=self.repack, path_Dir=self.path)\r\n                self.messages(\"\", _(\"Download finished!\"))\r\n                \r\n            elif option == \"B+U\":\r\n                base_tid = \"{}000\".format(tid[0:13])\r\n                self.messages(\"\", _(\"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"))\r\n                base_ver = get_versions(base_tid)[-1]\r\n                download_game(base_tid, base_ver, tkey, nspRepack=self.repack, path_Dir=self.path)\r\n                if ver != 'none':\r\n                    updateTid = \"{}800\".format(tid[0:13])\r\n                    download_game(updateTid, ver, tkey, nspRepack=self.repack, path_Dir=self.path)\r\n                    self.messages(\"\", _(\"Download finished!\"))\r\n                else:\r\n                    self.messages(\"\", _(\"No updates available for the game, base game downloaded!\"))\r\n##        except:\r\n##            print(\"Error downloading {}, note: if you're downloading a DLC then different versions of DLC may have different titlekeys\".format(tid))\r\n        return\r\n    \r\n    def download(self):\r\n        thread = threading.Thread(target = self.threaded_download)\r\n        thread.start()\r\n\r\n    def pause_download_command(self):\r\n        global pause_download\r\n        global downloading\r\n        if downloading:\r\n            pause_download = not pause_download\r\n            if pause_download:\r\n                self.pause_btn[\"text\"] = \"Resume Download\"\r\n                print(\"\\nDownload paused, waiting for the user resumes the download again\")\r\n            else:\r\n                self.pause_btn[\"text\"] = \"Pause Download\"\r\n                print(\"\\nDownload resumed\")\r\n        else:\r\n            print(\"\\n There is not a download in progress\")\r\n\r\n    def export_persistent_queue(self):\r\n        self.dump_persistent_queue(self.normalize_file_path(filedialog.asksaveasfilename(initialdir = self.path, title = \"Select file\", filetypes = ((\"JSON files\",\"*.json\"),(\"all files\",\"*.*\")))))\r\n\r\n    def import_persistent_queue(self):\r\n        self.load_persistent_queue(self.normalize_file_path(filedialog.askopenfilename(initialdir = self.path, title = \"Select file\", filetypes = ((\"JSON files\",\"*.json\"),(\"all files\",\"*.*\")))))\r\n\r\n    def dump_persistent_queue(self, path = r'Config/CDNSP_queue.json'):\r\n        if path == \"\":\r\n            print(_(\"\\nYou didn't choose a location to save the file!\"))\r\n            return\r\n        elif not path.endswith(\".json\"):\r\n            path += \".json\"\r\n            \r\n        # if self.persist_queue # check for user option here\r\n        f = open(path, 'w')\r\n        json.dump(self.persistent_queue, f)\r\n        f.close()\r\n\r\n    def load_persistent_queue(self, path = r'Config/CDNSP_queue.json'):\r\n        # if self.persist_queue # check for user option here\r\n        try:\r\n            f = open(path, 'r')\r\n            try:\r\n                self.remove_all()\r\n            except:\r\n                pass\r\n            for c, tid, ver, key, option in json.load(f):\r\n                self.add_item_to_queue((tid, ver, key, option), True)\r\n            f.close()\r\n        except:\r\n            print(_(\"Persistent queue not found, skipping...\"))\r\n\r\n    def get_index_in_queue(self, item):\r\n        try:\r\n            return self.queue_list.index(item)\r\n        except:\r\n            print(_(\"Item not found in queue\"), item)\r\n\r\n    def add_selected_items_to_queue(self):\r\n        self.add_items_to_queue(self.tree.selection())\r\n\r\n    def add_items_to_queue(self, indices):\r\n##        try:\r\n        for index in indices:\r\n            index = int(self.tree.item(index,\"value\")[0])-1\r\n##            index = int(self.temp_list[index].split(\",\")[0])-1\r\n            tid = self.titleID[index]\r\n            key = self.titleKey[index]\r\n            ver = self.version_option.get()\r\n            option = self.updateOptions.get()\r\n            if len(key) != 32 and self.titlekey_check:\r\n                self.messages(_('Error'), _('Titlekey {} is not a 32-digits hexadecimal number!').format(key))\r\n            elif len(tid) != 16:\r\n                self.messages(_('Error'), _('TitleID {} is not a 16-digits hexadecimal number!').format(tid))\r\n            else:\r\n                self.add_item_to_queue((tid, ver, key, option))\r\n\r\n        self.dump_persistent_queue()\r\n##        except:\r\n##            messagebox.showerror(\"Error\", \"No game selected/entered to add to queue\")\r\n\r\n    def process_item_versions(self, tid, ver):\r\n        if _(\"Latest\") in ver or \"Latest\" in ver:\r\n            if tid.endswith('000'):\r\n                tid = '%s800' % tid[:-3]\r\n            ver = get_versions(tid)[-1]\r\n        elif ver != \"0\" and ver != \"1\":\r\n            if tid.endswith('000'):\r\n                tid = '%s800' % tid[:-3]\r\n        elif \"none\" in ver:\r\n            ver = \"none\"\r\n\r\n        return (tid, ver)\r\n\r\n    # takes an item with unformatted tid and ver\r\n    def add_item_to_queue(self, item, dump_queue = False):\r\n        tid, ver, key, option = item\r\n        if len(tid) == 16:\r\n            if not Toplevel.winfo_exists(self.queue_win):\r\n                self.queue_menu_setup() #Fix for app crashing when close the queue menu and re-open\r\n            self.queue_win.update()\r\n            self.queue_win.deiconify()\r\n            try:\r\n                c = self.titleID.index(tid)\r\n                c = self.title[c] # Name of the game\r\n            except:\r\n                print(_(\"Name for titleID not found in the list\"), tid)\r\n                c = \"UNKNOWN NAME\"\r\n\r\n            formatted_tid, formatted_ver = self.process_item_versions(tid, ver)\r\n            if \"[DLC]\" in c:\r\n                option = \"DLC\"\r\n            if c[-1] == \"\\n\":\r\n                c = c[:-1]\r\n            if ver == _(\"Latest\"):\r\n                eng_ver = \"Latest\"\r\n            else:\r\n                eng_ver = ver\r\n            self.queue_title_list.insert(\"end\", \"{}---{}---{}\".format(c, _(ver), option))\r\n            self.queue_list.append((formatted_tid, formatted_ver, key, option))\r\n            self.persistent_queue.append((c, tid, eng_ver, key, option))\r\n            if dump_queue: self.dump_persistent_queue()\r\n        self.queue_title_list.yview(END) # Auto scroll the queue menu as requested\r\n\r\n    def remove_selected_items(self):\r\n        self.remove_items(self.queue_title_list.curselection())\r\n\r\n    def remove_items(self, indices):\r\n        counter = 0\r\n        for index in indices:\r\n            index = index - counter\r\n            try:\r\n                self.remove_item(index)\r\n                counter += 1\r\n            except:\r\n                print(_(\"No game selected to remove!\"))\r\n\r\n        self.dump_persistent_queue()\r\n\r\n    def remove_item(self, index, dump_queue = False):\r\n        del self.queue_list[index]\r\n        del self.persistent_queue[index]\r\n        self.queue_title_list.delete(index)\r\n        if dump_queue: self.dump_persistent_queue()\r\n        \r\n    def threaded_download_all(self):\r\n        self.messages(\"\", _(\"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"))\r\n        self.stateLabel.configure(text = _(\"Downloading games...\"))\r\n        download_list = self.queue_list.copy()\r\n        for item in download_list:\r\n            tid, ver, tkey, option = item\r\n            ver = self.process_item_versions(tid, ver)[1]\r\n##            try:\r\n            if option == \"U\" or option == \"DLC\":\r\n                if ver != \"none\":\r\n                    if tid.endswith(\"00\"):\r\n                        tid = \"{}800\".format(tid[0:13])\r\n                    download_game(tid, ver, tkey, nspRepack=self.repack, path_Dir=self.path)\r\n                else:\r\n                    print(_(\"No updates available for titleID: {}\").format(tid))\r\n                    \r\n            elif option == \"B+U+D\":\r\n                base_tid = \"{}000\".format(tid[0:13])\r\n                base_ver = get_versions(base_tid)[-1]\r\n                download_game(base_tid, base_ver, tkey, nspRepack=self.repack, path_Dir=self.path)\r\n                if ver != 'none':\r\n                    updateTid = \"{}800\".format(tid[0:13])\r\n                    download_game(updateTid, ver, tkey, nspRepack=self.repack, path_Dir=self.path)\r\n                DLC_titleID = []\r\n                tid = \"{}\".format(tid[0:12])\r\n                indices = [i for i, s in enumerate(self.titleID) if tid in s]\r\n                for index in indices:\r\n                    if not self.titleID[index].endswith(\"00\"):\r\n                        DLC_titleID.append(self.titleID[index])\r\n                for DLC_ID in DLC_titleID:\r\n                    DLC_ver = get_versions(DLC_ID)[-1]\r\n                    download_game(DLC_ID, DLC_ver, self.titleKey[self.titleID.index(DLC_ID)], nspRepack=self.repack, path_Dir=self.path)\r\n\r\n            elif option == \"U+D\":\r\n                if ver != \"none\":\r\n                    updateTid = \"{}800\".format(tid[0:13])\r\n                    download_game(updateTid, ver, tkey, nspRepack=self.repack, path_Dir=self.path)\r\n                DLC_titleID = []\r\n                tid = \"{}\".format(tid[0:12])\r\n                indices = [i for i, s in enumerate(self.titleID) if tid in s]\r\n                for index in indices:\r\n                    if not self.titleID[index].endswith(\"00\"):\r\n                        DLC_titleID.append(self.titleID[index])\r\n                for DLC_ID in DLC_titleID:\r\n                    DLC_ver = get_versions(DLC_ID)[-1]\r\n                    download_game(DLC_ID, DLC_ver, self.titleKey[self.titleID.index(DLC_ID)], nspRepack=self.repack, path_Dir=self.path)\r\n\r\n\r\n            elif option == \"D\":\r\n                DLC_titleID = []\r\n                tid = \"{}\".format(tid[0:12])\r\n                indices = [i for i, s in enumerate(self.titleID) if tid in s]\r\n                for index in indices:\r\n                    if not self.titleID[index].endswith(\"00\"):\r\n                        DLC_titleID.append(self.titleID[index])\r\n                for DLC_ID in DLC_titleID:\r\n                    DLC_ver = get_versions(DLC_ID)[-1]\r\n                    download_game(DLC_ID, DLC_ver, self.titleKey[self.titleID.index(DLC_ID)], nspRepack=self.repack, path_Dir=self.path)\r\n\r\n                \r\n            elif option == \"B\":\r\n                base_tid = \"{}000\".format(tid[0:13])\r\n                base_ver = get_versions(base_tid)[-1]\r\n                download_game(base_tid, base_ver, tkey, nspRepack=self.repack, path_Dir=self.path)\r\n                \r\n            elif option == \"B+U\":\r\n                base_tid = \"{}000\".format(tid[0:13])\r\n                base_ver = get_versions(base_tid)[-1]\r\n                download_game(base_tid, base_ver, tkey, nspRepack=self.repack, path_Dir=self.path)\r\n                if ver != 'none':\r\n                    updateTid = \"{}800\".format(tid[0:13])\r\n                    download_game(updateTid, ver, tkey, nspRepack=self.repack, path_Dir=self.path)\r\n                else:\r\n                    print(_(\"No updates available for titleID: {}, base game downloaded!\").format(tid))\r\n\r\n            index = self.get_index_in_queue(item)\r\n            self.remove_item(index, True)\r\n##            except:\r\n##                print(\"Error downloading {}, note: if you're downloading a DLC then different versions of DLC may have different titlekeys\".format(tid))\r\n        self.messages(\"\", _(\"Download finished!\"))\r\n        self.stateLabel[\"text\"] = _(\"Download finished!\")\r\n        # self.remove_all(dump_queue = True)\r\n        if self.auto_shutdown == True:\r\n            self.messages(\"\", _(\"Computer will now auto shutdown\"))\r\n            threading.Timer(2, self.shutdown).start() \r\n        \r\n\r\n    def download_all(self):\r\n        thread = threading.Thread(target = self.threaded_download_all)\r\n        thread.start()\r\n\r\n##    def download_check(self, tid, ver):\r\n##        if ver != \"0\" or ver != \"1\": # Is an update game\r\n##            if any(tid_list in tid for tid_list in self.installed):\r\n##                print(tid, self.installed.index(tid))\r\n##        else:\r\n##            if any(tid_list in tid for tid_list in self.installed):                      \r\n\r\n    def normalize_file_path(self, file_path):\r\n        if self.sys_name == \"Win\":\r\n            return file_path.replace(\"/\", \"\\\\\")\r\n        else:\r\n            return file_path\r\n\r\n    def change_dl_path(self):\r\n        self.path = self.normalize_file_path(filedialog.askdirectory())\r\n\r\n        updateJsonFile(\"Download_location\", self.path)\r\n        print(\"\\nDownload Location:{}\".format(self.path))\r\n\r\n    def change_nsp_path(self):\r\n        global nsp_location\r\n        path = self.normalize_file_path(filedialog.askdirectory())\r\n        nsp_location = path\r\n        \r\n        updateJsonFile(\"NSP_location\", path)\r\n        print(\"\\nNSP Location: {}\".format(path))\r\n\r\n    def nsp_repack_option(self):\r\n        if self.repack == True:\r\n            self.optionMenu.entryconfig(4, label= _(\"Enable NSP Repack\"))\r\n            self.repack = False\r\n        elif self.repack == False:\r\n            self.optionMenu.entryconfig(4, label= _(\"Disable NSP Repack\"))\r\n            self.repack = True\r\n        updateJsonFile(\"NSP_repack\", str(self.repack))\r\n\r\n    def threaded_update_titlekeys(self):\r\n        # Set default values for CDNSP mode\r\n        titlekey_file_name = \"titlekeys.txt\"\r\n        titlekey_url = self.db_URL\r\n        new_text_name = \"new.txt\"\r\n\r\n        # Change the values if on Nut mode\r\n        if self.current_mode == \"Nut\":\r\n            titlekey_file_name = \"Nut_titlekeys.txt\"\r\n            titlekey_url = \"{}\".format(base64.b64decode(\"aHR0cDovL3NuaXAubGkvbnV0ZGI=\").decode(\"ascii\"))\r\n            new_text_name = \"Nut_new.txt\"\r\n        \r\n        self.status_label.config(text=_(\"Status: Updating titlekeys\"))\r\n        print(titlekey_url)\r\n\r\n##        try:\r\n        r = requests.get(titlekey_url, allow_redirects=True)\r\n\r\n        if \"snip\" in titlekey_url:\r\n            try:\r\n                result = re.search(r\"<a href=\\\"(.*?)\\\">Proceed\", r.text)\r\n                if result:\r\n                    titlekey_url = result.group(1)\r\n                    r = requests.get(titlekey_url, allow_redirects=True, verify=True)\r\n            except:\r\n                pass\r\n            \r\n        if str(r.status_code) == \"200\":\r\n            r.encoding = \"utf-8\"\r\n            newdb = r.text.replace(\"\\r\", \"\").split('\\n')\r\n            if newdb[-1] == \"\":\r\n                newdb = newdb[:-1]\r\n            if os.path.isfile(titlekey_file_name):\r\n                with open(titlekey_file_name, encoding=\"utf8\") as f:\r\n                    currdb = f.read().split('\\n')\r\n                    if currdb[-1] == \"\":\r\n                        currdb = currdb[:-1]\r\n                    currdb = [x.strip() for x in currdb]\r\n                    counter = 0\r\n                    info = ''\r\n                    new_tid = []\r\n\r\n                    if self.current_mode == \"Nut\":\r\n                        found_line = False\r\n                        # Find the header info\r\n                        for line in newdb:\r\n                            if line[0] != \"#\" and line[:2] == \"id\" and current_mode_global == \"Nut\":\r\n                                line = line.strip()\r\n                                found_line = True\r\n                                header_list = line.split(\"|\")\r\n                                index_tid = find_index(header_list, \"id\")\r\n                                index_title = find_index(header_list, \"name\")\r\n                                break\r\n                    \r\n\r\n                        if not found_line:\r\n                            print(\"\\n\"+\"Error: Header is not found in the Nut_titlekeys.txt file, please double check you have the header\")\r\n                            sys.exit()\r\n            \r\n                    for line in newdb:\r\n                        if line[0:2] == \"01\":\r\n                            if line.strip() not in currdb:\r\n                                if line.strip() != newdb[0].strip():\r\n                                    new_tid.append(line.strip().split('|')[0])\r\n                                    if current_mode_global == \"Nut\":\r\n                                        _name = line.strip().split('|')[index_title] + '\\n'\r\n                                        if _name not in info:\r\n                                            info += _name\r\n                                        else:\r\n                                            continue\r\n                                    else:\r\n                                        info += (line.strip()).rsplit('|',1)[1] + '\\n'\r\n                                    counter += 1\r\n                    if len(new_tid) != 0:\r\n                        file_path = open(r\"Config/{}\".format(new_text_name), \"w\")\r\n                        text = \"\"\r\n                        for new in new_tid:\r\n                            text += \"{}\\n\".format(new[:16])\r\n                        file_path.write(text)\r\n                        file_path.close()\r\n                    if counter:\r\n                        update_win = Toplevel(self.root) #https://stackoverflow.com/questions/13832720/how-to-attach-a-scrollbar-to-a-text-widget\r\n                        self.update_window = update_win\r\n                        global update_win_size\r\n                        update_win.title(_(\"Finished update!\"))\r\n                        if update_win_size != \"\":\r\n                            update_win.geometry(update_win_size)\r\n                        else:\r\n                            update_win.geometry(\"600x400+120+200\")\r\n                        # create a Frame for the Text and Scrollbar\r\n                        txt_frm = Frame(update_win, width=600, height=400)\r\n                        txt_frm.pack(fill=\"both\", expand=True)\r\n                        # ensure a consistent GUI size\r\n                        txt_frm.grid_propagate(False)\r\n                        # implement stretchability\r\n                        txt_frm.grid_rowconfigure(0, weight=1)\r\n                        txt_frm.grid_columnconfigure(0, weight=3)\r\n\r\n                        # create a Text widget\r\n                        txt = Text(txt_frm, borderwidth=3, relief=\"sunken\")\r\n                        txt.config(font=(\"Open Sans\", 12), undo=True, wrap='word')\r\n                        txt.grid(row=0, column=0, sticky=\"nsew\", padx=2, pady=2, columnspan=2)\r\n                        txt.insert(\"1.0\", info)\r\n\r\n                        # create a Scrollbar and associate it with txt\r\n                        scrollb = Scrollbar(txt_frm, command=txt.yview, width=20)\r\n                        scrollb.grid(row=0, column=3, sticky='nsew')\r\n                        txt['yscrollcommand'] = scrollb.set\r\n\r\n\r\n                        # info on total games added and an exit button\r\n                        Label(txt_frm, text=_(\"Total of new games added: {}\").format(counter)).grid(row=1, column=0)\r\n                        Button(txt_frm, text=_(\"Close\"), height=2, command=lambda: update_win.destroy()).grid(row=1, column=1)\r\n    ##                    Label(txt_frm, text=\"   \").grid(row=1, column=3)\r\n                        \r\n##                        try:\r\n                        # print('\\nSaving new database...')\r\n                        f = open(titlekey_file_name,'w',encoding=\"utf-8\")\r\n                        for line in newdb:\r\n                            if line[-1] != \"\\n\":\r\n                                line += \"\\n\"\r\n                            f.write(str(line))\r\n                        f.close()\r\n                        self.current_status = []\r\n                        self.update_list(rebuild=True, label=build_text)\r\n                    else:\r\n                        self.status_label.config(text=_('Status: Finished update, There were no new games to update!'))\r\n                        print(_('\\nStatus: Finished update, There were no new games to update!'))\r\n                        self.root.config(cursor=\"\")\r\n                        try:\r\n                            self.imageLabel.config(cursor=\"hand2\")\r\n                        except:\r\n                            pass\r\n                        self.done_status()\r\n            else:\r\n                try:\r\n                    # print('\\nSaving new database...')\r\n                    f = open(titlekey_file_name,'w',encoding=\"utf-8\")\r\n                    self.title = []\r\n                    self.titleID = []\r\n                    self.titleKey = []\r\n                    for line in newdb:\r\n                        if line.strip():\r\n                            self.title.append(line.strip().split(\"|\")[2])\r\n                            self.titleID.append(line.strip().split(\"|\")[0][:16])\r\n                            self.titleKey.append(line.strip().split(\"|\")[1])\r\n                            f.write(line.strip() + '\\n')\r\n                    f.close()\r\n                    self.current_status = []\r\n                    self.update_list(rebuild=True, label=_('Status: Finished update, Database rebuilt from scratch'))\r\n                except Exception as e:\r\n                    print(e)\r\n        else:\r\n            self.messages(_(\"Error\"), _(\"The database server {} might be down or unavailable\").format(titlekey_url))\r\n\r\n    def update_titlekeys(self):\r\n        self.root.config(cursor=\"watch\")\r\n        self.imageLabel.config(cursor=\"watch\")\r\n        thread = threading.Thread(target = self.threaded_update_titlekeys)\r\n        thread.start()\r\n\r\n    def mute_all(self):\r\n        if self.mute == False:\r\n            self.optionMenu.entryconfig(3, label= _(\"Unmute All Pop-ups\"))\r\n            self.mute = True\r\n        elif self.mute == True:\r\n            self.optionMenu.entryconfig(3, label= _(\"Mute All Pop-ups\"))\r\n            self.mute = False\r\n        updateJsonFile(\"Mute\", str(self.mute))\r\n\r\n    def messages(self, title, text):\r\n        if self.mute != True:\r\n            messagebox.showinfo(title, text)\r\n        else:\r\n            print(_(\"\\n{}\\n\").format(text))\r\n\r\n    def titlekey_check_option(self):\r\n        global titlekey_check\r\n        if self.titlekey_check == True:\r\n            self.titlekey_check = False\r\n            titlekey_check = self.titlekey_check\r\n            self.optionMenu.entryconfig(5, label= _(\"Enable Titlekey Check\")) # Automatically disable repacking as well\r\n            self.repack = False\r\n            self.optionMenu.entryconfig(4, label= _(\"Enable NSP Repack\"))\r\n        elif self.titlekey_check == False:\r\n            self.titlekey_check = True\r\n            titlekey_check = self.titlekey_check\r\n            self.optionMenu.entryconfig(5, label= _(\"Disable Titlekey Check\"))\r\n            self.repack = True\r\n            self.optionMenu.entryconfig(4, label= _(\"Disable NSP Repack\"))\r\n        updateJsonFile(\"Titlekey_check\", str(self.titlekey_check))\r\n        \r\n    def disable_aria2c(self):\r\n        pass\r\n\r\n    def disable_game_image(self):\r\n        if self.game_image_disable == False:\r\n            self.game_image_disable = True\r\n            self.optionMenu.entryconfig(1, label= _(\"ENABLE GAME IMAGE\"))\r\n        elif self.game_image_disable == True:\r\n            self.game_image_disable = False\r\n            self.optionMenu.entryconfig(1, label= _(\"DISABLE GAME IMAGE\"))\r\n        updateJsonFile(\"Disable_game_image\", str(self.game_image_disable))\r\n\r\n    def disable_game_description(self):\r\n        if self.game_desc_disable == False:\r\n            self.game_desc_disable = True\r\n            self.optionMenu.entryconfig(0, label= _(\"ENABLE GAME DESCRIPTION\"))\r\n        elif self.game_desc_disable == True:\r\n            self.game_desc_disable = False\r\n            self.optionMenu.entryconfig(0, label= _(\"DISABLE GAME DESCRIPTION\"))\r\n        updateJsonFile(\"Disable_description\", str(self.game_desc_disable))\r\n\r\n    def threaded_preload_images(self):\r\n##        try:\r\n        start = time.time()\r\n        for k in self.titleID:\r\n            if k != \"\":\r\n                tid = k\r\n                isDLC = False\r\n                if not tid.endswith(\"00\"):\r\n                    isDLC = True\r\n                    tid = \"{}\".format(tid[0:12])\r\n                    indices = [i for i, s in enumerate(self.titleID) if tid in s]\r\n                    if len(indices) >= 2:\r\n                        for t in indices:\r\n                            if self.titleID[t].endswith(\"000\"):\r\n                                tid = self.titleID[t]\r\n                                break\r\n                        if tid.endswith(\"000\"):\r\n                            isDLC = False\r\n                print(_(\"Currently downloading the image for TID: {}\").format(tid))\r\n                if edgeToken == None:\r\n                    image_name = \"{}.jpg\".format(tid.lower())\r\n\r\n                    if not os.path.isfile(\"Images/{}\".format(image_name)):\r\n                        print(\"don't have\")\r\n                        url = \"https://terannet.sirv.com/CDNSP/{}\".format(image_name)\r\n                        r = requests.get(url)\r\n\r\n                        if r.status_code != 200:\r\n                            isDLC = True\r\n                        else:\r\n                            file_name = os.path.join(\"Images\", image_name)\r\n                            urllib.request.urlretrieve(url, file_name)\r\n                else:\r\n                    if not self.game_image_disable and not isDLC:\r\n                        if not os.path.isfile(\"Images/{}.jpg\".format(tid)):\r\n                            base_ver = get_versions(tid)[-1]\r\n                            result = game_image(tid, base_ver, self.titleKey[self.titleID.index(tid)])\r\n                            if result[1] != \"Error\":\r\n                                if result[1] != \"Exist\":\r\n                                    if self.sys_name == \"Win\":\r\n                                        subprocess.check_output(\"{0} -k keys.txt {1}\\\\control.nca --section0dir={1}\\\\section0\".format(hactoolPath, result[0].replace(\"/\", \"\\\\\")), shell=True)\r\n                                    else:\r\n                                        subprocess.check_output(\"{0} -k keys.txt '{1}/control.nca' --section0dir='{1}/section0'\".format(hactoolPath, result[0]), shell=True)\r\n                                    icon_list = [\"icon_AmericanEnglish.dat\", \"icon_BritishEnglish.dat\",\\\r\n                                             \"icon_CanadianFrench.dat\", \"icon_German.dat\", \\\r\n                                             \"icon_Italian.dat\", \"icon_Japanese.dat\", \\\r\n                                             \"icon_LatinAmericanSpanish.dat\", \"icon_Spanish.dat\", \\\r\n                                             \"icon_Korean.dat\", \"icon_TraditionalChinese.dat\"]\r\n                                    file_name = \"\"\r\n                                    dir_content = os.listdir(os.path.dirname(os.path.abspath(__file__))+'/Images/{}/section0/'.format(tid))\r\n                                    for i in icon_list:\r\n                                        if i in dir_content:\r\n                                            file_name = i.split(\".\")[0]\r\n                                            break\r\n                                    os.rename('{}/section0/{}.dat'.format(result[0], file_name), '{}/section0/{}.jpg'.format(result[0], file_name))\r\n                                    shutil.copyfile('{}/section0/{}.jpg'.format(result[0], file_name), 'Images/{}.jpg'.format(tid))\r\n                                    shutil.rmtree(os.path.dirname(os.path.abspath(__file__))+'/Images/{}'.format(tid))\r\n        end = time.time()\r\n        print(_(\"\\nIt took {} seconds for you to get all images!\\n\").format(end - start))\r\n        self.messages(\"\", _(\"Done getting all game images!\"))\r\n##        except:\r\n##            print(\"Error getting game images\")\r\n\r\n    def preload_images(self):\r\n        thread = threading.Thread(target = self.threaded_preload_images)\r\n        thread.start()\r\n    \r\n    def get_update_ver(self):\r\n        if edgeToken == None:\r\n            tid = self.game_titleID.get().lower()\r\n            if tid in known_ver:\r\n                ver = known_ver[tid]\r\n                update_list = []\r\n                if ver == \"none\":\r\n                    update_list.append(\"none\")\r\n                else:\r\n                    ver = int(ver)\r\n                    \r\n                    while ver != 0:\r\n                        update_list.append(str(ver))\r\n                        ver -= 65536\r\n                    \r\n                if not tid.endswith(\"00\"):\r\n                    update_list.append(\"0\")\r\n                update_list = update_list[::-1]\r\n                update_list.insert(0, _(\"Latest\"))\r\n                self.version_select[\"values\"] = update_list\r\n                self.version_select.set(_(\"Latest\"))\r\n            else:\r\n                print(\"Unable to get the latest version for this TID\")\r\n##                update_list.insert(0, _(\"Latest\"))\r\n                self.version_select[\"values\"] = [_(\"Latest\")]\r\n                self.version_select.set(_(\"Latest\"))\r\n            \r\n        else:\r\n            tid = self.game_titleID.get()\r\n            if tid != \"\" and len(tid) == 16:\r\n                value = self.titleID.index(tid)\r\n                print(tid)\r\n                try:\r\n                    isDLC = False\r\n                    tid = self.titleID[value]\r\n                    updateTid = tid\r\n                    if tid.endswith('000'):\r\n                        updateTid = '%s800' % tid[:-3]\r\n                    elif tid.endswith('800'):\r\n                        baseTid = '%s000' % tid[:-3]\r\n                        updateTid = tid\r\n                    elif not tid.endswith('00'):\r\n                        isDLC = True\r\n                    update_list = []\r\n                    for i in get_versions(updateTid):\r\n                        update_list.append(i)\r\n                    if isDLC:\r\n                        if update_list[0] != \"0\":\r\n                            update_list.insert(0, \"0\")\r\n                    if update_list[0] == 'none':\r\n                        update_list[0] = \"0\"\r\n                    print(update_list)\r\n                    update_list.insert(0, _(\"Latest\"))\r\n                    self.version_select[\"values\"] = update_list\r\n                    self.version_select.set(_(\"Latest\"))\r\n                except:\r\n                    print(_(\"Failed to get version\"))\r\n            else:\r\n                print(_(\"No TitleID or TitleID not 16 characters!\"))\r\n\r\n    def get_update_lastestVer(self):\r\n        if edgeToken == None:\r\n            tid = self.game_titleID.get().lower()\r\n            if tid in known_ver:\r\n                ver = known_ver[tid]\r\n                update_list = []\r\n                if ver == \"none\":\r\n                    update_list.append(\"none\")\r\n                else:\r\n                    ver = int(ver)\r\n\r\n                    while ver != 0:\r\n                        update_list.append(str(ver))\r\n                        ver -= 65536\r\n\r\n                if not tid.endswith(\"00\"):\r\n                    update_list.append(\"0\")\r\n                update_list = update_list[::-1]\r\n                update_list.insert(0, _(\"Latest\"))\r\n                self.version_select[\"values\"] = update_list\r\n                self.version_select.set(update_list[-1])\r\n            else:\r\n                print(\"Unable to get the latest version for this TID\")\r\n##                update_list.insert(0, _(\"Latest\"))\r\n                self.version_select[\"values\"] = [_(\"Latest\")]\r\n                self.version_select.set(_(\"Latest\"))\r\n\r\n        else:\r\n            tid = self.game_titleID.get()\r\n            if tid != \"\" and len(tid) == 16:\r\n                value = self.titleID.index(tid)\r\n                print(tid)\r\n                try:\r\n                    isDLC = False\r\n                    tid = self.titleID[value]\r\n                    updateTid = tid\r\n                    if tid.endswith('000'):\r\n                        updateTid = '%s800' % tid[:-3]\r\n                    elif tid.endswith('800'):\r\n                        baseTid = '%s000' % tid[:-3]\r\n                        updateTid = tid\r\n                    elif not tid.endswith('00'):\r\n                        isDLC = True\r\n                    update_list = []\r\n                    for i in get_versions(updateTid):\r\n                        update_list.append(i)\r\n                    if isDLC:\r\n                        if update_list[0] != \"0\":\r\n                            update_list.insert(0, \"0\")\r\n                    if update_list[0] == 'none':\r\n                        update_list[0] = \"0\"\r\n                    print(update_list)\r\n                    update_list.insert(0, _(\"Latest\"))\r\n                    self.version_select[\"values\"] = update_list\r\n                    self.version_select.set(update_list[-1])\r\n                except:\r\n                    print(_(\"Failed to get version\"))\r\n            else:\r\n                print(_(\"No TitleID or TitleID not 16 characters!\"))\r\n\r\n\r\n    def shorten(self):\r\n        global truncateName\r\n        if truncateName == False:\r\n            truncateName = True\r\n            self.optionMenu.entryconfig(7, label= _(\"Disable Shorten Name\"))\r\n        elif truncateName == True:\r\n            truncateName = False\r\n            self.optionMenu.entryconfig(7, label= _(\"Enable Shorten Name\"))\r\n        updateJsonFile(\"Shorten\", str(truncateName))\r\n            \r\n    def tinfoil_change(self):\r\n        global tinfoil\r\n        if tinfoil == False:\r\n            tinfoil = True\r\n            self.optionMenu.entryconfig(8, label= _(\"Disable Tinfoil Download\"))\r\n        elif tinfoil == True:\r\n            tinfoil = False\r\n            self.optionMenu.entryconfig(8, label= _(\"Enable Tinfoil Download\"))\r\n        updateJsonFile(\"Tinfoil\", str(tinfoil))\r\n\r\n    def window_info(self, window):\r\n        x = window.winfo_x()\r\n        y = window.winfo_y()\r\n        w = window.winfo_width()\r\n        h = window.winfo_height()\r\n\r\n        size_pos = \"{}x{}+{}+{}\".format(w, h, x, y)\r\n        return size_pos\r\n\r\n    def window_save(self):\r\n        if Toplevel.winfo_exists(self.root):\r\n            updateJsonFile(\"Main_win\", self.window_info(self.root))\r\n        try:\r\n            if Toplevel.winfo_exists(self.queue_win):\r\n                updateJsonFile(\"Queue_win\", self.window_info(self.queue_win))\r\n                global queue_win\r\n                queue_win = self.window_info(self.queue_win)\r\n        except:\r\n            pass\r\n        try:\r\n            if Toplevel.winfo_exists(self.update_window):\r\n                updateJsonFile(\"Update_win\", self.window_info(self.update_window))\r\n                global update_win\r\n                update_win = self.window_info(self.update_window)\r\n        except:\r\n            pass\r\n        try:\r\n            if Toplevel.winfo_exists(self.my_game):\r\n                updateJsonFile(\"Scan_win\", self.window_info(self.my_game))\r\n                global scan_win\r\n                scan_win = self.window_info(self.my_game)\r\n        except:\r\n            pass\r\n        try:\r\n            if Toplevel.winfo_exists(self.base_64):\r\n                updateJsonFile(\"Base64_win\", self.window_info(self.base_64))\r\n                global base64_win\r\n                base64_win = self.window_info(self.base_64)\r\n        except:\r\n            pass\r\n        self.messages(\"\", _(\"Windows size and position saved!\"))\r\n\r\n    def my_game_GUI(self):\r\n        global scan_win\r\n        my_game = Toplevel(self.root)\r\n        self.my_game = my_game\r\n        my_game.title(_(\"Search for existing games\"))\r\n        my_game.geometry(scan_win)\r\n        entry_w = 50\r\n        if sys_name == \"Mac\":\r\n            entry_w = 32\r\n        dir_text = \"\"\r\n        dir_entry = Entry(my_game, width=entry_w, text=dir_text)\r\n        if self.game_location != \"\":\r\n            dir_entry.delete(0, END)\r\n            dir_entry.insert(0, self.game_location)\r\n        self.dir_entry = dir_entry\r\n        dir_entry.grid(row=0, column=0, padx=(10,0), pady=10)\r\n        browse_btn = Button(my_game, text=_(\"Browse\"), command=self.my_game_directory)\r\n        browse_btn.grid(row=0, column=1, padx=10, pady=10)\r\n        scan_btn = Button(my_game, text=_(\"Scan\"), command=self.my_game_scan)\r\n        scan_btn.grid(row=1, column=0, columnspan=2, sticky=N, padx=10)\r\n\r\n    def my_game_directory(self):\r\n        path = self.normalize_file_path(filedialog.askdirectory())\r\n        if path != \"\":\r\n            self.game_location = path\r\n            updateJsonFile(\"Game_location\", str(self.game_location))\r\n        self.my_game.lift()\r\n        self.my_game.update()\r\n        self.dir_entry.delete(0, END)\r\n        self.dir_entry.insert(0, path)\r\n\r\n    def my_game_scan(self, a_dir=None, silent=False):\r\n        import re\r\n        \r\n        if silent == True:\r\n            a_dir = \"_NSPOUT\"\r\n            \r\n        if a_dir == None:\r\n            a_dir = self.dir_entry.get()\r\n        \r\n        if a_dir == \"\":\r\n            if not silent:\r\n                self.messages(_(\"Error\"), _(\"You didn't choose a directory!\"))\r\n                self.my_game.lift()\r\n        elif not os.path.isdir(a_dir):\r\n            if not silent:\r\n                self.messages(_(\"Error\"), _(\"The chosen directory doesn't exist!\"))\r\n                self.my_game.lift()\r\n        else:\r\n            game_list = []\r\n            \r\n            for root, dirs, files in os.walk(a_dir):\r\n                for basename in files:\r\n                    if basename.endswith(\".nsp\") or basename.endswith(\".xci\"):\r\n                        game_list.append(basename)\r\n            if not os.path.isdir(\"Config\"):\r\n                os.mkdir(\"Config\")\r\n            tid_exist = [] # Tid that's already in the installed.txt\r\n            ver_exist = []\r\n\r\n            if os.path.isfile(r\"Config/installed.txt\"):\r\n                file = open(r\"Config/installed.txt\", \"r\")\r\n                for game in file.readlines():\r\n                    tid_exist.append(\"{}\".format(game.split(\",\")[0].strip().lower()))\r\n                    ver_exist.append(\"{}\".format(game.split(\",\")[1].strip().lower()))\r\n                file.close()\r\n\r\n            file = open(r\"Config/installed.txt\", \"w\")\r\n            for game in game_list:\r\n                title = re.search(r\".*[0][0-9a-zA-Z]{15}.*\", game)\r\n                if title:\r\n                    try:\r\n                        tid_check = re.compile(r\"[0][0-9a-zA-Z]{15}\")\r\n                        tid_result = tid_check.findall(game)[0]\r\n                        tid_result = tid_result.lower()\r\n                        if tid_result.endswith(\"800\"):\r\n                            tid_result = \"{}000\".format(tid_result[:13])\r\n                    except:\r\n                        tid_result = \"0\"\r\n                    \r\n                    try:\r\n                        ver_check = re.compile(r\"[v][0-9]+\")\r\n                        ver_result = ver_check.findall(game)[0]\r\n                        ver_result = ver_result.split(\"v\")[1]\r\n                    except:\r\n                        ver_result = \"0\"\r\n                    if tid_result != \"0\":\r\n                        if tid_result in tid_exist: # Check if the tid is already in installed.txt\r\n                            if int(ver_result) > int(ver_exist[tid_exist.index(tid_result)]):\r\n                                ver_exist[tid_exist.index(tid_result)] = ver_result\r\n                        else:\r\n                            tid_exist.append(tid_result.lower())\r\n                            ver_exist.append(ver_result)\r\n\r\n            for i in range(len(tid_exist)):\r\n                file.write(\"{}, {}\\n\".format(tid_exist[i], ver_exist[i]))\r\n\r\n            file.close()\r\n            if not silent:\r\n                self.update_list(rebuild=True, label=build_text)\r\n                self.my_game.destroy()\r\n            \r\n    def base_64_GUI(self):\r\n        global base64_win\r\n        base_64 = Toplevel(self.root)\r\n        self.base_64 = base_64\r\n        base_64.title(_(\"Base64 Decoder\"))\r\n        base_64.geometry(base64_win)\r\n        entry_w = 50\r\n        if sys_name == \"Mac\":\r\n            entry_w = 28\r\n        base_64_label = Label(base_64, text=_(\"Base64 text:\"))\r\n        base_64_label.grid(row=0, column=0)\r\n        base_64_entry = Entry(base_64, width=entry_w)\r\n        self.base_64_entry = base_64_entry\r\n        base_64_entry.grid(row=0, column=1, padx=(10,0), pady=10)\r\n        browse_btn = Button(base_64, text=_(\"Decode\"), command=self.decode_64)\r\n        browse_btn.grid(row=0, column=2, padx=10, pady=10)\r\n\r\n        decoded_label = Label(base_64, text=_(\"Decoded text:\"))\r\n        decoded_label.grid(row=1, column=0)\r\n        decoded_entry = Entry(base_64, width=entry_w)\r\n        self.decoded_entry = decoded_entry\r\n        decoded_entry.grid(row=1, column=1, padx=(10,0), pady=10)\r\n        scan_btn = Button(base_64, text=_(\"Open\"), command=self.base64_open)\r\n        scan_btn.grid(row=1, column=2, sticky=N, padx=10, pady=10)\r\n\r\n    def decode_64(self):\r\n        base64_text = self.base_64_entry.get()\r\n        self.decoded_entry.delete(0, END)\r\n        self.decoded_entry.insert(0, base64.b64decode(base64_text))\r\n\r\n    def base64_open(self):\r\n        url = self.decoded_entry.get()\r\n        webbrowser.open(url, new=0, autoraise=True)\r\n\r\n    def make_list(self):\r\n        # Create list in advance\r\n        self.full_list = self.current_status\r\n        \r\n        if current_mode_global == \"CDNSP\":\r\n            self.no_demo_list = [] # No demo list\r\n            for game in self.full_list:\r\n                if not \"demo\" in game[2].strip().lower() and not \"体験版\" in game[2].strip().lower():\r\n                    self.no_demo_list.append(game)\r\n                    \r\n            self.no_jap_list = []\r\n            for game in self.full_list:\r\n                try:\r\n                    game[2].strip().lower().encode(encoding='utf-8').decode('ascii')\r\n                except UnicodeDecodeError:\r\n                    pass\r\n                else:\r\n                    self.no_jap_list.append(game)\r\n\r\n            self.no_demo_jap_list = []\r\n            for game in self.full_list:\r\n                if not \"demo\" in game[2].strip().lower() and not \"体験版\" in game[2].strip().lower():\r\n                    try:\r\n                        game[2].strip().lower().encode(encoding='utf-8').decode('ascii')\r\n                    except UnicodeDecodeError:\r\n                        pass\r\n                    else:\r\n                        self.no_demo_jap_list.append(game)\r\n                        \r\n        elif current_mode_global == \"Nut\":\r\n            self.no_demo_list = [] # No demo list\r\n            for game in self.full_list:\r\n                try:\r\n                    if self.info_list[int(game[0])-1][0] == \"0\":\r\n                        self.no_demo_list.append(game)\r\n                except IndexError:\r\n                    pass\r\n                    \r\n            self.no_jap_list = []\r\n            for game in self.full_list:\r\n                try:\r\n                    if self.info_list[int(game[0])-1][1] != \"JP\":\r\n                        self.no_jap_list.append(game)\r\n                except IndexError:\r\n                    pass\r\n\r\n            self.no_demo_jap_list = []\r\n            for game in self.full_list:\r\n                try:\r\n                    if self.info_list[int(game[0])-1][0] == \"0\":\r\n                        if self.info_list[int(game[0])-1][1] != \"JP\":\r\n                            self.no_demo_jap_list.append(game)\r\n                except IndexError:\r\n                    pass\r\n        \r\n        \r\n    def filter_game(self):        \r\n        demo_off = self.demo.get()\r\n        no_jap = self.jap.get()\r\n\r\n        if demo_off:\r\n            updateJsonFile(\"No_demo\", \"True\")\r\n        else:\r\n            updateJsonFile(\"No_demo\", \"False\")\r\n\r\n        if no_jap:\r\n            updateJsonFile(\"No_japanese_games\", \"True\")\r\n        else:\r\n            updateJsonFile(\"No_japanese_games\", \"False\")\r\n\r\n        if demo_off and no_jap:\r\n            self.current_status = self.no_demo_jap_list\r\n        elif demo_off:\r\n            self.current_status = self.no_demo_list\r\n        elif no_jap:\r\n            self.current_status = self.no_jap_list\r\n        else:\r\n            self.current_status = self.full_list\r\n            \r\n        try:\r\n            search_term = self.search_var.get()\r\n        except:\r\n            search_term = \"\"\r\n        self.tree.delete(*self.tree.get_children())\r\n        for game_status in self.current_status:\r\n            number = game_status[0].strip()\r\n            tid = game_status[1].strip()\r\n            game_name = game_status[2].strip()\r\n            state = game_status[3].strip()\r\n            release_date = game_status[4].strip()\r\n            \r\n            tree_row = (str(number).zfill(4), tid, game_name, state, release_date)\r\n            if search_term.lower().strip() in game_name.lower() or search_term.lower().strip() in tid.lower():\r\n                self.tree.insert('', 'end', values=tree_row)\r\n                \r\n        # Reset the sorting back to default (descending)\r\n        self.tree.heading(\"num\", text=\"#\", command=lambda c=\"num\": self.sortby(self.tree, c, 1))\r\n        self.tree.heading(\"tid\", text=_(\"TitleID\"), command=lambda c=\"tid\": self.sortby(self.tree, c, 1))\r\n        self.tree.heading(\"G\", text=_(\"Game\"), command=lambda c=\"G\": self.sortby(self.tree, c, 1))\r\n        self.tree.heading(\"S\", text=_(\"State\"), command=lambda c=\"S\": self.sortby(self.tree, c, 1))\r\n                    \r\n    def sysver_zero(self):\r\n        global sysver0\r\n        if sysver0 == False:\r\n            sysver0 = True\r\n            self.optionMenu.entryconfig(9, label= _(\"Disable SysVer 0 Patch\"))\r\n        elif sysver0 == True:\r\n            sysver0 = False\r\n            self.optionMenu.entryconfig(9, label= _(\"Enable SysVer 0 Patch\"))\r\n        updateJsonFile(\"SysVerZero\", str(sysver0))\r\n\r\n##    def threaded_preload_desc(self):\r\n##        self.status_label.config(text=_(\"Status: Downloading all game descriptions\"))\r\n##        \r\n##        global game_info_json\r\n##        for tid in self.titleID:\r\n##            if not tid.endswith(\"00\"):\r\n##                tid = \"{}\".format(tid[0:12])\r\n##                indices = [i for i, s in enumerate(self.titleID) if tid in s]\r\n##                if len(indices) >= 2:\r\n##                    for t in indices:\r\n##                        if self.titleID[t].endswith(\"000\"):\r\n##                            tid = self.titleID[t]\r\n##                            break\r\n##            if tid not in game_info_json:\r\n##                if len(tid) == 16:\r\n##                    print(tid)\r\n##                    self.download_desc(tid, silent=True)\r\n##                \r\n##        print(_(\"Done preloading all game descriptions!\"))\r\n##        thread = threading.Thread(target = lambda: self.done_status())\r\n##        thread.start()\r\n##\r\n##    def preload_desc(self):\r\n##        thread = threading.Thread(target = lambda: self.threaded_preload_desc())\r\n##        thread.start()\r\n\r\n    def credit_gui(self):\r\n        credit_win = Toplevel(self.root)\r\n##        credit_win.geometry(\"600x500+100+100\")\r\n        self.credit_win = credit_win\r\n        credit_win.title(_(\"Credits\"))\r\n\r\n        credit_text = \"\"\"This GUI was originally a project started by Bob, and eventually grew thanks to the overwhelming support from the community!\r\n\r\nWe now support 24 different languages!\r\nI would like to thank the following users for translating:\r\n\r\nGerman: Jojo#1234\r\nPortuguese: KazumaKiryu#7300\r\nChinese Simplified: Dolur#7867\r\nChinese Traditional: Maruku#7128\r\nCZech: -Spider86-#7530\r\nJapanese: Jinoshi(ジノシ)#4416\r\nKorean: RoutineFree#4012\r\nSpanish: pordeciralgo#3603\r\nFrench: cdndave#1833\r\nRussian: JHI_UA#8876\r\nArabic: mk#6387\r\nTurkish: arkham_knight#9797\r\nDutch: Soundwave#2606\r\nItalian: Vinczenon#7788\r\nHebrew: dinoster#0218\r\nPersian: SirArmazd#8283\r\nThai: Pacmasaurus#4158\r\nGreek: ioann1s#3498\r\nIndonesian: Damar#0799\r\nPolish: szczuru#7105\r\nAfrikaans: twitchRSA#5765\r\nVietnamese: gurucuku#4629\r\nHungarian: Quince#2831\r\nMalaysian: fadzly#4390\"\"\"\r\n\r\n        credit = Text(credit_win, wrap=WORD)\r\n        credit.grid(row=0, column=0)\r\n        credit.insert(INSERT, credit_text)\r\n        scrollb = Scrollbar(credit_win, command=credit.yview)\r\n        scrollb.grid(row=0, column=1, sticky='nsew')\r\n        credit['yscrollcommand'] = scrollb.set\r\n\r\n    def threaded_update_ver_list(self):\r\n        self.status_label.config(text=_(\"Status: Updating version list...\"))\r\n        global known_ver\r\n        known_ver = {}\r\n\r\n        if not os.path.isfile(\"Config/Version_info.json\"):\r\n            print(_(\"\\nCan't find {} file!\\n\").format(\"Version_info.json\"))\r\n            print(_(\"Attempting to download the Version_info.json file for you\"))\r\n            urllib.request.urlretrieve(\"https://raw.githubusercontent.com/Bob123a1/CDNSP-GUI-Files/master/Config/Version_info.json\", \"Config/Version_info.json\")\r\n                \r\n        if os.path.isfile(\"Config/Version_info.json\"):\r\n            ver_file = open(\"Config/Version_info.json\", \"r\", encoding=\"utf8\")\r\n            known_ver = json.load(ver_file)\r\n            ver_file.close()\r\n\r\n            installed = []\r\n            file_path = r\"Config/installed.txt\"\r\n            if os.path.exists(file_path):\r\n                file = open(file_path, \"r\")\r\n                for line in file.readlines():\r\n                    if line[-1] == \"\\n\":\r\n                        line = line[:-1]\r\n                    installed.append(line.split(\",\")[0].strip())\r\n                file.close()\r\n            print(\"\\nUpdating version list...\")\r\n            for tid in installed:\r\n                if tid.endswith(\"00\"):\r\n                    updateTid = \"{}800\".format(tid[:13])\r\n                else:\r\n                    updateTid = tid\r\n                latest_ver = str(get_versions(updateTid)[-1])\r\n\r\n                print(\"Tid: {}, latest version: {}\".format(updateTid, latest_ver))\r\n                known_ver[tid] = latest_ver\r\n                \r\n            ver_file = open(\"Config/Version_info.json\", \"w\", encoding=\"utf8\")\r\n            json.dump(known_ver, ver_file, indent=4)\r\n            ver_file.close()\r\n        else:\r\n            print(_(\"Unable to find Version_info.json file inside your Config folder\"))\r\n        self.update_list(rebuild=True)\r\n        \r\n    def update_ver_list(self):\r\n        thread = threading.Thread(target=self.threaded_update_ver_list)\r\n        thread.start()\r\n\r\n    def change_mode(self):\r\n        if self.current_mode == \"CDNSP\":\r\n            self.current_mode = \"Nut\"\r\n            self.list_mode.config(text=_(\"CDNSP Mode\").replace(\"\\n\", \"\"))\r\n        elif self.current_mode == \"Nut\":\r\n            self.current_mode = \"CDNSP\"\r\n            self.list_mode.config(text=_(\"Nut Mode\").replace(\"\\n\", \"\"))\r\n        updateJsonFile(\"Mode\", self.current_mode)        \r\n        self.current_mode_text.config(text=_(\"Current mode is: {}\").format(self.current_mode))\r\n        self.root.destroy()\r\n        main()\r\n\r\n    # Thanks vertigo for your kindness to help me with the unlocking part of the GUI \r\n    def unlock_nsx_gui_func(self):\r\n        unlock_nsx_gui = Toplevel(self.root)\r\n        self.unlock_nsx_gui = unlock_nsx_gui\r\n        unlock_nsx_gui.title(_(\"Unlock NSX Files\"))\r\n        entry_w = 50\r\n        if sys_name == \"Mac\":\r\n            entry_w = 32\r\n        dir_text = \"\"\r\n\r\n        # Input (Entry) Bar\r\n        Label(unlock_nsx_gui, text=_(\"Select the folder that contains your NSX Files\\n and the program will unlock the NSX files that\\n we have the titlekeys for.\")).grid(row=0, column=0, padx=(10,0), pady=10, columnspan=2) \r\n        dir_entry = Entry(unlock_nsx_gui, width=entry_w, text=dir_text)\r\n        self.dir_entry_nsx = dir_entry\r\n        dir_entry.grid(row=1, column=0, padx=(10,0), pady=10)\r\n        browse_btn = Button(unlock_nsx_gui, text=_(\"Browse\"), command=self.unlock_nsx)\r\n        browse_btn.grid(row=1, column=1, padx=10, pady=10)\r\n        scan_btn = Button(unlock_nsx_gui, text=_(\"Unlock NSX\"), command=self.unlock_nsx_scan)\r\n        scan_btn.grid(row=2, column=0, columnspan=2, sticky=N, padx=10, pady=(0, 20))\r\n\r\n    def unlock_nsx(self):\r\n        path = self.normalize_file_path(filedialog.askdirectory())\r\n        self.unlock_nsx_gui.lift()\r\n        self.unlock_nsx_gui.update()\r\n        self.dir_entry_nsx.delete(0, END)\r\n        self.dir_entry_nsx.insert(0, path)\r\n\r\n    def unlock_nsx_scan(self):\r\n        import re\r\n\r\n        a_dir = self.dir_entry_nsx.get()\r\n\r\n        if a_dir == \"\":\r\n            self.messages(_(\"Error\"), _(\"You didn't choose a directory!\"))\r\n            self.unlock_nsx_gui.lift()\r\n        elif not os.path.isdir(a_dir):\r\n            self.messages(_(\"Error\"), _(\"The chosen directory doesn't exist!\"))\r\n            self.unlock_nsx_gui.lift()\r\n        else:\r\n            game_list = []\r\n            \r\n            for root, dirs, files in os.walk(a_dir):\r\n                for basename in files:\r\n                    if basename.lower().endswith(\".nsx\"):\r\n                        game_list.append(os.path.join(root, basename))\r\n                print(\"\\n\\n\")\r\n\r\n            \r\n            if len(game_list) != 0:\r\n                # Temporary load the titlekeys.txt file to check if \r\n                # we have the titlekey for the corresponding titleID\r\n\r\n                temp_tid = []\r\n                temp_tkey = []\r\n                notified = False\r\n                with open(\"titlekeys.txt\", \"r\", encoding=\"utf-8\") as file:\r\n                    for line in file.readlines():\r\n                        line = line.strip()\r\n                        try:\r\n                            titleID, titleKey, title = line.split(\"|\")\r\n                        except:\r\n                            if not notified:\r\n                                print(_(\"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"))\r\n                                notified = True\r\n                        if len(titleID) == 16 or len(titleID) == 32:\r\n                            if titleID != \"\":\r\n                                temp_tid.append(titleID[:16].lower())\r\n                                temp_tkey.append(titleKey)\r\n                unlocked_a_game = False # Check if a game has been unlocked\r\n                for game in game_list:\r\n                    game_basename = os.path.basename(game)\r\n                    tid_result, ver_result = self.get_tid_get_ver(game_basename, \".nsx\")\r\n                    if tid_result != \"0\":\r\n                        print()\r\n                        print(_(\"Attempting to unlock: {}\").format(game_basename))\r\n                        if tid_result in temp_tid:\r\n                            print(_(\"Found the titlekey for {}, unlocking the game now\").format(game_basename))\r\n                            tkey_block = self.find_tkey_block(game)\r\n                            if tkey_block != 0:\r\n                                self.write_tkey_block(game, tkey_block, temp_tkey[temp_tid.index(tid_result)])\r\n                                print(_(\"Successfully unlocked {}\").format(game_basename))\r\n                                unlocked_a_game = True\r\n                            else:\r\n                                print(_(\"Unable to find the titlekey block\"))\r\n                        else:\r\n                            print(_(\"Unable to find the titlekey for {}\").format(game_basename))\r\n                if unlocked_a_game:\r\n                    self.messages(\"\", _(\"Done unlocking nsx files\"))\r\n                else:\r\n                    self.messages(\"\", _(\"Couldn't find nsx files that needs to be unlocked\"))\r\n            else:\r\n                self.messages(\"\", _(\"Couldn't find nsx files that needs to be unlocked\"))\r\n            self.unlock_nsx_gui.destroy()\r\n\r\n    def get_tid_get_ver(self, game, extension='.nsp'):\r\n        r_expression = r\".*[0][0-9a-zA-Z]{15}.*[\" + extension +\"]\"\r\n        title = re.search(r_expression, game)\r\n        if title:\r\n            try:\r\n                tid_check = re.compile(r\"[0][0-9a-zA-Z]{15}\")\r\n                tid_result = tid_check.findall(game)[0]\r\n                tid_result = tid_result.lower()\r\n                if tid_result.endswith(\"800\"):\r\n                    tid_result = \"{}000\".format(tid_result[:13])\r\n            except:\r\n                tid_result = \"0\"\r\n            \r\n            try:\r\n                ver_check = re.compile(r\"[v][0-9]+\")\r\n                ver_result = ver_check.findall(game)[0]\r\n                ver_result = ver_result.split(\"v\")[1]\r\n            except:\r\n                ver_result = \"0\"\r\n            return (tid_result, ver_result)\r\n        return (\"0\", \"0\")\r\n\r\n    def find_tkey_block(self, file):\r\n        f = open(file, \"rb\")\r\n\r\n        tkey_index = 0\r\n        # Find titlekey block location\r\n        for chunk in iter(lambda: f.read(16), \"\"):\r\n            start = time.time()\r\n            if chunk == b'Root-CA00000003-':\r\n                root_index = f.tell()-16 # Index of Root-CA00000003-\r\n                tkey_index = root_index + 4*16 # Index of tkey block \r\n                break\r\n        ##D1D20486 21CDF338 37F1797E 217CD3B7\r\n        f.close()\r\n        return tkey_index\r\n\r\n    def write_tkey_block(self, file, tkey_block, title_key):\r\n        f = open(file, \"r+b\")\r\n        f.seek(tkey_block)\r\n        f.write(uhx(title_key))\r\n        f.close()\r\n        os.rename(file, file[:-3]+\"nsp\")\r\n\r\n    def shutdown_set(self):\r\n        if self.auto_shutdown == False:\r\n            self.auto_shutdown = True\r\n            self.toolMenu.entryconfig(5, label= _(\"Auto Shutdown: ON\"))\r\n        elif self.auto_shutdown == True:\r\n            self.auto_shutdown = False\r\n            self.toolMenu.entryconfig(5, label= _(\"Auto Shutdown: OFF\"))\r\n        \r\n    def shutdown(self):\r\n        if platform.system()==\"Windows\":\r\n            os.system(\"shutdown -s -t 0\")\r\n     \r\n        else:\r\n            os.system(\"shutdown -h now\")\r\n\r\n    def threaded_download_all_games(self):\r\n        self.messages(\"\", _(\"Downloading all games\"))\r\n        for game in self.current_status:\r\n            tid = game[1]\r\n            self.download_option_B_U_D(tid)\r\n            print(\"\\n\" + _(\"Finished downloading\") + \" \" + tid)\r\n            \r\n    def download_all_games(self):\r\n        thread = threading.Thread(target=self.threaded_download_all_games)\r\n        thread.start()\r\n\r\n    def download_option_B_U_D(self, tid):\r\n        print(_(\"Downloading\") + \" \" + tid)\r\n\r\n        # Download Base Game\r\n        base_tid = \"{}000\".format(tid[0:13])\r\n        tkey = self.titleKey[self.titleID.index(tid)]\r\n        base_ver = get_versions(base_tid)[-1]\r\n        download_game(base_tid, base_ver, tkey, nspRepack=self.repack, path_Dir=self.path)\r\n\r\n        # Download Update\r\n        updateTid = \"{}800\".format(tid[0:13])\r\n        ver = get_versions(updateTid)[-1]\r\n        if ver == \"none\":\r\n            ver = 0\r\n        if int(ver) > 0:\r\n            download_game(updateTid, ver, tkey, nspRepack=self.repack, path_Dir=self.path)\r\n\r\n##        # Download DLC\r\n##        DLC_titleID = []\r\n##        tid = \"{}\".format(tid[0:12])\r\n##        indices = [i for i, s in enumerate(self.titleID) if tid in s]\r\n##        for index in indices:\r\n##            if not self.titleID[index].endswith(\"00\"):\r\n##                DLC_titleID.append(self.titleID[index])\r\n##        for DLC_ID in DLC_titleID:\r\n##            DLC_ver = get_versions(DLC_ID)[-1]\r\n##            download_game(DLC_ID, DLC_ver, self.titleKey[self.titleID.index(DLC_ID)], nspRepack=self.repack, path_Dir=self.path)\r\n\r\n    def check_update(self):\r\n        output_text = \"\"\r\n        update = \"\"\r\n        if not os.path.isfile(\"Config/version.txt\"):\r\n            file = open(\"Config/version.txt\", \"w\")\r\n            file.write(\"{}\\n{}\".format(__gui_version__, __lang_version__))\r\n            file.close()\r\n\r\n        file = open(\"Config/version.txt\", \"r\")\r\n        ver_list = file.readlines()\r\n        file.close()\r\n        \r\n        if len(ver_list) != 2:\r\n            file = open(\"Config/version.txt\", \"w\")\r\n            file.write(\"{}\\n{}\".format(__gui_version__, __lang_version__))\r\n            file.close()\r\n            \r\n            file = open(\"Config/version.txt\", \"r\")\r\n            ver_list = file.readlines()\r\n            file.close()\r\n            \r\n        \r\n        gui_ver, lang_ver = ver_list\r\n        gui_ver = __gui_version__\r\n        \r\n        gui_ver = gui_ver.strip()\r\n        lang_ver = lang_ver.strip()\r\n        \r\n        print(\"\\n\"+_(\"GUI Version: {}\").format(__gui_version__))\r\n        print(_(\"Language Files Version: {}\").format(lang_ver))\r\n        \r\n        self.gui_ver = __gui_version__\r\n        self.lang_ver = lang_ver\r\n                \r\n        new_cdnsp_ver = requests.get(\"https://\\\r\n        raw.githubusercontent.com/Bob123a1/\\\r\n        CDNSP-GUI-Files/master/gui_version.txt\".replace(\" \", \"\")).text.replace(\"\\n\", \"\")\r\n\r\n        new_lang_ver = requests.get(\"https://\\\r\n        raw.githubusercontent.com/Bob123a1/\\\r\n        CDNSP-GUI-Files/master/language_version.txt\".replace(\" \", \"\")).text.replace(\"\\n\", \"\")\r\n        \r\n        self.new_cdnsp_ver = new_cdnsp_ver\r\n        self.new_lang_ver = new_lang_ver\r\n        \r\n        if StrV(new_cdnsp_ver) > StrV(gui_ver):\r\n            output_text += \"New GUI verison available\"\r\n            update = \"G\" # Indicates that the GUI has an update\r\n\r\n        if StrV(new_lang_ver) > StrV(lang_ver):\r\n            if output_text == \"\":\r\n                output_text += \"New language files available\"\r\n                update = \"L\"\r\n            else:\r\n                output_text = \"New GUI version and language files available\"\r\n                update = \"GL\"\r\n\r\n        if output_text == \"\":\r\n            output_text = \"No new updates\"\r\n        return update\r\n\r\n    def download_update(self):\r\n        gui_file, lang_file = requests.get(\"https://\\\r\n        raw.githubusercontent.com/Bob123a1/\\\r\n        CDNSP-GUI-Files/master/download_location.txt\".replace(\" \", \"\")).text.strip().split(\"\\n\")\r\n\r\n        update_result = self.update_result\r\n\r\n        updated = True\r\n        \r\n        if update_result == \"GL\":\r\n            urllib.request.urlretrieve(gui_file, gui_file.split(\"/\")[-1])\r\n            urllib.request.urlretrieve(lang_file, \"lang.zip\")\r\n            self.messages(\"\", _(\"New GUI version and Language Files downloaded!\" + \"\\n\" + _(\"Please restart your GUI\")))\r\n            text = \"{}\\n{}\".format(self.new_cdnsp_ver, self.new_lang_ver)\r\n        elif update_result == \"G\":\r\n            urllib.request.urlretrieve(gui_file, gui_file.split(\"/\")[-1])\r\n            self.messages(\"\", _(\"New GUI version downloaded!\" + \"\\n\" + \"\\n\" + _(\"Please restart your GUI\")))\r\n            text = \"{}\\n{}\".format(self.new_cdnsp_ver, self.lang_ver)\r\n        elif update_result == \"L\":\r\n            urllib.request.urlretrieve(lang_file, \"lang.zip\")\r\n            self.messages(\"\", _(\"New Language Files downloaded!\" + \"\\n\" + _(\"Please restart your GUI\")))\r\n            text = \"{}\\n{}\".format(__gui_version__, self.new_lang_ver)\r\n        else:\r\n            updated = False\r\n\r\n        if \"L\" in update_result:\r\n            if os.path.isfile(\"lang.zip\"):\r\n                import zipfile\r\n\r\n                zip_file = zipfile.ZipFile(\"lang.zip\", \"r\")\r\n                zip_file.extractall()\r\n                zip_file.close()\r\n            else:\r\n                print(_(\"Couldn't find the download lang.zip file in your GUI folder\"))\r\n\r\n        if updated:\r\n            file = open(\"Config/version.txt\", \"w\")\r\n            file.write(text)\r\n            file.close()\r\n            self.status_label.config(text=_(\"Status: Done!\"))\r\n        else:\r\n            self.messages(\"\", _(\"No new update available\"))\r\n\r\n        \r\n# ------------------------\r\n# Main Section\r\n\r\ndef find_index(header_list, text):\r\n    if text in header_list:\r\n        return header_list.index(text)\r\n    else:\r\n        print(\"Couldn't match the header text: {} in the header provided\".format(text))\r\n        sys.exit()\r\n\r\ndef read_installed():\r\n    if os.path.isfile(\"Config/installed.txt\"):\r\n        global installed_global\r\n        installed_global = {}\r\n        with open(\"Config/installed.txt\", \"r\", encoding=\"utf-8\") as file:\r\n            for line in file.readlines():\r\n                tid = line.split(\",\")[0].strip()\r\n                ver = line.split(\",\")[1].strip()\r\n                if tid not in installed_global:\r\n                    installed_global[tid] = ver\r\n                else:\r\n                    if ver > installed_global[tid]:\r\n                        installed_global[tid] = ver\r\n\r\ndef read_titlekey_list():\r\n    titleID_list = []\r\n    titleKey_list = []\r\n    title_list = []\r\n    info_list = []\r\n    # Read titlekeys.txt file\r\n    if current_mode_global == \"CDNSP\":\r\n        f = open(\"titlekeys.txt\", \"r\", encoding=\"utf8\")\r\n        content = f.readlines()\r\n        notified = False\r\n        for i in range(len(content)):\r\n            titleID = \"\"\r\n            try:\r\n                titleID, titleKey, title = content[i].split(\"|\")\r\n            except:\r\n                if not notified:\r\n                    print(_(\"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"))\r\n                    notified = True\r\n            if len(titleID) == 16 or len(titleID) == 32:\r\n                if titleID != \"\":\r\n                    titleID_list.append(titleID[:16].lower())\r\n                    titleKey_list.append(titleKey)\r\n                    if title[:-1] == \"\\n\":\r\n                        title_list.append(title[:-1])\r\n                    else:\r\n                        title_list.append(title)\r\n        f.close()\r\n    elif current_mode_global == \"Nut\":\r\n        unique_tid_list = []\r\n        info_list = []\r\n        f = open(\"Nut_titlekeys.txt\", \"r\", encoding=\"utf8\")\r\n        content = f.readlines()\r\n\r\n        found_line = False\r\n        # Find the header info\r\n        for line in content:\r\n            if line[0] != \"#\" and line[:2] == \"id\":\r\n                line = line.strip()\r\n                found_line = True\r\n                header_list = line.split(\"|\")\r\n                index_tid = find_index(header_list, \"id\")\r\n                index_key = find_index(header_list, \"key\")\r\n                index_title = find_index(header_list, \"name\")\r\n                index_isDemo = find_index(header_list, \"isDemo\")\r\n                index_region = find_index(header_list, \"region\")\r\n                break\r\n                \r\n\r\n        if not found_line:\r\n            print(\"\\n\"+\"Error: Header is not found in the Nut_titlekeys.txt file, please double check you have the header\")\r\n            sys.exit()\r\n            \r\n        notified = False\r\n        for i in range(len(content)):\r\n            titleID = \"\"\r\n            if content[i][0:2] == \"01\":\r\n                try:\r\n                    content_row = content[i].split(\"|\")\r\n                except:\r\n                    if not notified:\r\n                        print(_(\"Check if there's extra spaces at the bottom of your Nut_titlekeys.txt file! Delete if you do!\"))\r\n                        notified = True\r\n                titleID = content_row[index_tid].lower()\r\n                if len(titleID) == 32:\r\n                    titleID = titleID[:16]\r\n                if len(titleID) == 16 or len(titleID) == 32:\r\n                    if titleID.endswith(\"800\"):\r\n                        titleID = \"{}000\".format(titleID[:13])\r\n                    if titleID not in unique_tid_list:\r\n                        unique_tid_list.append(titleID)\r\n                        if titleID != \"\":\r\n                            titleKey = content_row[index_key]\r\n                            if len(titleKey) == 32:\r\n                                title = content_row[index_title]\r\n                                isDemo = content_row[index_isDemo]\r\n                                if not titleID.endswith(\"00\"):\r\n                                    title = \"[DLC] \" + title\r\n                                if isDemo == \"1\":\r\n                                    title += \" Demo\"\r\n                                titleID_list.append(titleID[:16].lower())\r\n                                titleKey_list.append(titleKey)\r\n                                if title[:-1] == \"\\n\":\r\n                                    title_list.append(title[:-1])\r\n                                else:\r\n                                    title_list.append(title)\r\n                                region = content_row[index_region].strip()\r\n                                info_list.append((isDemo, region))\r\n        f.close()\r\n\r\n    if os.path.isfile(\"titlekeys_overwrite.txt\"):\r\n        t_overwrite = open(\"titlekeys_overwrite.txt\", \"r\", encoding=\"utf8\")\r\n        for line in t_overwrite.readlines():\r\n            line = line.strip()\r\n            if \"#\" not in line and line != \"\":\r\n                if line[-1] == \"\\n\":\r\n                    line = line[:-1]\r\n                item = line.split(\"|\")\r\n                if len(item) == 2:\r\n                    _tid = item[0][:16]\r\n                    _tkey = item[1][:32]\r\n                    _name = \"Unknown Title\"\r\n                elif len(item) == 3:\r\n                    _tid = item[0][:16]\r\n                    _tkey = item[1][:32]\r\n                    _name = item[2]\r\n                \r\n                if len(_tid) == 16:\r\n                    _tid = _tid.lower()\r\n                    if len(_tkey) == 32:\r\n                        if _tid in titleID_list:\r\n                            titleKey_list[titleID_list.index(_tid)] = _tkey\r\n                        else:\r\n\r\n                            titleID_list.append(_tid)\r\n                            titleKey_list.append(_tkey)\r\n                            title_list.append(_name)\r\n    return (titleID_list, titleKey_list, title_list, info_list)\r\n\r\ndef main():\r\n    urllib3.disable_warnings()       \r\n    configPath = os.path.join(os.path.dirname(__file__), 'CDNSPconfig.json')\r\n    global hactoolPath, keysPath, NXclientPath, ShopNPath, reg, fw, did, env, dbURL, nspout\r\n    hactoolPath, keysPath, NXclientPath, ShopNPath, reg, fw, did, env, dbURL, nspout = load_config(configPath)\r\n\r\n    global current_mode_global\r\n    current_mode_global = get_current_mode()\r\n    \r\n    spam_spec = util.find_spec(\"tqdm\")\r\n    found = spam_spec is not None\r\n    global tqdmProgBar\r\n    if found:\r\n        tqdmProgBar = True\r\n    else:\r\n        tqdmProgBar = False\r\n        print('Install the tqdm library for better-looking progress bars! (pip install tqdm)')\r\n    global keysArg\r\n    if keysPath != '':\r\n        keysArg = ' -k \"%s\"' % keysPath\r\n    else:\r\n        keysArg = ''\r\n\r\n    # Create the list of TID, TKEY, and Game name to be passed to the Application class\r\n    global titleID_list\r\n    global titleKey_list\r\n    global title_list\r\n    global info_list\r\n\r\n    titleID_list = []\r\n    titleKey_list = []\r\n    title_list = []\r\n    info_list = []\r\n\r\n    global edgeToken\r\n    \r\n    edgeToken = None\r\n    if os.path.isfile(\"edge_token.txt\"):\r\n        with open(\"edge_token.txt\", encoding=\"utf-8\") as file:\r\n            edgeToken = file.read()\r\n            edgeToken = edgeToken.strip()\r\n            if edgeToken == \"\":\r\n                edgeToken = None\r\n    print(\"\\nToken: \", end=\"\")\r\n    print(edgeToken)\r\n    root = Tk()\r\n    root.title(\"CDNSP GUI - Bobv\"+__gui_version__)\r\n    Application(root, titleID_list, titleKey_list, title_list, dbURL, info_list=info_list)\r\n\r\n    root.mainloop()\r\n\r\nif __name__ == '__main__':\r\n    main()\r\n"
  },
  {
    "path": "LICENSE",
    "content": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>\n Everyone is permitted to copy and distribute verbatim copies\n of this license document, but changing it is not allowed.\n\n                            Preamble\n\n  The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n  The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works.  By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users.  We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors.  You can apply it to\nyour programs, too.\n\n  When we speak of free software, we are referring to freedom, not\nprice.  Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n  To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights.  Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n  For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received.  You must make sure that they, too, receive\nor can get the source code.  And you must show them these terms so they\nknow their rights.\n\n  Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n  For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software.  For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n  Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so.  This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software.  The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable.  Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts.  If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n  Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary.  To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n  The precise terms and conditions for copying, distribution and\nmodification follow.\n\n                       TERMS AND CONDITIONS\n\n  0. Definitions.\n\n  \"This License\" refers to version 3 of the GNU General Public License.\n\n  \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n  \"The Program\" refers to any copyrightable work licensed under this\nLicense.  Each licensee is addressed as \"you\".  \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n  To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy.  The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n  A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n  To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy.  Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n  To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies.  Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n  An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License.  If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n  1. Source Code.\n\n  The \"source code\" for a work means the preferred form of the work\nfor making modifications to it.  \"Object code\" means any non-source\nform of a work.\n\n  A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n  The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form.  A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n  The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities.  However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work.  For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n  The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n  The Corresponding Source for a work in source code form is that\nsame work.\n\n  2. Basic Permissions.\n\n  All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met.  This License explicitly affirms your unlimited\npermission to run the unmodified Program.  The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work.  This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n  You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force.  You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright.  Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n  Conveying under any other circumstances is permitted solely under\nthe conditions stated below.  Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n  3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n  No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n  When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n  4. Conveying Verbatim Copies.\n\n  You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n  You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n  5. Conveying Modified Source Versions.\n\n  You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n    a) The work must carry prominent notices stating that you modified\n    it, and giving a relevant date.\n\n    b) The work must carry prominent notices stating that it is\n    released under this License and any conditions added under section\n    7.  This requirement modifies the requirement in section 4 to\n    \"keep intact all notices\".\n\n    c) You must license the entire work, as a whole, under this\n    License to anyone who comes into possession of a copy.  This\n    License will therefore apply, along with any applicable section 7\n    additional terms, to the whole of the work, and all its parts,\n    regardless of how they are packaged.  This License gives no\n    permission to license the work in any other way, but it does not\n    invalidate such permission if you have separately received it.\n\n    d) If the work has interactive user interfaces, each must display\n    Appropriate Legal Notices; however, if the Program has interactive\n    interfaces that do not display Appropriate Legal Notices, your\n    work need not make them do so.\n\n  A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit.  Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n  6. Conveying Non-Source Forms.\n\n  You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n    a) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by the\n    Corresponding Source fixed on a durable physical medium\n    customarily used for software interchange.\n\n    b) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by a\n    written offer, valid for at least three years and valid for as\n    long as you offer spare parts or customer support for that product\n    model, to give anyone who possesses the object code either (1) a\n    copy of the Corresponding Source for all the software in the\n    product that is covered by this License, on a durable physical\n    medium customarily used for software interchange, for a price no\n    more than your reasonable cost of physically performing this\n    conveying of source, or (2) access to copy the\n    Corresponding Source from a network server at no charge.\n\n    c) Convey individual copies of the object code with a copy of the\n    written offer to provide the Corresponding Source.  This\n    alternative is allowed only occasionally and noncommercially, and\n    only if you received the object code with such an offer, in accord\n    with subsection 6b.\n\n    d) Convey the object code by offering access from a designated\n    place (gratis or for a charge), and offer equivalent access to the\n    Corresponding Source in the same way through the same place at no\n    further charge.  You need not require recipients to copy the\n    Corresponding Source along with the object code.  If the place to\n    copy the object code is a network server, the Corresponding Source\n    may be on a different server (operated by you or a third party)\n    that supports equivalent copying facilities, provided you maintain\n    clear directions next to the object code saying where to find the\n    Corresponding Source.  Regardless of what server hosts the\n    Corresponding Source, you remain obligated to ensure that it is\n    available for as long as needed to satisfy these requirements.\n\n    e) Convey the object code using peer-to-peer transmission, provided\n    you inform other peers where the object code and Corresponding\n    Source of the work are being offered to the general public at no\n    charge under subsection 6d.\n\n  A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n  A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling.  In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage.  For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product.  A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n  \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source.  The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n  If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information.  But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n  The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed.  Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n  Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n  7. Additional Terms.\n\n  \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law.  If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n  When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit.  (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.)  You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n  Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n    a) Disclaiming warranty or limiting liability differently from the\n    terms of sections 15 and 16 of this License; or\n\n    b) Requiring preservation of specified reasonable legal notices or\n    author attributions in that material or in the Appropriate Legal\n    Notices displayed by works containing it; or\n\n    c) Prohibiting misrepresentation of the origin of that material, or\n    requiring that modified versions of such material be marked in\n    reasonable ways as different from the original version; or\n\n    d) Limiting the use for publicity purposes of names of licensors or\n    authors of the material; or\n\n    e) Declining to grant rights under trademark law for use of some\n    trade names, trademarks, or service marks; or\n\n    f) Requiring indemnification of licensors and authors of that\n    material by anyone who conveys the material (or modified versions of\n    it) with contractual assumptions of liability to the recipient, for\n    any liability that these contractual assumptions directly impose on\n    those licensors and authors.\n\n  All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10.  If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term.  If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n  If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n  Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n  8. Termination.\n\n  You may not propagate or modify a covered work except as expressly\nprovided under this License.  Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n  However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n  Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n  Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License.  If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n  9. Acceptance Not Required for Having Copies.\n\n  You are not required to accept this License in order to receive or\nrun a copy of the Program.  Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance.  However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work.  These actions infringe copyright if you do\nnot accept this License.  Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n  10. Automatic Licensing of Downstream Recipients.\n\n  Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License.  You are not responsible\nfor enforcing compliance by third parties with this License.\n\n  An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations.  If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n  You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License.  For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n  11. Patents.\n\n  A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based.  The\nwork thus licensed is called the contributor's \"contributor version\".\n\n  A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version.  For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n  Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n  In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement).  To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n  If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients.  \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n  If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n  A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License.  You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n  Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n  12. No Surrender of Others' Freedom.\n\n  If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License.  If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all.  For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n  13. Use with the GNU Affero General Public License.\n\n  Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work.  The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n  14. Revised Versions of this License.\n\n  The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time.  Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n  Each version is given a distinguishing version number.  If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation.  If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n  If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n  Later license versions may give you additional or different\npermissions.  However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n  15. Disclaimer of Warranty.\n\n  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n  16. Limitation of Liability.\n\n  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n  17. Interpretation of Sections 15 and 16.\n\n  If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n                     END OF TERMS AND CONDITIONS\n\n            How to Apply These Terms to Your New Programs\n\n  If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n  To do so, attach the following notices to the program.  It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n    <one line to give the program's name and a brief idea of what it does.>\n    Copyright (C) <year>  <name of author>\n\n    This program is free software: you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation, either version 3 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License\n    along with this program.  If not, see <http://www.gnu.org/licenses/>.\n\nAlso add information on how to contact you by electronic and paper mail.\n\n  If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n    <program>  Copyright (C) <year>  <name of author>\n    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n    This is free software, and you are welcome to redistribute it\n    under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License.  Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n  You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n<http://www.gnu.org/licenses/>.\n\n  The GNU General Public License does not permit incorporating your program\ninto proprietary programs.  If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library.  If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License.  But first, please read\n<http://www.gnu.org/philosophy/why-not-lgpl.html>.\n"
  },
  {
    "path": "README.md",
    "content": "# CDNSP GUI Bob\nCheck [here](https://github.com/Bob123a1/CDNSP-GUI/releases) for the latest releases!\n\nPeople with problems using the GUI on a Mac you can check out [this guide here!](https://github.com/Bob123a1/CDNSP-GUI/wiki/Step-by-step-setup-guide-(bug-fixes)-for-Mac-users)\n\n## Setup instructions\n* Download Python 3 (https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe) (3.7 is the latest version)\n* Install Python 3, when installing make sure you ***tick \"Add to Path\"*** and ***untick install for \"ALL USER\"*** \n* Extract the folder in the zip file to your Desktop (or wherever you want)\n* Double click on \"CDNSP-GUI-Bob-v4.1.1.py\" and it should be opened in Python\n* The program will check for the required modules and start when done!\n* You can search for the game that you are looking for with the text box above the Game selection menu! \n\n\n## Translation (Modifications)\nYou can now suggest translations to your local language which you believe could be translated in a better way, make a fork of my Git, and edit your changes on your commit and submit a pull-request! \nIn order to translate: You need to choose your language's [ISO 639-1 Country Code](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) folder and edit the language.po file inside the folder, submit a pull-request to the main branch when you're done!\n\n\n## If you want to help me out!\nYou can check out my [Project](https://github.com/Bob123a1/CDNSP-GUI/projects) page for a list of to-do's, if you beleive you can help me with one of the to-do task you're more than welcome to messsage me on Discord (Bob#0340) (Since I believe you can't PM on Github?) that you want to work on it!\n\n## GUI screenshot:\n![GUI screenshot](https://github.com/Bob123a1/CDNSP-GUI/raw/master/cdnsp_gui_bob_v6.0.2_ss.png)\n\nHere's a [link](https://anonfile.com/Q1bak2x6b2/Files_zip) to the Nut_titlekeys.txt (with titlekeys blanked out) and titles.json files for the people that needs it. \n"
  },
  {
    "path": "locales/af/LC_MESSAGES/language.po",
    "content": "# SOME DESCRIPTIVE TITLE.\r\n# Copyright (C) YEAR ORGANIZATION\r\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: PACKAGE VERSION\\n\"\r\n\"POT-Creation-Date: 2018-08-01 00:27+1200\\n\"\r\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\r\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\r\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"Fout - Applikasie oop gemaak met Python2, installeer asablief Python3 en delete Python2\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \"Installeering fout {0}, maak die applikasie toe en jy kan die module jouself installeer deur die volgende te tik CMD: pip install {0}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \"Maak seeker alle benodigde modules is ingestalleer\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"Alles lyk goed\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"Nie in staat om benodigde dokumente te kry nie! Maak seeker jy internet werk\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"Kyk of daar eksta spasies onder aan jou titlekeys.txt dokument is! Delete as daar is!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"Fout!, Verlore CDNSP-GUI-config.json dokument\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"Kies Download lokasie\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"Voorbelading Speletjie Beelde\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \"Laai Saved Queue\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"Save Queue\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"Aria2c sal gemis word\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"SIT AF SPIELETJIE BEELD\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"Sit Af Alle Pop-ups\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"Sit Af NSP Repack\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"Disable Titlekey check\"\r\nmsgstr \"Sit Af Titlekey Kontroleer\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"Enable Shorten Name\"\r\nmsgstr \"Sit Aan Korter Naam\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Enable Tinfoil Download\"\r\nmsgstr \"Sit Aan Tinfoil Dowload\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"Enable SysVer 0 Patch\"\r\nmsgstr \"Sit Aan SysVer 0 Patch\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"Save Windows Location and Size\"\r\nmsgstr \"Save Venster Lokasie en Groote\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"Scan for existing games\"\r\nmsgstr \"Soek bestaande spieletjies\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 Decoder\"\r\nmsgstr \"Base64 Decoder\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"Download\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"Opsies\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"Gereedskap\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"Sit aan NSP Repack\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"Sit Aan alle Pop-ups\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \"Sit Aan Titlekey kontroleer\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"SIT AAN SPIELETJIE BEELD\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"Sit Aaf Korter Naam\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \"Sit Aff Tinfoil Download\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"Sit Aff SysVer 0 Patch\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \"Status:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"Spieletjie\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"Staat\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \"Spieletjie Beeld:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"Drik die boonste beeld \\n\"\r\n\"om die spieletjie oop te maak in die eShop\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"Geen Demo\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"Titel ID:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"Titel Sleutle:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \"Kies nuudste weergawe:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \"Download opsies:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \"Base game + Opdateer + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"Base game + Opdateer\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"Opdateer + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"Slegs basiese spieletjie\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"Opdateer slegs\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"Alle DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"Sit by queue\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"Opdateer Titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"Queue Spyskaart\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"Sit Aff \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"Verwyder alles\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"Download alles\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"Kliek aflaai alles om alle speletjies in tou af te laai!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"Status: Kry spelstatus... Wag alablief\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Die huidige staat lêer bou... Wag asseblief, dit kan tyd duur, afhangende van hoeveel speletjies jy het.\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"Fout, Current_status.exe bestaan nie\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"Status: Kla!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading spieletjie beeld...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"Fout\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \"Titlekey {} is nie 'n 32-digits heksadesimale nomer!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \"TitleID {} is nie 'n 16-digits heksadesimale nomer!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"Begin om af te laai! Dit sal tyd neem, wees asseblief geduldig. Jy kan die CMD (opdragprompt) agterna sien om jou aflaai vordering te sien.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"Download kla!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"Geen opdaterings beskikbaar vir die spel nie\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"Geen opdaterings beskikbaar vir die spel nie, basis spel downloaded!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Jy het nie 'n plek gekies om die lêer te stoor nie!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Persistent queue not found, skipping...\"\r\nmsgstr \"Aanhoudende tou nie gevind nie, spring oor ...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"Item is nie in die tou gevind nie\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \"Naam vir titelID nie in die lys gevind nie\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"Geen spel gekies om te verwyder nie!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"Laai af vir al jou tou-speletjies sal nou begin! Jou sal ingelig word sodra al die aflaai voltooi is, wag asseblief en wees geduldig!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"Downloading spieletjies...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \"Geen opdaterings beskikbaar vir titelID: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \"Geen opdaterings beskikbaar vir titleID: (), basiese speletjie afgelaai!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"Download kla!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \"Download Kla!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"Status: Titels opdateer\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"Klaar werk!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \"Totale nuwe speletjies bygevoeg: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"Gesluit\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"Status: Voltooide opdatering, Daar was geen nuwe speletjies om op te dateer nie!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"Status: Voltooide opdatering, Daar was geen nuwe speletjies om op te dateer nie!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"Status: Afgewerkte update, databasis herbou van nuuts af\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \"Die databasis bediener {} kan af wees of nie beskikbaar wees nie\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \"Sit Aan TitelKey Kontroleer\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"Sit Aff TitelKey Kontroleer\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"Dit het {} sekondes geneem om al die beelde te kry!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"Klaar om al die speletjie beelde te kry!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"Kon nie weergawe kry nie\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \"Geen TitleID of TitleID nie 16 karakters!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"Windows grootte en posisie gestoor!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"Windows grootte en posisie gestoor!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"Snuffel\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"Skandering\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"Jy het nie 'n gids gekies nie!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"Die gekose gids bestaan nie!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"Voltooide skandering van jou speletjies!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"Status: Die huidige staatslêer bou ... Wag asseblief, dit kan tyd duur, afhangende van hoeveel speletjies jy het.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"Base64 teks:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"dekodeer\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"Dekodeer teks:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"Oop\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \"Spel Informasie:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \"Spel Prys:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description:\"\r\nmsgstr \"Spel Beskrywing\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher:\"\r\nmsgstr \"Uitgewer\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer\"\r\nmsgstr \"Ontwikkelaar\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date:\"\r\nmsgstr \"Datum van vrystelling:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category:\"\r\nmsgstr \"Kategorie:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players:\"\r\nmsgstr \"Aantal spelers:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"Spelinligting is nie beskikbaar vir hierdie speletjie nie!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"Informasie\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"Taal\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"Herbegin asseblief die GUI vir die nuwe taal om aansoek te doen!\"\r\n\r\nmsgid 'New'\r\nmsgstr 'Nuwe'\r\n\r\nmsgid 'Own'\r\nmsgstr 'Eie'\r\n\r\nmsgid 'Update'\r\nmsgstr 'Opdateer'\r\n\r\nmsgid 'Latest'\r\nmsgstr 'Nuutste'\r\n\r\nmsgid 'Update Version List'\r\nmsgstr 'Update weergawe lys'\r\n\r\nmsgid 'No Japanese Game'\r\nmsgstr 'Geen Japannese Speletjie'"
  },
  {
    "path": "locales/ar/LC_MESSAGES/language.po",
    "content": "# SOME DESCRIPTIVE TITLE.\r\n# Copyright (C) YEAR ORGANIZATION\r\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: PACKAGE VERSION\\n\"\r\n\"POT-Creation-Date: 2018-08-01 00:27+1200\\n\"\r\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\r\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\r\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"Python البرنامج بدأ مع النسخة 2، الرجاد تثبيت النسخة 3 وعدم حذف  النسخة 2 من البرنامج\"\r\n \r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \"خطأ في التثبيت! أغلق البرنامج وثبته يدويا عن طريق كتابة CMD: pip3 install {0} في cmd\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \" \\n !التأكد من تثحيت جميع الوجدات المطلوبه\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"يبدو كل شيء جيدا!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"غير قادر على الحصول على الملفات المطلوبة! الرجاء التأكد من شبكة الانترنت الخاصة بك\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"احذه إذا تواجد! titlekeys.txt تأكد إذا هناك مسافة موجودة بأسفل الملف \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"مفقود CDNSP-GUI-config.json خطأ! ملف \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"اختار موقع التنزيل\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"تثبيت صور الألعاب مسبقا\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \" تحميل الدور المخزن \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"حفظ الدور\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"Aria2c سنفقد \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"إلغاء صور اللعبة\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"تصميت كل النوافذ\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"NSP Repack تعطيل خاصية \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"Disable Titlekey check\"\r\nmsgstr \"Titlekey تعطيل تفقد \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"Enable Shorten Name\"\r\nmsgstr \"تعطيل تقصير الإسم\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Enable Tinfoil Download\"\r\nmsgstr \"Tinfoil تفعيل التنزيل عن طريق \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"Enable SysVer 0 Patch\"\r\nmsgstr \"SysVer 0 Patch تفعيل \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"Save Windows Location and Size\"\r\nmsgstr \"حفظ مكان النافذة وحجمها\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"Scan for existing games\"\r\nmsgstr \"البحث عن الألعاب الحالية\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 Decoder\"\r\nmsgstr \"Base64 فك شفرة\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"تنزيل\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"خيارات\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"أدوات\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"NSP Repack تفعيل \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"فك تصميت كل النوافذ\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \"Titlekey تفعيل التأكد من \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"تفعيل صورة اللعبة\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"تعطيل تقصير الإسم\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \"Tinfoil تعطيل التنزيل عن طريق\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"SysVer 0 Patch تعطيل\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \":الحالة\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"اللعبة\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"الحالة\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \"صورة اللعبة:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"اضغط على صورة اللعبة لفتح اللعبة على موقع المتجر!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"لا تتوفر نسخة تجريبية\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"Title ID:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"Title Key:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \"اختار نسخة التحديث:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \"خيارات التنزيل:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \"اللعبة+ التحديث+ المحتوى الإضافي \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"اللعبة+ التحديث\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"التحديث+ المحتوى الإضافي\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"اللعبة فقط\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"التحديث فقط\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"جميع المحتوى الإضافي\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"إضافة إلى الدور\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"Titlekeys تحديث\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"قائمة الأدوار\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"إزالة اللعبة المختارة\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"حذف الجميع\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"تنزيل الجميع\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"انقر لتنزيل جميع الألعاب في الدور!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"الحالة: جلب حالة اللعبة... الرجاء الانتظار\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"يتم بناء الملف... الرجاء الإنتظار، سيستغرق ذلك بعض الوقت على جسب الألعاب الموجودة لديك\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"Current_status.txt خطأ، الملف غير موجود\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"الحالة: تم الإنتهاء!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"تنزيل صور الألعاب...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"خطأ\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \"لا توجد هوية العنوان أو هوية العنوان ليست بعدد 32 خانه!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \"لا توجد هوية العنوان أو هوية العنوان ليست بعدد 16 خانه!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"يتم التنزيل! سيستغرق ذلك بعض الوقت، الرجاء الإنتظار. يمكنك التأكد من حالة التنزيل في الصفحة الموجودة بالخلف\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"تم الإنتهاء من التنزيل!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"لا يتوفر تجديث لهذه اللعبة\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"لا يتوفر تحديث للعب، تم تنزيل اللعبة فقط!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"لم تختر مكان لحظ الملف!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Persistent queue not found, skipping...\"\r\nmsgstr \"لا توجد قائمة دور دائمة ، تخطي\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"لا توجد المادة في الدور\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \"اسم هوية العوان غير موجودة في القائمة\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"لم تختر ألعاب لإزالتها!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"سيتم تنزيل جميع الألعاب الموجودة بالدور! سيتم تبليغك عند الإنتهاء، الرجاء الإنتظار\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"يتم تنزيل الألعاب...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \"{}لا يتوفر تجديث لهوية العنوان:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \"لا يوجد تجديث لهوية ال{}وان   , تم تنزيل اللعبة فقط\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"!تم التنزيل\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \"!تم التنزيل\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"الحالة: تحديث هوية العناوين\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"تم التحديث!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \" {}عدد الألعاب الجديدة المضافه: \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"إغلاق\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"!الحالة: تم التجديث، لا توجد ألعاب جديدة للتحديث\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"!الحالة: تم التجديث، لا توجد ألعاب جديدة للتحديث\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"الحالة: تم الإنتهاء من التجديث، سيتم إعداد قائمة البيانات من الصفر\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \"قاغدة البيانات قد تكون غير متوفرة أو معطلة {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \"تفعيل التأكد من هوية العنوان\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"تعطيل التأكد من هوية العنوان\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"\\n تم استغراق ثانية للحصول على صور الألعاب!{} \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"تم تنزيل جميع صور الألعاب\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"حصل خطأ في الحصول على النسخة\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \"لا توجد هوية العنوان أو هوية العنوان ليست بعدد 16 خانه!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"تم حفظ مكان وحجم النافذة!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"البحث عن الألعاب الموجودة\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"تصفح\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"فحص\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"لم تختر المكان الصحيح!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"المكان المختار غير موجود!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"تم الإنتهاء من البحث عن الألعاب المتوفره لديك!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"الحالي، قد يستغرق ذلك بعض الوقت على حسب كمية الألعاب الموجودة لديك state file الالحالة: يتم الآن بناء ال \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"Base64 نص\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"فك التشفير\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"النص الغير مشفر\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"فتح\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \"معلومات عن اللعبة\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \"سعر اللعبة\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description:\"\r\nmsgstr \"وصف اللعبة\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher:\"\r\nmsgstr \"الناشر\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer\"\r\nmsgstr \"المطور\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date:\"\r\nmsgstr \"تاريخ الإصدار\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category:\"\r\nmsgstr \"التصنيف\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players:\"\r\nmsgstr \"عدد اللاعبين\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"معلومات اللعبة غير متوفرة حاليا\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"عن البرنامج\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"اللغة\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"!الرجاء إعادة تشغيل البرنامج لتغيير اللغة\"\r\n\r\n\r\nmsgid 'New'\r\nmsgstr 'جديد'\r\n\r\nmsgid 'Own'\r\nmsgstr 'منزلة'\r\n\r\nmsgid 'Update'\r\nmsgstr 'يوجد تحديث'\r\n\r\nmsgid 'Latest'\r\nmsgstr 'اخر تحديث'\r\n"
  },
  {
    "path": "locales/de/LC_MESSAGES/language.po",
    "content": "# REALLY DESCRIPTIVE TITLE.\r\n# Copyright (C) 2018 CDNSP GUI Translation Team\r\n# Jojo, 2018.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: PACKAGE VERSION\\n\"\r\n\"POT-Creation-Date: 2018-08-01 00:27+1200\\n\"\r\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\r\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\r\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Fehler - Anwendung wurde mit Python 2 gestartet, bitte installiere Python 3 und entferne Python 2\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \"Fehler bei der Installation von {0}, schließe die Anwendung und installiere das Modul manuell in der Eingabeaufforderung (CMD) mit dem Befehl: pip3 install {0}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Prüfe ob alle erforderlichen Module installiert sind!\\n\"\r\n\"\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"Sieht alles in Ordnung aus!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"Die erforderlichen Dateien konnten nicht abgerufen werden! Bitte überprüfe die Internetverbindung!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"Bitte überprüfe ob am Ende der titlekeys.txt Datei zusätzliche Leerzeichen befinden, falls vorhanden lösche diese!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"Fehler, die Datei CDNSP-GUI-config.json existiert nicht!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"Speicherort auswählen\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"Spiel Abbilder vorladen\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \"Gespeicherte Warteschlange öffnen\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"Warteschlange speichern\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"Aria2c wird uns fehlen\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"SPIEL ABBILDER DEAKTIVIEREN\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"Alle Pop-ups stummschalten\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"NSP Neuverpacken deaktivieren\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"Disable Titlekey check\"\r\nmsgstr \"Titlekey Überprüfung deaktivieren\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"Enable Shorten Name\"\r\nmsgstr \"Verkürzte Namen aktivieren\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Enable Tinfoil Download\"\r\nmsgstr \"Tinfoil Download aktivieren\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"Enable SysVer 0 Patch\"\r\nmsgstr \"SysVer 0 Patch aktivieren\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"Save Windows Location and Size\"\r\nmsgstr \"Fensterposition/-größen speichern\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"Scan for existing games\"\r\nmsgstr \"Nach vorhandenen Spielen suchen\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 Decoder\"\r\nmsgstr \"Base64 Dekodierer\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"Download\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"Optionen\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"Werkzeuge\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"NSP Neuverpacken aktivieren\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"Pop-ups Stummschaltung aufheben\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \"Titlekey Überprüfung aktivieren\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"SPIEL ABBILDER AKTIVIEREN\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"Verkürzte Dateinamen deaktivieren\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \"Tinfoil Download deaktivieren\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"SysVer 0 Patch deaktivieren\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \"Status:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"Spiel\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"Status\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \"Spiel Abbild:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"\"\r\n\"Klicke auf das Spiel Abbild oberhalb \\n\"\r\n\"um das Spiel im eShop zu öffnen!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"Demos ausschließen\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"Titel ID:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"Titel Key:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \"Wähle eine Updateversion:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \"Download Optionen:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \"Basisspiel + Update + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"Basisspiel + Update\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"Update + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"Nur Basisspiel\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"Nur Update\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"Alle DLCs\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"Zur Warteschlange hinzufügen\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"Titlekeys aktualisieren\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"Warteschlange\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"Gewähltes Spiel löschen\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"Alles Löschen\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"Alles Herunterladen\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"Klicke auf Alles Herunterladen um alle Spiele in der Warteschlange herunterzuladen!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"Status: Spielstatus wird abgefragt... Bitte warten!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Aktuelle Statusdatei wird erstellt... Bitte warten. Dies kann einige Zeit in Anspruch nehmen, abhängig davon wieviele Spiele in Besitz sind.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"Fehler, die Datei Current_status.txt existiert nicht!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"Status: Erledigt!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Spiel Abbild wird heruntergeladen...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"Fehler\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \"Titlekey {} ist keine 32-stellige Hexadezimalzahl!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \"TitleID {} ist keine 16-stellige Hexadezimalzahl!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"Download wird gestartet! Bitte um etwas Geduld, dies kann einige Zeit in Anspruch nehmen. Überprüfe die Eingabeaufforderung (CMD) im Hintergrund um den Downloadfortschritt zu sehen.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"Download abgeschlossen!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"Keine Updates für das Spiel verfügbar.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"Keine Updates für das Spiel verfügbar, Basisspiel wurde heruntergeladen!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Kein Speicherort zum Sichern der Datei gewählt!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Persistent queue not found, skipping...\"\r\nmsgstr \"Keine gespeicherte Warteschlange gefunden, überspringe...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"Gegenstand in der Warteschlange nicht gefunden.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \"Der Name für die Titel ID wurde in der Liste nicht gefunden.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"Kein Spiel zum Löschen ausgewählt!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"Der Download für alle Spiele in der Warteschlange beginnt jetzt! Es erfolgt eine Meldung sobald alle Downloads abgeschlossen sind. Bitte um etwas Geduld, dies kann einige Zeit in Anspruch nehmen!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"Spiele werden heruntergeladen...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \"Keine Updates für die Titel ID {} verfügbar!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \"Keine Updates für die Titel ID {} verfügbar, Basisspiel heruntergeladen!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"Download abgeschlossen!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \"Download abgeschlossen!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"Status: Aktualisiere titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"Aktualisierung abgeschlossen!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \"Anzahl der neu hinzugefügten Spiele: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"Schließen\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"Status: Aktualisierung abgeschlossen, es wurden keine neuen Spiele hinzugefügt!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Status: Aktualisierung abgeschlossen, es wurden keine neuen Spiele hinzugefügt!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"Status: Aktualisierung abgeschlossen, Datenbank wurde neu aufgebaut\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \"Der Datenbankserver {} ist möglicherweise außer Betrieb oder nicht verfügbar\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \"Titlekey Überprüfung aktivieren\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"Titlekey Überprüfung deaktivieren\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Es wurden {} Sekunden benötigt um alle Bilder zu laden!\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"Alle Spiel Abbilder wurden geladen!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"Fehler beim Abrufen der Version!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \"Titel ID nicht vorhanden oder keine 16 Zeichen!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"Fensterposition/-größen gespeichert!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"Nach vorhandenen Spielen suchen\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"Durchsuchen\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"Suche starten\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"Kein Ordner ausgewählt!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"Der ausgewählte Ordner existiert nicht!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"Die Suche nach vorhandenen Spiele wurde abgeschlossen!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"Aktuelle Statusdatei wird erstellt... Bitte warten. Dies kann einige Zeit in Anspruch nehmen, abhängig davon wieviele Spiele in Besitz sind.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"Base64 Text:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"Dekodieren\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"Dekodierter Text:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"Öffne\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \"Spiel Info:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \"Spielpreis:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description:\"\r\nmsgstr \"Spielbeschreibung:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher:\"\r\nmsgstr \"Herausgeber:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer\"\r\nmsgstr \"Entwickler\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date:\"\r\nmsgstr \"Erscheinungsdatum:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category:\"\r\nmsgstr \"Kategorie:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players:\"\r\nmsgstr \"Anzahl der Spieler:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"Spielinformationen für dieses Spiel sind derzeit nicht verfügbar!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"Über\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"Credits\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"Sprache\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"Bitte starte die GUI neu um die neu gewählte Sprache anzuwenden!\"\r\n\r\n\r\nmsgid 'New'\r\nmsgstr 'Neu'\r\n\r\nmsgid 'Own'\r\nmsgstr 'In Besitz'\r\n\r\nmsgid 'Update'\r\nmsgstr 'Veraltet'\r\n\r\nmsgid 'Latest'\r\nmsgstr 'Neueste'\r\n\r\nmsgid 'Update Version List'\r\nmsgstr 'Aktualisiere Versionsliste'\r\n\r\nmsgid 'No Japanese Game'\r\nmsgstr 'Keine japanischen Spiele'"
  },
  {
    "path": "locales/el/LC_MESSAGES/language.po",
    "content": "# SOME DESCRIPTIVE TITLE.\r\n# Copyright (C) YEAR ORGANIZATION\r\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: PACKAGE VERSION\\n\"\r\n\"POT-Creation-Date: 2018-08-01 00:27+1200\\n\"\r\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\r\n\"Last-Translator: ioann1s <ioann1s@hotmail.com>\\n\"\r\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Σφάλμα - Η εφαρμογή ξεκίνησε με την έκδοση 2 της Python, παρακαλώ διαγράψτε την και στη συνέχεια προχωρήστε στην εγκατάσταση της έκδοσης 3\\n\"\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \"Σφάλμα εγκατάστασης {0}, κλείστε την εφαρμογή και προχωρήστε στην χειροκίνητη εγκατάσταση πληκτρολογώντας pip3 install {0} σε CMD\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Έλέγχω ότι τα απαραίτητα modules έχουν εγκατασταθεί!\\n\"\r\n\"\\n\"\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"Ολα καλά! Τέλεια! :)\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"Δεν μπόρω να κατεβάσω τα απαραίτητα αρχεία! Έλενξε τη σύνδεση σου\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"Έλενξε αν υπάρχουν κενά στο τέλος του αρχείου titlekeys.txt και διέγραψε τα!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"Σφάλμα! Απουσιάζει το αρχείο CDNSP-GUI-config.json\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"Επιλογή θέση αποθήκευσης\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"Προφόρτωση των εικόνων των παιχνιδιών\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \"Άνοιγμα της Αποθηκευμένης Ουράς\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"Αποθήκευση Ουράς\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"Το Aria2c θα μας λείψει\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"Απενεργοποίηση των εικόνων\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"Απενεργοποίηση των αναδυόμενων παραθύρων\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"Απενεργοποίηση της μετατροπής σε NSP\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"Disable Titlekey check\"\r\nmsgstr \"Απενεργοποίηση του ελέγχου για το Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"Enable Shorten Name\"\r\nmsgstr \"Ενεργοποίηση μικρότερου ονόματος\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Enable Tinfoil Download\"\r\nmsgstr \"Ενεργοποίηση λήψης συμβατής με Tinfoil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"Enable SysVer 0 Patch\"\r\nmsgstr \"Ενεργοποίηση SysVer 0 Patch\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"Save Windows Location and Size\"\r\nmsgstr \"Αποθήκευση θέσης και μεγέθους παραθύρων\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"Scan for existing games\"\r\nmsgstr \"Έλεγχος για υπάρχοντα παιχνίδια\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 Decoder\"\r\nmsgstr \"Base64 Αποκωδικοποιητής\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"Λήψη\"\r\n\r\nmsgid \"Download_bottom\"\r\nmsgstr \"Λήψη\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"Επιλογές\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"Εργαλεία\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"Ενεργοποίηση της μετατροπής σε NSP\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"Ενεργοποίηση των αναδυόμενων παραθύρων\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \"Ενεργοποίηση του ελέγχου για το Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"Ενεργοποίηση GAME IMAGE\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"Απενεργοποίηση μικρότερου ονόματος\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \"Απενεργοποίηση λήψης συμβατής με Tinfoil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \"Απενεργοποίηση του SysVer 0 Patch\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"Τίτλος\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"Κατάσταση\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \"Εικόνα παιχνιδιού\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"\"\r\n\"Με αρίστερο κλικ πάνω στην εικόνα \\n\"\r\n\"ανοίγει η περιγραφή του τίλου στο eShop!\"\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"Χωρις Demo\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"ID Τίτλου:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"Κλειδί Τίτλου:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \"Επιλογή έκδοσης αναβάθμισης\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \"Επιλογές Λήψης:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \"Παιχνίδι (B) + Ενημερώσεις (U) + DLC (D)\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"Παιχνίδι (B) + Ενημερώσεις (U)\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"Ενημερώσεις (U) + DLC (D)\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"Παιχνίδι μόνο (B)\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"Ενημερώσεις μόνο (U)\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"Όλα τα DLC (D)\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"Προσθήκη στην ουρά\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"Ενημέρωση των Titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"Μενού ουράς\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"Αφαίρεση του επιλεγμένου τίτλου\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"Αφαίρεση όλων\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"Λήψη Όλων\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"Επιλογή του Λήψη Όλων για να το κατέβασμα όλλων των αντικειμένων της ουράς\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"Κατασταση:ʽΛήψη κατάστασης τίτλου... Παρακαλώ περιμένετε\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Δημιουργία αρχείου τρέχουσας κατάστασης... Παρακαλώ περιμένετε, χρειάζεται περισσσότερος χρόνος για κάθε παιχνίδι που υπάρχει στο φάκελο.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"Σφάλμα, το αρχείο Current_status.txt δεν εντοπίστηκε\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"Κατάσταση: Έτοιμο!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Λήψη εικόνας παιχνιδιού...\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"Σφάλμα\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \"Titlekey {} δεν είναι δεκαεξαδικός αριθμός 32 χαρακτήρων!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \"TitleID {} δεν είναι δεκαεξαδικός αριθμός 16 χαρακτήρων!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"Αρχίζω το κατέβασμα! Άραξε γιατί Θα πάρει λίγο χρόνο. Μπορείς να κοιτάς το CMD (γραμμή εντολών) που είναι ανοικτό για την πρόοδο των λήψεων σου.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"Οι Λήψεις ολοκληρώθηκαν\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"Δεν υπάρχουν ενημερώσεις για τον τίτλο αυτό\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"Δεν υπάρχουν ενημερώσεις για τον τίτλο αυτό, η λήψη του παιχνιδιού ολοκληρώθηκε!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Δεν επέλεξες θέση αποθήκευσης για το αρχείο!\"\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Persistent queue not found, skipping...\"\r\nmsgstr \"Δεν εντοπίστηκε Μόνιμη Ουρά, παράβλεψη...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"Το αντικείμενο δεν εντοπίστηκε στην ουρά\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \"Το όνομα του titleID δεν βρέθηκε στη λίστα\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"Δεν επιλέχθηκε τίτλος για αφαίρεση!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"Θα ξεκινήσει η Λήψη για ό,τι έχεις στην ουρά! Θα ενημερωθείς όταν όλα ολοκληρωθούν, κάνε υπομονή!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"Λήψη παιχνιδιών...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \"Δεν υπάρχουν Ενημερώσεις για τον titleID: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \"Δεν υπάρχουν Ενημερώσεις για τον titleID: {}, η λήψη του παιχνιδιού ολοκληρώθηκε!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"Ολοκλήρωση Λήψεων\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \"Ολοκλήρωση Λήψεων\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"Κατάσταση: Ενημέρωση αρχείου titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"Ολοκλήρωση Ενημέρωσης!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \"Σύνολο νέων τίτλων που προστέθηκαν: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"Κλείσιμο\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"Κατάσταση: Ολοκλήρωση ενημέρωσης, δεν υπάρχουν νέοι τίτλοι για ενημέρωση!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Κατάσταση: Ολοκλήρωση ενημέρωσης, δεν υπάρχουν νέοι τίτλοι για ενημέρωση!\"\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"Κατάσταση: Ολοκλήρωση ενημέρωσης, η Βάση δημιουργήθηκε από την αρχή\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \"Ο σερβερ της Βάσης {} μπορεί να είναι κάτω ή μη διαθέσιμος\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \"Ενεργοποίηση Ελέγχου του Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"Απενεργοποίηση Ελέγχου του Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Χρειάστηκαν {} για την λήψη όλων των εικόνων!\\n\"\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"Ολοκλήρωση της λήψης των εικόνων για τους τίτλους\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"Αποτυχία λήψης της έκδοσης\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \"Χωρις TitleID ή το TitleID δεν έχει 16 χαρακτήρες!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"Μέγεθος και θέση παραθύρων αποθηκεύτηκε!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"Αναζήτηση υπάρχοντων τίτλων\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"Επιλογή φακέλου\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"Διερεύνηνση\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"Δεν επέλεξες φάκελο!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"Ο επιλεγμένος φάκελος δεν υπάρχει!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"Ολοκλήρωση διερεύνηνσης των τίτλων σου!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"Κατάσταση: Δημιουργία αρχείου τρέχουσας κατάστασης... Παρακαλώ περιμένετε, χρειάζεται περισσσότερος χρόνος για κάθε παιχνίδι που υπάρχει στο φάκελο.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"Κέιμενο Base64:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"Αποκωδικοποίηση\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"Αποκωδικοποιημένο κείμενο:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"ʼνοιγμα\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \"Πληροφορίες Τίτλου:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \"Κόστος Τίτλου:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description:\"\r\nmsgstr \"Περιγραφή Τίτλου\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher:\"\r\nmsgstr \"Εκδότης:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer\"\r\nmsgstr \"Προγραματιστής\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date:\"\r\nmsgstr \"Ημερομηνία κυκλοφορίας\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category:\"\r\nmsgstr \"Κατηγορία:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players:\"\r\nmsgstr \"Αριθμός παικτών:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"Οι πληροφορίες για τον τίτλο αυτό δεν είναι διαθέσιμες αυτή τη στιγμή!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"Περί\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"Ειδική Μνεία\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"Γλώσσα\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"Παρακαλω κάντε επανεκκινηση της εφαρμογής για να φορτωθεί η επιλεγμένη γλώσσα!\"\r\n\r\n\r\nmsgid 'New'\r\nmsgstr 'Νέο'\r\n\r\nmsgid 'Own'\r\nmsgstr 'Το έχω ήδη'\r\n\r\nmsgid 'Update'\r\nmsgstr 'Υπάρχει Ενημέρωση'\r\n\r\nmsgid 'Latest'\r\nmsgstr 'τρέχουσα'\r\n"
  },
  {
    "path": "locales/en/LC_MESSAGES/language.po",
    "content": "# SOME DESCRIPTIVE TITLE.\r\n# Copyright (C) YEAR ORGANIZATION\r\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: PACKAGE VERSION\\n\"\r\n\"POT-Creation-Date: 2018-08-01 00:27+1200\\n\"\r\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\r\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\r\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"Disable Titlekey check\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"Enable Shorten Name\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Enable Tinfoil Download\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"Enable SysVer 0 Patch\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"Save Windows Location and Size\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"Scan for existing games\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 Decoder\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"\"\r\n\r\nmsgid \"Download_bottom\"\r\nmsgstr \"Download\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Persistent queue not found, skipping...\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description:\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher:\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date:\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category:\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players:\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"\"\r\n\r\n"
  },
  {
    "path": "locales/es/LC_MESSAGES/language.po",
    "content": "# SOME DESCRIPTIVE TITLE.\r\n# Copyright (C) YEAR ORGANIZATION\r\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: PACKAGE VERSION\\n\"\r\n\"POT-Creation-Date: 2018-08-01 00:27+1200\\n\"\r\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\r\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\r\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - La aplicación se ha lanzado con Python 2. Por favor, instala Python 3 y borra Python 2.\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \"Error al instalar {0}. Cierra la aplicación e instala el módulo manualmente escribiendo en CMD: pip3 install {0}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Comprobando si todos los módulos necesarios están instalados\\n\"\r\n\"\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"¡Todo en orden!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"Error al descargar los ficheros necesarios. Comprueba tu conexión a Internet.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"Comprueba si hay algún espacio en blanco al final del fichero titlekeys.txt. ¡Bórralos si encuentras alguno!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"Error - Falta el fichero CDNSP-GUI-config.json\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"Carpeta de descargas\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"Precargar imágenes\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \"Recuperar cola de descargas\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"Guardar cola de descargas\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"Aria2c está deshabilitado\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"Desactivar imágenes\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"Desactivar pop-ups\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"Desactivar empaquetado NSP\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"Disable Titlekey check\"\r\nmsgstr \"Desactivar comprobación de Title Keys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"Enable Shorten Name\"\r\nmsgstr \"Activar nombres cortos\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Enable Tinfoil Download\"\r\nmsgstr \"Activar formato Tinfoil [tf]\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"Enable SysVer 0 Patch\"\r\nmsgstr \"Activar SysVer 0 Patch\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"Save Windows Location and Size\"\r\nmsgstr \"Guardar posición y tamaño de la ventana\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"Scan for existing games\"\r\nmsgstr \"Buscar juegos ya descargados\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 Decoder\"\r\nmsgstr \"Descodificar Base64\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"Descargas\"\r\n\r\nmsgid \"Download_bottom\"\r\nmsgstr \"Descargar\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"Opciones\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"Herramientas\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"Activar empaquetado NSP\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"Activar pop-ups\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \"Activar comprobación de Titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"Activar imágenes\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"Desactivar nombres cortos\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \"Desactivar formato Tinfoil [tf]\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"Desactivar SysVer 0 Patch\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \"Estado:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"Juego\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"Estado\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \"Imagen de portada\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"\"\r\n\"Haz click en la imagen superior\\n\"\r\n\"para abrir el juego en la eShop\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"Excluir demos\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"Title ID\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"Title Key\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \"Versión de la actualización\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \"Opciones de descarga:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \"Juego + Actualización + DLCs\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"Juego + Actualización\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"Actualización + DLCs\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"Solo juego\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"Solo actualización\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"Todos los DLCs\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"Añadir a cola de descargas\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"Actualizar Title Keys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"Cola de descargas\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"Eliminar título seleccionado\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"Eliminar todo\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"Descargar todo\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"Haz click en _Descargar todo_ para comenzar la descarga\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"Estado: Analizando juegos descargados... Espera, por favor.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Actualizando biblioteca... Puede tardar, dependiendo del número de juegos que tengas. Espera, por favor.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"Error - El fichero Current_status.txt no existe.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"Estado: ¡Completado!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Descargando imagen...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"Error\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \"¡La Title Key {} no es un número hexadecimal de 32 dígitos!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \"¡La Title Key {} no es un número hexadecimal de 16 dígitos!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"La descarga ha comenzado. Puede tardar un poco, ten paciencia. Puedes ver el progreso de la descarga en la ventana del sistema (CMD).\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"¡Descarga finalizada!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"No hay actualizaciones para el juego.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"Juego descargado correctamente. No hay actualizaciones.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Debes especificar la carpeta de descargas.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Persistent queue not found, skipping...\"\r\nmsgstr \"No se ha encontrado cola de descargas, saltando...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"Elemento no encontrado en la cola de descargas.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \"El nombre asociado al Title ID no se encuentra en la lista.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"No se ha seleccionado ningún título para eliminar.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"La descarga va a comenzar. Te avisaremos cuando todas las descargas hayan sido completadas. Por favor, espera y sé paciente :)\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"Descargando títulos...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \"No hay actualizaciones para el Title ID {}.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \"Juego descargado correctamente. No hay actualizaciones para el Title ID {}.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"¡Descarga finalizada!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \"¡Descarga finalizada!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"Estado: Actualizando Title Keys.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"¡Actualización finalizada!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \"Nuevos títulos añadidos: {}.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"Cerrar\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"Estado: Actualización finalizada. ¡No había nuevos juegos para actualizar!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Estado: Actualización finalizada. ¡No había nuevos juegos para actualizar!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"Estado: Actualización finalizada. Base de datos reconstruida.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \"El servidor de base de datos {} no está disponible.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \"Activar comprobación de Title Keys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"Desactivar comprobación de Title Keys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Se han descargado todas las imágenes en {} segundos\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"Se han descargado todas las imágenes.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"No se ha podido identificar la versión\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \"No se ha encontrado Title ID o no tiene 16 caracteres.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"Posición y tamaño de la ventana guardados con éxito.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"Buscar juegos ya descargados\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"Explorar\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"Buscar\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"Debes seleccionar una carpeta\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"La carpeta seleccionada no existe.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"La búsqueda de de juegos ha finalizado.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"Estado: Actualizando biblioteca... Puede tardar, dependiendo del número de juegos que tengas. Espera, por favor.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"Texto en Base64\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"Descodificar\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"Texto descodificado:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"Abrir\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \"Información del juego:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \"Precio:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description:\"\r\nmsgstr \"Descripción:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher:\"\r\nmsgstr \"Editado por:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer\"\r\nmsgstr \"Desarrollado por:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date:\"\r\nmsgstr \"Fecha de lanzamiento:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category:\"\r\nmsgstr \"Categoría:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players:\"\r\nmsgstr \"Número de jugadores:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"La información del juego no se encuentra disponible en este momento.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"Acerca de...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"Créditos\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"Idioma\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"Por favor, reinicia el GUI para activar el nuevo idioma.\"\r\nmsgid 'New'\r\nmsgstr 'Nuevo'\r\n\r\nmsgid 'Own'\r\nmsgstr 'Descargado'\r\n\r\nmsgid 'Update'\r\nmsgstr 'Nueva actualización'\r\n\r\nmsgid 'Latest'\r\nmsgstr 'Última disponible'\r\n\r\nmsgid 'Update Version List'\r\nmsgstr \"Actualizar versiones\"\r\n\r\nmsgid \"No Japanese Game\"\r\nmsgstr \"Excluir JP\""
  },
  {
    "path": "locales/fa/LC_MESSAGES/language.po",
    "content": "# SOME DESCRIPTIVE TITLE.\r\n# Copyright (C) YEAR ORGANIZATION\r\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: PACKAGE VERSION\\n\"\r\n\"POT-Creation-Date: 2018-08-01 00:27+1200\\n\"\r\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\r\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\r\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"طرا نصب کنید Pyhton 3 را پاک کرده و  Python 2 اجرا شده است ، لطفا Python 2 خطا - برنامه با\\n\"\r\n \r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \" ماژول را به صورت دستی نصب کنید CMD در  pip3 install {0} خطا در نصب {0} ،برنامه را ببندید و با استفاده از کد \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \"بررسی کنید که تمام ماژول های مورد نیاز نصب شده باشد\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"همه چیز خوب است\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"امکان دریافت فایل های مورد نظر وجود ندارد! لطفا اتصال اینترنت را بررسی کنید\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"فاصله اضافه وجود نداشته باشد ، در صورت وجود فاصله ها را پاک کنید Titlekeys.txt بررسی کنید در آخر فایل\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"یافت نشد CDNSP-GUI-config.json خطا ، فایل\"\r\n \r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"مکان ذخیره دانلود ها را انتخاب کنید\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"دریافت عکس بازی\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \"بازیابی صف دانلود ذخیره شده\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"ذخیره صف دانلود\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"Aria2c پیدا نخواهد شد\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"غیر فعال کردن عکس بازی ها\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"غیر فعال کردن تمام پاپ آپ ها\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"NSP Repack غیر فعال کردن \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"Disable Titlekey check\"\r\nmsgstr \"Titlekey غیر فعال کردن ، چک \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"Enable Shorten Name\"\r\nmsgstr \"فعال سازی نام کوتاه\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Enable Tinfoil Download\"\r\nmsgstr \"Tinfoil فعال سازی دانلود\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"Enable SysVer 0 Patch\"\r\nmsgstr \"SysVer 0 فعال سازی پچ  \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"Save Windows Location and Size\"\r\nmsgstr \"ذخیره مکان و اندازه پنجره \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"Scan for existing games\"\r\nmsgstr \"اسکن بازی های دانلود شده\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 Decoder\"\r\nmsgstr \"Base64 Decoder\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"دانلود\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"تنضیمات\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"ابزار\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"NSP Repack فعال سازی \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"فعال سازی تمامی پاپ آپ ها\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \" Titlekey فعال سازی چک\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"فعال سازی عکس بازی ها\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"غیر فعال کردن نام کوتاه\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \" Tinfoil غیر فعال کردن دانلود\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"SysVer 0 غیر فعال کردن پچ \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \"وضعیت : \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"بازی\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"حالت\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \"عکس بازی\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"روی عکس کلیک کنید eShop برای باز شدن صفحه\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"به غیر از دمو ها\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"Title ID:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"Title Key:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \"ورژن آپدیت را انتخاب کنید\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \"گزینه های دانلود\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \" DLC + بازی اصلی + آپدیت \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"بازی اصلی + آپدیت\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"آپدیت + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"فقط بازی اصلی (بدون آپدیت)\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"فقط آپدیت\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"ها DLC تمام \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"اضافه کردن به صف دانلود\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"Titlekeys آپدیت \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"صف دانلود\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"حذف بازی های انتخابی از صف\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"خدف تمامی بازی ها از صف\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"دانلود تمام بازی ها\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"برای دانلود تمام بازی های صف ، روی دانلود تمام بازی ها کلیک کنید\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"وضعیت : درحال دریافت وضعیت بازی ... لطفا صبر کنید\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"در حال ساخت فایل حالت فعلی بازی ها ... لطفا صبر کنید، بسته به تعداد بازی های دانلود شده ، این حالت زمان بر است\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"خطا ، فایل Current_status.txt وجود ندارد\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"وضعیت : کامل شد\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"در حال دریافت عکس بازی\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"خطا\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \" یک عدد 32 رقمی هگزادسیمال نیست Titlekey {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \" یک عدد 16 رقمی هگزادسیمال نیست TitleID {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"مراجعه کنید CMD در حال دانلود ، دانلوذ زمان بر خواهد بود، لطفا شکیبا باشید ، برای بررسی وضعیت دانلود لطفا به صفحه\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"دانلود کامل شد!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"هیج آپدیتی برای بازی عرضه نشده\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"هیچ آپدیتی برای بازی عرضه نشده ، بازی اصلی دانلود شد!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"مکانی برای ذخیره فایل انتخاب نکردید!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Persistent queue not found, skipping...\"\r\nmsgstr \"...صف مداوم پیدا نشد،\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"آیتم در صف پیدا نشد\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \" موردنظر نامی پیدا نشد titleID برای\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"بازی برای حذف پیدا نشده\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"دانلود تمام بازی های صف شروع شد، زمانی که دانلود تمام شد به شما اطلاع رسانی خواهد شد،لطفا شکیبا باشید\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"...درحال دانلود بازی ها\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \" یافت نشد titleID {} هیچ آپدیتی برای\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \" یافت نشد titleID {} هیچ آپدیتی برای\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"دانلود کامل شد!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \" دانلود کامل شد!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"titlekeys وضعیت : بروز رسانی \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"بروز رسانی کامل شد\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \" بازی جدید اضافه شد{}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"بستن\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"وضعیت : بروز رسانی پایان یافت ، بازی جدید برای اضافه کردن پیدا نشد\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"وضعیت : بروز رسانی پایان یافت ، بازی جدید برای اضافه کردن پیدا نشد\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"وضعیت : آپدیت کامل شد ، داده ها از ابتدا باز سازی شدند\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \" سرور داده های {} در دسترس نمی باشد\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \" Titlekey فعال سازی چک \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"Titlekey غیر فعال سازی چک \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"دریافت تمام عکس ها {} ثانیه زمان بر بود\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"دریافت عکس تمام بازی ها با پایان رسید\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"خطا در دریافت ورژن \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \" یافت نشد یا 16 حرف نیست TitleID\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"اندازه و مکان پنجره ذخیره شد!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"جستجو برای بازی های دانلود شده\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"باز کردن\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"اسکن کردن\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"شما هیچ پوشه ای را انتخاب نکردید\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"پوشه انتخاب شده وجود ندارد!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"اسکن بازی ها کامل شد!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"وضعیت : در حال ساخت فایل وضعیت فعلی ... لطفا صبر کنید ، بسته به تعداد بازی های دانلود شده این پروسه زمان بر خواهد بود\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"Base64 text\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"دیکود\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"متن دیکود : \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"باز کردن\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \"اطلاعات بازی\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \"قیمت بازی :\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description:\"\r\nmsgstr \"توضیحات بازی :\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher:\"\r\nmsgstr \"ناشر :\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer\"\r\nmsgstr \"سازنده :\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date:\"\r\nmsgstr \"تاریح عرضه :\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category:\"\r\nmsgstr \"ژانر :\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players:\"\r\nmsgstr \"تعداد بازیکن : \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"درحال حاضر اطلاعات بازی موجود نمی باشد !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"درباره\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"دست اندرکاران\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"زبان\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"لطفا برای فعال سازی زبان جدید برنامه را ببنید و دوباره باز کنید\"\r\n\r\n\r\nmsgid 'New'\r\nmsgstr 'بازی جدی'\r\n\r\nmsgid 'Own'\r\nmsgstr 'دانلود شده'\r\n\r\nmsgid 'Update'\r\nmsgstr 'آپدیت جدید موجود است'\r\n\r\nmsgid 'Latest'\r\nmsgstr 'دریافت آخرین ورژن'\r\n"
  },
  {
    "path": "locales/fr/LC_MESSAGES/language.po",
    "content": "# French language file for CDNSP Gui by Bob.\r\n# Copyright (C) 2018 Bob\r\n# cdndave, etraga<etraga@gmx.com>, 2018.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: PACKAGE VERSION\\n\"\r\n\"POT-Creation-Date: 2018-08-01 00:27+1200\\n\"\r\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\r\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\r\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"Erreur - L'application a été lancée avec Python 2, veuillez installer Python 3 et supprimer Python 2\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \"Erreur lors de l'installation de {0}, fermez l'application et vous pourrez installer manuellement le module depuis un invite de commande : pip3 install {0}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \"Vérification de la présence de tous les modules requis... \\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"Tout semble correct !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"Impossible d'obtenir les fichiers requis ! Vérifiez votre connexion Internet.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"Vérifiez s'il n'y a pas d'espace supplémentaire à la fin de votre fichier titlekeys.txt ! Si oui, supprimez-les !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"Erreur, le fichier CDNSP-GUI-config.json est introuvable\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"Dossier de destination des téléchargements\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"Précharger les images de jeux\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \"Charger une file d'attente\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"Sauvegarder la file d'attente\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"Aria2c est nécessaire\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"Désactiver les images de jeu\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"Désactiver les pop-ups\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"Désactiver le repack de NSP\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"Disable Titlekey check\"\r\nmsgstr \"Désactiver la vérification de clé de titre\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"Enable Shorten Name\"\r\nmsgstr \"Activer les noms courts\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Enable Tinfoil Download\"\r\nmsgstr \"Activer le téléchargement Tinfoil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"Enable SysVer 0 Patch\"\r\nmsgstr \"Activer le patch SysVer 0\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"Save Windows Location and Size\"\r\nmsgstr \"Enregistrer l'emplacement et la taille des fenêtres\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"Scan for existing games\"\r\nmsgstr \"Scanner les jeux existants\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 Decoder\"\r\nmsgstr \"Décodeur Base64\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"Téléchargement\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"Options\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"Outils\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"Activer le repack de NSP\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"Activer les pop-ups\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \"Activer la vérification de clé de titre\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"Activer les images des jeux\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"Désactiver les noms courts\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \"Désactiver le téléchargement Tinfoil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"Désactiver le patch SysVer 0\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \"Statut :\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"Jeu\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"État\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \"Image du jeu :\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"\"\r\n\"Cliquez sur l'image du jeu \\n\"\r\n\"pour ouvrir le jeu dans l'eShop\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"Ignorer les démos\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"ID du titre :\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"Clé du titre :\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \"Sélectionnez la version de mise à jour :\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \"Options de téléchargement :\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \"Jeu de base + Mise à jour + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"Jeu de base + Mise à jour\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"Mise à jour + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"Jeu de base seulement\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"Mise à jour seulement\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"Tous les DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"Ajouter à la file d'attente\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"Mettre à jour les clés de titre\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"Menu de file d'attente\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"Supprimer le jeu sélectionné\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"Tout supprimer\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"Tout Télécharger\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"Cliquez sur télécharger tout pour télécharger tous les jeux de la file d'attente !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"Statut : récupération du statut des jeux, veuillez patienter...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Statut : création du fichier d'état actuel, veuillez patienter, cela peut prendre du temps selon votre nombre de jeux...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"Erreur, le fichier Current_status.txt n'existe pas\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"Statut : terminé !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Téléchargement de l'image du jeu...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"Erreur\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \"La clé du titre {} n'est pas un nombre hexadécimal à 32 chiffres !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \"L'ID du titre {} ​​n'est pas un nombre hexadécimal à 16 chiffres !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"\"\r\n\"Téléchargement en cours, cela prendra un peu de temps.\\n\r\n\"Vous pouvez consulter l'invite de commande lancé en arrière pour voir la progression de votre téléchargement.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"Téléchargement terminé !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"Aucune mise à jour disponible pour le jeu\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"Aucune mise à jour disponible pour le jeu, jeu de base téléchargé !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Vous n'avez pas choisi d'emplacement pour enregistrer le fichier !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Persistent queue not found, skipping...\"\r\nmsgstr \"File d'attente persistante introuvable, ignoré...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"Élément introuvable dans la file d'attente\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \"Nom pour l'ID de titre introuvable dans la liste\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"Aucun jeu à supprimer sélectionné !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"Le téléchargement des jeux dans la file d'attente va maintenant commencer ! Vous serez informé une fois que tous les téléchargements seront terminés, merci de patienter !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"Téléchargement des jeux...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \"Aucune mise à jour disponible pour l'ID de titre {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \"Aucune mise à jour disponible pour l'ID de titre {}, jeu de base téléchargé !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"Téléchargement terminé !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \"Téléchargement Terminé !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"Statut : mise à jour des clés de titre...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"Mise à jour terminée !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \"{} nouveau(x) jeu(x) ajouté(s)\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"Fermer\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"Statut : mise à jour terminée, aucun nouveau jeu à mettre à jour !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Statut : mise à jour terminée, aucun nouveau jeu à mettre à jour !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"Statut : mise à jour terminée, base de données reconstruite à partir de zéro\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \"Le serveur de base de données {} est peut-être en panne ou indisponible\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \"Activer la vérification de clé de titre\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"Désactiver la vérification de clé de titre\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Il a fallu {} secondes pour récupérer toutes les images !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"Toutes les images de jeux ont été telechargées !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"Impossible d'obtenir la version\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \"Aucun ID de titre ou l'ID de titre ne fait pas 16 caractères !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"Taille et position des fenêtres enregistrées\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"Scanner les jeux existants\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"Naviguer\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"Scan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"Vous n'avez pas choisi de répertoire !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"Le répertoire choisi n'existe pas !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"Le balayage de vos jeux est terminé !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"Statut : création du fichier d'état actuel, veuillez patienter, cela peut prendre du temps selon votre nombre de jeux...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"Texte en base64 :\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"Décoder\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"Texte décodé :\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"Ouvrir\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \"Informations sur le jeu :\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \"Prix :\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description\"\r\nmsgstr \"Description du jeu\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher\"\r\nmsgstr \"Éditeur\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer\"\r\nmsgstr \"Développeur\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date\"\r\nmsgstr \"Date de sortie\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category\"\r\nmsgstr \"Catégorie\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players\"\r\nmsgstr \"Nombre de joueurs\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"Informations de ce jeu non disponible pour le moment!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"À propos\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"Crédits\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"Langage\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"Veuillez redémarrer l'interface graphique pour appliquer la nouvelle langue !\"\r\n\r\nmsgid \"Update Version List\"\r\nmsgstr \"Mettre à jour la liste des versions\"\r\n\r\nmsgid \"Status: Updating version list...\"\r\nmsgstr \"Statut : mise à jour de la liste des versions...\"\r\n\r\nmsgid \"\\nGame Description\"\r\nmsgstr \"\\nDescription du jeu\"\r\n\r\nmsgid \"Rating\"\r\nmsgstr \"Classification\"\r\n\r\nmsgid \"Game Size\"\r\nmsgstr \"Taille du jeu\"\r\n\r\nmsgid \"Unable to get game size\"\r\nmsgstr \"Impossible de récupérer la taille du jeu\"\r\n\r\nmsgid \"\\n\\n\\nDownloading game info...\"\r\nmsgstr \"\\n\\n\\nTéléchargement des informations du jeu...\"\r\n\r\nmsgid \"\\n\\n\\nUnable to find game info\"\r\nmsgstr \"\\n\\n\\nImpossible de trouver les informations sur le jeu\"\r\n\r\nmsgid \"US eShop Game Price\"\r\nmsgstr \"Prix eShop US\"\r\n\r\nmsgid \"New\"\r\nmsgstr \"Nouveau\"\r\n\r\nmsgid \"Own\"\r\nmsgstr \"Possédé\"\r\n\r\nmsgid \"Update\"\r\nmsgstr \"Mis à jour\"\r\n\r\nmsgid \"No Japanese Game\"\r\nmsgstr \"Pas de jeu Japonais\"\r\n\r\nmsgid \"Latest\"\r\nmsgstr \"Dernière\"\r\n"
  },
  {
    "path": "locales/he/LC_MESSAGES/language.po",
    "content": "# SOME DESCRIPTIVE TITLE.\r\n# Copyright (C) YEAR ORGANIZATION\r\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: PACKAGE VERSION\\n\"\r\n\"POT-Creation-Date: 2018-08-01 00:27+1200\\n\"\r\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\r\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\r\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"בחר תיקיית הורדה\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"טען מראש תמונות משחקים\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \"טען רשימת הורדות שמורה\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"שמור רשימת הורדות\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"אופצית אריה2 תחסור לכולנו\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"בטל תמונת משחק\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"השתק חלונות קופצים\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"NSP Repack בטל\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"בטל בדיקת מפתח כותר\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"אפשר קיצור שם קובץ\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Tinfoil אפשר הורדה דרך\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"SysVer 0 Patch אפשר\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"שמור סדר וגודל חלונות\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"סרוק אחר משחקים קיימים\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 קידוד\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"הורדות\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"הגדרות\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"כלים\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"NSP Repack אפשר\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"החזר התראות חלונות קופצים\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \"אפשר בדיקת מפתח כותר\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"אפשר תמונת משחק\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"בטל קיצור שם\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \"Tinfoilבטל אופציה הורדה מ\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"SysVer 0 Patch בטל\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \":סטטוס\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"משחק\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"מצב\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \":תמונת משחק\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"\"\r\n\"\\n לחץ על תמונת המשחק למעלה\"\r\n\"!eShopעל מנת לפתוח את עמוד המשחק בחנות ה\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"ללא דמו\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"של המשחק IDה\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"של המשחק Titleה\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \":בחר גרסת עדכון\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \":אפשרויות הורדה\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \"DLC + משחק + עדכון\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"משחק + עדכון\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"DLC + עדכון\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"משחק בלבד\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"עדכון בלבד\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"DLCכל ה\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"הוסף לרשימת הורדה\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"עדכון מאגר רשימת המשחקים\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"תפריט רשימת הורדות\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"הסר משחק מסומן\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"הסר הכל\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"הורד הכל\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"!לחץ 'הורד הכל' על מנת להוריד את כל המשחקים מהרשימה\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"סטטוס: טוען מצב משחק... אנא המתן\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"בונה את מסד הנתונים... אנא המתן, זה עלול לקחת קצת זמן בהתאם לכמות המשחקים הקיימים\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"אינו קיים Current_status.txt שגיאה, הקובץ\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"!סטטוס: סיים\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"...מוריד תמונת משחק\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"שגיאה\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"שבצד על מנת לבדוק את סטטוס ההורדה command promptההורדה מתחילה! סבלנות, זה ייקח קצת זמן. בדוק את חלון ה\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"!ההורדה הסתיימה\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"אין עדכונים זמינים למשחק\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"!אין עדכונים זמינים למשחק, אך המשחק הורד\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"!לא נבחרה תיקיית הורדה לשמירת הקובץ\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Persistent queue not found, skipping...\"\r\nmsgstr \"...כותר לא נמצא, מדלג\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"כותר לא נמצא ברשימת הורדה\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \"לא נמצא ברשימה tileIDשם ל\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"!לא נבחר משחק להסרה\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"!ההורדה לכל המשחקים תתחיל מיד, בסיומה תקבל התראה. אנא המתן בסבלנות\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"...מוריד משחקים\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \"{}אין עדכונים זמינים ל:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \"!אין עדכונים זמינים ל:{}, המשחק עצמו הורד בהצלחה!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"!ההורדה הסתיימה\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \"!ההורדה הסתיימה\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"מעדכן מסד נתונים\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"!העדכון הסתיים\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \"{} :כמות המשחקים שהתווספו\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"סגור\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"!העדכון הושלם: לא היו משחקים חדשים לעדכן\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"!העדכון הושלם: לא היו משחקים חדשים לעדכן\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"העדכון הושלם: מאגר הנתונים נבנה מחדש\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \"מסד הנתונים {} מושבת או אינו זמין\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \"Titlekey אפשר בדיקת\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"Titlekey בטל בדיקת\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"כל התמונות הורדו תוך {} שניות! \\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"!הורדת כל התמונות הסתיימה\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"כשל בבדיקת הגרסא\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"!גודל ומיקום החלון נשמר\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"סורק אחר משחקים קיימים\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"עיין\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"סרוק\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"!לא נבחרה תיקייה\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"!התיקייה שנבחרה אינה קיימת\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"!סריקת המשחקים הסתיימה\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"בונה את מסד הנתונים... אנא המתן, זה עלול לקחת קצת זמן\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"Base64 טקסט\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"פענח\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"טקסט מפוענח\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"פתח\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \":מידע על המשחק\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \":מחיר המשחק\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description:\"\r\nmsgstr \":תיאור המשחק\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher:\"\r\nmsgstr \":מפיץ\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer\"\r\nmsgstr \"מפתח\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date:\"\r\nmsgstr \":תאריך שחרור המשחק\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category:\"\r\nmsgstr \":קטגורייה\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players:\"\r\nmsgstr \":מספר השחקנים\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"!תיאור המשחק אינו זמין כרגע\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"אודות\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"קרדיטים\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"שפה\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"!אנא פתח מחדש את התוכנה לשפה חדשה\"\r\n\r\n"
  },
  {
    "path": "locales/hu/LC_MESSAGES/language.po",
    "content": "# SOME DESCRIPTIVE TITLE.\r\n# Copyright (C) YEAR ORGANIZATION\r\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: PACKAGE VERSION\\n\"\r\n\"POT-Creation-Date: 2018-08-01 00:27+1200\\n\"\r\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\r\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\r\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Hiba - Az alkalmazás Python 2-vel indult el, kérlek telepítsd a Python 3 programot, és töröld a Python 2-őt!\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \"Hiba a(z) {0} telepítése közben, zárd be az alkalmazást, és telepítsd a modult manuálísan a parancssorban az alábbi paranccsal:  pip3 install {0}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Telepített modulok ellenőrzése..\\n\"\r\n\"\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"Minden működik!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"A szükséges fájlok letöltése sikertelen! Ellenőrizd, hogy van-e internet kapcsolatod.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"Nézd meg, hogy van-e üres hely kihagyva a titlekeys.txt fájlban! Ha igen, akkor töröld!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"Error!, hiányzó CDNSP-GUI-config.json fájl\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"Letöltés Helyének Megadása\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"Játékok képeinek letöltése egyszerre\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \"Elmentett Sor Betöltése\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"Sor Elmentése\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"Az Aria2c hiányozni fog\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"JÁTÉK KÉPÉNEK KIKAPCSOLÁSA\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"Előugró ablakok némítása\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"NSP újracsomagolás kikapcsolása\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"Disable Titlekey check\"\r\nmsgstr \"Titlekey ellenőrzés kikapcsolása\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"Enable Shorten Name\"\r\nmsgstr \"Rövidített név bekapcsolása\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Enable Tinfoil Download\"\r\nmsgstr \"Tinfoil Letöltés bekapcsolása\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"Enable SysVer 0 Patch\"\r\nmsgstr \"SysVer 0 Patch bekapcsolása\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"Save Windows Location and Size\"\r\nmsgstr \"Ablak helyének és méretének mentése\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"Scan for existing games\"\r\nmsgstr \"Meglévő játékok keresése\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 Decoder\"\r\nmsgstr \"Base64 Dekódoló\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"Letöltés\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"Beállítások\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"Eszközök\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"NSP újracsomagolás bekapcsolása\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"Előugró ablakok némításának feloldása\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \"Titlekey ellenőrzés bekapcsolása\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"JÁTÉK KÉPÉNEK ENGEDÉLYEZÉSE\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"Rövidített név kikapcsolása\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \"Tinfoil Letöltés kikapcsolása\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"SysVer 0 Patch kikapcsolása\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \"Állapot:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"Játék\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"Állapot\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \"Játék Képe:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"\"\r\n\"Kattints a képre fent, \\n\"\r\n\"hogy megnyisd a játékot az eShop-ban!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"Demo-k kizárása\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"Title ID:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"Title Key:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \"Frissítés verziója:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \"Letöltési opciók:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \"Alap játék + Frissítés + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"Alap játék + Frissítés\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"Frissítés + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"Csak az alap játék\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"Csak frissítés\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"Összes DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"Hozzáadás a sorhoz\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"Titlekey-ek frissítése\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"Sor Menü\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"A kiválasztott játék eltávolítása\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"Összes Eltávolítása\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"Összes Letöltése\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"Kattints az 'Összes Letöltése' gombra, hogy az összes sorban álló játékot letöltsd!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"Állapot: Játék állapotának lekérése... Kérlek várj!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"A jelenlegi állapotfájl elkészítése zajlik... Kérlek legyél türelemmel, ez eltarthat egy ideig attól függően, hogy mennyi játékod van.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"Hiba, a 'Current_status.txt' nem létezik\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"Állapot: Kész!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Játék képfájljának letöltése...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"Hiba\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \"TitleID {} nem egy 32-karakterű hexadecimális szám!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \"TitleID {} nem egy 16-karakterű hexadecimális szám!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"A letöltés elkezdődött! Egy ideig elfog tartani, kérlek legyél türelemmel. Megtudod nézni a CMD-t (parancssor) a letöltés állapotáról.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"Letöltés befejezve!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"Nincsenek elérhető frissítések a játékhoz\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"Nincsenek elérhető frissítések a játékhoz, alap játék letöltve!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Nem választottál mentési helyet a fájlnak!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Persistent queue not found, skipping...\"\r\nmsgstr \"Jelenlegi sor nem található, kihagyás...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"Ez az elem nem található a sorban.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \"A titleID nem található a listában.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"Nem választottál ki törlendő játékokat!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"A sorba állított játékaid letöltése elkezdődött! Értesülni fogsz róla, amint a letöltés befejeződött, addig pedig várj türelemmel.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"Játékok letöltése...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \"Nem érhető el frissítés ehhez a titleID-hoz: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \"Nem érhető el frissítés ehhez a titleID-hoz: {}, alap játék letöltve!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"Letöltés befejezve!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \"Letöltés Befejezve!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"Állapot: Titlekey frissítése\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"Frissítés befejezve!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \"Új játékok száma: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"Bezárás\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"Állapot: Frissítés befejezve, nincs több frissítésre váró játék!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Állapot: Frissítés befejezve, nincs több frissítésre váró játék!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"Állapot: Frissítés befejezve, Adatbázis teljesen újraépítve\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \"Az {} adatbázis szerver éppen nem elérhető\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \"Titlekey ellenőrzés bekapcsolása\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"Titlekey ellenőrzés kikapcsolása\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"{} másodpercbe telt az összes kép letöltése!\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"A játékok képeinek letöltése befejeződött!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"Hiba a verzió lekérése közben\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \"Nincs TitleID, vagy a TitleID nem 16 karakterből áll!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"Ablak mérete és helyzete elmentve!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"Meglévő játékok keresése\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"Böngészés\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"Keresés\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"Nem választottál kategóriát!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"A kiválasztott mappa nem létezik!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"Befejeződött a játékaid keresése!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"Állapot: A jelenlegi fájl felépítése zajlik... Kérlek várj, ez sok ideig is eltarthat attól függően, hogy mennyi játékod van.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"Base64 szöveg:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"Dekódolás\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"Dekódolt szöveg:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"Megnyitás\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \"Játék infó:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \"Játék ára:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description:\"\r\nmsgstr \"Játék leírása:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher:\"\r\nmsgstr \"Kiadó:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer\"\r\nmsgstr \"Fejlesztő\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date:\"\r\nmsgstr \"Kiadás dátuma:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category:\"\r\nmsgstr \"Kategória:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players:\"\r\nmsgstr \"Játékosok száma:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"A játék infó nem érhető el jelenleg!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"Infó\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"Készítők\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"Nyelv\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"Kérlek indítsd újra a GUI-t, az új nyelv használatához!\"\r\n\r\n\r\nmsgid 'New'\r\nmsgstr 'Új'\r\n\r\nmsgid 'Own'\r\nmsgstr 'Meglévő játék'\r\n\r\nmsgid 'Update'\r\nmsgstr 'Frissítés elérhető'\r\n\r\nmsgid 'Latest'\r\nmsgstr 'Legújabb'\r\n"
  },
  {
    "path": "locales/id/LC_MESSAGES/language.po",
    "content": "# SOME DESCRIPTIVE TITLE.\r\n# Copyright (C) YEAR ORGANIZATION\r\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: PACKAGE VERSION\\n\"\r\n\"POT-Creation-Date: 2018-08-01 00:27+1200\\n\"\r\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\r\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\r\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Terjadi Kesalahan - Aplikasi dibuka menggunakan Python 2, mohon pasang Python 3 dan hapus Python 2\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \"Terjadi kesalahan dalam memasang {0}, tutup aplikasi dan lakukan pemasangan manual dengan mengetik di CMD: pip3 install {0}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Memeriksa modul-modul yang diperlukan...\\n\"\r\n\"\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"Pemeriksaan selesai, semua lengkap!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"Gagal mendapatkan file yang diperlukan! Cek koneksi internet anda\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"Cek apakah ada spasi tambahan di bagian paling bawah dari file titlekeys.txt! Hapus jika ada!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"Terjadi kesalahan!, file CDNSP-GUI-config.json tidak ditemukan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"Pilih lokasi Unduhan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"Tampilkan gambar Game\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \"Muat Antrian Tersimpan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"Simpan Antrian\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"Aria2c tidak dapat digunakan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"NONAKTIFKAN GAMBAR GAME\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"Matikan Semua Pop-up\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"Nonaktifkan NSP Repack\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"Disable Titlekey check\"\r\nmsgstr \"Nonaktifkan pengecekan Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"Enable Shorten Name\"\r\nmsgstr \"Aktifkan Pemendekan Nama\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Enable Tinfoil Download\"\r\nmsgstr \"Aktifkan Unduhan Tinfoil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"Enable SysVer 0 Patch\"\r\nmsgstr \"Aktifkan Patch SysVer 0\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"Save Windows Location and Size\"\r\nmsgstr \"Simpan Ukuran dan Lokasi Windows\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"Scan for existing games\"\r\nmsgstr \"Scan game yang tersedia\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 Decoder\"\r\nmsgstr \"Dekoder Base64\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"Unduhan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"Pengaturan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"Peralatan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"Aktifkan NSP Repack\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"Nyalakan Semua Pop-up\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \"Aktifkan pengecekan Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"AKTIFKAN GAMBAR GAME\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"Nonaktifkan Pemendekan Nama\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \"Nonaktifkan Unduhan Tinfoil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"Nonaktifkan Patch SysVer 0\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \"Status:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"Game\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"Status\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \"Gambar Game:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"\"\r\n\"Klik gambar game di atas \\n\"\r\n\"untuk membuka game di eShop!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"Tanpa Demo\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"Title ID:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"Title Key:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \"Pilih versi update:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \"Pilihan unduhan:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \"Game + Update + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"Game + Update\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"Update + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"Game saja\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"Update saja\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"Semua DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"Tambahkan ke antrian\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"Perbarui Titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"Daftar Antrian\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"Hapus game terpilih\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"Hapus semua\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"Unduh semua\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"Klik unduh semua untuk mengunduh semua game di antrian!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"Status: Mendapatkan status game... Tunggu sebentar\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Membangun status file saat ini... Tunggu sebentar, ini akan memakan waktu tergantung seberapa banyak game yang anda miliki.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"Terjadi kesalahan, file Current_status.txt tidak ditemukan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"Status: Selesai!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Mengunduh gambar game...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"Terjadi Kesalahan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \"Titlekey {} bukan angka heksadesimal 32-digit\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \"TitleID {} bukan angka heksadesimal 16-digit\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"Memulai mengunduh! Mohon tunggu sebentar. Anda bisa cek CMD untuk melihat status unduhan anda.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"Unduhan selesai!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"Tidak ada pembaruan tersedia untuk game ini\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"Tidak ada pembaruan tersedia untuk game ini, game telah terunduh\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Anda belum memilih lokasi untuk menyimpan file!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Persistent queue not found, skipping...\"\r\nmsgstr \"Antrian tidak ditemukan, melewati...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"Item tidak ditemukan di antrian\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \"Nama untuk titleID tidak ditemukan di daftar\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"Tidak ada game terpilih untuk dihapus!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"Unduhan untuk semua game dalam antrian akan dimulai! Anda akan diberitahu ketika semua unduhan telah selesai, mohon tunggu dan bersabar!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"Mengunduh game...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \"Tidak ada pembaruan tersedia untuk titleID: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \"Tidak ada pembaruan tersedia untuk titleID: {}, game terunduh!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"Unduhan selesai!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \"Unduhan selesai!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"Status: Membarui titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"Pembaruan selesai!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \"Jumlah game baru yang ditambahkan: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"Tutup\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"Status: Pembaruan selesai, tidak ada game baru untuk diperbarui!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Status: Pembaruan selesai, tidak ada game baru untuk diperbarui!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"Status: Pembaruan selesai, Database dibangun ulang\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \"Server database {} sedang tidak tersedia atau down\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \"Aktifkan Pengecekan Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"Nonaktifkan Pengecekan Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"{} detik diperlukan untuk mendapatkan semua gambar!\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"Selesai mendapatkan semua gambar game!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"Gagal mendapatkan versi\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \"Tidak ada TitleID atau TitleID bukan 16 karakter\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"Ukuran dan posisi windows tersimpan!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"Cari game yang tersedia\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"Telusuri\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"Scan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"Anda tidak memilih directory!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"Directory terpilih tidak ada!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"Scan game telah selesai!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"Status: Membangun status file saat ini... Tunggu sebentar, ini akan memakan waktu tergantung seberapa banyak game yang anda miliki.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"Teks Base64:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"Dekode\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"Teks terdekode:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"Buka\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \"Info Game\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \"Harga Game:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description:\"\r\nmsgstr \"Deskripsi Game:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher:\"\r\nmsgstr \"Publisher:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer\"\r\nmsgstr \"Developer\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date:\"\r\nmsgstr \"Tanggal Rilis:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category:\"\r\nmsgstr \"Kategori:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players:\"\r\nmsgstr \"Jumlah Pemain:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"Info Game tidak tersedia untuk saat ini!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"Tentang\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"Credits\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"Bahasa\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"Mohon restart GUI untuk menggunakan bahasa baru!\"\r\n\r\nmsgid 'New'\r\nmsgstr 'Baru'\r\n\r\nmsgid 'Own'\r\nmsgstr 'Dimiliki'\r\n\r\nmsgid 'Update'\r\nmsgstr 'Perlu Pembaruan'\r\n\r\nmsgid 'Latest'\r\nmsgstr 'Terbaru'\r\n\r\nmsgid \"Update Version List\"\r\nmsgstr \"Perbarui Daftar Versi Game\"\r\n\r\nmsgid \"No Japanese Game\"\r\nmsgstr \"Tanpa Game Jepang\""
  },
  {
    "path": "locales/id/LC_MESSAGES/language_old.po",
    "content": "# SOME DESCRIPTIVE TITLE.\r\n# Copyright (C) YEAR ORGANIZATION\r\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: PACKAGE VERSION\\n\"\r\n\"POT-Creation-Date: 2018-08-01 00:27+1200\\n\"\r\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\r\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\r\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Terjadi Kesalahan - Aplikasi dibuka menggunakan Python 2, mohon pasang Python 3 dan hapus Python 2\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \"Terjadi kesalahan dalam memasang {0}, tutup aplikasi dan lakukan pemasangan manual dengan mengetik di CMD: pip3 install {0}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Memeriksa modul-modul yang diperlukan...\\n\"\r\n\"\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"Pemeriksaan selesai, semua lengkap!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"Gagal mendapatkan file yang diperlukan! Cek koneksi internet anda\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"Cek apakah ada spasi tambahan di bagian paling bawah dari file titlekeys.txt! Hapus jika ada!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"Terjadi kesalahan!, file CDNSP-GUI-config.json tidak ditemukan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"Pilih lokasi Unduhan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"Tampilkan gambar Game\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \"Muat Antrian Tersimpan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"Simpan Antrian\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"Aria2c tidak dapat digunakan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"NONAKTIFKAN GAMBAR GAME\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"Matikan Semua Pop-up\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"Nonaktifkan NSP Repack\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"Disable Titlekey check\"\r\nmsgstr \"Nonaktifkan pengecekan Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"Enable Shorten Name\"\r\nmsgstr \"Aktifkan Pemendekan Nama\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Enable Tinfoil Download\"\r\nmsgstr \"Aktifkan Unduhan Tinfoil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"Enable SysVer 0 Patch\"\r\nmsgstr \"Aktifkan Patch SysVer 0\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"Save Windows Location and Size\"\r\nmsgstr \"Simpan Ukuran dan Lokasi Windows\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"Scan for existing games\"\r\nmsgstr \"Scan game yang tersedia\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 Decoder\"\r\nmsgstr \"Dekoder Base64\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"Unduh\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"Pengaturan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"Peralatan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"Aktifkan NSP Repack\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"Nyalakan Semua Pop-up\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \"Aktifkan pengecekan Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"AKTIFKAN GAMBAR GAME\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"Nonaktifkan Pemendekan Nama\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \"Nonaktifkan Unduhan Tinfoil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"Nonaktifkan Patch SysVer 0\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \"Status:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"Game\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"Status\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \"Gambar Game:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"\"\r\n\"Klik gambar game di atas \\n\"\r\n\"untuk membuka game di eShop!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"Tanpa Demo\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"Title ID:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"Title Key:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \"Pilih versi update:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \"Pilihan unduhan:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \"Game + Update + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"Game + Update\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"Update + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"Game saja\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"Update saja\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"Semua DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"Tambahkan ke antrian\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"Perbarui Titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"Daftar Antrian\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"Hapus game terpilih\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"Hapus semua\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"Unduh semua\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"Klik unduh semua untuk mengunduh semua game di antrian!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"Status: Mendapatkan status game... Tunggu sebentar\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Membangun status file saat ini... Tunggu sebentar, ini akan memakan waktu tergantung seberapa banyak game yang anda miliki.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"Terjadi kesalahan, file Current_status.txt tidak ditemukan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"Status: Selesai!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Mengunduh gambar game...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"Terjadi Kesalahan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \"Titlekey {} bukan angka heksadesimal 32-digit\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \"TitleID {} bukan angka heksadesimal 16-digit\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"Memulai mengunduh! Mohon tunggu sebentar. Anda bisa cek CMD untuk melihat status unduhan anda.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"Unduhan selesai!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"Tidak ada pembaruan tersedia untuk game ini\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"Tidak ada pembaruan tersedia untuk game ini, game telah terunduh\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Anda belum memilih lokasi untuk menyimpan file!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Persistent queue not found, skipping...\"\r\nmsgstr \"Antrian tidak ditemukan, melewati...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"Item tidak ditemukan di antrian\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \"Nama untuk titleID tidak ditemukan di daftar\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"Tidak ada game terpilih untuk dihapus!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"Unduhan untuk semua game dalam antrian akan dimulai! Anda akan diberitahu ketika semua unduhan telah selesai, mohon tunggu dan bersabar!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"Mengunduh game...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \"Tidak ada pembaruan tersedia untuk titleID: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \"Tidak ada pembaruan tersedia untuk titleID: {}, game terunduh!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"Unduhan selesai!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \"Unduhan selesai!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"Status: Membarui titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"Pembaruan selesai!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \"Jumlah game baru yang ditambahkan: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"Tutup\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"Status: Pembaruan selesai, tidak ada game baru untuk diperbarui!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Status: Pembaruan selesai, tidak ada game baru untuk diperbarui!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"Status: Pembaruan selesai, Database dibangun ulang\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \"Server database {} sedang tidak tersedia atau down\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \"Aktifkan Pengecekan Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"Nonaktifkan Pengecekan Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"{} detik diperlukan untuk mendapatkan semua gambar!\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"Selesai mendapatkan semua gambar game!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"Gagal mendapatkan versi\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \"Tidak ada TitleID atau TitleID bukan 16 karakter\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"Ukuran dan posisi windows tersimpan!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"Cari game yang tersedia\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"Telusuri\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"Scan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"Anda tidak memilih directory!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"Directory terpilih tidak ada!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"Scan game telah selesai!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"Status: Membangun status file saat ini... Tunggu sebentar, ini akan memakan waktu tergantung seberapa banyak game yang anda miliki.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"Teks Base64:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"Dekode\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"Teks terdekode:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"Buka\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \"Info Game\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \"Harga Game:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description:\"\r\nmsgstr \"Deskripsi Game:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher:\"\r\nmsgstr \"Publisher:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer\"\r\nmsgstr \"Developer\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date:\"\r\nmsgstr \"Tanggal Rilis:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category:\"\r\nmsgstr \"Kategori:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players:\"\r\nmsgstr \"Jumlah Pemain:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"Info Game tidak tersedia untuk saat ini!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"Tentang\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"Credits\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"Bahasa\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"Mohon restart GUI untuk menggunakan bahasa baru!\"\r\n\r\n\r\nmsgid 'New'\r\nmsgstr 'Baru'\r\n\r\nmsgid 'Own'\r\nmsgstr 'Dimiliki'\r\n\r\nmsgid 'Update'\r\nmsgstr 'Perlu Pembaruan'\r\n\r\nmsgid 'Latest'\r\nmsgstr 'Terbaru'\r\n"
  },
  {
    "path": "locales/it/LC_MESSAGES/language.po",
    "content": "# SOME DESCRIPTIVE TITLE.\r\n# Copyright (C) YEAR ORGANIZATION\r\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: \\n\"\r\n\"POT-Creation-Date: 2018-08-01 00:27+1200\\n\"\r\n\"PO-Revision-Date: 2018-08-15 10:23+0200\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\"Last-Translator: \\n\"\r\n\"Language-Team: \\n\"\r\n\"Language: it\\n\"\r\n\"X-Generator: Poedit 2.1.1\\n\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Errore - Applicazione avviata con Python 2, per favore installa Python 3 e cancella Python 2\\n\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \"Errore d'installazione {0}, chiudi l'applicazione e installa i moduli manualmente digitanto in CMD: pip3 install {0}\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Verifico che tutti i moduli richiesti siano installati\\n\"\r\n\"\\n\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"Tutto a posto!\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"Impossibile recuperare i file necessari! Verifica la tua connessione internet\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"Controlla se c'è uno SPAZIO alla fine del tuo file titlekeys.txt ! Se presente eliminalo!\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"Errore!, File CDNSP-GUI-config.json mancante\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"Seleziona cartella di Download\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"Precarica le immagini di gioco\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \"Carica la coda salvata\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"Salva la coda di Download\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"Aria2c non più attivo\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"Disabilita le immagini di gioco\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"Muta tutti i pop-up\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"Disabilita repack degli NSP\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"Disable Titlekey check\"\r\nmsgstr \"Disabilita il controllo Titlekey\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"Enable Shorten Name\"\r\nmsgstr \"Abilita nomi abbreviati\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Enable Tinfoil Download\"\r\nmsgstr \"Abilita il download per Tinfoil\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"Enable SysVer 0 Patch\"\r\nmsgstr \"Abilita la patch Sysver 0\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"Save Windows Location and Size\"\r\nmsgstr \"Salva posizione e dimensione della finestra del programma\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"Scan for existing games\"\r\nmsgstr \"Scansione dei giochi scaricati\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 Decoder\"\r\nmsgstr \"Decoder Base64\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"Scarica\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"Opzioni\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"Strumenti\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"Abilita repack degli NSP\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"Riattiva tutti i pop-up\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \"Abilita il controllo Titlekey\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"Abilita l'immagine di gioco\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"Disabilita nomi abbreviati\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \"Disabilita il download per Tinfoil\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"Disabilita la patch Sysver 0\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \"Stato:\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"Gioco\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"Stato\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \"Immagine di Gioco:\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"\"\r\n\"Clicca sull'immagine del gioco\\n\"\r\n\"per aprire la pagina corrispondente dell'eShop!\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"Nascondi Demo\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"Title ID:\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"Title key:\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \"Seleziona versione aggiornamento:\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \"Opzioni di download:\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \"Gioco base + Aggiornamenti + DLC\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"Gioco base + Aggiornamenti\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"Aggiornamenti + DLC\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"Solo Gioco base\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"Solo Aggiornamenti\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"Tutti i DLC\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"Aggiungi alla coda\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"Aggiorna Titlekeys\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"Menu della Coda\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"Rimuovi gioco selezionato\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"Rimuovi tutto\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"Scarica tutto\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"Clicca su scarica tutto per scaricare tutti i giochi in coda!\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"Stato : Ottenimento dello stato di gioco... Attendere prego\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Costruendo lo stato dei file... Attendere prego, il tempo necessario potrebbe variare in base al numero di titoli posseduti.\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"Errore, Current_status.txt non esiste\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"Stato: Fatto!\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Scaricando l'immagine del gioco...\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"Errore\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \"Titlekey {} non è un numero esadecimale a 32 cifre!\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \"TitleID {} non è un numero esadecimale a 16 cifre!\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"Avvio del download! Ci potrebbe volere del tempo, sii paziente. Puoi verificare lo stato dei download dalla finestra del Prompt dei Comandi (CMD).\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"Download terminato!\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"Nessun aggiornamento disponibile per il gioco\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"Nessun aggiornamento disponibile per il gioco, gioco base scaricato!\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Non hai scelto dove salvare i file!\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Persistent queue not found, skipping...\"\r\nmsgstr \"Coda persistente non trovata, salto...\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"Oggetto non trovato in coda\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \"Nome per titleID non trovato nella lista\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"Nessun gioco da rimuovere selezionato!\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"Il download di tutti i giochi messi in coda inizierà ora! Sarai informato una volta che tutti i download saranno completi. Attendi e sii paziente!\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"Giochi in download...\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \"Nessun aggiornamento disponibile per titleID: {}\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \"Nessun aggiornamento disponibile per titleID: {}, gioco base scaricato!\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"Download completato!\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \"Download completato!\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"Stato: Aggiornamento titlekeys\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"Aggiornamento completato!\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \"Totale di nuovi giochi aggiunti: {}\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"Chiudi\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"Stato: Aggiornamento completato, Non ci sono nuovi giochi da aggiornare!\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Stato: Aggiornamento completato, Non ci sono nuovi giochi da aggiornare!\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"Stato: Aggiornato completato, Database ricostruito da zero\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \"Il database server {} potrebbere essere down o non disponibile\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \"Abilita Verifica Titlekey\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"Disabilita Verifica Titlekey\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Ci vorranno {} secondi per scaricare tutte le immagini!\\n\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"Tutte le immagini scaricate!\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"Impossibile ottenere la versione\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \"Nessun TitleID o TitleID non di 16 caratteri!\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"Dimensioni e posizione della finestra sono state salvate!\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"Cerca giochi scaricati\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"Sfoglia\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"Scansiona\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"Non hai scelto una directory!\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"La directory selezionata non esiste!\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"Scansione dei giochi posseduti completata!\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"Stato: Costruendo lo stato dei file... Attendere prego, il tempo necessario potrebbe variare in base al numero di titoli posseduti.\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"Testo Base64:\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"Decodifica\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"Testo decodificato:\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"Apri\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \"Informazioni di gioco:\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \"Prezzo del gioco:\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description:\"\r\nmsgstr \"Descrizione del gioco:\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher:\"\r\nmsgstr \"Publisher:\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer\"\r\nmsgstr \"Sviluppatore:\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date:\"\r\nmsgstr \"Data di rilascio:\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category:\"\r\nmsgstr \"Categoria:\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players:\"\r\nmsgstr \"Numero di giocatori:\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"Informazioni di gioco non disponibili al momento!\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"Info\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"Crediti\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"Lingua\"\r\n\r\n#: C:\\Users\\Bob\\Google\r\n#: Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"Per favore, riavvia la GUI per applicare la nuova lingua!\"\r\n\r\nmsgid \"New\"\r\nmsgstr \"Nuovo\"\r\n\r\nmsgid \"Update\"\r\nmsgstr \"Aggiornamento\"\r\n\r\nmsgid \"Latest\"\r\nmsgstr \"Ultimo\"\r\n\r\nmsgid \"Own\"\r\nmsgstr \"Posseduto\"\r\n\r\nmsgid \"No Japanese Game\"\r\nmsgstr \"Nascondi giochi Giapponesi\"\r\n\r\nmsgid \"Update Version List\"\r\nmsgstr \"Aggiorna Lista Versioni\"\r\n\r\nmsgid \"Updating version list...\"\r\nmsgstr \"Aggiorno la lista versioni...\"\r\n\r\nmsgid \"Current language:\"\r\nmsgstr \"Lingua corrente:\"\r\n"
  },
  {
    "path": "locales/it/LC_MESSAGES/language_old.po",
    "content": "# SOME DESCRIPTIVE TITLE.\r\n# Copyright (C) YEAR ORGANIZATION\r\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: PACKAGE VERSION\\n\"\r\n\"POT-Creation-Date: 2018-08-01 00:27+1200\\n\"\r\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\r\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\r\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Errore - Applicazione lancaita con Python 2, perfavore installa Python 3 e cancella Python 2\\n\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \"Errore d'installazione {0}, chiudi l'applicazione e puoi installare i moduli manualmente digidanto in CMD: pip3 install {0}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \"controllado se tutti i moduli richiesti sono installati\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"tutto sembra a posto\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"impossibile prendere i files richiesti! controlla la tua connessione ad internet\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"controlla se c'è uno SPAZIO alla fine del tuo file titlekeys.txt ! cancellalo se c'è\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"Errore!, File CDNSP-GUI-config.json mancante\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"Seleziona posizione di scarico \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"Precarica le immagini di gioco\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \"Carica la coda salvata\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"salva la coda\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"Aria2c verrà persa\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"DISABILITA LE IMMAGINI DI GIOCO\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"MUTA tutti i pop-ups\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"Disabilita NSP repack\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"Disable Titlekey check\"\r\nmsgstr \"Disabilita il controllo Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"Enable Shorten Name\"\r\nmsgstr \"Abilita abbreviare il nome\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Enable Tinfoil Download\"\r\nmsgstr \"Abilita lo scarico Tinfoil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"Enable SysVer 0 Patch\"\r\nmsgstr \"abilita la patch Sysver 0\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"Save Windows Location and Size\"\r\nmsgstr \"Salva posizione e dimensione della finestra del programma \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"Scan for existing games\"\r\nmsgstr \"Scansiona per i giochi esistenti\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 Decoder\"\r\nmsgstr \"Base64 decoder\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"Scarica\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"Opzioni\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"Utensili\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"Abilita Nsp Repack\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"Riattiva tutti i pop-ups\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \"Abilita il controllo Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"Abilita l'immagine di gioco\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"Disabilita l'abbreviazione di nome\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \"Disabilita lo scarico Tinfoil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"Disabilita SysVer 0 patch\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \"Stato:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"GIOCO\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"Stato\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \"Immagine di Gioco:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"\"\r\n\"Clicca sull'immagine del gioco \\n\"\r\n\"per aprire la pagina del gioco in eShop!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"No Demo\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"Title ID\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"Title key\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \"Seleziona versione aggiornata\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \"Opzioni di scarico\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \"Gioco base + Aggiornamenti + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"Gioco base + Aggiornamenti\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"Aggiornamenti + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"Solo Gioco base\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"Solo Aggiornamenti\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"Tutti i DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"Aggiungi alla coda\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"Aggiorna Titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"Menu della Coda\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"Rimuovi gioco selezionato\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"Rimuovi tutto\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"Scarica tutto\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"Clicca su scarica tutto per scaricare tutti i giochi in coda\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"Stato : Ottenimento dello stato di gioco... Attendere prego \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"Costruento il corrente stato del file... Attnedere prego, questo potrebbe metterci del tempo a secondo di quanti giochi tu abbia\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"Errore, Current_statu.txt non esiste\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"Stato: Fatto!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Scaricando l'immagine del gioco...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"Errore\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \"Titlekey {} non è 32-digits numero esadecimale!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \"TitleID {} non è 16-digits numero esadecimale!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"Inizio dello scarico! Ci potrebbe mettere del tempo, sii paziente. Puoi controllare dal CMD (command prompt) per vedere il progresso dello scarico\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"Scarico terminato!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"Nessun aggiornamento disponibile per il gioco\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"Nessun aggiornamento disponibile per il gioco, gioco base scaricato\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Non hai scelto dove salvare i file!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Persistent queue not found, skipping...\"\r\nmsgstr \"Coda persistente non trovata , saltare... \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"Oggetto non trovato in coda\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \"Nome per titleID non trovato nella lista\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"nessun gioco selezionato da rimuovere\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"Lo scarico di tutti i giochi messi in coda inizierà ora! Sarai informato una volta che tutti gli scarichi saranno completi, attenti e sii paziente!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"Giochi in scarico\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \"Nessun aggiornamento disponibile per titleID: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \"Nessun aggiornamento disponibile per titleID: {}, gioco base scaricato\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"Scarico completato\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \"Scarico completato\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"Stato: Aggiornamento titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"Aggiornamento finito!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \"Totale dei nuovi giochi aggiunti: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"Chiudi\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"Stato: Aggiornamento finito, Non ci sono nuovi giochi da aggiornare!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Stato: Aggiornamento finito, Non ci sono nuovi giochi da aggiornare!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"Stato: Aggiornato finito, Database ricostruito da zero\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \"Il database server {} potrebbere essere down o non disponibile\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \"Abilita Verifica Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"Disabilita Verifica Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Ci impiega {} secondi per avere tutte le immagini!\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"Fatto ottenute tutte le immagini\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"non è riuscito ad ottenere la versione\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \"No TitleID or TitleID non 16 caratteri!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"le dimensione e posizione della finestra del programma sono state salvate\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"Cerca giochi esistenti\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"sfoglia\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"scansiona\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"Non hai scelto una directory\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"la directory scelta non esiste\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"Finito di scansionare i tuoi giochi\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"Stato: Costruendo il corrente stato file... Attendere prego, ci potrebbe mettere del tempo dipende da quanti giochi hai\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"Base64 testo:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"Decodifica\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"Testo decodificato:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"Apri\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \"Informazioni di gioco:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \"Prezzo del gioco:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description:\"\r\nmsgstr \"Descrizione del gioco:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher:\"\r\nmsgstr \"Publisher:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer\"\r\nmsgstr \"Sviluppatore\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date:\"\r\nmsgstr \"Data di rilascio:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category:\"\r\nmsgstr \"Categoria\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players:\"\r\nmsgstr \"Numero di giocatori:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"Informazioni di gioco non disponibili al momento!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"Circa\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"Crediti\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"Lingua\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"Perfavore fai ripartire la GUI per applicare la nuova lingua\"\r\n\r\n\r\nmsgid 'New'\r\nmsgstr 'Nuovo'\r\n\r\nmsgid 'Own'\r\nmsgstr 'Posseduto'\r\n\r\nmsgid 'Update'\r\nmsgstr 'Aggiornamento'\r\n\r\nmsgid 'Latest'\r\nmsgstr 'Ultimo'\r\n"
  },
  {
    "path": "locales/ja/LC_MESSAGES/language.po",
    "content": "# SOME DESCRIPTIVE TITLE.\r\n# Copyright (C) YEAR ORGANIZATION\r\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: PACKAGE VERSION\\n\"\r\n\"POT-Creation-Date: 2018-08-01 00:27+1200\\n\"\r\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\r\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\r\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"エラーの Python 2 インストールされています。 Python 2 を削除します。 Python 3 をインストールします。\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \"エラーのインストール {0}, アプリケーションを閉じると PIP 3 モジュールを手動でインストールします. {0}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"必要なモジュールのインストールをチェックしています。\\n\"\r\n\"\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"すべてのものがインストールされています。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"必要なファイルを取得できませんでした。 インターネット接続を確認します。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"下部に余分なスペースのために titlekeys ファイルがないかどうかを調べます。 余分なスペースを削除します。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"エラーファイルが見つかりません。CDNSP-GUI-config.json\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"ダウンロードする場所を選択します。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"プレロードゲーム画像。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \"保存されたキューをロードします。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"ダウンロードキューを保存します。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"Aria2c 使用されなくなりました。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"ゲームのイメージを無効にする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"すべてのポップアップのミュート\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"NSP 再構築を無効にする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"Disable Titlekey check\"\r\nmsgstr \"Titlekey 検査を無効にする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"Enable Shorten Name\"\r\nmsgstr \"短縮名を有効にする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Enable Tinfoil Download\"\r\nmsgstr \"Tinfoil ダウンロードを有効にする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"Enable SysVer 0 Patch\"\r\nmsgstr \"有効に SysVer 0 パッチ\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"Save Windows Location and Size\"\r\nmsgstr \"ストアプログラムサイズと位置\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"Scan for existing games\"\r\nmsgstr \"既存のゲームをスキャンします。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 Decoder\"\r\nmsgstr \"ベース 64 デコードします。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"ダウンロードする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"選択肢\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"工具\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"NSP 再構築を有効にする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"すべてのポップアップのミュートを解除\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \"Titlekey チェックを有効にする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"ゲーム画像を有効にする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"短い名前を無効にする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \"Tinfoil ダウンロードを無効にする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"SysVer 0 パッチを無効にする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \"地位\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"ゲーム\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"状態\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \"ゲーム画像\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"\"\r\n\"上記のゲームの画像をクリックしてください。\\n\"\r\n\"私は、 eShop で試合を開きます。\"\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"デモの表示 / 非表示\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"タイトル ID\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"タイトルキー\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \"アップデートのバージョンを選択します。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \"ダウンロードのオプション :\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \"基本ゲーム + 更新 + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"基本ゲーム + 更新\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"更新 + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"ベースのゲーム\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"更新のみ\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"すべて DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"キューに追加します。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"Titlekeys を更新\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"キューのメニュー\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"取り除く選りすぐりの\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"すべてを破棄\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"すべてのダウンロードを開始します。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"すべてのダウンロードを開始しますすべてのダウンロードを開始しますをクリックします。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"ステータス：ゲームの状況の検査 ... しばらくお待ちください...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"ゲームの状態のファイルを作成しています ... 待ってください、このしたゲームの数に応じていくつかの時間がかかることがあります。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"エラーは、 現在のステータス.txt Current_status.txt が存在しません。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"ステータス : 終了しました !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"ゲーム画像をダウンロードしています ...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"エラー\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \"Titlekey {} 16 進数の 32 桁の番号ではありません\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \"TitleID {} 桁の数字 16 桁の 16 進数値ではありません。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"をダウンロード開始！ いくつかの時間、患者にしてください。 背面には、 CMD ( コマンドプロンプト ) を確認して、ダウンロードの進捗状況を確認することができます。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"ダウンロードが完了しました！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"ゲームのために利用可能な更新がありません\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"ゲームのために利用可能な更新がありません、ベースのゲームをダウンロードした !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"ファイルを保存する場所を選択してください！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Persistent queue not found, skipping...\"\r\nmsgstr \"永続的なキューを見つけられませんでした。 スキップしています .....\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"キューが空になっています。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \"TitleID 用リストに名が見つかりません\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"を削除するには、選択したゲームはありません！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"ダウンロードを開始しています。 私は完了している時に私が通知します。 しばらくお待ちください。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"ゲームをダウンロードしています ...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \"TitleID に利用可能な更新がありません。 {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \"TitleID に利用可能な更新がありません。 {} ベースのゲームをダウンロードした !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"ダウンロードが完了しました！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \"ダウンロードが完了しました！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"ステータス：新しい titlekeys 得ること\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"更新を終了しました！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \"追加されたのは新しいゲームの合計数： {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"終止; 締切り\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"ステータス : 終了を更新するには、何もありません。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"ステータス : 終了を更新するには、何もありません。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"ステータス：完了するには、新しい更新はありません！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \"データベース・サーバ {} がダウンしているか、または使用できないことがあり\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \"Titlekey チェックを有効にする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"Titlekey 検査を無効にする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"すべての画像を取得するために {} 秒かかりました！\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"すべてのゲーム画像の取得完了！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"バージョンの取得に失敗しました。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \"不足している TitleID または TitleID 16 文字ではありません！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"ウィンドウのサイズと位置が保存されました。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"既存のゲームを検索しています\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"立ち読み\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"スキャンするコンピュータ\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"エラー : ディレクトリを選択します。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"選択したディレクトリが存在しません！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"あなたのゲームのスキャンが完了しました！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"ステータス： ゲームの状態のファイルを作成しています ... 待ってください、このしたゲームの数に応じていくつかの時間がかかることがあります。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"ベース 64 のテキスト：\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"解読する\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"デコードされたテキスト :\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"開始する\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \"ゲーム情報:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \"ゲーム価格:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description:\"\r\nmsgstr \"ゲームの説明：\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher:\"\r\nmsgstr \"出版社:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer\"\r\nmsgstr \"開発者:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date:\"\r\nmsgstr \"リリース日:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category:\"\r\nmsgstr \"カテゴリ:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players:\"\r\nmsgstr \"プレーヤーの数:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"このゲームについての情報を見つけることができません。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"について\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"プログラムクレジット\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"言語\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"新しい言語を適用するには、 GUI を再起動してください！\"\r\n\r\nmsgid \"New\"\r\nmsgstr \"新しいゲーム\"\r\n\r\nmsgid \"Own\"\r\nmsgstr \"自身のゲーム\"\r\n\r\nmsgid \"Update\"\r\nmsgstr \"利用可能なアップデート\"\r\n\r\nmsgid \"Latest\"\r\nmsgstr \"最新バージョン\""
  },
  {
    "path": "locales/ja/LC_MESSAGES/language_.po",
    "content": "# SOME DESCRIPTIVE TITLE.\r\n# Copyright (C) YEAR ORGANIZATION\r\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: PACKAGE VERSION\\n\"\r\n\"POT-Creation-Date: 2018-08-01 00:27+1200\\n\"\r\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\r\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\r\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"エラーの Python 2 インストールされています。 Python 2 を削除します。 Python 3 をインストールします。\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \"エラーのインストール {0}, アプリケーションを閉じると PIP 3 モジュールを手動でインストールします. {0}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"必要なモジュールのインストールをチェックしています。\\n\"\r\n\"\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"\"すべてのものがインストールされています。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"必要なファイルを取得できませんでした。 インターネット接続を確認します。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"下部に余分なスペースのために titlekeys ファイルがないかどうかを調べます。 余分なスペースを削除します。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"エラーファイルが見つかりません。CDNSP-GUI-config.json\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"ダウンロードする場所を選択します。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"プレロードゲーム画像。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \"保存されたキューをロードします。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"ダウンロードキューを保存します。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"Aria2c 使用されなくなりました。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"ゲームのイメージを無効にする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"すべてのポップアップのミュート\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"NSP 再構築を無効にする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"Disable Titlekey check\"\r\nmsgstr \"Titlekey 検査を無効にする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"Enable Shorten Name\"\r\nmsgstr \"短縮名を有効にする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Enable Tinfoil Download\"\r\nmsgstr \"Tinfoil ダウンロードを有効にする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"Enable SysVer 0 Patch\"\r\nmsgstr \"有効に SysVer 0 パッチ\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"Save Windows Location and Size\"\r\nmsgstr \"ストアプログラムサイズと位置\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"Scan for existing games\"\r\nmsgstr \"既存のゲームをスキャンします。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 Decoder\"\r\nmsgstr \"ベース 64 デコードします。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"ダウンロードする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"選択肢\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"工具\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"NSP 再構築を有効にする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"すべてのポップアップのミュートを解除\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \"Titlekey チェックを有効にする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"ゲーム画像を有効にする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"短い名前を無効にする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \"Tinfoil ダウンロードを無効にする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"SysVer 0 パッチを無効にする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \"地位\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"ゲーム\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"状態\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \"ゲーム画像\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"\"\r\n\"上記のゲームの画像をクリックしてください。\\n\"\r\n\"私は、 eShop で試合を開きます。\"\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"デモの表示 / 非表示\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"タイトル ID\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"タイトルキー\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \"アップデートのバージョンを選択します。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \"ダウンロードのオプション :\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \"基本ゲーム + 更新 + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"基本ゲーム + 更新\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"更新 + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"ベースのゲーム\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"更新のみ\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"すべて DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"キューに追加します。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"Titlekeys を更新\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"キューのメニュー\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"取り除く選りすぐりの\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"すべてを破棄\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"すべてのダウンロードを開始します。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"すべてのダウンロードを開始しますすべてのダウンロードを開始しますをクリックします。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"ステータス：ゲームの状況の検査 ... しばらくお待ちください...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"ゲームの状態のファイルを作成しています ... 待ってください、このしたゲームの数に応じていくつかの時間がかかることがあります。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"エラーは、 現在のステータス.txt Current_status.txt が存在しません。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"ステータス : 終了しました !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"\"\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"ゲーム画像をダウンロードしています ...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"エラー\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \"Titlekey {} 16 進数の 32 桁の番号ではありません\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \"TitleID {} 桁の数字 16 桁の 16 進数値ではありません。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"をダウンロード開始！ いくつかの時間、患者にしてください。 背面には、 CMD ( コマンドプロンプト ) を確認して、ダウンロードの進捗状況を確認することができます。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"ダウンロードが完了しました！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"ゲームのために利用可能な更新がありません\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"ゲームのために利用可能な更新がありません、ベースのゲームをダウンロードした !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"ファイルを保存する場所を選択してください！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Persistent queue not found, skipping...\"\r\nmsgstr \"永続的なキューを見つけられませんでした。 スキップしています .....\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"キューが空になっています。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \"TitleID 用リストに名が見つかりません\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"を削除するには、選択したゲームはありません！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"ダウンロードを開始しています。 私は完了している時に私が通知します。 しばらくお待ちください。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"ゲームをダウンロードしています ...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \"TitleID に利用可能な更新がありません。 {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \"TitleID に利用可能な更新がありません。 {} ベースのゲームをダウンロードした !\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"ダウンロードが完了しました！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \"ダウンロードが完了しました！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"ステータス：新しい titlekeys 得ること\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"更新を終了しました！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \"追加されたのは新しいゲームの合計数： {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"終止; 締切り\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"ステータス : 終了を更新するには、何もありません。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"ステータス：完了するには、新しい更新はありません！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \"データベース・サーバ {} がダウンしているか、または使用できないことがあり\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \"Titlekey チェックを有効にする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"Titlekey 検査を無効にする\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"すべての画像を取得するために {} 秒かかりました！\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"すべてのゲーム画像の取得完了！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"バージョンの取得に失敗しました。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \"不足している TitleID または TitleID 16 文字ではありません！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"ウィンドウのサイズと位置が保存されました。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"既存のゲームを検索しています\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"立ち読み\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"スキャンするコンピュータ\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"エラー : ディレクトリを選択します。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"選択したディレクトリが存在しません！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"あなたのゲームのスキャンが完了しました！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"ステータス： ゲームの状態のファイルを作成しています ... 待ってください、このしたゲームの数に応じていくつかの時間がかかることがあります。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"ベース 64 のテキスト：\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"解読する\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"デコードされたテキスト :\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"開始する\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \"ゲーム情報:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \"ゲーム価格:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description:\"\r\nmsgstr \"ゲームの説明：\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher:\"\r\nmsgstr \"出版社:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer\"\r\nmsgstr \"開発者:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date:\"\r\nmsgstr \"リリース日:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category:\"\r\nmsgstr \"カテゴリ:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players:\"\r\nmsgstr \"プレーヤーの数:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"このゲームについての情報を見つけることができません。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"について\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"プログラムクレジット\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"言語\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"新しい言語を適用するには、 GUI を再起動してください！\"\r\n\r\n"
  },
  {
    "path": "locales/ko/LC_MESSAGES/language.po",
    "content": "# SOME DESCRIPTIVE TITLE.\r\n# Copyright (C) YEAR ORGANIZATION\r\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: PACKAGE VERSION\\n\"\r\n\"POT-Creation-Date: 2018-08-01 00:27+1200\\n\"\r\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\r\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\r\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"오류 - 애플리케이션이 Python 2로 실행되어졌습니다. Python 3을 설치해주시고 Python 2를 삭제해주세요!\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \"설치 오류 {0}, 애플리케이션을 종료하신 후 CMD에서 다음과 같이 타이핑해서 모듈을 수동으로 설치해주세요: pip3 install {0}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"필요한 모듈이 설치되어 있는지 확인합니다!\\n\"\r\n\"\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"모든 게 좋아 보이네요! 애플리케이션이 곧 실행됩니다!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"필요한 파일을 얻을 수 없습니다! 인터넷 연결을 확인하세요!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"titlekeys.txt 파일의 가장 아랫부분에 빈칸이 있는지 확인하세요! 만약 있다면 지워주세요!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"오류!, CDNSP-GUI-config.json 파일을 찾지 못함.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"다운로드 위치 선택\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"게임 이미지 팩 다운 \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \"저장된 대기열 불러오기\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"대기열 저장하기\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"Aria2c 기능 잠김\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"게임 이미지 비활성화\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"모든 팝업창 비활성화\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"NSP 리팩 비활성화\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"Disable Titlekey check\"\r\nmsgstr \"타이틀 키 확인 비활성화\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"Enable Shorten Name\"\r\nmsgstr \"이름 줄이기 활성화\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Enable Tinfoil Download\"\r\nmsgstr \"Tinfoil 다운로드 활성화\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"Enable SysVer 0 Patch\"\r\nmsgstr \"SysVer 0 패치 활성화\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"Save Windows Location and Size\"\r\nmsgstr \"윈도우 창의 위치와 크기 저장\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"Scan for existing games\"\r\nmsgstr \"보유한 게임 스캔하기\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 Decoder\"\r\nmsgstr \"Base64 디코더\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"메뉴\"\r\n\r\nmsgid \"Download_bottom\"\r\nmsgstr \"다운로드\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"옵션\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"도구\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"NSP 리팩 활성화\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"모든 팝업창 활성화\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \"타이틀 키 확인 활성화\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"게임 이미지 활성화\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"이름 줄이기 비활성화\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \"Tinfoil 다운로드 비활성화\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"SysVer 0 패치 비활성화\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \"상태:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"게임\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"상태\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \"게임 이미지:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"\"\r\n\"게임 이미지를 클릭하시면 \\n\"\r\n\"해당 게임의 eShop 페이지로 이동합니다!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"데모 표시하지 않음\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"타이틀 ID:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"타이틀 키:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \"업데이트 버전 선택:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \"다운로드 옵션:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \"게임 본편 + 업데이트 + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"게임 본편 + 업데이트\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"업데이트 + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"게임 본편만\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"게임 업데이트만\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"모든 DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"대기열에 추가\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"타이틀 키 업데이트\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"대기열 메뉴\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"선택된 게임 삭제\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"전부 삭제\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"전부 다운로드\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"다운로드를 클릭하시면 대기열에 있는 모든 게임을 다운로드합니다! \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"상태: 게임 상태 파일을 가져오는 중... 기다려주세요 \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"현재 상태 파일을 작성하고 있습니다... 기다려주세요, 보유한 게임의 개수에 따라 시간이 조금 걸릴 수 있습니다 .\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"오류, Current_status.txt 파일이 존재하지 않습니다\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"상태: 완료!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"게임 이미지 다운로드중...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"오류\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \"타이틀 키 {}가 32자리의 16진수 숫자가 아닙니다!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \"타이틀 ID {}가 16자리의 16진수 숫자가 아닙니다!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"다운로드를 시작합니다! 시간이 조금 걸립니다, 기다려주세요. CMD(command prompt)를 통해 다운로드 진행 상황을 확인하실 수 있습니다\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"다운로드 완료!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"이 게임의 업데이트가 존재하지 않습니다\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"이 게임의 업데이트가 존재하지 않습니다, 게임 본편이 다운로드됩니다!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"파일을 저장할 위치를 선택하지 않았습니다!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Persistent queue not found, skipping...\"\r\nmsgstr \"대기열이 발견되지 않았습니다. 스킵합니다...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"대기열에서 아이템을 찾지 못했습니다.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \"목록에서 타이틀 ID에 해당하는 이름을 찾을 수 없습니다\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"제거할 게임을 선택하지 않았습니다!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"대기열에 있는 모든 게임을 다운로드합니다! 모든 게임의 다운로드가 완료될 때까지 기다려주세요!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"게임 다운로드중...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \"타이틀 ID에 해당하는 업데이트가 없습니다: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \"타이틀 ID에 해당하는 업데이트가 없습니다: {}, 게임 본편이 다운로드됩니다!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"다운로드 완료!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \"다운로드 완료!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"상태: 타이틀 키 업데이트 중\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"업데이트 완료!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \"{}개의 새로운 게임이 추가되었습니다\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"닫기\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"상태: 업데이트 완료!, 업데이트할 새로운 게임이 없습니다!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"상태: 업데이트 완료, 업데이트할 새로운 게임이 없습니다!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"상태: 업데이트 완료!, 데이터베이스 리빌드 중\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \"데이터베이스 서버 {} 가 다운되었거나 존재하지 않습니다\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \"타이틀 키 확인 활성화\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"타이틀 키 확인 비활성화\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"모든 이미지를 얻는데 {}초가 걸렸습니다!\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"모든 게임의 이미지를 얻었습니다!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"버전 정보를 가져오는데 실패했습니다\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \"타이틀 ID가 없거나 타이틀 ID가 16자가 아닙니다!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"윈도우 창의 위치와 크기가 저장되었습니다!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"보유한 게임 스캔\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"찾아보기\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"스캔\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"디렉터리를 선택하지 않았습니다!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"선택한 디렉터리가 존재하지 않습니다!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"보유한 게임 스캔 완료!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"현재 상태 파일을 작성하고 있습니다... 기다려주세요, 보유한 게임의 개수에 따라 시간이 조금 걸릴 수 있습니다.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"Base64 텍스트:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"디코드\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"디코드된 텍스트:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"열기\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \"게임 정보:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \"게임 가격:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description:\"\r\nmsgstr \"게임 설명:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher:\"\r\nmsgstr \"유통사:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer\"\r\nmsgstr \"개발자\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date:\"\r\nmsgstr \"출시일:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category:\"\r\nmsgstr \"카테고리:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players:\"\r\nmsgstr \"플레이 인원수:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"현재 이 게임에 대한 게임 정보를 사용할 수 없습니다!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"대하여\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"만든 사람들\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"언어\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"새로운 언어를 적용하려면 GUI를 재시작해주세요!\"\r\n\r\n\r\nmsgid 'New'\r\nmsgstr 'NEW'\r\n\r\nmsgid 'Own'\r\nmsgstr '보유함'\r\n\r\nmsgid 'Update'\r\nmsgstr '신규 업데이트'\r\n\r\nmsgid 'Latest'\r\nmsgstr '최신버전'\r\n"
  },
  {
    "path": "locales/ms/LC_MESSAGES/language.po",
    "content": "# SOME DESCRIPTIVE TITLE.\r\n# Copyright (C) YEAR ORGANIZATION\r\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: PACKAGE VERSION\\n\"\r\n\"POT-Creation-Date: 2018-08-01 00:27+1200\\n\"\r\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\r\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\r\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"\\n\"\r\n\"\\n\"\r\n\"Ralat - Aplikasi telah dibuka menggunakan Python 2, sila pasang applikasi Python 3 dan buang Python 2\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \"Pemasangan ralat {0}, tutup aplikasi dan lakukan pemasangan secara manual dengan menaip di CMD: pip3 install {0}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \"\\n\"\r\n\"Memeriksa modul-modul yang diperlukan...\\n\"\r\n\"\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"Pemeriksaan selesai, semuanya lengkap!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"Gagal mendapatkan file yang diperlukan! Sila lihat sambungan internet anda\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"Sila semak fail titlekeys.txt jika ada ada ruangan kosong di bawah. Buang jika ada.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"Ralat! CDNSP-GUI-config.json tidak ditemui\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"Pilih lokasi muat turun fail\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"Gambar Game Ditunjukkan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \"Tunjukan Giliran Yang Disimpan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"Simpan Giliran\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"Fungsi Aria2c dipadam \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"PAPARAN IMEJ GAME DITUTUP\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"Matikan Semua Pop-up\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"Matikan fungsi Repack NSP\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"Disable Titlekey check\"\r\nmsgstr \"Matikan Fungsi Semakan Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"Enable Shorten Name\"\r\nmsgstr \"Aktifkan Fungsi Ringkasan Nama\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Enable Tinfoil Download\"\r\nmsgstr \"Aktifkan Fungsi Muat Turun Tinfoil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"Enable SysVer 0 Patch\"\r\nmsgstr \"Aktifkan Fungsi SysVer 0 Patch\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"Save Windows Location and Size\"\r\nmsgstr \"Simpan Lokasi dan Saiz Windows\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"Scan for existing games\"\r\nmsgstr \"Scan game sedia ada\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 Decoder\"\r\nmsgstr \"Dekoder Base64\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"Muat Turun\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"Pilihan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"Alatan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"Aktifkan NSP Repack\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"Benarkan Semua Pop-up\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \"Aktifkan semakan Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"AKTIFKAN GAMBAR GAME\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"Padam Fungsi Pendekan Nama\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \"Padam Fungsi Muat Turun Tinfoil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"Padam SysVer 0 Patch\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \"Status:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"Game\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"Status\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \"Gambar Game\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"\"\n\"Tekan gambar di bawah \\n\"\r\n\"untuk membuka game di eShop!\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"Tiada Demo\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"Title ID\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"Title Key\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \"Pilihan version\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \"Pilihan muat turun\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \"Game asal + Update + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"Game asal + Update\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"Update + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"Game asal sahaja\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"Update sahaja\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"Semua DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"Tambah ke senarai giliran\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"Kemasikini Titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"Senarai Giliran\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"Buang game yang dipilih\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"Buang semua\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"Muat turun semua\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"Tekan muat turun semua untuk memuaturun semua game di senarai giliran\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"Sedang mendapatkan game.. Sila tunggu\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Sedang membina status semasa fail... Sila tunggu di mana ianya mungkin mengambil masa bergantung kepada berapa banyak game yang telah dipilih.\"\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"Ralat, fail Current_status.txt tidak wujud\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"Status: Siap!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Memuat turun gambar game...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"Ralat\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \"Titlekey {} bukan nombor 32-digit hexadecimal \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \"TitleID {} bukan nombor hexadecimal 16-digit\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"Muat turun bermula! Ianya akan mengambil sedikit masa, sila bersabar. Anda boleh melihat status muat turun di CMD (command prompt)\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"Muat turun selesai!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"Tiada update untuk game berkenaan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"Tiada update untuk game berkenaan, hanya game asal dimuaturun!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"\\n\"\r\n\"Anda belum memilih lokasi untuk menyimpan fail\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Persistent queue not found, skipping...\"\r\nmsgstr \"Senarai giliran tidak ditemui, mengabaikan...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"Tiada di dalam senarai menunggu\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \"Nama titleID tidak dijumpai di dalam senarai\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"Tiada game yang dipilih untuk dibuang\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"Muaturun semua game anda bermula! Anda akan diberitahu selepas semua game telah dimuaturun, harap bersabar!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"Memuaturun game...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \"Tiada update untuk titleID: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \"Tiada update untuk titleID: {}, hanya game asas dimuaturun!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"Muaturun selesai!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \"Muaturun selesai!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"Sedang mengemaskini titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"Selesai kemaskini!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \"Jumlah game baru ditambah: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"Tutup\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"Status: Kemasiki selesai. Tiada lagi game baru untuk dikemaskini!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"\\n\"\r\n\"Status: Kemasiki selesai. Tiada lagi game baru untuk dikemaskini!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"Status: Selesai kemaskini, Database dikemaskini daripada awal\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \"Server database {} mungkin tiada atau tutup\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\n\"\\n\"\r\n\"{}\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \"Benarkan Fungsi Semakan Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"Padamkan Fungsi Semakan Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"\"\n\"\\n\"\r\n\"Ia mengambil {} beberapa saat untuk mendapatkan semua gambar\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"Selesai untuk dapatkan semua gambar!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"Tidak berjaya mendapatkan version\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \"Tiada TitleID atau TitleID bukan 16 askara!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"Saiz dan posisi Windows disimpan!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"Semak game sedia ada\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"Memilih\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"Scan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"Anda tidak memilih lokasi\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"Lokasi yang dipilih tidak wujud\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"Selesai scan game\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"Status: Membina status fail semasa... Sila tunggu, ianya bergantung kepada bilangan game sedia ada anda.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"Base64 text\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"Dekod\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"Dekod text\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"Buka\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \"Info Game\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \"Harga Game\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description:\"\r\nmsgstr \"Intipati Game\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher:\"\r\nmsgstr \"Pemasaran\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer\"\r\nmsgstr \"Developer\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date:\"\r\nmsgstr \"Tarikh Dipasarkan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category:\"\r\nmsgstr \"Kategori\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players:\"\r\nmsgstr \"Bilangan Pemain:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"Intipati game tidak terdapat pada waktu ini!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"Diskripsi\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"Kredit\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"Bahasa\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"Sila restart semula GUI untuk menukar bahasa!\"\r\n\r\nmsgid \"New\"\r\nmsgstr \"Baru\"\r\n\r\nmsgid \"Own\"\r\nmsgstr \"Telah memiliki\"\r\n\r\nmsgid \"Update\"\r\nmsgstr \"Kemasikini\"\r\n\r\nmsgid \"Latest\"\r\nmsgstr \"Terbaharu\"\r\n\r\n"
  },
  {
    "path": "locales/nl/LC_MESSAGES/language.po",
    "content": "# SOME DESCRIPTIVE TITLE.\r\n# Copyright (C) YEAR ORGANIZATION\r\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: PACKAGE VERSION\\n\"\r\n\"POT-Creation-Date: 2018-08-01 00:27+1200\\n\"\r\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\r\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\r\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"Foutmelding programma gestart met Python 2, installeer alsjeblieft Python 3 en verwijder Python 2\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \"Foutmelding bij het installeren {0}, sluit het programma en installeer de module handmatig door in CMD pip3 install te tikken {0}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \"Controle of alles geïnstalleerd is om het programma te kunnen starten\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"Alles is in orde!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"Niet mogelijk om de nodige bestanden te downloaden! Controleer je internet aansluiting en probeer opnieuw\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"Controleer of er extra spaties aan de onderkant van het titlekeys.txt bestand staan! Als deze er staan verwijder deze dan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"Foutmelding! , Bestand CDNSP-GUI-config.json mist \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"Selecteer de Download locatie\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"Pre-Load Spel Afbeeldingen\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \"Laad opgeslagen wachtrij\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"Sla wachtrij op\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"Aria2c wordt gemist\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"Schakel spel afbeeldingen uit\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"Stop alle Pop-Ups\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"Schakel NSP herpakken uit\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"Disable Titlekey check\"\r\nmsgstr \"Schakel Titlekey controle uit\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"Enable Shorten Name\"\r\nmsgstr \"Schakel afkorten van naam in\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Enable Tinfoil Download\"\r\nmsgstr \"Schakel Tinfoil Download in\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"Enable SysVer 0 Patch\"\r\nmsgstr \"Schakel Sysver 0 Patch in\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"Save Windows Location and Size\"\r\nmsgstr \"Sla scherm locatie en grootte op\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"Scan for existing games\"\r\nmsgstr \"Zoek naar reeds opgeslagen spellen\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 Decoder\"\r\nmsgstr \"Base64 Decoder\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"Downloaden\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"Opties\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"Gereedschap\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"Inschakelen NSP herpakken\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"Schakel alle Pop-Ups in\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \"Schakel Titlekey controle in\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"Schakel spel afbeelding in\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"Schakel afkorten van naam uit\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \"Schakel Tinfoil Download uit\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"Schakel Sysver 0 Patch uit\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \"Status:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"Spel\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"Status\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \"Spel Afbeelding\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"\"\r\n\"Klik op de afbeelding hierboven \\n\"\r\n\"om het spel te openen in de eShop!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"Geen Demo\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"Title ID:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"Title Key\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \"Selecteer update versie\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \"Download opties:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \"Basis Spel + Update + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"Basis Spel + Update\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"Update + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"Enkel het Basis Spel\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"Alleen de Update\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"Alleen DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"Toevoegen aan Wachtrij\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"Update Titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"Wachtrij Menu\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"Verwijder geselecteerd spel\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"Verwijder alles\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"Download alles\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"Klik op download om alle spellen te downloaden in de wachtrij!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"Status: Opvragen spel status... Even geduld a.u.b.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"Aan het werk om de huidige status bij te werken... Even geduld a.u.b. Dit kan enkele tijd duren afhankelijk van het aantal spellen in bezit\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"Foutmelding het bestand Current_status.txt bestaat niet\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"Status: Klaar!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloaden spel afbeelding...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"Foutmelding\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \"Titlekey {} is niet een 32-digits hexadecimal nummer!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \"TitleID {} is niet een 16-digits hexadecimal nummer!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"Beginnen met downloaden! Dit zal wat tijd kosten, even geduld a.u.b. Je kan het command prompt controleren om de status te zien.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"Downloaden Klaar\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"Geen updates beschikbaar voor dit spel\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"Geen updates beschikbaar voor dit spel, basis spel gedownload!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Je hebt geen locatie gekozen om het bestand op te slaan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Persistent queue not found, skipping...\"\r\nmsgstr \"Wachtrij niet gevonden, wordt overgelagen...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"Item niet gevonden in wachtrij\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \"Naam van titleID niet gevonden in de lijst\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"Geen spel geselecteerd om te verwijderen\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"Download van alle spellen in wachtrij zal nu beginnen! Je wordt geinformeerd als de downloads klaar zijn, Wacht geduldig!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"Downloaden van spellen...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \"Geen updates beschikbaar voor titleID: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \"Geen updates beschikbaar voor titleID: {}, Basis spel gedownload\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"Downloaden Klaar!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \"Downloaden Klaar!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"Status: Updaten van titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"Klaar met update!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \"Totaal aantal nieuwe spellen toegevoegd: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"Sluiten\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"Status: Update Klaar, Er zijn geen nieuwe spellen om te updaten\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Status: Update Klaar, Er zijn geen nieuwe spellen om te updaten\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"Status : Update Klaar, Database opnieuw opgebouwd\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \"De Database server {} is uit of niet beschikbaar\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \"Inschakelen Titlekey Controle\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"Uitschakelen Titlekey Controle\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Het koste {} seconden om alle afbeeldingen te verkrijgen\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"Klaar met alle afbeeldingen te verkrijgen\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"Versie mislukt op te halen\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \"Geen TitleID of TitleID is geen 16 karakters\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"Schermgrootte en locatie opgeslagen\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"Zoeken naar bestaande spellen\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"Browse\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"Scannen\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"Je hebt geen directory gekozen!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"De gekozen directory bestaat niet!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"Klaar met scannen naar spellen!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"Aan het werk om de huidige status bij te werken... Even geduld a.u.b. Dit kan enkele tijd duren afhankelijk van het aantal spellen in bezit\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"Base64 tekst:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"Decode\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"Decoded Tekst\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"Open\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \"Spel Info\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \"Spel Prijs\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description:\"\r\nmsgstr \"Spel beschrijving\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher:\"\r\nmsgstr \"Uitgever\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer\"\r\nmsgstr \"Ontwikkelaar\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date:\"\r\nmsgstr \"Uitgeef Datum:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category:\"\r\nmsgstr \"Catagorie\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players:\"\r\nmsgstr \"Aantal Spelers:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"Spelinformatie niet beschikbaar voor dit spel op dit moment!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"Over\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"Credits\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"Taal\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"Herstart de Gui om de nieuwe taal in te schakelen!\"\r\n\r\n\r\nmsgid 'New'\r\nmsgstr 'Nieuw'\r\n\r\nmsgid 'Own'\r\nmsgstr 'In Bezit'\r\n\r\nmsgid 'Update'\r\nmsgstr 'Update'\r\n\r\nmsgid 'Latest'\r\nmsgstr 'Laatste Versie'\r\n"
  },
  {
    "path": "locales/pl/LC_MESSAGES/language.po",
    "content": "# Polish language file for CDNSP Gui by Bob.\r\n# Copyright (C) 2018 Bob\r\n# szczuru <nope@no.pe>, 2018.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: PACKAGE VERSION\\n\"\r\n\"POT-Creation-Date: 2018-08-01 00:27+1200\\n\"\r\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\r\n\"Last-Translator: szczuru <nope@nope>\\n\"\r\n\"Language-Team: CGPG @ Discord\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Błąd - Aplikacja została uruchomiona za pomocą Pythona 2, proszę usunąć Pythona 2 i zainstalować Pythona 3\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \"Błąd instalacji {0}, zamknij aplikację i zainstaluj ręcznie moduł wpisując w linii komend: pip3 install {0}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Sprawdzam czy wszystkie wymagane moduły są zainstalowane!\\n\"\r\n\"\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"Wygląda na to, że tak :)\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"Nie można pobrać wymaganych plików! Sprawdź połączenie internetowe\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"Sprawdź czy nie ma pustych wierszy na końcu pliku titlekeys.txt! Jeśli tak - usuń je!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"Błąd! Brak pliku CDNSP-GUI-config.json\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"Wybierz lokalizację pobranych plików\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"Wstępnie wczytuj okładki gier\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \"Wczytaj zapisaną kolejkę\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"Zapisz kolejkę\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"Aria2c będzie niedostępny\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"UKRYJ OKŁADKI GIER\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"Wyłącz wyskakujące okna\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"Wyłącz przepakowywanie plików NSP\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"Disable Titlekey check\"\r\nmsgstr \"Wyłącz sprawdzanie titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"Enable Shorten Name\"\r\nmsgstr \"Włącz skrócone nazwy\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Enable Tinfoil Download\"\r\nmsgstr \"Włącz pobieranie tylko ticketu dla Tinfoil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"Enable SysVer 0 Patch\"\r\nmsgstr \"Włącz patch SysVer 0\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"Save Windows Location and Size\"\r\nmsgstr \"Zapisz położenie i rozmiar okna\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"Scan for existing games\"\r\nmsgstr \"Skanuj w poszukiwaniu pobranych gier\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 Decoder\"\r\nmsgstr \"Dekoder Base64\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"Pobieranie\"\r\n\r\nmsgid \"Download_bottom\"\r\nmsgstr \"Pobierz\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"Ustawienia\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"Narzędzia\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"Włącz przepakowywanie plików NSP\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"Włącz wyskakujące okna\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \"Włącz sprawdzanie titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"POKAZUJ OKŁADKI GIER\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"Wyłącz skrócone nazwy\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \"Wyłącz pobieranie tylko ticketu dla Tinfoil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"Wyłącz patch SysVer 0\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \"Status:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"Gra\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"Stan\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \"Okładka:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"\"\r\n\"Kliknij na okładkę gry powyżej \\n\"\r\n\"aby otworzyć grę w eShop-ie!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"Ukryj dema\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"Title ID:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"Title Key:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \"Wybierz wersję aktualizacji\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \"Opcje pobierania:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \"Wersja bazowa + Aktualizacja + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"Wersja bazowa + Aktualizacja\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"Aktualizacja + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"Tylko wersja bazowa\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"Tylko aktualizacja\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"Wszystkie DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"Dodaj do kolejki\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"Zaktualizuj Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"Menu kolejki\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"Usuń wybrane gry\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"Usuń wszystko\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"Pobierz wszystko\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"Kliknij pobierz wszystko aby pobrać wszystkie pozycje z kolejki!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"Status: Sprawdzanie statusu gry... Proszę czekać\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Budowanie pliku statusu... Proszę czekać, może to chwilę potrwać, w zależności od ilości posiadanych gier.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"Błąd, plik Current_status.txt nie istnieje\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"Status: Zrobione!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Pobieranie okładki gry...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"Błąd\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \"Titlekey {} nie jest 32-cyfrowym numerem heksadecymalnym!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \"TitleID {} nie jest 16-cyfrowym numerem heksadecymalnym!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"Rozpoczynam pobieranie! Zajmie to jakiś czas, proszę o cierpliwość. Postęp można sprawdzić w oknie wiersza poleceń (CMD) w tle.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"Pobieranie zakończone!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"Brak aktualizacja dla tej gry\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"Brak aktualizacja dla tej gry, pobrano wersję bazową!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Nie wybrano miejsca zapisu pliku!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Zapisana kolejka nie znaleziona, pomijam...\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"Pozycja nie znaleziona w kolejce\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \"Nie znaleziono nazwy dla tego titleID\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"Nie wybrano gry do usunięcia!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"Rozpoczynam pobieranie gier z kolejki! Poinformuję gdy pobieranie zostanie zakończone, proszę czekać!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"Pobieranie gier...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \"Brak aktualizacji dla titleID: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \"Brak aktualizacji dla titleID: {}, pobrano wersję bazową!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"Zakończono pobieranie!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \"Zakończono pobieranie!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"Status: Aktualizowanie titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"Zakończono aktualizację\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \"Liczba nowych gier: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"Zamknij\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"Status: Zakończono aktualizację, Nie było pozycji do zaktualizowania!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Status: Zakończono aktualizację, Nie było pozycji do zaktualizowania!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"Status: Zakończono aktualizację, baza danych zostanie ponownie zbudowana\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \"Serwer bazy danych {} jest niedostępny\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \"Włącz sprawdzanie TitlekeyS\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"Wyłącz sprawdzanie Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Pobieranie okładek zajęło {} sekund!\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"Zakończono pobieranie okładek!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"Błąd pobierania wersji\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \"Brak TitleID lub TitleID ma błędny format!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"Zapisano rozmiar i położenie okna!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"Wyszukaj pobrane gry\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"Przeglądaj\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"Skanuj\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"Nie wybrano katalogu\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"Wybrany katalog nie istnieje!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"Zakończono skanowanie Twoich gier\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"Status: Budowanie pliku statusu... Proszę czekać, może to chwilę potrwać, w zależności od ilości posiadanych gier.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"Base64 tekst:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"Dekoduj\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"Zdekodowany tekst:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"Otwórz\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \"Informacje:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \"Cena:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description:\"\r\nmsgstr \"Opis gry:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher:\"\r\nmsgstr \"Wydawca\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer\"\r\nmsgstr \"Developer:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date:\"\r\nmsgstr \"Data wydania:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category:\"\r\nmsgstr \"Kategoria:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players:\"\r\nmsgstr \"Liczba graczy:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"Informacje dla tej gry nie są obecnie dostępne!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"O programie\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"Autorzy\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"Język\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"Proszę uruchomić aplikację ponownie aby zmienić język!\"\r\n\r\n\r\nmsgid 'New'\r\nmsgstr 'Nowa'\r\n\r\nmsgid 'Own'\r\nmsgstr 'Posiadane'\r\n\r\nmsgid 'Update'\r\nmsgstr 'Aktualizacja'\r\n\r\nmsgid 'Latest'\r\nmsgstr 'Najnowsza'\r\n\r\nmsgid 'Update Version List'\r\nmsgstr 'Zaktualizuj listę wersji'\r\n\r\nmsgid 'No Japanese Game'\r\nmsgstr 'Ukryj japońskie wersje' \r\n"
  },
  {
    "path": "locales/pt/LC_MESSAGES/language.po",
    "content": "# SOME DESCRIPTIVE TITLE.\r\n# Copyright (C) YEAR ORGANIZATION\r\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: PACKAGE VERSION\\n\"\r\n\"POT-Creation-Date: 2018-08-01 00:27+1200\\n\"\r\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\r\n\"Last-Translator: KazumaKiryu <marcelol619@gmail.com>\\n\"\r\n\"Language-Team: Portuguese (Brazil) <LL@li.org>\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Erro - Aplicativo carregado com Python 2, por favor instale o Python 3 e delete o Python 2\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \"Erro instalando {0}, feche o aplicativo e instale o modulo manualmente digitando no CMD: pip3 install {0}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Checando se todos os modulos necessários foram instalados!\\n\"\r\n\"\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"Está tudo perfeito!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"Impossível de obter os arquivos necessários! Verifique sua conexão de internet\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"Cheque se o seu titlekeys.txt possui espaços extras no fim do arquivo, delete os espaços se houver\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"Erro! falta o arquivo CDNSP-GUI-config.json\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"Escolha o local de download\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"Pré-carregamento das imagens dos jogos\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \"Carregar Fila Salva\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"Salvar Fila\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"Aria2c será perdido\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"Desabilitar imagens dos jogos\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"Silenciar todos pop-ups\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"Desabilitar NSP Repack\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"Disable Titlekey check\"\r\nmsgstr \"Desabilitar checagem de Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"Enable Shorten Name\"\r\nmsgstr \"Habilitar Encurtador de Nome\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Enable Tinfoil Download\"\r\nmsgstr \"Habilitar Download em Modo Tinfoil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"Enable SysVer 0 Patch\"\r\nmsgstr \"Habilitar Patch SysVer 0\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"Save Windows Location and Size\"\r\nmsgstr \"Salvar Localização e Tamanho das Janelas\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"Scan for existing games\"\r\nmsgstr \"Escanear por jogos existentes\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 Decoder\"\r\nmsgstr \"Decodificador Base64\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"Download\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"Opções\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"Ferramentas\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"Habilitar NSP Repack\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"Ativar sons dos Pop-ups\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \"Habilitar checagem dos Titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"Habilitar imagens dos jogos\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"Desabilitar encurtador de nomes\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \"Desabilitar Download em Modo Tinfoil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"Desabilitar Patch SysVer 0\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \"Status\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"Jogo\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"Estado\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \"Imagem do Jogo\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"\"\r\n\"Clique na imagem do jogo abaixo \\n\"\r\n\"para abrir o jogo na eShop!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"Sem Demos\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"Title ID:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"Title Key:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \"Escolha a versão do update:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \"Opções de Download\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \"Jogo Base + Update + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"Jogo Base + Update\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"Update + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"Somente jogo base\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"Somente update\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"Todos DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"Adicionar a fila\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"Atualizar Titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"Menu de Fila\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"Remover jogo selecionado\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"Remover tudo\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"Baixar tudo\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"Clique Baixar Tudo para baixar todos jogos na fila\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"Status: Obtendo status do jogo... aguarde\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Montando a atual situação do arquivo... Aguarde, isso pode levar algum tempo dependendo de quantos jogos você tem.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"Erro, Current_status.txt não existe\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"Pronto!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Baixando imagem do jogo...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"Erro\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \"Titlekey {} não é um numero hexadecimal de 32 digitos!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \"TitleID {} não é um numero hexadecimal de 16 digitos\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"Iniciando download! Pode levar algum tempo, seja paciente. Você pode checar o prompt de comando para ver o progresso do download.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"Download concluido!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"Sem updates disponíveis para o jogo\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"Sem updates disponíveis para o jogo, jogo base baixado!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Você não escolheu um local para baixar o arquivo!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Persistent queue not found, skipping...\"\r\nmsgstr \"Fila persistente não encontrada, pulando...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"Item não encontrado na fila\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \"Nome para titleID não encontrado na lista\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"Sem jogo selecionado para remover!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"Download de todos os jogos na fila vai começar! Você vai ser informado assim que o download for concluído, por favor aguarde e seja paciente!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"Baixando jogos...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \"Sem updates disponíveis para o titleID: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \"Sem updates disponíveis para o titleID: {}, jogo base baixado!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"Download completo!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \"Download Completo!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"Status: Atualizando titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"Update concluído!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \"Total de jogos novos adicionados: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"Fechar\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"Status: update concluído, não existe novos jogos para atualizar!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"Status: update concluído, não existe novos jogos para atualizar!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"Update concluído, Database reconstruída do início\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \"O servidor da database {} pode estar derrubado ou indisponível\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \"Habilitar checagem de Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"Desabilitar checagem de Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Levará {} segundos para obter todas imagens!\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"Todas as imagens de jogos obtidas!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"Falha ao obter versão\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \"Sem TitleID ou TitleID sem 16 caracteres!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"Posição e tamanho das janelas salvos!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"Buscando por jogos existentes\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"Procurar\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"Escanear\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"Você não escolheu um diretório!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"O diretório escolhido não existe!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"Finalizado escaneamento dos jogos\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"Status: Construindo a situação do arquivo... Aguarde, isso pode levar algum tempo dependendo de quantos jogos você possuí.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"Texto Base64:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"Decodificar\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"Texto Decodificado:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"Abrir\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \"Informação de jogo:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \"Preço do Jogo:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description:\"\r\nmsgstr \"Descrição do Jogo:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher:\"\r\nmsgstr \"Editora:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer:\"\r\nmsgstr \"Desenvolvedor:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date:\"\r\nmsgstr \"Data de Lançamento:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category:\"\r\nmsgstr \"Categoria:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players:\"\r\nmsgstr \"Numero de Jogadores:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"Informações do jogo não são disponíveis nesse momento!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"Sobre\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"Créditos\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"Idioma\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"Por favor reinicie o GUI para aplicar o novo idioma!\"\r\n\r\n\r\nmsgid 'New'\r\nmsgstr 'Novo'\r\n\r\nmsgid 'Own'\r\nmsgstr 'Possuí'\r\n\r\nmsgid 'Update'\r\nmsgstr 'Atualizar'\r\n\r\nmsgid 'Latest'\r\nmsgstr 'Atual'\r\n"
  },
  {
    "path": "locales/pt/LC_MESSAGES/language_old.po",
    "content": "# SOME DESCRIPTIVE TITLE.\r\n# Copyright (C) YEAR ORGANIZATION\r\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: PACKAGE VERSION\\n\"\r\n\"POT-Creation-Date: 2018-08-01 00:27+1200\\n\"\r\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\r\n\"Last-Translator: KazumaKiryu <marcelol619@gmail.com>\\n\"\r\n\"Language-Team: Portuguese (Brazil) <LL@li.org>\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Erro - Aplicativo carregado com Python 2, por favor instale o Python 3 e delete o Python 2\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \"Erro instalando {0}, feche o aplicativo e instale o modulo manualmente digitando no CMD: pip3 install {0}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Checando se todos os modulos necess·rios foram instalados!\\n\"\r\n\"\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"Est· tudo perfeito!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"ImpossÌvel de obter os arquivos necess·rios! Verifique sua conex„o de internet\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"Cheque se o seu titlekeys.txt possui espaÁos extras no fim do arquivo, delete os espaÁos se houver\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"Erro! falta o arquivo CDNSP-GUI-config.json\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"Escolha o local de download\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"PrÈ-carregamento das imagens dos jogos\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \"Carregar Fila Salva\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"Salvar Fila\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"Aria2c ser· perdido\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"Desabilitar imagens dos jogos\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"Silenciar todos pop-ups\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"Desabilitar NSP Repack\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"Disable Titlekey check\"\r\nmsgstr \"Desabilitar checagem de Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"Enable Shorten Name\"\r\nmsgstr \"Habilitar Encurtador de Nome\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Enable Tinfoil Download\"\r\nmsgstr \"Habilitar Download em Modo Tinfoil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"Enable SysVer 0 Patch\"\r\nmsgstr \"Habilitar Patch SysVer 0\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"Save Windows Location and Size\"\r\nmsgstr \"Salvar LocalizaÁ„o e Tamanho das Janelas\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"Scan for existing games\"\r\nmsgstr \"Escanear por jogos existentes\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 Decoder\"\r\nmsgstr \"Decodificador Base64\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"Download\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"OpÁıes\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"Ferramentas\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"Habilitar NSP Repack\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"Ativar sons dos Pop-ups\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \"Habilitar checagem dos Titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"Habilitar imagens dos jogos\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"Desabilitar encurtador de nomes\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \"Desabilitar Download em Modo Tinfoil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"Desabilitar Patch SysVer 0\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \"Status\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"Jogo\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"Estado\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \"Imagem do Jogo\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"\"\r\n\"Clique na imagem do jogo abaixo \\n\"\r\n\"para abrir o jogo na eShop!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"Sem Demo\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"Title ID:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"Title Key:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \"Escolha a vers„o do update:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \"OpÁıes de Download\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \"Jogo Base + Update + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"Jogo Base + Update\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"Update + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"Somente jogo base\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"Somente update\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"Todos DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"Adicionar a fila\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"Atualizar Titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"Menu de Fila\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"Remover jogo selecionado\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"Remover tudo\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"Baixar tudo\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"Clique Baixar Tudo para baixar todos jogos na fila\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"Status: Obtendo status do jogo... aguarde\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Montando a atual situaÁ„o do arquivo... Aguarde, isso pode levar algum tempo dependendo de quantos jogos vocÍ tem.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"Erro, Current_status.txt n„o existe\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"Pronto!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Baixando imagem do jogo...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"Erro\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \"Titlekey {} n„o È um numero hexadecimal de 32 digitos!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \"TitleID {} n„o È um numero hexadecimal de 16 digitos\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"Iniciando download! Pode levar algum tempo, seja paciente. VocÍ pode checar o prompt de comando para ver o progresso do download.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"Download concluido!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"Sem updates disponÌveis para o jogo\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"Sem updates disponÌveis para o jogo, jogo base baixado!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"VocÍ n„o escolheu um local para baixar o arquivo!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Persistent queue not found, skipping...\"\r\nmsgstr \"Fila persistente n„o encontrada, pulando...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"Item n„o encontrado na fila\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \"Nome para titleID n„o encontrado na lista\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"Sem jogo selecionado para remover!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"Download de todos os jogos na fila vai comeÁar! VocÍ vai ser informado assim que o download for concluÌdo, por favor aguarde e seja paciente!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"Baixando jogos...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \"Sem updates disponÌveis para o titleID: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \"Sem updates disponÌveis para o titleID: {}, jogo base baixado!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"Download completo!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \"Download Completo!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"Status: Atualizando titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"Update concluÌdo!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \"Total de jogos novos adicionados: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"Fechar\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"Status: update concluÌdo, n„o existe novos jogos para atualizar!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"Status: update concluÌdo, n„o existe novos jogos para atualizar!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"Update concluÌdo, Database reconstruÌda do inÌcio\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \"O servidor da database {} pode estar derrubado ou indisponÌvel\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \"Habilitar checagem de Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"Desabilitar checagem de Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Levar· {} segundos para obter todas imagens!\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"Todas as imagens de jogos obtidas!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"Falha ao obter vers„o\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \"Sem TitleID ou TitleID sem 16 caracteres!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"PosiÁ„o e tamanho das janelas salvos!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"Buscando por jogos existentes\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"Procurar\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"Escanear\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"VocÍ n„o escolheu um diretÛrio!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"O diretÛrio escolhido n„o existe!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"Finalizado escaneamento dos jogos\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"Status: Construindo a situaÁ„o do arquivo... Aguarde, isso pode levar algum tempo dependendo de quantos jogos vocÍ possuÌ.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"Texto Base64:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"Decodificar\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"Texto Decodificado:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"Abrir\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \"InformaÁ„o de jogo:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \"PreÁo do Jogo:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description:\"\r\nmsgstr \"DescriÁ„o do Jogo:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher:\"\r\nmsgstr \"Editora:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer:\"\r\nmsgstr \"Desenvolvedor:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date:\"\r\nmsgstr \"Data de LanÁamento:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category:\"\r\nmsgstr \"Categoria:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players:\"\r\nmsgstr \"Numero de Jogadores:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"InformaÁıes do jogo n„o s„o disponÌveis nesse momento!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"Sobre\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"CrÈditos\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"Idioma\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"Por favor reinicie o GUI para aplicar o novo idioma!\"\r\n\r\n"
  },
  {
    "path": "locales/ru/LC_MESSAGES/language.po",
    "content": "# SOME DESCRIPTIVE TITLE.\r\n# Copyright (C) YEAR ORGANIZATION\r\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: PACKAGE VERSION\\n\"\r\n\"POT-Creation-Date: 2018-08-01 00:27+1200\\n\"\r\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\r\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\r\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Ошибка - приложение было запущено с помощью Python 2, установите Python 3 и удалите Python 2\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \"Ошибка установки {0}, закройте приложение, и установите модуль вручную, набрав в командной строке: pip3 install {0}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Проверка наличия всех необходимых модулей!\\n\"\r\n\"\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"Все модули установлены! Приложение сейчас будет запущено!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"Не удалось получить требуемые файлы! Проверьте свое подключение к Интернету!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"Проверьте, есть ли пробелы в нижней части файла titlekeys.txt! Удалите их, если есть!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"Ошибка! Не могу найти CDNSP-GUI-config.json\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"Выбрать директорию для загрузки игр\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"Предзагрузить обложки для игр\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \"Загрузить сохраненную очередь загрузки\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"Сохранить очередь загрузки\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"Нам будет тебя не хватать, aria2c\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"Отключить обложки для игр\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"Отключить всплывающие сообщения\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"Отключить перепаковку в NSP\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"Disable Titlekey check\"\r\nmsgstr \"Отключить проверку Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"Enable Shorten Name\"\r\nmsgstr \"Включить сокращение имени\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Enable Tinfoil Download\"\r\nmsgstr \"Включить загрузку Tinfoil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"Enable SysVer 0 Patch\"\r\nmsgstr \"Включить патч SysVer 0\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"Save Windows Location and Size\"\r\nmsgstr \"Сохранить местоположение и размер окон\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"Scan for existing games\"\r\nmsgstr \"Найти существующие игры\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 Decoder\"\r\nmsgstr \"Декодер Base64\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"Загрузка\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"Настройки\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"Инструменты\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"Включить перепаковку в NSP\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"Включить всплывающие сообщения\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \"Включить проверку Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"Включить обложки для игр\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"Отключить сокращение имени\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \"Отключить загрузку Tinfoil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"Отключить патч SysVer 0\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \"Статус: \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"Игра\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"Состояние\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \"Обложка игры\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"\"\r\n\"Кликните на обложку игры, \\n\"\r\n\"чтобы перейти на страницу игры в eShop!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"Отключить демо-версии\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"Title ID:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"Title Key:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \"Выберите версию обновления\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \"Настройки загрузки\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \"Игра + Обновление + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"Игра + Обновление\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"Обновление + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"Только Игра\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"Только Обновление\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"Все DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"Добавить в очередь загрузки\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"Обновить Titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"Очередь загрузки\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"Убрать выбранные игры\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"Убрать все игры\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"Загрузить все игры\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"Нажмите \\\"Загрузить все игры\\\" чтобы загрузить все игры в очереди загрузки!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"Статус: Получение статуса игр... Пожалуйста подождите\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Создание текущего файла состояния... Пожалуйста подождите, это займет некоторое время.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"Ошибка, файл Current_status.txt не существует!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"Статус: Готово!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Загрузка обложки для игры...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"Ошибка\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \"Titlekey {} не является 32-значным шестандцатеричным числом!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \"TitleID {} не является 16-значным шестандцатеричным числом!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"Начинается загрузка! Это займет некоторое время. Вы можете следить за прогрессом в командной строке.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"Загрузка завершена!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"Для этой игры нет доступных обновлений\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"Для этой игры нет доступных обновлений, была загружена только игра!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Вы не выбрали директорию для сохранения файла!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Persistent queue not found, skipping...\"\r\nmsgstr \"Сохраненная очередь загрузки не найдена, пропускаем...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"Элемент не найден в очереди загрузки\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \"Имя TitleID не найдено в списке\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"Ни одна игра не выбрана для удаления из очереди!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"Начинается загрузка всех ваших игр в очереди! Вы будете проинформированы, как только все загрузки будут завершены!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"Загрузка игр...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \"Для TitleID: {} нет доступных обновлений\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \"Для TitleID: {} нет доступных обновлений, была загружена только игра!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"Загрузка завершена\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \"Загрузка завершена\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"Статус Обновление Titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"Обновление завершено\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \"Всего новых игр добавлено: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"Закрыть\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"Статус: Обновление завершено, новый игр для обновления нет!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Статус: Обновление завершено, новый игр для обновления нет!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"Статус: Обновление завершено, база была данных перестроена с нуля\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \"Сервер базы данных {} недоступен\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \"Включить проверку Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"Отключить проверку Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"{} секунд заняла загрузка всех обложек!\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"Все обложки были успешно загружены!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"Не удалось получить версию\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \"Нет TitleID или он не состоит из 16 символов!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"Местоположение и размер окон сохранены!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"Поиск существующих игр\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"Выбрать папку\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"Найти\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"Вы не выбрали директорию!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"Выбранная вами директория не существует!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"Сканирование игр завершено!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"Статус: Создание текущего файла состояния... Пожалуйста подождите, это займет некоторое время.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"Base64 текст:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"Раскодировать\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"Раскодированный текст:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"Открыть\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \"Информация об игре\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \"Цена\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description:\"\r\nmsgstr \"Описание\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher:\"\r\nmsgstr \"Издатель\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer\"\r\nmsgstr \"Разработчик\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date:\"\r\nmsgstr \"Дата выхода\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category:\"\r\nmsgstr \"Категория\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players:\"\r\nmsgstr \"Количество игроков:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"Информация об игре недоступна в данный момент!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"О программе\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"Авторы\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"Язык\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"Пожалуйста перезапустите GUI для смены языка!\"\r\n\r\n\r\nmsgid 'New'\r\nmsgstr 'Новая игра'\r\n\r\nmsgid 'Own'\r\nmsgstr 'Загруженная игра'\r\n\r\nmsgid 'Update'\r\nmsgstr 'Есть обновление'\r\n\r\nmsgid 'Latest'\r\nmsgstr 'Последняя'\r\n\r\nmsgid \"Update Version List\"\r\nmsgstr \"Обновить список версий\"\r\n\r\nmsgid \"No Japanese Game\"\r\nmsgstr \"Убрать японские игры\""
  },
  {
    "path": "locales/th/LC_MESSAGES/language.po",
    "content": "# SOME DESCRIPTIVE TITLE.\r\n# Copyright (C) YEAR ORGANIZATION\r\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: PACKAGE VERSION\\n\"\r\n\"POT-Creation-Date: 2018-08-01 00:27+1200\\n\"\r\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\r\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\r\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"เกิดข้อผิดพลาด! โปรแกรมถูกเปิดด้วย Python 2!!! กรุณาถอนการติดตั้ง Python 2 และทำการติดตั้ง Python 3 แทน\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \"เกิดข้อผิดพลาดในการติดตั้ง {0}, กรุณาปิดโปรแกรม จากนั้นทำการติดตั้งโมดูลด้วยตนเอง ด้วยการพิมพ์ใน CMD: pip3 install {0}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \"กำลังตรวจสอบการติดตั้งโมดูลทั้งหมด!\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"ไม่พบปัญหา!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"ไม่สามารถติดตั้งไฟล์ที่จำเป็นได้! กรุณาตรวจสอบการเชื่อมต่ออินเทอร์เน็ต\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"กรุณาเปิดไฟล์ titlekeys.txt และตรวจสอบด้านล่างสุดของไฟล์ว่ามีเนื้อที่ว่างอยู่ไหม! หากมีให้ทำการลบเนื้อที่ว่างนั้นออก!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"เกิดข้อผิดพลาด! ไม่พบไฟล์ CDNSP-GUI-config.json\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"เลือกตำแหน่งเก็บไฟล์ดาวน์โหลด\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"โหลดภาพประกอบ\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \"โหลดคิว\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"เซฟคิว\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"Aria2c will be missed\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"ปิดการแสดงผลรูปภาพประกอบ\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"ปิดการใช้งานป๊อปอัพทั้งหมด\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"ปิดการใช้งาน NSP Repack\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"Disable Titlekey check\"\r\nmsgstr \"ปิดการใช้งานการตรวจสอบ Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"Enable Shorten Name\"\r\nmsgstr \"เปิดการใช้งานย่อชื่อไฟล์\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Enable Tinfoil Download\"\r\nmsgstr \"เปิดการใช้งานดาวน์โหลดสำหรับ Tinfoil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"Enable SysVer 0 Patch\"\r\nmsgstr \"เปิดการใช้งาน SysVer 0 แพทช์\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"Save Windows Location and Size\"\r\nmsgstr \"บันทึกตำแหน่งและขนาดของหน้าต่าง\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"Scan for existing games\"\r\nmsgstr \"สแกนรายการเกม\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 Decoder\"\r\nmsgstr \"Base64 Decoder\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"ดาวน์โหลด\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"ตัวเลือก\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"เครื่องมือ\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"เปิดการใช้งาน NSP Repack\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"เปิดการใช้งานป๊อปอัพ\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \"เปิดการใช้งานตรวจสอบ Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"เปิดการใช้งานภาพประกอบ\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"ปิดการใช้งานการย่อชื่อไฟล์\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \"ปิดการใช้งานดาวน์โหลดสำหรับ Tinfoil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"ปิดการใช้งาน SysVer 0 แพทช์\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \"สถานะ:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"เกม\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"สถานะ\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \"ภาพประกอบ:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"คลิกที่รูปภาพ \\n\"\r\n\"เพื่อดูข้อมูลของเกมใน eShop\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"ไม่ต้องแสดงเดโมเกม\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"Title ID:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"Title Key:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \"เลือกเวอร์ชั่นอัพเดท:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \"ตัวเลือกการดาวน์โหลด:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \"เกมหลัก + อัพเดท + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"เกมหลัก + อัพเดท\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"อัพเดท + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"เกมหลักเท่านั้น\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"อัพเดทเท่านั้น\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"DLC ทั้งหมด\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"เพิ่มลงในคิว\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"อัพเดท Titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"รายการคิวดาวน์โหลด\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"นำเกมที่เลือกไว้ออก\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"เอาออกทั้งหมด\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"ดาวน์โหลดทั้งหมด\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"คลิกดาวน์โหลดทั้งหมดเพื่อเริ่มดาวน์โหลดเกมในรายการ\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"สถานะ: กำลังเรียกสถานะของเกม... กรุณารอซักครู่\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"กำลังสร้างไฟล์สถานะระบบ... โปรดรอซักครู่! ขั้นตอนนี้อาจใช้เวลา ขึ้นอยู่กับจำนวนเกมที่คุณมี\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"เกิดข้อผิดพลาด! ไม่พบไฟล์ Current_status.txt\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"สถานะ: เสร็จสิ้น!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"กำลังดาวน์โหลดภาพประกอบ...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"เกิดข้อผิดพลาด\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \"TitleID {} ไม่ใช่เลขฐานสิบหก 32อักษร!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \"TitleID {} ไม่ใช่เลขฐานสิบหก 16อักษร!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"เริ่มต้นการดาวน์โหลด! การดาวน์โหลดต้องใช้เวลา กรุณาใจเย็นๆ - คุณสามารถตรวจสอบหน้าต่าง CMD (command prompt) ที่ด้านหลังเพื่อดูความคืบหน้าในการดาวน์โหลด\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"ดาวน์โหลดเสร็จสิ้น!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"ไม่พบอัพเดทเกม\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"เกมหลักดาวน์โหลดเสร็จสิ้น และไม่พบอัพเดทเกม\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"คุณยังไม่ได้เลือกตำแหน่งในการบันทึกข้อมูล!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Persistent queue not found, skipping...\"\r\nmsgstr \"Persistent queue not found, ทำการข้าม...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"ไม่มีรายการในคิว\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \"ไม่พบชื่อสำหรับ titleID ในรายการ\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"คุณยังไม่ได้เลือกเกมที่จะนำออกจากรายการ!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"เริ่มต้นการดาวน์โหลดเกมทั้งหมดในรายการ! คุณจะได้รับการแจ้งเตือนเมื่อการดาวน์โหลดเสร็จสิ้น โปรดรออย่างใจเย็น!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"กำลังดาวน์โหลดเกม...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \"ไม่มีอัพเดทสำหรับ titleID: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \"เกมหลักดาวน์โหลดเสร็จสิ้น และไม่มีอัพเดทสำหรับเกม titleID: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"ดาวน์โหลดเสร็จสิ้น!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \"ดาวน์โหลดเสร็จสิ้น!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"สถานะ: กำลังอัพเดท titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"อัพเดทเสร็จสิ้น!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \"เพิ่มเกมใหม่ทั้งหมดจำนวน: {} เกม\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"ปิด\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"สถานะ: อัพเดทเสร็จสิ้น! ไม่พบเกมใหม่!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"สถานะ: อัพเดทเสร็จสิ้น! ไม่พบเกมใหม่!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"สถานะ: อัพเดทเสร็จสิ้น! ทำการสร้างดาต้าเบสใหม่ทั้งหมด\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \"ดาต้าเบสเซิร์ฟเวอร์ {} อาจจะล่ม หรือไม่ว่าง\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \"เปิดการใช้งานตรวจสอบ Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"ปิดการใช้งานตรวจสอบ Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"ใช้เวลา {} วินาทีในการดาวน์โหลดภาพประกอบทั้งหมด!\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"ดาวน์โหลดภาพประกอบทั้งหมดเสร็จสิ้น!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"ไม่สามารถโหลดเวอร์ชั่นดังกล่าว\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \"ไม่พบ TitleID หรือ TitleID ไม่ครบ 16 อักษร!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"บันทึกขนาดและตำแหน่งของหน้าต่างแล้ว!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"ค้นหาเกมที่มีอยู่\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"เลือก\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"สแกน\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"คุณไม่ได้เลือกตำแหน่ง!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"ตำแหน่งที่คุณเลือกไว้ไม่มีในระบบ!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"ทำการสแกนเกมเสร็จสิ้น!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"สถานะ: กำลังสร้างไฟล์สถานะระบบ... โปรดรอซักครู่! ขั้นตอนนี้อาจใช้เวลา ขึ้นอยู่กับจำนวนเกมที่คุณมี\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"Base64 text:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"Decode\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"Decoded text:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"เปิด\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \"ข้อมูลเกม:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \"ราคา:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description:\"\r\nmsgstr \"คำบรรยาย:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher:\"\r\nmsgstr \"ผู้จัดจำหน่าย:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer\"\r\nmsgstr \"ผู้พัฒนา\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date:\"\r\nmsgstr \"วันที่เผยแพร่:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category:\"\r\nmsgstr \"ประเภท:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players:\"\r\nmsgstr \"จำนวนผู้เล่น:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"ไม่พบข้อมูลเกมดังกล่าวในขณะนี้!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"เกี่ยวกับ\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"เครดิต\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"ภาษา\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"กรุณาปิดและเปิดโปรแกรมใหม่ เพื่อทำการใช้ภาษาที่เลือก!\"\r\n\r\n\r\nmsgid 'New'\r\nmsgstr 'ใหม่ !!'\r\n\r\nmsgid 'Own'\r\nmsgstr 'ดาวน์โหลดไปแล้ว'\r\n\r\nmsgid 'Update'\r\nmsgstr 'มีอัพเดทใหม่'\r\n\r\nmsgid 'Latest'\r\nmsgstr 'เวอร์ชั่นล่าสุด'\r\n"
  },
  {
    "path": "locales/tr/LC_MESSAGES/language.po",
    "content": "# SOME DESCRIPTIVE TITLE.\r\n# Copyright (C) YEAR ORGANIZATION\r\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: PACKAGE VERSION\\n\"\r\n\"POT-Creation-Date: 2018-08-01 00:27+1200\\n\"\r\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\r\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\r\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Hata - Uygulama Python 2 ile başlatıldı, lütfen Python 2'yi silip Phyton 3'ü yükleyin\\n\"\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \"{0} yüklenirken hata oluştu, lütfen uygulamayı kapatın ve modülü yükleyebilmek için CMD komut satırına yazın: pip 3 install {0}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Gerekli modüller kontrol ediliyor!\\n\"\r\n\"\\n\"\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"Herşey düzgün çalışıyor!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"Gerekli dosyalar bulunumadı! Internet bağlatınızı kontrol edin\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"titlekeys.txt dosyasındaki fazladan boşlukları kontrol edin! Gereksiz boşlukları silin!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"Hata!, CDNSP-GUI-config.json dosyası bulunamadı\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"Indirilecek Konumu Seç\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"Oyun Resimlerini Önceden Yükle\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \"Kayıtlı Sırayı Yükle\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"Sırayı Kaydet\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"Aria2c Kaldır\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"OYUN RESMİ DEVREDIŞI\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"Açılır Pencereler Aktif\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"NSP Paketleme Devredışı\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"Disable Titlekey check\"\r\nmsgstr \"Titlekey Kontrolü Devredışı\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"Enable Shorten Name\"\r\nmsgstr \"Kısaltmalar Aktif\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Enable Tinfoil Download\"\r\nmsgstr \"Tinfoil Indirmesi Aktif\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"Enable SysVer 0 Patch\"\r\nmsgstr \"SysVer 0 Patch Aktif\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"Save Windows Location and Size\"\r\nmsgstr \"Windows Konumunu ve Boyutunu Kaydet\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"Scan for existing games\"\r\nmsgstr \"Seçili Oyunları Tara\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 Decoder\"\r\nmsgstr \"Base64 Çevirici\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"Indir\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"Ayarlar\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"Araçlar\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"NSP Paketleme Aktif\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"Açılır Pencereler Devredışı\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \"Titlekey Kontrolü Açık\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"OYUN RESMİ AKTİF\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"Kısaltmalar Devredışı\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \"Tinfoil Indirmesi Devredışı\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"SysVer 0 Patch Devredışı\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \"Durum:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"Oyun Adı\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"Kaynak\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \"Oyun Resmi:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"\"\r\n\"Oyunu Eshop'ta Açmak İçin \\n\"\r\n\"Üstteki Resme Tıklayın!\"\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"Demoları Gösterme\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"Title ID:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"Title Key:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \"Güncelleme Sürümünü Seç:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \"Indirme Seçenekleri:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \"Oyun + Güncelleme + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"Oyun + Güncelleme\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"Güncelleme + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"Sadece Oyun\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"Sadece Güncelleme\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"Tüm Güncellemeler\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"Sıraya Ekle\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"Titlekey'leri Güncelle\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"Sıra Menüsü\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"Seçilen Oyunu Sil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"Hepsini Sil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"Hepsini İndir\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"Sıralamadaki oyunların hepsini indirmek için download all tıkla \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"Durum: Oyun Durumu Belirleniyor...Lütfen Bekleyin\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Mevcut oyunlar hazırlanıyor... Lütfen bekleyin, oyun sayısına bağlı olarak süreç değişebilir.\"\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"Hata, Current_status.txt mevcut değil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"Durum: Tamam!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Oyun Resimleri İndiriliyor...\"\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"Hata\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \"Titlekey {} : 32 haneli hexadecimal sayısı değil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \"TitleID {} : 16 haneli hexadecimal sayısı değil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"İndirme başlıyor! Biraz zaman alabilir, lütfen sabredin. İndirme sırasında CMD (Komut Sistemi) arkaplanda indirilirken gözükür\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"İndirme Tamam!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"Bu oyun için güncelleme bulunamadı\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"Bu oyun için güncelleme bulunamadı, sadece oyun indirildi!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Kaydedilecek konumu seçmedin!!\"\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Persistent queue not found, skipping...\"\r\nmsgstr \"Kalıcı sıra bulunamadı, esgeçiliyor...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"Sıradaki öğe bulunamadı\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \"Listede belirtilen isimle uyuşan titleID bulunamadı \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"Kaldırılacak oyun seçilmedi!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"Sıralamadaki oyunlar şimdi başlıyor! Indirmeler tamamlanınca bilgilendirileceksiniz, lütfen sabredin!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"Oyunlar İndiriliyor...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \"titleID: {} için güncelleme güncelleme mevcut değil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \"titleID: {} için güncelleme güncelleme mevcut değil, sadece oyun indirildi!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"İndirme tamamlandı!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \"İndirme Tamamlandı!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"Durum: titlekeys güncelleniyor\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"Güncelleme Tamamlandı!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \"Yeni Eklenen oyun adedi: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"Kapat\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"Durum: Güncelleme Tamamlandı, yeni oyun bulunamadı\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Durum: Güncelleme Tamamlandı, yeni oyun bulunamadı\"\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"Durum: Güncelleme tamamlandı, veritabanı yenilendi\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \"Sunucu {} çöktü veya kapalı\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \"Title Kontrolü Aktif\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"Title Kontrolü Devredışı\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"\"\r\nmsgid \"\"\r\n\"\\n\"\r\n\" Tüm resimlerin indirilmesi {} saniye sürdü!\\n\"\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"Tüm resimlere erişildi\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"Version bilgisi alınamadı\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \"TitleID değil veya 16 karakterli bir TitleID değil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"Windows Boyutu ve yeri kaydedildi!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"Mevcut oyunlar aranıyor\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"Gözat\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"Tara\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"Tercihleri seçmediniz\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"Seçtiğiniz tercih mevcut değil!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"Mevcut Oyunlar tarandı\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"Durum: belirtilen dosya hazırlandı... Lütfen bekleyin, süreç seçilen oyun sayısına bağlı olarak değişebilir. \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"Base64 yazısı:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"Çeviri\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"Çervilirilmiş yazı:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"Aç\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \"Oyun Bilgisi:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \"Oyun Fiyatı:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description:\"\r\nmsgstr \"Oyun Açıklaması:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher:\"\r\nmsgstr \"Dağıtıcı:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer\"\r\nmsgstr \"Geliştirici:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date:\"\r\nmsgstr \"Çıkış Tarihi:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category:\"\r\nmsgstr \"Kategori:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players:\"\r\nmsgstr \"Oyuncu Sayısı:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"Bu oyun ile ilgili bilgi şimdilik bulunamadı!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"Hakkında\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"Credits\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"Dil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"Yeni dil tercihinin uygulanması için lütfen GUI'yi yeniden başlatın!\"\r\n\r\nmsgid \"New\"\r\nmsgstr \"Yeni\"\r\n\r\nmsgid \"Own\"\r\nmsgstr \"Indirilenler\"\r\n\r\nmsgid \"Update\"\r\nmsgstr \"Veri güncelleme\"\r\n\r\nmsgid \"Latest\"\r\nmsgstr \"Son sürüm\""
  },
  {
    "path": "locales/vi/LC_MESSAGES/language.po",
    "content": "# SOME DESCRIPTIVE TITLE.\r\n# Copyright (C) YEAR ORGANIZATION\r\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: PACKAGE VERSION\\n\"\r\n\"POT-Creation-Date: 2018-08-01 00:27+1200\\n\"\r\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\r\n\"Last-Translator: HUNG NGUYEN <hungnguyen81@gmail.com>\\n\"\r\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Lỗi - Ứng dụng được khởi động bằng Python 2, vui lòng gỡ bỏ Python 2 và cài đặt Python 3 để khởi động\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \"Lỗi trong khi cài đặt {0}, đóng ứng dụng và cài đặt module cần thiết bằng lệnh: pip3 install {0}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Kiểm tra các modules bắt buộc đã cài đặt chưa!\\n\"\r\n\"\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"Ứng dụng đủ điều kiện khởi động\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"Không thể tải về các files cần thiết, vui lòng kiểm tra kết nối Internet\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"Vui lòng kiểm tra và xóa bỏ cách dòng thừa (space) ở cuối file titlekeys.txt!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"Lỗi thiếu file CDNSP-GUI-config.json\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"Chọn nơi lưu games tải về\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"Tải trước ảnh game\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \"Mở danh sách games đã lưu\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"Lưu danh sách games\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"Aria2c không còn được sử dụng\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"TẮT HÌNH ẢNH GAME\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"Tắt tất cả thông báo\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"Tắt chức năng NSP Repack\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"Disable Titlekey check\"\r\nmsgstr \"Tắt kiểm tra Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"Enable Shorten Name\"\r\nmsgstr \"Bật chức năng đổi tên ngắn\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Enable Tinfoil Download\"\r\nmsgstr \"Bật chức năng tải game dạng Tinfoil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"Enable SysVer 0 Patch\"\r\nmsgstr \"Bật Sysver 0 Patch\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"Save Windows Location and Size\"\r\nmsgstr \"Lưu vị trí và kích thước cửa sổ\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"Scan for existing games\"\r\nmsgstr \"Quét các games hiện tại\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 Decoder\"\r\nmsgstr \"Giải mã Bas64\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"Tải về\"\r\n\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"Lựa chọn\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"Công cụ\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"Bật chức năng NSP Repack\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"Bật tất cả thông báo\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \"Bật kiểm tra Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"HIỂN THỊ ẢNH GAME\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"Tắt chức năng đổi tên ngắn\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \"Tắt chức năng tải games dạng Tinfoil\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"Tắt SysVer 0 Patch\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \"Trạng thái\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"Game\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"Trạng thái\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \"Hình ảnh\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"\"\r\n\"Click ảnh game \\n\"\r\n\"để mở link tới eShop!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"Không có Demo\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"Title ID\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"Title Key\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \"Chọn phiên bản update\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \"Lựa chọn tải về\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \"Base game + Update + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"Base game + Update\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"Update + DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"Chỉ tải base game\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"Chỉ tải update\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"Tất cả DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"Thêm vào danh sách\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"Cập nhật Titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"Danh sách\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"Xóa game đã chọn\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"Xóa hết\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"Tải tất cả\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"Ấn nút tải tất cả để tải về các games đã lưu\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"Tình trạng: Đang cập nhât...vui lòng đợi trong giây lát\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Đang cập nhật trang thái hiện tại, thời gian đợi phụ thuộc vào số lượng games bạn đang có.\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"Lỗi thiếu file Current_status.txt\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Đang tải hình ảnh...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"Lỗi\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \"Titlekey {} không có dạng 32-digits hexadecimal hợp lệ!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \"TitleID {} không có dạng 16-digits hexadecimal hợp lệ!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"Đang tải về, xem trong cửa sổ CMD (Windows) hoặc terminal (Mac) để kiểm tra trạng thái\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"Tải về thành công!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"Game không có update nào\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"Game không có update, base game đã được tải về\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Bạn chưa chọn nợi lưu games\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Persistent queue not found, skipping...\"\r\nmsgstr \"Đang bỏ qua vì danh sách game không tìm thấy\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"Không tìm thấy game trong danh sách\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \"titleID không có trong danh sách\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"Không có game nào được chọn để xóa\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"Bắt đầu tải về các games trong danh sách! Vui lòng đợi, bạn sẽ nhận được thông báo khi quá trình tải về hoàn tất\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"Đang tải về...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \"Không có update nào cho titleID: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \"Không có update nào cho titleID: {}, base game đã được tải về!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"Đã tải xong\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \"Đã tải xong\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"Đang cập nhật titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"Hoàn tất cập nhật!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \"Tổng số game được thêm: {}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"Đóng\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"Trạng thái: Hoàn tất cập nhật, không có game nào được cập nhật mới\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Trạng thái: Hoàn tất cập nhật, không có games mới!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"Trạng thái: Hoàn tất cập nhật, Database sẽ được lưu mới\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \"Máy chủ CSDL {} đang gặp trục trặc\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \"Bật kiểm tra Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"Tắt kiểm tra Titlekey\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"Mất {} giây để tải về tất cả các ảnh!\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"Hoàn tất tải ảnh về\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"Lỗi không lấy được phiên bản\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \"Không có TitleID hoặc TitleID không đủ 16 ký tự\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"Kích cỡ và vị trí cửa sổ đã được lưu\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"Đang tìm các games hiện tại\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"Mở\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"Quét\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"Bạn chưa chọn thư mục\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"Thư mục được chọn không tồn tại!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"Đã quét xong các games của bạn\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"Trạng thái: \"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"Base64 text\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"Giải mã\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"Text đã được giải mã\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"Mở\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \"Thông tin\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \"Giá\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description:\"\r\nmsgstr \"Mô tả\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher:\"\r\nmsgstr \"Nhà phát hành\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer\"\r\nmsgstr \"Nhà phát triển\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date:\"\r\nmsgstr \"Ngày phát hành:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category:\"\r\nmsgstr \"Nhóm:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players:\"\r\nmsgstr \"Số lượng người chơi\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"Thông tin game không tồn tại\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"Giới thiệu\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"Danh sách thành viên\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"Ngôn ngữ\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"Khởi động lại ứng dụng để thay đổi ngôn ngữ mới\"\r\n\r\n\r\nmsgid 'New'\r\nmsgstr 'Game mới download'\r\n\r\nmsgid 'Own'\r\nmsgstr 'Game đã download'\r\n\r\nmsgid 'Update'\r\nmsgstr 'Game có update'\r\n\r\nmsgid 'Latest'\r\nmsgstr 'Phiên bản mới nhất'\r\n"
  },
  {
    "path": "locales/zh-cn/LC_MESSAGES/language.po",
    "content": "# SOME DESCRIPTIVE TITLE.\r\n# Copyright (C) YEAR ORGANIZATION\r\n# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: PACKAGE VERSION\\n\"\r\n\"POT-Creation-Date: 2018-08-01 00:27+1200\\n\"\r\n\"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\\n\"\r\n\"Last-Translator: FULL NAME <EMAIL@ADDRESS>\\n\"\r\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"错误 - 程序无法在Python 2环境下运行，请安装Python 3并删除Python 2\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \"{0}安装错误，请关闭程序，并在CMD窗口输入以下命令手动安装：pip3 install {0}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"正在检查是否安装了所有需求模块！\\n\"\r\n\"\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"看起来一切已准备就绪！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"无法获取所需文件！请检查你的网络连接。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"请检查titlekeys.txt文件末尾是否有多余空行！如有请删除！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"错误！找不到CDNSP-GUI-config.json文件。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"选择下载位置\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"预载所有游戏图片\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \"载入已保存队列\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"保存队列\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"多线程下载功能已移除\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"关闭游戏图片显示\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"禁止弹出消息\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"关闭NSP打包\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"Disable Titlekey check\"\r\nmsgstr \"关闭游戏密钥校验\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"Enable Shorten Name\"\r\nmsgstr \"开启短文件名\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Enable Tinfoil Download\"\r\nmsgstr \"开启Tinfoil版下载\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"Enable SysVer 0 Patch\"\r\nmsgstr \"开启SysVer 0补丁\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"Save Windows Location and Size\"\r\nmsgstr \"保存窗口位置及大小\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"Scan for existing games\"\r\nmsgstr \"扫描本地游戏\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 Decoder\"\r\nmsgstr \"Base64解码器\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"下载\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"选项\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"工具\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"开启NSP打包\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"允许弹出消息\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \"开启游戏密钥校验\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"开启游戏图片显示\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"关闭短文件名\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \"关闭Tinfoil版下载\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"关闭SysVer 0补丁\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \"状态：\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"游戏\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"状态\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \"游戏图片：\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"点击游戏图片\\n\"\r\n\"打开相应eShop页面！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"不显示体验版\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"游戏标识：\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"游戏密钥：\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \"选择升级补丁版本：\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \"下载选项：\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \"游戏本体+升级补丁+DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"游戏本体+升级补丁\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"升级补丁+DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"仅游戏本体\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"仅升级补丁\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"全部DLC\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"添加到队列\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"更新游戏密钥清单\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"队列菜单\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"移除选中的游戏\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"移除所有游戏\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"下载所有游戏\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"点击“下载所有游戏”开始队列下载！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"状态：正在获取游戏状态...请耐心等待\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"正在构建当前状态文件...根据游戏数量多少需要相应的时间，请耐心等待。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"错误，Current_status.txt不存在\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"状态：完成！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"正在下载游戏图片...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"错误\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \"游戏密钥{}不是有效的32位十六进制数字！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \"游戏标识{}不是有效的16位十六进制数字！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"开始下载！需要一定时间，请耐心等待。你可以查看后端的CMD窗口了解下载进度。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"下载完成！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"该游戏没有升级补丁\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"该游戏没有升级补丁，将仅下载游戏本体！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"你未选择下载文件位置！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Persistent queue not found, skipping...\"\r\nmsgstr \"未发现连续队列，跳过...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"未在队列中发现项目\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \"未在游戏清单内找到该标识对应的名称\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"未选中任何游戏来移除！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"开始下载队列中的所有游戏！全部下载完成后会进行通知，请耐心等待！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"正在下载游戏....\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \"该游戏标识没有升级补丁：{}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \"该游戏标识没有升级补丁：{}，将仅下载游戏本体！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"下载完成！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \"下载完成！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"状态：正在更新游戏密钥清单\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"更新完成！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \"新增游戏数量：{}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"关闭\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"状态：更新完成，没有新增游戏！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"更新完成，没有新增游戏！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"状态：更新完成，重建游戏数据库\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \"在线数据库{}可能已失效或无法访问\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \"开启游戏密钥校验\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"关闭游戏密钥校验\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"总共耗时{}秒下载所有游戏图片！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"所有游戏图片下载完成！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"无法取得版本信息\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \"缺少游戏标识，或游戏标识不是16位字符！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"窗口位置及大小已保存！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"扫描本地游戏\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"浏览\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"扫描\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"你未选择任何文件夹！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"已选择的文件夹不存在\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"完成扫描本地游戏！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"状态：正在构建当前状态文件... 根据游戏数量多少需要相应的时间，请耐心等待。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"Base64文本：\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"解码\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"解码文本：\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"打开\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \"游戏信息：\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \"游戏价格：\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description:\"\r\nmsgstr \"游戏简介：\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher:\"\r\nmsgstr \"发行商：\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer\"\r\nmsgstr \"开发商：\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date:\"\r\nmsgstr \"发行日期：\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category:\"\r\nmsgstr \"类别：\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players:\"\r\nmsgstr \"玩家人数：\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"该游戏暂时无法取得相关信息！\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"关于\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"团队\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"语言\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"请重新启动本程序以启用新语言！\"\r\n\r\n\r\nmsgid 'New'\r\nmsgstr '新增'\r\n\r\nmsgid 'Own'\r\nmsgstr '拥有'\r\n\r\nmsgid 'Update'\r\nmsgstr '升级'\r\n\r\nmsgid 'Latest'\r\nmsgstr '最新'\r\n\r\nmsgid 'Update Version List'\r\nmsgstr '更新版本清单'\r\n\r\nmsgid 'No Japanese Game'\r\nmsgstr '不显示日文游戏'\r\n"
  },
  {
    "path": "locales/zh-tw/LC_MESSAGES/language.po",
    "content": "# SOME DESCRIPTIVE TITLE.\r\n# Copyright (C) YEAR ORGANIZATION\r\n# Maruku <cpalm.org@gmail.com>, 2018.\r\n#\r\nmsgid \"\"\r\nmsgstr \"\"\r\n\"Project-Id-Version: PACKAGE VERSION\\n\"\r\n\"POT-Creation-Date: 2018-08-12 01:56+0800\\n\"\r\n\"PO-Revision-Date: 2018-08-12 01:56+0800\\n\"\r\n\"Last-Translator: Maruku <cpalm.org@gmail.com>\\n\"\r\n\"Language-Team: LANGUAGE <LL@li.org>\\n\"\r\n\"MIME-Version: 1.0\\n\"\r\n\"Content-Type: text/plain; charset=UTF-8\\n\"\r\n\"Content-Transfer-Encoding: 8bit\\n\"\r\n\"Generated-By: pygettext.py 1.5\\n\"\r\n\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:25\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Error - Application launched with Python 2, please install Python 3 and delete Python 2\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"錯誤 - 應用程式使用 Python 2 啟動，請安裝 Python 3 並刪除 Python 2\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:49\r\nmsgid \"Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}\"\r\nmsgstr \"安裝 {0} 錯誤, 關閉應用程式然後使用手動安裝模組在 CMD 輸入: pip3 install {0}\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:51\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Checking if all required modules are installed!\\n\"\r\n\"\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"正在檢查全部必要的模組是否已經安裝!\\n\"\r\n\"\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:86\r\nmsgid \"Everything looks good!\"\r\nmsgstr \"一切看起來都很好!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:88\r\nmsgid \"Unable to get required files! Check your internet connection\"\r\nmsgstr \"無法取得必要的檔案! 請檢查你的網際網路連線\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1334\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2470\r\nmsgid \"Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!\"\r\nmsgstr \"檢查 titlekeys.txt 檔案底部是否有多餘的空格! 如果有，請刪除!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1355\r\nmsgid \"Error!, Missing CDNSP-GUI-config.json file\"\r\nmsgstr \"錯誤!, 找不到 CDNSP-GUI-config.json 檔案\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1485\r\nmsgid \"Select Download Location\"\r\nmsgstr \"選擇下載位置\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1486\r\nmsgid \"Preload Game Images\"\r\nmsgstr \"預載遊戲圖片\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1488\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1709\r\nmsgid \"Load Saved Queue\"\r\nmsgstr \"載入儲存佇列\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1489\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1710\r\nmsgid \"Save Queue\"\r\nmsgstr \"儲存佇列\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1493\r\nmsgid \"Aria2c will be missed\"\r\nmsgstr \"Aria2c 會造成封包遺失(停用)\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1494\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1540\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2544\r\nmsgid \"DISABLE GAME IMAGE\"\r\nmsgstr \"停用遊戲圖片\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1498\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1532\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2499\r\nmsgid \"Mute All Pop-ups\"\r\nmsgstr \"全部彈出視窗靜音\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1499\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1526\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2344\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2522\r\nmsgid \"Disable NSP Repack\"\r\nmsgstr \"停用 NSP 重新封裝\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1500\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1534\r\nmsgid \"Disable Titlekey check\"\r\nmsgstr \"停用 Titlekey 檢查\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1504\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1544\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2642\r\nmsgid \"Enable Shorten Name\"\r\nmsgstr \"啟用短名稱\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1505\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1548\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2652\r\nmsgid \"Enable Tinfoil Download\"\r\nmsgstr \"啟用 Tinfoil 下載\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1506\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1552\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2855\r\nmsgid \"Enable SysVer 0 Patch\"\r\nmsgstr \"啟用 SysVer 0 補丁\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1510\r\nmsgid \"Save Windows Location and Size\"\r\nmsgstr \"儲存視窗位置與大小\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1515\r\nmsgid \"Scan for existing games\"\r\nmsgstr \"掃瞄現存遊戲\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1516\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2786\r\nmsgid \"Base64 Decoder\"\r\nmsgstr \"Base64 解碼器\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1519\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1684\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1713\r\nmsgid \"Download\"\r\nmsgstr \"下載\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1520\r\nmsgid \"Options\"\r\nmsgstr \"選項\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1521\r\nmsgid \"Tools\"\r\nmsgstr \"工具\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1528\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2341\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2516\r\nmsgid \"Enable NSP Repack\"\r\nmsgstr \"啟用 NSP 重新封裝\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1530\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2496\r\nmsgid \"Unmute All Pop-ups\"\r\nmsgstr \"取消全部彈出視窗靜音\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1536\r\nmsgid \"Enable Titlekey check\"\r\nmsgstr \"啟用 Titlekey 檢查\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1538\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2541\r\nmsgid \"ENABLE GAME IMAGE\"\r\nmsgstr \"啟用遊戲圖片\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1542\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2639\r\nmsgid \"Disable Shorten Name\"\r\nmsgstr \"停用短名稱\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1546\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2649\r\nmsgid \"Disable Tinfoil Download\"\r\nmsgstr \"停用 Tinfoil 下載\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1550\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2852\r\nmsgid \"Disable SysVer 0 Patch\"\r\nmsgstr \"停用 SysVer 0 補丁\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1555\r\nmsgid \"Status:\"\r\nmsgstr \"狀態:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1589\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1904\r\nmsgid \"Game\"\r\nmsgstr \"遊戲\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1591\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1905\r\nmsgid \"State\"\r\nmsgstr \"狀態\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1603\r\nmsgid \"Game Image:\"\r\nmsgstr \"遊戲圖片:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1615\r\nmsgid \"\"\r\n\"Click the game image above \\n\"\r\n\"to open the game in the eShop!\"\r\nmsgstr \"\"\r\n\"點擊上面的遊戲圖片\\n\"\r\n\"可以開啟在 eShop 裡的遊戲介紹!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1626\r\nmsgid \"No Demo\"\r\nmsgstr \"排除試玩版遊戲\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1631\r\nmsgid \"Title ID:\"\r\nmsgstr \"Title ID:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1639\r\nmsgid \"Title Key:\"\r\nmsgstr \"Title Key:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1647\r\nmsgid \"Select update version:\"\r\nmsgstr \"選擇更新版本:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1657\r\nmsgid \"Download options:\"\r\nmsgstr \"下載選項:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1661\r\nmsgid \"Base game + Update + DLC\"\r\nmsgstr \"遊戲 + 更新 + 遊戲追加內容\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1662\r\nmsgid \"Base game + Update\"\r\nmsgstr \"遊戲 + 更新\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1663\r\nmsgid \"Update + DLC\"\r\nmsgstr \"更新 + 遊戲追加內容\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1664\r\nmsgid \"Base game only\"\r\nmsgstr \"只有遊戲\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1665\r\nmsgid \"Update only\"\r\nmsgstr \"只有更新\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1666\r\nmsgid \"All DLC\"\r\nmsgstr \"全部遊戲追加內容\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1682\r\nmsgid \"Add to queue\"\r\nmsgstr \"加入佇列\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1687\r\nmsgid \"Update Titlekeys\"\r\nmsgstr \"更新 Titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1700\r\nmsgid \"Queue Menu\"\r\nmsgstr \"佇列選單\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1728\r\nmsgid \"Remove selected game\"\r\nmsgstr \"移除選擇的遊戲\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1729\r\nmsgid \"Remove all\"\r\nmsgstr \"全部移除\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1730\r\nmsgid \"Download all\"\r\nmsgstr \"全部下載\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1731\r\nmsgid \"Click download all to download all games in queue!\"\r\nmsgstr \"點擊 [全部下載] 來下載全部在佇列中的遊戲\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1795\r\nmsgid \"Status: Getting game status... Please wait\"\r\nmsgstr \"狀態: 正在取得遊戲狀態... 請稍等\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1803\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"正在建立目前的狀態檔案... 請稍等, 這個可能要花點時間且取決於你有多少遊戲。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1899\r\nmsgid \"Error, Current_status.txt doesn't exist\"\r\nmsgstr \"錯誤, Current_status.txt 不存在\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1919\r\nmsgid \"Status: Done!\"\r\nmsgstr \"狀態: 完成!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:1996\r\nmsgid \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"Downloading game image...\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"\\n\"\r\n\"正在下載遊戲圖片...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"Error\"\r\nmsgstr \"錯誤\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2009\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2165\r\nmsgid \"Titlekey {} is not a 32-digits hexadecimal number!\"\r\nmsgstr \"Titlekey {} 不是一個 32-位的16進制的數字!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2011\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2167\r\nmsgid \"TitleID {} is not a 16-digits hexadecimal number!\"\r\nmsgstr \"TitleID {} 不是一個 16-位的16進制的數字!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2034\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2042\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2062\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2077\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2092\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2099\r\nmsgid \"Starting to download! It will take some time, please be patient. You can check the CMD (command prompt) at the back to see your download progress.\"\r\nmsgstr \"正在開始下載! 它會花點時間, 請有點耐心。你可以檢查後面的 CMD (命令提示視窗) 來檢視下載進度。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2036\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2057\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2073\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2087\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2095\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2105\r\nmsgid \"Download finished!\"\r\nmsgstr \"下載完成!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2038\r\nmsgid \"No updates available for the game\"\r\nmsgstr \"這個遊戲沒有可用的更新\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2107\r\nmsgid \"No updates available for the game, base game downloaded!\"\r\nmsgstr \"這個遊戲沒有可用的更新，主要遊戲已經下載!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2124\r\nmsgid \"\"\r\n\"\\n\"\r\n\"You didn't choose a location to save the file!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"你沒有選擇要儲存檔案的位置!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2143\r\nmsgid \"Persistent queue not found, skipping...\"\r\nmsgstr \"找不到一致的佇列，正在略過...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2149\r\nmsgid \"Item not found in queue\"\r\nmsgstr \"在佇列找不到項目\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2198\r\nmsgid \"Name for titleID not found in the list\"\r\nmsgstr \"在清單裡找不到 titleID 的名稱\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2224\r\nmsgid \"No game selected to remove!\"\r\nmsgstr \"沒有選取的遊戲可以移除!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2235\r\nmsgid \"Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!\"\r\nmsgstr \"全部你的已佇列的遊戲將要開始下載! 一旦下載完成就會通知你，請有耐心一點!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2236\r\nmsgid \"Downloading games...\"\r\nmsgstr \"正在下載遊戲...\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2247\r\nmsgid \"No updates available for titleID: {}\"\r\nmsgstr \"對 titleID: {} 沒有可用的更新\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2306\r\nmsgid \"No updates available for titleID: {}, base game downloaded!\"\r\nmsgstr \"對 titleID: {} 沒有可用的更新, 主要遊戲已經下載!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2312\r\nmsgid \"Download complete!\"\r\nmsgstr \"下載完成!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2313\r\nmsgid \"Download Complete!\"\r\nmsgstr \"下載完成\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2349\r\nmsgid \"Status: Updating titlekeys\"\r\nmsgstr \"狀態: 正在更新 titlekeys\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2385\r\nmsgid \"Finished update!\"\r\nmsgstr \"已完成更新!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2412\r\nmsgid \"Total of new games added: {}\"\r\nmsgstr \"總共有: {} 新遊戲已被加入。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2413\r\nmsgid \"Close\"\r\nmsgstr \"關閉\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2434\r\nmsgid \"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"狀態: 已完成更新，沒有新的遊戲可以更新!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2435\r\nmsgid \"\"\r\n\"\\n\"\r\n\"Status: Finished update, There were no new games to update!\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"狀態: 已完成更新，沒有新的遊戲可以更新!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2450\r\nmsgid \"Status: Finished update, Database rebuilt from scratch\"\r\nmsgstr \"狀態：已完成更新，資料庫將從頭開始重建\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2456\r\nmsgid \"The database server {} might be down or unavailable\"\r\nmsgstr \"資料庫伺服器 {} 可能被關閉或是不可用\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2507\r\nmsgid \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"{}\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2514\r\nmsgid \"Enable Titlekey Check\"\r\nmsgstr \"啟用 Titlekey 檢查\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2520\r\nmsgid \"Disable Titlekey Check\"\r\nmsgstr \"停用 Titlekey 檢查\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2593\r\nmsgid \"\"\r\n\"\\n\"\r\n\"It took {} seconds for you to get all images!\\n\"\r\nmsgstr \"\"\r\n\"\\n\"\r\n\"它需要 {} 秒，來為您取得全部圖片!\\n\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2594\r\nmsgid \"Done getting all game images!\"\r\nmsgstr \"取得全部的遊戲圖片!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2631\r\nmsgid \"Failed to get version\"\r\nmsgstr \"取得版本失敗\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2633\r\nmsgid \"No TitleID or TitleID not 16 characters!\"\r\nmsgstr \"沒有 TitleID 或者 TitleID 沒有 16 個字元!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2677\r\nmsgid \"Windows size and position saved!\"\r\nmsgstr \"視窗尺寸和位置已經儲存!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2682\r\nmsgid \"Search for existing games\"\r\nmsgstr \"為了已存的遊戲搜尋\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2694\r\nmsgid \"Browse\"\r\nmsgstr \"瀏覽\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2696\r\nmsgid \"Scan\"\r\nmsgstr \"掃瞄\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2715\r\nmsgid \"You didn't choose a directory!\"\r\nmsgstr \"你沒有選擇資料夾!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2718\r\nmsgid \"The chosen directory doesn't exist!\"\r\nmsgstr \"選擇的資料夾不存在!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2778\r\nmsgid \"Finished scanning your games!\"\r\nmsgstr \"你的遊戲已經完成掃瞄!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2779\r\nmsgid \"Status: Building the current state file... Please wait, this may take some time depending on how many games you have.\"\r\nmsgstr \"狀態: 正在建立目前的狀態檔... 請稍等, 這個可能要花點時間且取決於你有多少遊戲。\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2791\r\nmsgid \"Base64 text:\"\r\nmsgstr \"Base64 文字:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2796\r\nmsgid \"Decode\"\r\nmsgstr \"解碼\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2799\r\nmsgid \"Decoded text:\"\r\nmsgstr \"已解碼文字:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2804\r\nmsgid \"Open\"\r\nmsgstr \"開啟\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2885\r\nmsgid \"Game Info:\"\r\nmsgstr \"遊戲資訊:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2886\r\nmsgid \"Game Price:\"\r\nmsgstr \"遊戲價格:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2887\r\nmsgid \"Game Description:\"\r\nmsgstr \"遊戲說明:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2888\r\nmsgid \"Publisher:\"\r\nmsgstr \"發行者:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2889\r\nmsgid \"Developer\"\r\nmsgstr \"研發人員\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2890\r\nmsgid \"Release Date:\"\r\nmsgstr \"釋出日期:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2891\r\nmsgid \"Category:\"\r\nmsgstr \"分類:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2892\r\nmsgid \"Number of Players:\"\r\nmsgstr \"遊戲人數:\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2893\r\nmsgid \"Game Info not avaiable for this game at the moment!\"\r\nmsgstr \"這個遊戲在這時候沒有可用的遊戲資訊!\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2894\r\nmsgid \"About\"\r\nmsgstr \"關於\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2895\r\nmsgid \"Credits\"\r\nmsgstr \"團隊\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2896\r\nmsgid \"Language\"\r\nmsgstr \"語系\"\r\n\r\n#:\r\n#: C:\\Users\\Bob\\Google Drive\\CDNSP_new\\CDNSP-GUI-Bob-v4\\CDNSP-GUI-Bobv4\\CDNSP-GUI-Bob-v4.1.py:2897\r\nmsgid \"Please restart the GUI for the new language to apply!\"\r\nmsgstr \"請重新啟動 GUI 來對新語系套用\"\r\n\r\nmsgid \"New\"\r\nmsgstr \"新的\"\r\n\r\nmsgid \"Own\"\r\nmsgstr \"擁有的\"\r\n\r\nmsgid \"Update\"\r\nmsgstr \"更新\"\r\n\r\nmsgid \"Latest\"\r\nmsgstr \"最新的\"\r\n\r\nmsgid \"Update Version List\"\r\nmsgstr \"更新版本清單\"\r\n\r\nmsgid \"No Japanese Game\"\r\nmsgstr \"排除日文版遊戲\""
  }
]