Repository: Bob123a1/CDNSP-GUI Branch: master Commit: 30479f773d0e Files: 59 Total size: 967.0 KB Directory structure: gitextract_45569mqu/ ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CDNSP-GUI-Bob.py ├── LICENSE ├── README.md └── locales/ ├── af/ │ └── LC_MESSAGES/ │ ├── language.mo │ └── language.po ├── ar/ │ └── LC_MESSAGES/ │ ├── language.mo │ └── language.po ├── de/ │ └── LC_MESSAGES/ │ ├── language.mo │ └── language.po ├── el/ │ └── LC_MESSAGES/ │ ├── language.mo │ └── language.po ├── en/ │ └── LC_MESSAGES/ │ ├── language.mo │ └── language.po ├── es/ │ └── LC_MESSAGES/ │ ├── language.mo │ └── language.po ├── fa/ │ └── LC_MESSAGES/ │ ├── language.mo │ └── language.po ├── fr/ │ └── LC_MESSAGES/ │ ├── language.mo │ └── language.po ├── he/ │ └── LC_MESSAGES/ │ ├── language.mo │ └── language.po ├── hu/ │ └── LC_MESSAGES/ │ ├── language.mo │ └── language.po ├── id/ │ └── LC_MESSAGES/ │ ├── language.mo │ ├── language.po │ └── language_old.po ├── it/ │ └── LC_MESSAGES/ │ ├── language.mo │ ├── language.po │ └── language_old.po ├── ja/ │ └── LC_MESSAGES/ │ ├── language.mo │ ├── language.po │ └── language_.po ├── ko/ │ └── LC_MESSAGES/ │ ├── language.mo │ └── language.po ├── ms/ │ └── LC_MESSAGES/ │ ├── language.mo │ └── language.po ├── nl/ │ └── LC_MESSAGES/ │ ├── language.mo │ └── language.po ├── pl/ │ └── LC_MESSAGES/ │ ├── language.mo │ └── language.po ├── pt/ │ └── LC_MESSAGES/ │ ├── language.mo │ ├── language.po │ ├── language_old.mo │ └── language_old.po ├── ru/ │ └── LC_MESSAGES/ │ ├── language.mo │ └── language.po ├── th/ │ └── LC_MESSAGES/ │ ├── language.mo │ └── language.po ├── tr/ │ └── LC_MESSAGES/ │ ├── language.mo │ └── language.po ├── vi/ │ └── LC_MESSAGES/ │ ├── language.mo │ └── language.po ├── zh-cn/ │ └── LC_MESSAGES/ │ ├── language.mo │ └── language.po └── zh-tw/ └── LC_MESSAGES/ ├── language.mo └── language.po ================================================ FILE CONTENTS ================================================ ================================================ FILE: .github/ISSUE_TEMPLATE/bug_report.md ================================================ --- name: Bug report about: Create a report to help us improve --- **Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. Go to '...' 2. Click on '....' 3. Scroll down to '....' 4. See error **Expected behavior** A clear and concise description of what you expected to happen. **Screenshots** If applicable, add screenshots to help explain your problem. **Desktop (please complete the following information):** - OS: [e.g. iOS] - Browser [e.g. chrome, safari] - Version [e.g. 22] **Smartphone (please complete the following information):** - Device: [e.g. iPhone6] - OS: [e.g. iOS8.1] - Browser [e.g. stock browser, safari] - Version [e.g. 22] **Additional context** Add any other context about the problem here. ================================================ FILE: .github/ISSUE_TEMPLATE/feature_request.md ================================================ --- name: Feature request about: Suggest an idea for this project --- **Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd like** A clear and concise description of what you want to happen. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. **Additional context** Add any other context or screenshots about the feature request here. ================================================ FILE: .gitignore ================================================ # IDE /.idea/ /*.iml # language.mo files #/locales/*/LC_MESSAGES/language.mo ================================================ FILE: CDNSP-GUI-Bob.py ================================================ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # Credit: # Thanks to Zotan (DB and script), Big Poppa Panda, AnalogMan, F!rsT-S0uL # Design inspiration: Lucas Rey's GUI (https://darkumbra.net/forums/topic/174470-app-cdnsp-gui-v105-download-nsp-gamez-using-a-gui/) # Thanks to the developer(s) that worked on CDNSP_Next for the cert fix! # Thanks to the help of devloper NighTime, kvn1351, gizmomelb, theLorknessMonster, vertigo # CDNSP - GUI - Bob - v6.0.1 import sys import time import random import gettext import platform import locale import json import os __gui_version__ = "6.0.2" __lang_version__ = "1.0.0" global sys_locale if platform.system() != 'Darwin': sys_locale = locale.getdefaultlocale() # Detect system locale to fix Window size on Chinese Windows Computer sys_locale = sys_locale[0] else: sys_locale = "Mac" if sys_locale != "zh_CN": main_win = "1076x684+100+100" queue_win = "620x300+1177+100" scan_win = "415x100+100+170" base64_win = "497x100+95+176" else: main_win = "1250x684+100+100" queue_win = "720x300+770+100" scan_win = "420x85+100+100" base64_win = "500x105+100+100" config = {"Options": { "Download_location": "", "NSP_location": "", "Game_location": "", "NSP_repack": "True", "Mute": "False", "Titlekey_check": "True", "noaria": "True", "Disable_game_image": "False", "Shorten": "False", "Tinfoil": "False", "SysVerZero": "False", "Main_win": main_win, "Queue_win": queue_win, "Update_win": "600x400+120+200", "Scan_win": scan_win, "Base64_win": base64_win, "Language": "en", "Mode": "CDNSP", "No_demo": "False", "No_japanese_games": "False", "Disable_description": "False"} } # Check if the GUI config JSON file has the needed keys f = open("CDNSP-GUI-config.json", 'r') f_load = json.load(f) f.close() if os.path.isfile("CDNSP-GUI-config.json"): for json_key in config["Options"]: if json_key not in f_load["Options"]: print("Missing json key -",json_key,", it has been added in for you") f_load["Options"][json_key] = config["Options"][json_key] f = open("CDNSP-GUI-config.json", 'w') json.dump(f_load, f, indent=4) f.close() else: f = open("CDNSP-GUI-config.json", 'w') json.dump(config, f, indent=4) f.close() f = open("CDNSP-GUI-config.json", 'r') j = json.load(f) try: chosen_lang = j["Options"]["Language"] except: f.close() j["Options"]["Language"] = "en" # Default to English language with open("CDNSP-GUI-config.json", 'w') as f: json.dump(j, f, indent=4) f.close() chosen_lang = "en" def set_lang(default_lang = "en"): try: lang = gettext.translation('language', localedir='locales', languages=[default_lang]) lang.install() print("Current language: {}".format(default_lang)) except: lang = gettext.translation('language', localedir='locales', languages=["en"]) lang.install() print("Language files not available yet!") set_lang(chosen_lang) if not os.path.isdir("Config"): os.mkdir("Config") if not os.path.isdir("Images"): os.mkdir("Images") build_text = _("\nBuilding the current state list... Please wait, this may take some time \ depending on how many games you have.") # Check that user is using Python 3 if (sys.version_info > (3, 0)): # Python 3 code in this block pass else: # Python 2 code in this block print(_("\n\nError - Application launched with Python 2, please install Python 3 and delete Python 2\n")) time.sleep(1000) sys.exit() from tkinter import * import os from tkinter import messagebox import tkinter.ttk as ttk from importlib import util import subprocess import urllib.request import pip from pathlib import Path def check_req_file(file): if not os.path.exists(file): url = 'https://raw.githubusercontent.com/Bob123a1/CDNSP-GUI-Files/master/{}'.format(file) urllib.request.urlretrieve(url, file) def install_module(module): try: subprocess.check_output("pip3 install {}".format(module), shell=True) except: print(_("Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}").format(module)) def add_to_installed(tid, ver): print(tid, ver) installed_tid = [] installed_ver = [] if os.path.isfile("Config/installed.txt"): file = open("Config/installed.txt", "r", encoding="utf8") for game in file.readlines(): installed_tid.append(game.split(",")[0].strip()) installed_ver.append(game.split(",")[1].strip()) file.close() if tid in installed_tid: if int(ver) > int(installed_ver[installed_tid.index(tid)]): installed_ver[installed_tid.index(tid)] = ver else: installed_tid.append(tid) installed_ver.append(ver) file = open("Config/installed.txt", "w", encoding="utf8") for i in range(len(installed_tid)): file.write("{}, {}\n".format(installed_tid[i], installed_ver[i])) file.close() print(_("\nChecking if all required modules are installed!\n\n")) try: import requests except ImportError: install_module("requests") import requests try: from tqdm import tqdm except ImportError: install_module("tqdm") from tqdm import tqdm try: import unidecode except ImportError: install_module("unidecode") import unidecode try: from PIL import Image, ImageTk except ImportError: install_module("Pillow") from PIL import Image, ImageTk try: from bs4 import BeautifulSoup except ImportError: install_module("beautifulsoup4") from bs4 import BeautifulSoup try: import ssl except: install_module("pyopenssl") import ssl ssl._create_default_https_context = ssl._create_unverified_context # Thanks to user rdmrocha on Github req_file = ["CDNSPconfig.json", "keys.txt", "nx_tls_client_cert.pem", "titlekeys.txt",\ "titlekeys_overwrite.txt", "Nut_titlekeys.txt", "cert_dead.jpg"] try: for file in req_file: check_req_file(file) print(_("Everything looks good!")) except Exception as e: print(_("Unable to get required files! Check your internet connection: [{}]").format(str(e))) # CDNSP script import argparse import base64 import platform import re import shlex import xml.dom.minidom as minidom import xml.etree.ElementTree as ET from binascii import hexlify as hx, unhexlify as uhx from io import TextIOWrapper import os, sys import subprocess import urllib3 import json import shutil import argparse import configparser from hashlib import sha256 from struct import pack as pk, unpack as upk from binascii import hexlify as hx, unhexlify as uhx import xml.etree.ElementTree as ET, xml.dom.minidom as minidom import re import datetime import calendar import operator import base64 import shlex from distutils.version import StrictVersion as StrV import re import shutil import requests import xml.etree.ElementTree as ET, xml.dom.minidom as minidom import unicodedata as ud from tkinter import filedialog import threading sys_name = "Win" global noaria noaria = True import webbrowser titlekey_list = [] global tqdmProgBar tqdmProgBar = True sysver0 = False #Global Vars truncateName = False tinfoil = False enxhop = False current_mode = "" nsp_location = "" pause_download = False downloading = False # Thanks to rockbass2560 on Github installed_global = {} def read_at(f, off, len): f.seek(off) return f.read(len) def read_u8(f, off): return upk('= 10000: t = tqdm(total=fSize, unit='B', unit_scale=True, desc=os.path.basename(fPath), leave=False) while True: buf = f.read(4096) if not buf: break hash.update(buf) t.update(len(buf)) t.close() else: hash.update(f.read()) f.close() return hash.hexdigest() def bytes2human(n, f='%(value).3f %(symbol)s'): n = int(n) if n < 0: raise ValueError('n < 0') symbols = ('B', 'KB', 'MB', 'GB', 'TB') prefix = {} for i, s in enumerate(symbols[1:]): prefix[s] = 1 << (i + 1) * 10 for symbol in reversed(symbols[1:]): if n >= prefix[symbol]: value = float(n) / prefix[symbol] return f % locals() return f % dict(symbol=symbols[0], value=n) def get_name(tid): if current_mode_global == "Nut": try: if tid.endswith('800'): tid = '%s000' % tid[:-3] name = title_list[titleID_list.index(tid.lower())] name = re.sub(r'[/\\:*?!"|™©®()]+', "", unidecode.unidecode(name)) print(name) return name except: return "UNKNOWN TITLE" elif current_mode_global == "CDNSP": try: with open('titlekeys.txt',encoding="utf8") as f: lines = f.readlines() except Exception as e: print("Error:", e) exit() for line in lines: if line.strip() == '': return temp = line.split("|") if tid.endswith('800'): tid = '%s000' % tid[:-3] if tid.strip() == temp[0].strip()[:16]: return re.sub(r'[/\\:*?!"|™©®()]+', "", unidecode.unidecode(temp[2].strip())) return "UNKNOWN TITLE" def safe_name(name): return re.sub('[^\x00-\x7f]', '', ud.normalize('NFD', name)) def safe_filename(safe_name): return re.sub('[<>.:"/\\|?*]+', '', safe_name) def check_tid(tid): return re.match('0100[0-9a-fA-F]{12}', tid) def check_tkey(tkey): return re.match('[0-9a-fA-F]{32}', tkey) def load_config(fPath): dir = os.path.dirname(__file__) config = {'Paths': { 'hactoolPath': 'hactool', 'keysPath': 'keys.txt', 'NXclientPath': 'nx_tls_client_cert.pem', 'ShopNPath': 'ShopN.pem'}, 'Values': { 'Region': 'US', 'Firmware': '5.1.0-3', 'DeviceID': '6265A5E4140FF804', 'Environment': 'lp1', 'TitleKeysURL': '{}'.format(base64.b64decode("aHR0cDovL3NuaXAubGkvbmV3a2V5ZGI=").decode("ascii")), 'NspOut': '_NSPOUT', 'AutoUpdatedb': 'False'}} try: f = open(fPath, 'r') except FileNotFoundError: f = open(fPath, 'w') json.dump(config, f) f.close() f = open(fPath, 'r') j = json.load(f) hactoolPath = j['Paths']['hactoolPath'] keysPath = j['Paths']['keysPath'] NXclientPath = j['Paths']['NXclientPath'] ShopNPath = j['Paths']['ShopNPath'] reg = j['Values']['Region'] fw = j['Values']['Firmware'] did = j['Values']['DeviceID'] env = j['Values']['Environment'] dbURL = j['Values']['TitleKeysURL'] nspout = j['Values']['NspOut'] if platform.system() == 'Linux': hactoolPath = './' + hactoolPath + '_linux' if platform.system() == 'Darwin': hactoolPath = './' + hactoolPath + '_mac' return hactoolPath, keysPath, NXclientPath, ShopNPath, reg, fw, did, env, dbURL, nspout def gen_tik(fPath, rightsID, tkey, mkeyrev): f = open(fPath, 'wb') f.write(b'\x04\x00\x01\x00') f.write(0x100 * b'\xFF') f.write(0x3C * b'\x00') f.write(b'Root-CA00000003-XS00000020') f.write(0x6 * b'\x00') f.write(0x20 * b'\x00') if tkey: f.write(uhx(tkey)) else: f.write(0x10 * b'\x00') f.write(0xF0 * b'\x00') f.write(b'\x02\x00\x00\x00\x00') f.write(pk(' int(old[tid]): new[tid] = latestVer if tid.endswith('000'): updatetid = '%016x'.lower() % (int(tid, 16) + 0x800) if updatetid not in old: updateVer = get_versions(updatetid) if updateVer: new[updatetid] = updateVer[-1] sys.stdout.write('\r\033[F') if new: for tid in new: print('New update available for %s: v%s' % (tid, new[tid])) dl = input('\nType anything to download the new updates: ') if dl: for tid in new: download_game(tid, new[tid], nspRepack=True, verify=True) else: print('No new update was found for any of the downloaded titles!') f.close() def download_file(url, fPath, fSize=0): fName = os.path.basename(fPath).split()[0] if os.path.exists(fPath) and fSize != 0: dlded = os.path.getsize(fPath) if dlded == fSize: print('\t\tDownload is already complete, skipping!') return fPath elif dlded < fSize: print('\t\tResuming download...') r = make_request('GET', url, hdArgs={'Range': 'bytes=%s-' % dlded}) f = open(fPath, 'ab') else: print('\t\tExisting file is bigger than expected (%s/%s), restarting download...' % (dlded, fSize)) dlded = 0 r = make_request('GET', url) f = open(fPath, "wb") else: dlded = 0 r = make_request('GET', url) fSize = int(r.headers.get('Content-Length')) f = open(fPath, 'wb') if fSize >= 10000: t = tqdm(initial=dlded, total=int(fSize), desc=fName, unit='B', unit_scale=True, leave=False, mininterval=0.5) global downloading downloading = True for chunk in r.iter_content(4096): f.write(chunk) dlded += len(chunk) t.update(len(chunk)) if pause_download: while pause_download: time.sleep(.5) downloading = False t.close() else: f.write(r.content) dlded += len(r.content) if fSize != 0 and dlded != fSize: raise ValueError('Downloaded data is not as big as expected (%s/%s)!' % (dlded, fSize)) f.close() print('\r\t\tSaved to %s!' % os.path.basename(f.name)) return fPath def download_cetk(rightsID, fPath): url = 'https://atum.hac.%s.d4c.nintendo.net/r/t/%s?device_id=%s' % (env, rightsID, did) r = make_request('HEAD', url) id = r.headers.get('X-Nintendo-Content-ID') url = 'https://atum.hac.%s.d4c.nintendo.net/c/t/%s?device_id=%s' % (env, id, did) cetk = download_file(url, fPath, fSize=2496) return cetk def download_title(gameDir, tid, ver, tkey='', nspRepack=False, verify=False, n=''): print('\n%s v%s:' % (tid, ver)) if len(tid) != 16: tid = (16-len(tid)) * '0' + tid url = 'https://atum%s.hac.%s.d4c.nintendo.net/t/a/%s/%s?device_id=%s' % (n, env, tid, ver, did) r = make_request('HEAD', url) if r == None: return (None, "") CNMTid = r.headers.get('X-Nintendo-Content-ID') print('\tDownloading CNMT (%s.cnmt.nca)...' % CNMTid) url = 'https://atum%s.hac.%s.d4c.nintendo.net/c/a/%s?device_id=%s' % (n, env, CNMTid, did) fPath = os.path.join(gameDir, CNMTid + '.cnmt.nca') cnmtNCA = download_file(url, fPath) cnmtDir = decrypt_NCA(cnmtNCA) CNMT = cnmt(os.path.join(cnmtDir, 'section0', os.listdir(os.path.join(cnmtDir, 'section0'))[0]), os.path.join(cnmtDir, 'Header.bin')) if nspRepack: outf = os.path.join(gameDir, '%s.xml' % os.path.basename(cnmtNCA).strip('.nca')) cnmtXML = CNMT.gen_xml(cnmtNCA, outf) rightsID = '%032x' % ((int(tid, 16) << 64) + int(CNMT.mkeyrev)) tikPath = os.path.join(gameDir, rightsID+'.tik') certPath = os.path.join(gameDir, rightsID+'.cert') if CNMT.type == 'Application' or CNMT.type == 'AddOnContent': gen_cert(certPath) gen_tik(tikPath, rightsID, tkey, CNMT.mkeyrev) print('\t\tGenerated %s and %s!' % (os.path.basename(certPath), os.path.basename(tikPath))) elif CNMT.type == 'Patch': print('\tDownloading CETK...') with open(download_cetk(rightsID, os.path.join(gameDir, rightsID+'.cetk')), 'rb') as cetk: cetk.seek(0x180) tkey = hx(cetk.read(0x10)).decode() print('\t\t\tTitlekey: %s' % tkey) with open(tikPath, 'wb') as tik: cetk.seek(0x0) tik.write(cetk.read(0x2C0)) with open(certPath, 'wb') as cert: cetk.seek(0x2C0) cert.write(cetk.read(0x700)) print('\t\tExtracted %s and %s from CETK!' % (os.path.basename(certPath), os.path.basename(tikPath))) NCAs = { 0: [], 1: [], 2: [], 3: [], 4: [], 5: [], 6: [], } name = '' for type in [0, 3, 4, 5, 1, 2, 6]: # Download smaller files first list = CNMT.parse(CNMT.contentTypes[type]) for ncaID in list: print('\tDownloading %s entry (%s.nca)...' % (CNMT.contentTypes[type], ncaID)) url = 'https://atum%s.hac.%s.d4c.nintendo.net/c/c/%s?device_id=%s' % (n, env, ncaID, did) fPath = os.path.join(gameDir, ncaID + '.nca') fSize = list[ncaID][1] NCAs[type].append(download_file(url, fPath, fSize)) print(list[ncaID][2]) if verify: print('\t\tVerifying file...') if sha256_file(fPath) == list[ncaID][2]: print('\t\t\tHashes match, file is correct!') else: print('\t\t\t%s is corrupted, hashes don\'t match!' % os.path.basename(fPath)) if type == 3: name = get_name_from_nacp(NCAs[type][-1]) if not name: name = '' if nspRepack: files = [] if tkey: files.append(certPath) files.append(tikPath) for key in [1, 5, 2, 4, 6]: if NCAs[key]: files.extend(NCAs[key]) files.append(cnmtNCA) files.append(cnmtXML) if NCAs[3]: files.extend(NCAs[3]) return files, name else: return gameDir, name def download_title_tinfoil(gameDir, tid, ver, tkey='', nspRepack=False, n='', verify=False): print('\n%s v%s:' % (tid, ver)) tid = tid.lower(); tkey = tkey.lower(); if len(tid) != 16: tid = (16 - len(tid)) * '0' + tid url = 'https://atum.hac.%s.d4c.nintendo.net/t/a/%s/%s?device_id=%s' % (env, tid, ver, did) print(url) try: r = make_request('HEAD', url) except Exception as e: print("Error downloading title. Check for incorrect titleid or version.") return CNMTid = r.headers.get('X-Nintendo-Content-ID') if CNMTid == None: print('title not available on CDN') return None print('\nDownloading CNMT (%s.cnmt.nca)...' % CNMTid) url = 'https://atum%s.hac.%s.d4c.nintendo.net/c/a/%s?device_id=%s' % (n, env, CNMTid, did) fPath = os.path.join(gameDir, CNMTid + '.cnmt.nca') cnmtNCA = download_file(url, fPath) cnmtDir = decrypt_NCA(cnmtNCA) CNMT = cnmt(os.path.join(cnmtDir, 'section0', os.listdir(os.path.join(cnmtDir, 'section0'))[0]), os.path.join(cnmtDir, 'Header.bin')) if nspRepack == True: outf = os.path.join(gameDir, '%s.xml' % os.path.basename(cnmtNCA.strip('.nca'))) cnmtXML = CNMT.gen_xml_tinfoil(cnmtNCA, outf) rightsID = '%s%s%s' % (tid, (16 - len(CNMT.mkeyrev)) * '0', CNMT.mkeyrev) tikPath = os.path.join(gameDir, '%s.tik' % rightsID) certPath = os.path.join(gameDir, '%s.cert' % rightsID) if CNMT.type == 'Application' or CNMT.type == 'AddOnContent': shutil.copy(os.path.join(os.path.dirname(__file__), 'Certificate.cert'), certPath) if tkey != '': with open(os.path.join(os.path.dirname(__file__), 'Ticket.tik'), 'rb') as intik: data = bytearray(intik.read()) data[0x180:0x190] = uhx(tkey) data[0x286] = int(CNMT.mkeyrev) data[0x2A0:0x2B0] = uhx(rightsID) with open(tikPath, 'wb') as outtik: outtik.write(data) print('\nGenerated %s and %s!' % (os.path.basename(certPath), os.path.basename(tikPath))) else: print('\nGenerated %s!' % os.path.basename(certPath)) elif CNMT.type == 'Patch': print('\nDownloading cetk...') with open(download_cetk(rightsID, os.path.join(gameDir, '%s.cetk' % rightsID)), 'rb') as cetk: cetk.seek(0x180) tkey = hx(cetk.read(0x10)).decode() print('\nTitlekey: %s' % tkey) with open(tikPath, 'wb') as tik: cetk.seek(0x0) tik.write(cetk.read(0x2C0)) with open(certPath, 'wb') as cert: cetk.seek(0x2C0) cert.write(cetk.read(0x700)) print('\nExtracted %s and %s from cetk!' % (os.path.basename(certPath), os.path.basename(tikPath))) NCAs = {} for type in [3]: # Download smaller files first for ncaID in CNMT.parse(CNMT.ncaTypes[type]): print('\nDownloading %s entry (%s.nca)...' % (CNMT.ncaTypes[type], ncaID)) url = 'https://atum%s.hac.%s.d4c.nintendo.net/c/c/%s?device_id=%s' % (n, env, ncaID, did) fPath = os.path.join(gameDir, ncaID + '.nca') NCAs.update({type: download_file(url, fPath)}) if verify: if calc_sha256(fPath) != CNMT.parse(CNMT.ncaTypes[type])[ncaID][2]: print('\n\n%s is corrupted, hashes don\'t match!' % os.path.basename(fPath)) else: print('\nVerified %s...' % os.path.basename(fPath)) if nspRepack == True: files = [] files.append(certPath) if tkey != '': files.append(tikPath) files.append(cnmtXML) try: files.append(NCAs[3]) except KeyError: pass return files def download_game(tid, ver, tkey='', nspRepack=False, verify=False, clean=False, path_Dir="", nsp_dir=""): read_installed() if tid in installed_global: try: existing_ver = installed_global[tid] existing_ver = int(existing_ver) except: existing_ver = 0 if int(ver) <= existing_ver: print("\nAlready have version: {} for this TID: {}".format(ver, tid)) return None nsp_dir = nsp_location name = get_name(tid) status_label.config(text=_("Downloading: ")+name) global titlekey_check gameType = '' basetid = '' if ver == "none": ver = 0 if name == 'Unknown Title': temp = "[" + tid + "]" else: temp = name + " [" + tid + "]" if tid.endswith('000'): # Base game gameType = 'BASE' elif tid.endswith('800'): # Update basetid = '%s000' % tid[:-3] gameType = 'UPD' else: # DLC basetid = '%s%s000' % (tid[:-4], str(int(tid[-4], 16) - 1)) gameType = 'DLC' if path_Dir == "": path_Dir = os.path.join(os.path.dirname(__file__), "_NSPOUT") if nsp_dir == "": nsp_dir = os.path.join(os.path.dirname(__file__), "_NSPOUT") gameDir = os.path.join(path_Dir, tid) if not os.path.exists(gameDir): os.makedirs(gameDir, exist_ok=True) outputDir = nsp_dir if not os.path.exists(outputDir): os.makedirs(outputDir, exist_ok=True) if name != "": if gameType == "DLC": outf = os.path.join(outputDir, '%s [%s][v%s]' % (name,tid,ver)) elif gameType == 'BASE': outf = os.path.join(outputDir, '%s [%s][v%s]' % (name,tid,ver)) else: outf = os.path.join(outputDir, '%s [%s][%s][v%s]' % (name,gameType,tid,ver)) else: if gameType == "DLC": outf = os.path.join(outputDir, '%s [%s][v%s]' % (name,tid,ver)) elif gameType == 'BASE': outf = os.path.join(outputDir, '%s [v%s]' % (tid,ver)) else: outf = os.path.join(outputDir, '%s [%s][v%s]' % (tid,gameType,ver)) outname = outf.split(outputDir)[1][1:] if truncateName: name = name.replace(' ','')[0:20].replace(":", "") outf = os.path.join(outputDir, '%s%sv%s' % (name,tid,ver)) if tinfoil: outf = outf + '[tf]' outf = outf + '.nsp' if current_mode == "Nut": if not tid.endswith("800"): if tkey == "00000000000000000000000000000000": outf = outf[0:-4] + '.nsx' tkey = "00000000000000000000000000000000" for item in os.listdir(outputDir): if item.find('%s' % tid) != -1: if item.find('v%s' % ver) != -1: if not tinfoil: print('%s already exists, skipping download' % outf) shutil.rmtree(gameDir) return os.makedirs(gameDir, exist_ok=True) if tid.endswith('800'): basetid = '%016x' % (int(tid, 16) & 0xFFFFFFFFFFFFF000) elif not tid.endswith('000'): basetid = '%016x' % (int(tid, 16) - 0x1000 & 0xFFFFFFFFFFFFF000) else: basetid = tid if tinfoil: files = download_title_tinfoil(gameDir, tid, ver, tkey, nspRepack, verify=verify) else: files, name = download_title(gameDir, tid, ver, tkey, nspRepack, verify) if files == None: shutil.rmtree(gameDir) return if nspRepack: os.makedirs(path_Dir, exist_ok=True) NSP = nsp(outf, files) NSP.repack() shutil.rmtree(gameDir, ignore_errors=True) add_to_installed(tid, ver) status_label.config(text=_("Download finished!")) return gameDir def download_sysupdate(ver): if ver == 'LTST': url = 'https://sun.hac.%s.d4c.nintendo.net/v1/system_update_meta?device_id=%s' % (env, did) r = make_request('GET', url) j = r.json() ver = str(j['system_update_metas'][0]['title_version']) sysupdateDir = os.path.join(os.path.dirname(__file__), '0100000000000816-SysUpdate', ver) os.makedirs(sysupdateDir, exist_ok=True) url = 'https://atumn.hac.%s.d4c.nintendo.net/t/s/0100000000000816/%s?device_id=%s' % (env, ver, did) r = make_request('HEAD', url) cnmtID = r.headers.get('X-Nintendo-Content-ID') print('\nDownloading CNMT (%s)...' % cnmtID) url = 'https://atumn.hac.%s.d4c.nintendo.net/c/s/%s?device_id=%s' % (env, cnmtID, did) fPath = os.path.join(sysupdateDir, '%s.cnmt.nca' % cnmtID) cnmtNCA = download_file(url, fPath) cnmtDir = decrypt_NCA(cnmtNCA) CNMT = cnmt(os.path.join(cnmtDir, 'section0', os.listdir(os.path.join(cnmtDir, 'section0'))[0]), os.path.join(cnmtDir, 'Header.bin')) titles = CNMT.parse() for title in titles: dir = os.path.join(sysupdateDir, title) os.makedirs(dir, exist_ok=True) download_title(dir, title, titles[title][0], n='n') return sysupdateDir class cnmt: titleTypes = { 0x1: 'SystemProgram', 0x2: 'SystemData', 0x3: 'SystemUpdate', 0x4: 'BootImagePackage', 0x5: 'BootImagePackageSafe', 0x80:'Application', 0x81:'Patch', 0x82:'AddOnContent', 0x83:'Delta' } contentTypes = { 0:'Meta', 1:'Program', 2:'Data', 3:'Control', 4:'HtmlDocument', 5:'LegalInformation', 6:'DeltaFragment' } def __init__(self, fPath, hdPath): f = open(fPath, 'rb') self.path = fPath self.type = self.titleTypes[read_u8(f, 0xC)] self.id = '%016x' % read_u64(f, 0x0) self.ver = str(read_u32(f, 0x8)) self.sysver = str(read_u64(f, 0x28)) self.dlsysver = str(read_u64(f, 0x18)) self.digest = hx(read_at(f, f.seek(0, 2)-0x20, f.seek(0, 2))).decode() self.packTypes = {0x1: 'SystemProgram', 0x2: 'SystemData', 0x3: 'SystemUpdate', 0x4: 'BootImagePackage', 0x5: 'BootImagePackageSafe', 0x80: 'Application', 0x81: 'Patch', 0x82: 'AddOnContent', 0x83: 'Delta'} self.ncaTypes = {0: 'Meta', 1: 'Program', 2: 'Data', 3: 'Control', 4: 'HtmlDocument', 5: 'LegalInformation', 6: 'DeltaFragment'} with open(hdPath, 'rb') as ncaHd: self.mkeyrev = str(read_u8(ncaHd, 0x220)) f.close() def parse(self, contentType=''): f = open(self.path, 'rb') data = {} if self.type == 'SystemUpdate': metaEntriesNB = read_u16(f, 0x12) for n in range(metaEntriesNB): offset = 0x20 + 0x10*n tid = '%016x' % read_u64(f, offset) ver = str(read_u32(f, offset+0x8)) titleType = self.titleTypes[read_u8(f, offset+0xC)] data[tid] = ver, titleType else: tableOffset = read_u16(f,0xE) contentEntriesNB = read_u16(f, 0x10) for n in range(contentEntriesNB): offset = 0x20 + tableOffset + 0x38*n hash = hx(read_at(f, offset, 0x20)).decode() tid = hx(read_at(f, offset+0x20, 0x10)).decode() size = read_u48(f, offset+0x30) type = self.contentTypes[read_u16(f, offset+0x36)] if type == contentType or contentType == '': data[tid] = type, size, hash f.close() return data def gen_xml(self, ncaPath, outf): data = self.parse() ContentMeta = ET.Element('ContentMeta') ET.SubElement(ContentMeta, 'Type').text = self.type ET.SubElement(ContentMeta, 'Id').text = '0x' + self.id ET.SubElement(ContentMeta, 'Version').text = self.ver ET.SubElement(ContentMeta, 'RequiredDownloadSystemVersion').text = self.dlsysver n = 1 for tid in data: locals()["Content"+str(n)] = ET.SubElement(ContentMeta, 'Content') ET.SubElement(locals()["Content"+str(n)], 'Type').text = data[tid][0] ET.SubElement(locals()["Content"+str(n)], 'Id').text = tid ET.SubElement(locals()["Content"+str(n)], 'Size').text = str(data[tid][1]) ET.SubElement(locals()["Content"+str(n)], 'Hash').text = data[tid][2] ET.SubElement(locals()["Content"+str(n)], 'KeyGeneration').text = self.mkeyrev n += 1 # cnmt.nca itself cnmt = ET.SubElement(ContentMeta, 'Content') ET.SubElement(cnmt, 'Type').text = 'Meta' ET.SubElement(cnmt, 'Id').text = os.path.basename(ncaPath).split('.')[0] ET.SubElement(cnmt, 'Size').text = str(os.path.getsize(ncaPath)) ET.SubElement(cnmt, 'Hash').text = sha256_file(ncaPath) ET.SubElement(cnmt, 'KeyGeneration').text = self.mkeyrev ET.SubElement(ContentMeta, 'Digest').text = self.digest ET.SubElement(ContentMeta, 'KeyGenerationMin').text = self.mkeyrev ET.SubElement(ContentMeta, 'RequiredSystemVersion').text = self.sysver if self.type == 'Application': ET.SubElement(ContentMeta, 'PatchId').text = '0x%016x' % (int(self.id, 16) + 0x800) elif self.type == 'Patch': ET.SubElement(ContentMeta, 'OriginalId').text = '0x%016x' % (int(self.id, 16) & 0xFFFFFFFFFFFFF000) elif self.type == 'AddOnContent': ET.SubElement(ContentMeta, 'ApplicationId').text = '0x%016x' % (int(self.id, 16) - 0x1000 & 0xFFFFFFFFFFFFF000) string = ET.tostring(ContentMeta, encoding='utf-8') reparsed = minidom.parseString(string) with open(outf, 'wb') as f: f.write(reparsed.toprettyxml(encoding='utf-8', indent=' ')[:-1]) print('\t\tGenerated %s!' % os.path.basename(outf)) return outf def gen_xml_tinfoil(self, ncaPath, outf): data = self.parse() hdPath = os.path.join(os.path.dirname(ncaPath), '%s.cnmt' % os.path.basename(ncaPath).split('.')[0], 'Header.bin') print(hdPath) with open(hdPath, 'rb') as ncaHd: mKeyRev = str(read_u8(ncaHd, 0x220)) print(mKeyRev) ContentMeta = ET.Element('ContentMeta') ET.SubElement(ContentMeta, 'Type').text = self.type ET.SubElement(ContentMeta, 'Id').text = '0x%s' % self.id ET.SubElement(ContentMeta, 'Version').text = self.ver ET.SubElement(ContentMeta, 'RequiredDownloadSystemVersion').text = self.dlsysver n = 1 for tid in data: if data[tid][0] == 'Control': locals()["Content" + str(n)] = ET.SubElement(ContentMeta, 'Content') ET.SubElement(locals()["Content" + str(n)], 'Type').text = data[tid][0] ET.SubElement(locals()["Content" + str(n)], 'Id').text = tid ET.SubElement(locals()["Content" + str(n)], 'Size').text = str(data[tid][1]) ET.SubElement(locals()["Content" + str(n)], 'Hash').text = str(data[tid][2]) ET.SubElement(locals()["Content" + str(n)], 'KeyGeneration').text = mKeyRev n += 1 # cnmt.nca itself hash = sha256() with open(ncaPath, 'rb') as nca: hash.update(nca.read()) # Buffer not needed ET.SubElement(ContentMeta, 'Digest').text = self.digest ET.SubElement(ContentMeta, 'KeyGenerationMin').text = self.mkeyrev global sysver0 ET.SubElement(ContentMeta, 'RequiredSystemVersion').text = ('0' if sysver0 else self.sysver) if self.id.endswith('800'): ET.SubElement(ContentMeta, 'PatchId').text = '0x%s000' % self.id[:-3] else: ET.SubElement(ContentMeta, 'PatchId').text = '0x%s800' % self.id[:-3] string = ET.tostring(ContentMeta, encoding='utf-8') reparsed = minidom.parseString(string) with open(outf, 'w') as f: f.write(reparsed.toprettyxml(encoding='utf-8', indent=' ').decode()[:-1]) print('\nGenerated %s!' % os.path.basename(outf)) return outf class nsp: def __init__(self, outf, files): self.path = outf self.files = files def repack(self): print('\tRepacking to NSP...') hd = self._gen_header() totSize = len(hd) + sum(os.path.getsize(file) for file in self.files) if os.path.exists(self.path) and os.path.getsize(self.path) == totSize: print('\t\tRepack %s is already complete!' % self.path) return t = tqdm(total=totSize, unit='B', unit_scale=True, desc=os.path.basename(self.path), leave=False) t.write('\t\tWriting header...') outf = open(self.path, 'wb') outf.write(hd) t.update(len(hd)) for file in self.files: t.write('\t\tAppending %s...' % os.path.basename(file)) with open(file, 'rb') as inf: while True: buf = inf.read(4096) if not buf: break outf.write(buf) t.update(len(buf)) t.close() outf.close() print('\t\tRepacked to %s!' % outf.name) def _gen_header(self): filesNb = len(self.files) stringTable = '\x00'.join(os.path.basename(file) for file in self.files) headerSize = 0x10 + filesNb*0x18 + len(stringTable) remainder = 0x10 - headerSize%0x10 headerSize += remainder fileSizes = [os.path.getsize(file) for file in self.files] fileOffsets = [sum(fileSizes[:n]) for n in range(filesNb)] fileNamesLengths = [len(os.path.basename(file))+1 for file in self.files] # +1 for the \x00 stringTableOffsets = [sum(fileNamesLengths[:n]) for n in range(filesNb)] header = b'' header += b'PFS0' header += pk('>', self.game_info) ## self.title_list.grid(row=1, column=0, sticky=W) self.scrollbar.config(command = self.title_list.yview) # Setup Treeview and Two Scrollbars container = ttk.Frame(game_selection_frame) container.grid(row=1, column=0, columnspan=2) self.tree = ttk.Treeview(columns=("num", "tid", "G", "S", "R"), show="headings", selectmode=EXTENDED) self.tree.bind('<>', self.game_info) self.tree.heading("num", text="#", command=lambda c="num": self.sortby(self.tree, c, 0)) self.tree.column("num", width=50) self.tree.heading("tid", text=_("TitleID"), command=lambda c="tid": self.sortby(self.tree, c, 0)) self.tree.column("tid", width=160) self.tree.heading("G", text=_("Game"), command=lambda c="G": self.sortby(self.tree, c, 0)) self.tree.column("G", width=590) self.tree.heading("S", text=_("State"), command=lambda c="S": self.sortby(self.tree, c, 0)) self.tree.column("S", width=130) self.tree.heading("R", text=_("Release Date"), command=lambda c="R": self.sortby(self.tree, c, 0)) self.tree.column("R", width=130) vsb = ttk.Scrollbar(orient="vertical", command=self.tree.yview) hsb = ttk.Scrollbar(orient="horizontal", command=self.tree.xview) self.tree.configure(yscrollcommand=vsb.set, xscrollcommand=hsb.set) self.tree.grid(column=0, row=0, sticky='nsew', in_=container, columnspan=2) vsb.grid(column=2, row=0, sticky='ns', in_=container) hsb.grid(column=0, row=1, sticky='ew', in_=container) container.grid_columnconfigure(0, weight=1) container.grid_rowconfigure(0, weight=1) # Game image section self.image_text_label = Label(game_selection_frame, text=_("Game Image:")) self.image_text_label.grid(row=2, column=0, pady=(20, 0)) self.image = Image.open("blank.jpg") self.photo = ImageTk.PhotoImage(self.image) global imageLabel_widget self.imageLabel = Label(game_selection_frame, image=self.photo, borderwidth=0, highlightthickness=0, cursor="hand2") imageLabel_widget = self.imageLabel self.imageLabel.bind("", self.eShop_link) self.imageLabel.image = self.photo # keep a reference! self.imageLabel.grid(row=3, column=0, sticky=N, pady=0) Label(game_selection_frame, text=_("Click the game image above \nto open the game in the eShop!")).grid(row=4, column=0) # Game info section Label(game_selection_frame, text=_("Game Info:")).grid(row=2, column=1, pady=(20, 0)) game_text = Text(game_selection_frame, width=50, height=17, wrap=WORD) self.game_text = game_text game_text.grid(row=3, column=1, sticky=N) # GameName #self.gametitle_label = Label(game_selection_frame, text=_("GameName:")) #self.gametitle_label.grid(row=4, column=1) self.game_title = StringVar() self.gametitle_entry = Entry(game_selection_frame, textvariable=self.game_title) self.gametitle_entry.grid(row=0, column=1, columnspan=1, sticky=E+W, padx=(0,0)) #------------------------------------------- # Game title info section game_info_frame = Frame(self.root) game_info_frame.grid(row=1, column=1, sticky=N) # Demo filter filter_frame = Frame(game_info_frame) filter_frame.grid(row=0, column=0, columnspan=2, pady=(0,0), sticky=NS) self.current_mode_text = Label(filter_frame, text=_("Current mode is: {}").format(self.current_mode)) self.current_mode_text.grid(row=0, column=0, sticky=NS, pady=(0, 10)) self.list_mode = Button(filter_frame, text=_("CDNSP Mode").replace("\n", ""), command=self.change_mode) if self.current_mode == "CDNSP": self.list_mode.config(text=_("Nut Mode").replace("\n", "")) elif self.current_mode == "Nut": self.list_mode.config(text=_("CDNSP Mode").replace("\n", "")) self.list_mode.grid(row=1, column=0, sticky=NS, pady=(0, 20)) self.demo = IntVar() if no_demo: self.demo.set(1) else: self.demo.set(0) Checkbutton(filter_frame, text=_("No Demo"), \ variable=self.demo, command=self.filter_game)\ .grid(row=2, column=0, sticky=NS) self.jap = IntVar() if no_japanese_games: self.jap.set(1) else: self.jap.set(0) Checkbutton(filter_frame, text=_("No Japanese Game"), \ variable=self.jap, command=self.filter_game)\ .grid(row=3, column=0, pady=(5,0), sticky=NS) # Title ID info self.titleID_label = Label(game_info_frame, text=_("Title ID:")) self.titleID_label.grid(row=1, column=0, pady=(20,0), columnspan=2) self.game_titleID = StringVar() self.gameID_entry = Entry(game_info_frame, textvariable=self.game_titleID) self.gameID_entry.grid(row=2, column=0, columnspan=2) # Title Key info self.titleID_label = Label(game_info_frame, text=_("Title Key:")) self.titleID_label.grid(row=3, column=0, pady=(20,0), columnspan=2) self.game_titleKey = StringVar() self.gameKey_entry = Entry(game_info_frame, textvariable=self.game_titleKey) self.gameKey_entry.grid(row=4, column=0, columnspan=2) # Select update versions self.version_label = Label(game_info_frame, text=_("Select update version:")) self.version_label.grid(row=5, column=0, pady=(20,0), columnspan=2) self.version_option = StringVar() self.version_select = ttk.Combobox(game_info_frame, textvariable=self.version_option, state="readonly", postcommand=self.get_update_lastestVer) self.version_select["values"] = ([_('Latest')]) self.version_select.set(_("Latest")) self.version_select.grid(row=6, column=0, columnspan=2) # Download options self.download_label = Label(game_info_frame, text=_("Download options:")) self.download_label.grid(row=7, column=0, pady=(20,0), columnspan=2) MODES = [ (_("Base game + Update + DLC"), "B+U+D"), (_("Base game + Update"), "B+U"), (_("Update + DLC"), "U+D"), (_("Base game only"), "B"), (_("Update only"), "U"), (_("All DLC"), "D") ] self.updateOptions = StringVar() self.updateOptions.set("B+U+D") self.radio_btn_collection = [] row_count = 8 for index in range(len(MODES)): a = Radiobutton(game_info_frame, text=MODES[index][0], variable=self.updateOptions, value=MODES[index][1]) a.grid(row=row_count, column=0, sticky=W, columnspan=2) row_count += 1 self.radio_btn_collection.append(a) # Queue and Download button queue_btn = Button(game_info_frame, text=_("Add to queue"), command=self.add_selected_items_to_queue) queue_btn.grid(row=50, column=0, pady=(20,0)) if _("Download_bottom") != "Download_bottom": download_bottom_txt = _("Download_bottom") else: download_bottom_txt = _("Download") dl_btn = Button(game_info_frame, text=download_bottom_txt, command=self.download) dl_btn.grid(row=50, column=1, pady=(20,0), padx=(5,0)) self.pause_btn = Button(game_info_frame, text=("Pause Download"), command=self.pause_download_command) self.pause_btn.grid(row=51, column=0, pady=(20,0), columnspan=2) update_btn = Button(game_info_frame, text=_("Update Titlekeys"), command=self.update_titlekeys) update_btn.grid(row=52, column=0, pady=(20, 0), columnspan=2) #----------------------------------------- # Setup GUI Functions url = 'https://raw.githubusercontent.com/Bob123a1/CDNSP-GUI-Files/master/Config/Version_info.json' file = os.path.join("Config", "Version_info.json") urllib.request.urlretrieve(url, file) self.my_game_scan(a_dir=self.path, silent=True) self.update_list(rebuild=True) self.filter_game() self.queue_menu_setup() self.load_persistent_queue() # only load the queue once the UI is initialized try: self.status_label.config(text=_("Status: Done!")) except: pass update_result = self.check_update() self.update_result = update_result display = True display_text = "" # G - Indicates an update for the GUI, # L - Indicates an update for the Language files if update_result == "GL": display_text = _("Status:")+ " " + _("New GUI version and Language Files available!") elif update_result == "G": display_text = _("Status:")+ " " + _("New GUI version available!") elif update_result == "L": display_text = _("Status:")+ " " + _("New Language Files available!") else: display = False if display: threading.Timer(3, lambda: self.done_status(display_text)).start() #----------------------------------------- def queue_menu_setup(self): # Queue Menu global queue_win self.queue_win = Toplevel(self.root) self.queue_win.title(_("Queue Menu")) self.queue_win.geometry(queue_win) self.queue_win.withdraw() # Hide queue window, will show later # Top Menu bar menubar = Menu(self.queue_win) # Download Menu Tab downloadMenu = Menu(menubar, tearoff=0) downloadMenu.add_command(label=_("Load Saved Queue"), command=self.import_persistent_queue) downloadMenu.add_command(label=_("Save Queue"), command=self.export_persistent_queue) # Menubar config menubar.add_cascade(label=_("Download"), menu=downloadMenu) self.queue_win.config(menu=menubar) # Queue GUI self.queue_scrollbar = Scrollbar(self.queue_win) self.queue_scrollbar.grid(row=0, column=3, sticky=N+S+W) if self.sys_name == "Mac": self.queue_width = self.listWidth+28 else: self.queue_width = 100 # Windows self.queue_title_list = Listbox(self.queue_win, yscrollcommand = self.queue_scrollbar.set, width=self.queue_width, selectmode=EXTENDED) self.queue_title_list.grid(row=0, column=0, sticky=W, columnspan=3) self.queue_scrollbar.config(command = self.queue_title_list.yview) Button(self.queue_win, text=_("Remove selected game"), command=self.remove_selected_items).grid(row=1, column=0, pady=(30,0)) Button(self.queue_win, text=_("Remove all"), command=self.remove_all_and_dump).grid(row=1, column=1, pady=(30,0)) Button(self.queue_win, text=_("Download all"), command=self.download_all).grid(row=1, column=2, pady=(30,0)) self.stateLabel = Label(self.queue_win, text=_("Click download all to download all games in queue!")) self.stateLabel.grid(row=2, column=0, columnspan=3, pady=(20, 0)) # Sorting function for the treeview widget def sortby(self, tree, col, descending): """sort tree contents when a column header is clicked on""" # grab values to sort data = [(self.tree.set(child, col), child) for child in self.tree.get_children('')] # if the data to be sorted is numeric change to float #data = change_numeric(data) # now sort the data in place data.sort(reverse=descending) for ix, item in enumerate(data): self.tree.move(item[1], '', ix) # switch the heading so it will sort in the opposite direction self.tree.heading(col, command=lambda col=col: self.sortby(tree, col, \ int(not descending))) def remove_all(self, dump_queue = False): self.queue_list = [] self.persistent_queue = [] self.queue_title_list.delete(0, "end") if dump_queue: self.dump_persistent_queue() def remove_all_and_dump(self): self.remove_all(True) def threaded_eShop_link(self, evt): tid = self.game_titleID.get() isDLC = False if not tid.endswith("00"): isDLC = True tid = "{}".format(tid[0:12]) indices = [i for i, s in enumerate(self.titleID) if tid in s] if len(indices) >= 2: for t in indices: if self.titleID[t].endswith("000"): tid = self.titleID[t] break if tid.endswith("000"): isDLC = False if not isDLC: region = ["US", "EU", "GB", "FR", \ "JP", "RU", "DE", "BE", "NL",\ "ES", "IT", "AT", "PT", "CH",\ "ZA", "CA"] # Thanks to user szczuru#7105 for find them for me :) ## https://ec.nintendo.com/apps/01000320000cc000/FR url = "" for c in region: r = requests.get("https://ec.nintendo.com/apps/{}/{}".format(tid, c)) if r.status_code == 200: url = "https://ec.nintendo.com/apps/{}/{}".format(tid, c) break if url != "": webbrowser.open(url, new=0, autoraise=True) self.root.config(cursor="") self.imageLabel.config(cursor="hand2") def eShop_link(self, evt): if self.game_titleID.get() != "": thread = threading.Thread(target = lambda: self.threaded_eShop_link(evt)) self.root.config(cursor="watch") self.imageLabel.config(cursor="watch") thread.start() def update_list(self, search=False, rebuild=False, label="Status:"): if label == "Status:": label = _(label) #_("Status: Getting game status... Please wait") self.root.config(cursor="watch") if rebuild: # Rebuild current_status.txt file print(_("\nBuilding the current state list... Please wait, this may take some time \ depending on how many games you have.")) updates_tid = [] installed = [] new_tid = [] global known_ver known_ver = {} # -> Read_file self.title_list.delete(0, END) self.titleID = [] self.titleKey = [] self.title = [] self.info_list = [] global titleID_list global titleKey_list global title_list global info_list titleID_list, titleKey_list, title_list, info_list = read_titlekey_list() self.titleID = titleID_list self.titleKey = titleKey_list self.title = title_list self.info_list = info_list if not os.path.isfile("Config/Version_info.json"): print(_("\nCan't find {} file!\n").format("Version_info.json")) print(_("Attempting to download the Version_info.json file for you")) urllib.request.urlretrieve("https://raw.githubusercontent.com/Bob123a1/CDNSP-GUI-Files/master/Config/Version_info.json", "Config/Version_info.json") if os.path.isfile("Config/Version_info.json"): ver_file = open("Config/Version_info.json", "r", encoding="utf8") known_ver = json.load(ver_file) ver_file.close() file_path = r"Config/installed.txt" if os.path.exists(file_path): file = open(file_path, "r") for line in file.readlines(): if line[-1] == "\n": line = line[:-1].lower() installed.append(line.lower()) file.close() for info in installed: tid = info.split(",")[0].strip() ver = info.split(",")[1].strip() if ver == "none": ver = "0" if tid in known_ver: tid = tid.lower() try: known_ver_num = known_ver[tid] if known_ver_num == "none": known_ver_num = "0" if int(known_ver_num) > int(ver): if tid.endswith("00"): tid = "{}000".format(tid[0:13]) updates_tid.append(tid) except Exception as e: print("Tid: {} has caused an error, it has the version of {}.\nError: {}".format(tid, ver, e)) else: file = open(file_path, "w") file.close() new_path = r"Config/new.txt" if os.path.isfile(new_path): file = open(new_path, "r") for line in file.readlines(): if line[-1] == "\n": line = line[:-1] new_tid.append(line[:16]) file.close() installed = [install.split(",")[0] for install in installed] ## status_file = open(r"Config/Current_status.txt", "w", encoding="utf-8") Not going to rely on writing to a text file anymore titles_dict = {} if os.path.isfile("Config/titles.json"): with open("Config/titles.json", "r", encoding="utf-8") as file: file_json = json.load(file) for key in file_json: key_u = key.upper() titles_dict[key_u] = file_json[key]["releaseDate"] else: print("\n" + _("Unable to find titles.json file. Check changelog for more information on how to download it.") + "\n") self.status_list = [] for tid in self.titleID: tid = tid.lower() number = int(self.titleID.index(tid))+1 game_name = self.title[number-1] if game_name[-1] == "\n": game_name = game_name[:-1] state = "" if tid in new_tid: state = "New" if tid in installed: state = "Own" if tid in updates_tid: state = "Update" tid_u = str(tid).upper() if tid_u in titles_dict: if titles_dict[tid_u] == None or titles_dict[tid_u] == "": release_date = "0000-00-00" else: release_date = str(titles_dict[tid_u]) release_date = release_date[:4]+"-"+release_date[4:6]+"-"+release_date[6:8] else: release_date = "0000-00-00" # Thanks to Moko0815 for the solution to fill with leading 0s tree_row = (str(number).zfill(4), tid, game_name, state, release_date) self.status_list.append(str(tree_row)) ## threading.Timer(1, self.done_status).start() self.done_status() self.update_list() ## elif search: ## search_term = self.search_var.get() ## self.tree.delete(*self.tree.get_children()) ## for game_status in self.current_status: ## number = game_status[0].strip() ## tid = game_status[1].strip() ## game_name = game_status[2].strip() ## state = game_status[3].strip() ## release_date = game_status[4].strip() ## ## tree_row = (str(number).zfill(4), tid, game_name, state, release_date) ## if search_term.lower().strip() in game_name.lower() or search_term.lower().strip() in tid.lower(): ## self.tree.insert('', 'end', values=tree_row) else: self.current_status = [] if self.status_list: for line in self.status_list: if line[-1] == "\n": line = line[:-1] # Thanks to user danch15 on Github if "New" in line: line = line.replace("'New'", "'" + _("New") + "'") if "Own" in line: line = line.replace("'Own'", "'" + _("Own") + "'") if "Update" in line: line = line.replace("'Update'", "'" + _("Update") + "'") status_list = eval(line) self.current_status.append(status_list) self.make_list() self.filter_game() else: print(_("Error, Current_status.txt doesn't exist")) self.tree.yview_moveto(0) # Reset the sorting back to default (descending) self.tree.heading("num", text="#", command=lambda c="num": self.sortby(self.tree, c, 1)) self.tree.heading("tid", text=_("TitleID"), command=lambda c="tid": self.sortby(self.tree, c, 1)) self.tree.heading("G", text=_("Game"), command=lambda c="G": self.sortby(self.tree, c, 1)) self.tree.heading("S", text=_("State"), command=lambda c="S": self.sortby(self.tree, c, 1)) # Reset cursor status self.root.config(cursor="") try: self.imageLabel.config(cursor="hand2") except: pass def done_status(self, display_text="Status: Done!"): display_text = _(display_text) try: self.status_label.config(text=display_text) except RuntimeError as e: print(e) print(display_text) def threaded_game_info(self, evt): selection=self.tree.selection()[0] selected = self.tree.item(selection,"value") # Returns the selected value as a dictionary if selection: w = evt.widget self.is_DLC = False ## try: value = selected[2] if "[DLC]" in value: for radio in self.radio_btn_collection: radio.configure(state = DISABLED) self.is_DLC=True else: for radio in self.radio_btn_collection: radio.configure(state = "normal") value = int(selected[0]) value -= 1 self.game_titleID.set(self.titleID[value]) self.game_titleKey.set(self.titleKey[value]) self.game_title.set(self.title[value]) self.get_update_lastestVer() ## except: ## pass tid = self.titleID[value] thread = threading.Thread(target = lambda: self.game_desc(tid)) thread.start() isDLC = False if not tid.endswith("00"): isDLC = True tid = "{}".format(tid[0:12]) indices = [i for i, s in enumerate(self.titleID) if tid in s] if len(indices) >= 2: for t in indices: if self.titleID[t].endswith("000"): tid = self.titleID[t] break if tid.endswith("000"): isDLC = False if edgeToken == None and not self.game_image_disable: image_name = "{}.jpg".format(tid.lower()) if not os.path.isfile("Images/{}".format(image_name)): url = "https://terannet.sirv.com/CDNSP/{}".format(image_name) r = requests.get(url) if r.status_code != 200: isDLC = True print("\n"+_("Unable to get game image")) else: file_name = os.path.join("Images", image_name) urllib.request.urlretrieve(url, file_name) change_img = False if not self.game_image_disable and not isDLC: if not os.path.isfile("Images/{}.jpg".format(tid)): base_ver = get_versions(tid)[-1] result = game_image(tid, base_ver, self.titleKey[self.titleID.index(tid)]) if result[1] != "Error": change_img = True if result[1] != "Exist": if self.sys_name == "Win": subprocess.check_output("{0} -k keys.txt {1}\\control.nca --section0dir={1}\\section0".format(hactoolPath, result[0].replace("/", "\\")), shell=True) else: subprocess.check_output("{0} -k keys.txt '{1}/control.nca' --section0dir='{1}/section0'".format(hactoolPath, result[0]), shell=True) icon_list = ["icon_AmericanEnglish.dat", "icon_BritishEnglish.dat",\ "icon_CanadianFrench.dat", "icon_German.dat", \ "icon_Italian.dat", "icon_Japanese.dat", \ "icon_LatinAmericanSpanish.dat", "icon_Spanish.dat", \ "icon_Korean.dat", "icon_TraditionalChinese.dat"] file_name = "" dir_content = os.listdir(os.path.dirname(os.path.abspath(__file__))+'/Images/{}/section0/'.format(tid)) for i in icon_list: if i in dir_content: file_name = i.split(".")[0] break try: os.rename('{}/section0/{}.dat'.format(result[0], file_name), '{}/section0/{}.jpg'.format(result[0], file_name)) shutil.copyfile('{}/section0/{}.jpg'.format(result[0], file_name), 'Images/{}.jpg'.format(tid)) shutil.rmtree(os.path.dirname(os.path.abspath(__file__))+'/Images/{}'.format(tid)) except Exception as e: print(_("An error has occured, click on the game image to try again" + "\n" + _("Error:") + " {}".format(e))) else: img2 = ImageTk.PhotoImage(Image.open('blank.jpg')) self.imageLabel.configure(image=img2, text="") self.imageLabel.image = img2 else: change_img = True if change_img: img2 = ImageTk.PhotoImage(Image.open(os.path.dirname(os.path.abspath(__file__))+'/Images/{}.jpg'.format(tid))) self.imageLabel.configure(image=img2, text="") self.imageLabel.image = img2 # print("\nIt took {} seconds to get the image\n".format(end - start)) else: img2 = ImageTk.PhotoImage(Image.open('blank.jpg')) self.imageLabel.configure(image=img2, text="") self.imageLabel.image = img2 ## ## except: ## pass def game_info(self, evt): self.imageLabel.config(image="", text=_("\n\n\nDownloading game image...")) thread = threading.Thread(target = lambda: self.threaded_game_info(evt)) thread.start() def game_desc(self, tid): #self.infoLabel.config(image="", text=_("\n\n\nDownloading game info...")) if self.game_desc_disable == False: global game_info_json if not tid.endswith("00"): tid = "{}".format(tid[0:12]) indices = [i for i, s in enumerate(self.titleID) if tid in s] if len(indices) >= 2: for t in indices: if self.titleID[t].endswith("000"): tid = self.titleID[t] break if tid in game_info_json: description = "" if game_info_json[tid]["intro"].replace("\n", "") == "": description += "No intro\n" else: description += "{}\n".format(game_info_json[tid]["intro"]\ .replace("\n\n", " ").replace("\n", "").strip()) info_name = {"Game Description:": "description", "Release Date:": "release_date_string", "Publisher:": "publisher", "Category:": "category", "Rating:": "rating", "Game Size:": "Game_size", "Number of Players:": "number_of_players", "eShop Game Price:": "US_price" } for game_name, game_key in info_name.items(): if game_key == "description": description += "\n{} {}\n\n".format(_(game_name), game_info_json[tid]["{}".format(game_key)]\ .replace("\n\n", " ").replace("\n", "").strip()) elif game_key == "Game_size": try: game_size_temp = bytes2human(float(game_info_json[tid]["{}".format(game_key)].replace("\n", "").strip())) game_size_temp_size = float(game_size_temp[0:-3]) description += "{} {:.2f} {}\n".format(_(game_name), game_size_temp_size, game_size_temp[-2:]) except: description += "{} {}\n".format(_(game_name), _("Unable to get game size")) elif game_key == "US_price": description += "{} ${}\n".format(_(game_name), game_info_json[tid]["{}".format(game_key)].replace("\n", "").strip()) else: description += "{} {}\n".format(_(game_name), game_info_json[tid]["{}".format(game_key)].replace("\n", "").strip()) self.game_text.delete("1.0", END) self.game_text.insert(INSERT, description) self.game_text.tag_add("All", "1.0", "end") self.game_text.tag_config("All", font=("Open Sans", 10)) self.game_text.tag_add("Intro", "1.0", "1.end") self.game_text.tag_config("Intro", justify="center", font=("Open Sans", 10, "bold")) counter = 3 for game_name, game_key in info_name.items(): self.game_text.tag_add("{}".format(_(game_name)), "{}.0".format(counter), "{}.{}".format(counter, len(_(game_name)))) self.game_text.tag_config("{}".format(_(game_name)), font=("Open Sans", 10, "bold"), spacing2="2", spacing3="3") if counter == 3: counter += 2 else: counter += 1 else: self.game_text.delete("1.0", END) self.game_text.insert(INSERT, _("\n\n\nDownloading game info...")) thread = threading.Thread(target = lambda: self.download_desc(tid)) thread.start() else: self.game_text.delete("1.0", END) self.game_text.insert(INSERT, "") def download_desc(self, tid, silent=False): # Coded by Panda global game_info_json done = False if tid in game_info_json: done = True if done == False: ## try: titleinfo = {} titleinfo['titleid'] = tid titleinfo['date_added'] = time.strftime('%Y%m%d') titleinfo['last_updated'] = time.strftime('%Y%m%d') #initialize empty values titleinfo["release_date_string"] = "" titleinfo["release_date_iso"] = "" titleinfo["title"] = "" titleinfo["nsuid"] = "" titleinfo["slug"] = "" titleinfo["game_code"] = "" titleinfo["category"] = "" titleinfo["rating_content"] = "" titleinfo["number_of_players"] = "" titleinfo["rating"] = "" titleinfo["amiibo_compatibility"] = "" titleinfo["developer"] = "" titleinfo["publisher"] = "" titleinfo["front_box_art"] = "" titleinfo["intro"] = "" titleinfo["description"] = "" titleinfo["dlc"] = "" titleinfo["US_price"] = "" titleinfo["Game_size"] = "" result = requests.get("https://ec.nintendo.com/apps/%s/US" % tid) # result.status_code == 200 if result.status_code == 200: if result.url != 'https://www.nintendo.com/games/': soup = BeautifulSoup(result.text, "html.parser") if soup.find("meta", {"property": "og:url"}) != None: slug = soup.find("meta", {"property": "og:url"})["content"].split('/')[-1] infoJson = json.loads(requests.get("https://www.nintendo.com/json/content/get/game/%s" % slug).text)["game"] if "release_date" in infoJson: titleinfo["release_date_string"] = infoJson["release_date"] titleinfo["release_date_iso"] = datetime.datetime.strftime(datetime.datetime.strptime(infoJson["release_date"], "%b %d, %Y"),'%Y%m%d') if "title" in infoJson: titleinfo["title"] = infoJson["title"] if "nsuid" in infoJson: titleinfo["nsuid"] = infoJson["nsuid"] if "slug" in infoJson: titleinfo["slug"] = infoJson["slug"] if "game_code" in infoJson: titleinfo["game_code"] = infoJson["game_code"] catagories = [] if "game_category_ref" in infoJson: catindex = 0 if "title" in infoJson["game_category_ref"]: catagories.append(infoJson["game_category_ref"]["title"]) else: for game_category in infoJson["game_category_ref"]: catagories.append(infoJson["game_category_ref"][catindex]["title"]) catindex += 1 if len(catagories) > 0: titleinfo["category"] = ','.join(catagories) esrbcontent = [] if "esrb_content_descriptor_ref" in infoJson: esrbindex = 0 if "title" in infoJson["esrb_content_descriptor_ref"]: esrbcontent.append(infoJson["esrb_content_descriptor_ref"]["title"]) else: for descriptor in infoJson["esrb_content_descriptor_ref"]: esrbcontent.append(infoJson["esrb_content_descriptor_ref"][esrbindex]["title"]) esrbindex += 1 if len(esrbcontent) > 0: titleinfo["content"] = ','.join(esrbcontent) if "number_of_players" in infoJson: titleinfo["number_of_players"] = infoJson["number_of_players"] if "eshop_price" in infoJson: titleinfo["US_price"] = infoJson["eshop_price"] if "esrb_rating_ref" in infoJson: if "title" in infoJson["esrb_rating_ref"]: titleinfo["rating"] = infoJson["esrb_rating_ref"]["esrb_rating"]["short_description"] if "amiibo_compatibility" in infoJson: titleinfo["amiibo_compatibility"] = infoJson["amiibo_compatibility"] if "dlc" in infoJson: titleinfo["dlc"] = infoJson["dlc"] if "developer_ref" in infoJson: if "title" in infoJson["developer_ref"]: titleinfo["developer"] = infoJson["developer_ref"]["title"] if "publisher_ref" in infoJson: if "title" in infoJson["publisher_ref"]: titleinfo["publisher"] = infoJson["publisher_ref"]["title"] if "front_box_art" in infoJson: if "image" in infoJson["front_box_art"]: if "image" in infoJson["front_box_art"]["image"]: if "url" in infoJson["front_box_art"]["image"]["image"]: titleinfo["front_box_art"] = infoJson["front_box_art"]["image"]["image"]["url"] if "intro" in infoJson: try: details = BeautifulSoup(infoJson["intro"][0],"html.parser") try: details = details.decode(formatter=None) except: details = details.decode() details = re.sub('<[^<]+?>', '', details).strip() details = re.sub(' +', ' ', details) details = re.sub('\n ', '\n', details) details = re.sub('\n\n+', '\n\n', details) titleinfo["intro"] = details except Exception as e: pass if "game_overview_description" in infoJson: details = BeautifulSoup(infoJson["game_overview_description"][0],"html.parser") try: details = details.decode(formatter=None) except: details = details.decode() details = re.sub('<[^<]+?>', '', details).strip() details = re.sub(' +', ' ', details) details = re.sub('\n ', '\n', details) details = re.sub('\n\n+', '\n\n', details) titleinfo["description"] = details result = requests.get("https://ec.nintendo.com/apps/%s/AU" % tid) _json = '' if result.status_code == 200: _json = json.loads(result.text.split('NXSTORE.titleDetail.jsonData = ')[1].split('NXSTORE.titleDetail')[0].replace(';','')) else: result = requests.get("https://ec.nintendo.com/apps/%s/JP" % tid) if result.status_code == 200: _json = json.loads(result.text.split('NXSTORE.titleDetail.jsonData = ')[1].split('NXSTORE.titleDetail')[0].replace(';','')) if _json != '': ## print(_json["total_rom_size"]) ## sys.exit() if "total_rom_size" in _json: titleinfo["Game_size"] = str(_json["total_rom_size"]) game_info_json[tid] = titleinfo if tid not in game_info_json: result = requests.get("https://ec.nintendo.com/apps/%s/AU" % tid) _json = '' if result.status_code == 200: _json = json.loads(result.text.split('NXSTORE.titleDetail.jsonData = ')[1].split('NXSTORE.titleDetail')[0].replace(';','')) else: result = requests.get("https://ec.nintendo.com/apps/%s/JP" % tid) if result.status_code == 200: _json = json.loads(result.text.split('NXSTORE.titleDetail.jsonData = ')[1].split('NXSTORE.titleDetail')[0].replace(';','')) if _json != '': ## print(_json["total_rom_size"]) ## sys.exit() if "total_rom_size" in _json: titleinfo["Game_size"] = str(_json["total_rom_size"]) if "release_date_on_eshop" in _json: titleinfo["release_date_iso"] = _json["release_date_on_eshop"].replace('-','') titleinfo["release_date_string"] = datetime.datetime.strftime(datetime.datetime.strptime(_json["release_date_on_eshop"].replace('-',''),'%Y%m%d' ),"%b %d, %Y") if "formal_name" in _json: titleinfo["title"] = _json["formal_name"] if "id" in _json: titleinfo["nsuid"] = "%s" % _json["id"] titleinfo["slug"] = "" titleinfo["game_code"] = "" if "genre" in _json: titleinfo["category"] = _json["genre"].replace(' / ',',') if "rating_info" in _json: if "rating" in _json["rating_info"]: rating = '' if "name" in _json["rating_info"]['rating']: rating = "Rated %s" % _json["rating_info"]['rating']['name'] if "age" in _json["rating_info"]['rating']: rating = rating + " for ages %s and up" % _json["rating_info"]['rating']['age'] titleinfo["rating"] = rating if "content_descriptors" in _json["rating_info"]: content = [] for descriptor in _json["rating_info"]["content_descriptors"]: content.append(descriptor['name']) titleinfo["rating_content"] = ','.join(content) if "player_number" in _json: if 'offline_max' in _json["player_number"]: titleinfo["number_of_players"] = "up to %s players" % _json["player_number"]["offline_max"] if 'local_max' in _json["player_number"]: titleinfo["number_of_players"] = "up to %s players" % _json["player_number"]["local_max"] titleinfo["amiibo_compatibility"] = "" titleinfo["developer"] = "" if "publisher" in _json: titleinfo["publisher"] = _json["publisher"]["name"] if "applications" in _json: if "image_url" in _json["applications"][0]: titleinfo["front_box_art"] = _json["applications"][0]['image_url'] if "hero_banner_url" in _json: titleinfo["front_box_art_alt"] = _json["hero_banner_url"] if "catch_copy" in _json: titleinfo["intro"] = _json["catch_copy"] if "description" in _json: titleinfo["description"] = _json["description"] titleinfo["dlc"] = "" game_info_json[tid] = titleinfo else: f = open("Config/missing.txt", 'a', encoding="utf8") f.write(tid+"|title doesn't exist at ec.nintendo.com"+'\n') f.close() if not silent: self.game_text.delete("1.0", END) self.game_text.insert(INSERT, _("\n\n\nUnable to find game info")) done = True ## except Exception as e: ## #print(repr(e)) ## f = open("Config/missing.txt", 'a', encoding="utf8") ## f.write(tid+'|'+ repr(e) +'\n') ## f.close() ## self.game_text.delete("1.0", END) ## self.game_text.insert(INSERT, _("\n\n\nUnable to find game info")) ## done = True if not done: with open("Config/Game_info.json", "w", encoding="utf8") as jsonFile: json.dump(game_info_json, jsonFile, indent=4) jsonFile.close() if not silent: self.game_desc(tid) def threaded_download(self): option = self.updateOptions.get() ## try: tid = self.game_titleID.get() updateTid = tid tkey = self.game_titleKey.get() ver = self.version_option.get() if len(tkey) != 32 and self.titlekey_check: self.messages(_('Error'), _('Titlekey {} is not a 32-digits hexadecimal number!').format(tkey)) elif len(tid) != 16: self.messages(_('Error'), _('TitleID {} is not a 16-digits hexadecimal number!').format(tid)) else: if _("Latest") in ver: updateTid = tid if tid.endswith('000'): updateTid = '%s800' % tid[:-3] elif tid.endswith('800'): baseTid = '%s000' % tid[:-3] updateTid = tid ver = get_versions(updateTid)[-1] elif "none" in ver: ver == "none" if tid.endswith('000'): updateTid = '%s800' % tid[:-3] elif tid.endswith('800'): baseTid = '%s000' % tid[:-3] updateTid = tid if option == "U" or self.is_DLC == True: if ver != "none": 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.")) download_game(updateTid, ver, tkey, nspRepack=self.repack, path_Dir=self.path) self.messages("", _("Download finished!")) else: self.messages("", _("No updates available for the game")) elif option == "B+U+D": base_tid = "{}000".format(tid[0:13]) 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.")) base_ver = get_versions(base_tid)[-1] download_game(base_tid, base_ver, tkey, nspRepack=self.repack, path_Dir=self.path) if ver != 'none': updateTid = "{}800".format(tid[0:13]) download_game(updateTid, ver, tkey, nspRepack=self.repack, path_Dir=self.path) DLC_titleID = [] tid = "{}".format(tid[0:12]) indices = [i for i, s in enumerate(self.titleID) if tid in s] for index in indices: if not self.titleID[index].endswith("00"): DLC_titleID.append(self.titleID[index]) for DLC_ID in DLC_titleID: DLC_ver = get_versions(DLC_ID)[-1] download_game(DLC_ID, DLC_ver, self.titleKey[self.titleID.index(DLC_ID)], nspRepack=self.repack, path_Dir=self.path) self.messages("", _("Download finished!")) elif option == "U+D": if ver != "none": updateTid = "{}800".format(tid[0:13]) 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.")) download_game(updateTid, ver, tkey, nspRepack=self.repack, path_Dir=self.path) DLC_titleID = [] tid = "{}".format(tid[0:12]) indices = [i for i, s in enumerate(self.titleID) if tid in s] for index in indices: if not self.titleID[index].endswith("00"): DLC_titleID.append(self.titleID[index]) for DLC_ID in DLC_titleID: DLC_ver = get_versions(DLC_ID)[-1] download_game(DLC_ID, DLC_ver, self.titleKey[self.titleID.index(DLC_ID)], nspRepack=self.repack, path_Dir=self.path) self.messages("", _("Download finished!")) elif option == "D": 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.")) DLC_titleID = [] tid = "{}".format(tid[0:12]) indices = [i for i, s in enumerate(self.titleID) if tid in s] for index in indices: if not self.titleID[index].endswith("00"): DLC_titleID.append(self.titleID[index]) for DLC_ID in DLC_titleID: DLC_ver = get_versions(DLC_ID)[-1] download_game(DLC_ID, DLC_ver, self.titleKey[self.titleID.index(DLC_ID)], nspRepack=self.repack, path_Dir=self.path) self.messages("", _("Download finished!")) elif option == "B": base_tid = "{}000".format(tid[0:13]) 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.")) base_ver = get_versions(base_tid)[-1] download_game(base_tid, base_ver, tkey, nspRepack=self.repack, path_Dir=self.path) self.messages("", _("Download finished!")) elif option == "B+U": base_tid = "{}000".format(tid[0:13]) 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.")) base_ver = get_versions(base_tid)[-1] download_game(base_tid, base_ver, tkey, nspRepack=self.repack, path_Dir=self.path) if ver != 'none': updateTid = "{}800".format(tid[0:13]) download_game(updateTid, ver, tkey, nspRepack=self.repack, path_Dir=self.path) self.messages("", _("Download finished!")) else: self.messages("", _("No updates available for the game, base game downloaded!")) ## except: ## print("Error downloading {}, note: if you're downloading a DLC then different versions of DLC may have different titlekeys".format(tid)) return def download(self): thread = threading.Thread(target = self.threaded_download) thread.start() def pause_download_command(self): global pause_download global downloading if downloading: pause_download = not pause_download if pause_download: self.pause_btn["text"] = "Resume Download" print("\nDownload paused, waiting for the user resumes the download again") else: self.pause_btn["text"] = "Pause Download" print("\nDownload resumed") else: print("\n There is not a download in progress") def export_persistent_queue(self): self.dump_persistent_queue(self.normalize_file_path(filedialog.asksaveasfilename(initialdir = self.path, title = "Select file", filetypes = (("JSON files","*.json"),("all files","*.*"))))) def import_persistent_queue(self): self.load_persistent_queue(self.normalize_file_path(filedialog.askopenfilename(initialdir = self.path, title = "Select file", filetypes = (("JSON files","*.json"),("all files","*.*"))))) def dump_persistent_queue(self, path = r'Config/CDNSP_queue.json'): if path == "": print(_("\nYou didn't choose a location to save the file!")) return elif not path.endswith(".json"): path += ".json" # if self.persist_queue # check for user option here f = open(path, 'w') json.dump(self.persistent_queue, f) f.close() def load_persistent_queue(self, path = r'Config/CDNSP_queue.json'): # if self.persist_queue # check for user option here try: f = open(path, 'r') try: self.remove_all() except: pass for c, tid, ver, key, option in json.load(f): self.add_item_to_queue((tid, ver, key, option), True) f.close() except: print(_("Persistent queue not found, skipping...")) def get_index_in_queue(self, item): try: return self.queue_list.index(item) except: print(_("Item not found in queue"), item) def add_selected_items_to_queue(self): self.add_items_to_queue(self.tree.selection()) def add_items_to_queue(self, indices): ## try: for index in indices: index = int(self.tree.item(index,"value")[0])-1 ## index = int(self.temp_list[index].split(",")[0])-1 tid = self.titleID[index] key = self.titleKey[index] ver = self.version_option.get() option = self.updateOptions.get() if len(key) != 32 and self.titlekey_check: self.messages(_('Error'), _('Titlekey {} is not a 32-digits hexadecimal number!').format(key)) elif len(tid) != 16: self.messages(_('Error'), _('TitleID {} is not a 16-digits hexadecimal number!').format(tid)) else: self.add_item_to_queue((tid, ver, key, option)) self.dump_persistent_queue() ## except: ## messagebox.showerror("Error", "No game selected/entered to add to queue") def process_item_versions(self, tid, ver): if _("Latest") in ver or "Latest" in ver: if tid.endswith('000'): tid = '%s800' % tid[:-3] ver = get_versions(tid)[-1] elif ver != "0" and ver != "1": if tid.endswith('000'): tid = '%s800' % tid[:-3] elif "none" in ver: ver = "none" return (tid, ver) # takes an item with unformatted tid and ver def add_item_to_queue(self, item, dump_queue = False): tid, ver, key, option = item if len(tid) == 16: if not Toplevel.winfo_exists(self.queue_win): self.queue_menu_setup() #Fix for app crashing when close the queue menu and re-open self.queue_win.update() self.queue_win.deiconify() try: c = self.titleID.index(tid) c = self.title[c] # Name of the game except: print(_("Name for titleID not found in the list"), tid) c = "UNKNOWN NAME" formatted_tid, formatted_ver = self.process_item_versions(tid, ver) if "[DLC]" in c: option = "DLC" if c[-1] == "\n": c = c[:-1] if ver == _("Latest"): eng_ver = "Latest" else: eng_ver = ver self.queue_title_list.insert("end", "{}---{}---{}".format(c, _(ver), option)) self.queue_list.append((formatted_tid, formatted_ver, key, option)) self.persistent_queue.append((c, tid, eng_ver, key, option)) if dump_queue: self.dump_persistent_queue() self.queue_title_list.yview(END) # Auto scroll the queue menu as requested def remove_selected_items(self): self.remove_items(self.queue_title_list.curselection()) def remove_items(self, indices): counter = 0 for index in indices: index = index - counter try: self.remove_item(index) counter += 1 except: print(_("No game selected to remove!")) self.dump_persistent_queue() def remove_item(self, index, dump_queue = False): del self.queue_list[index] del self.persistent_queue[index] self.queue_title_list.delete(index) if dump_queue: self.dump_persistent_queue() def threaded_download_all(self): 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!")) self.stateLabel.configure(text = _("Downloading games...")) download_list = self.queue_list.copy() for item in download_list: tid, ver, tkey, option = item ver = self.process_item_versions(tid, ver)[1] ## try: if option == "U" or option == "DLC": if ver != "none": if tid.endswith("00"): tid = "{}800".format(tid[0:13]) download_game(tid, ver, tkey, nspRepack=self.repack, path_Dir=self.path) else: print(_("No updates available for titleID: {}").format(tid)) elif option == "B+U+D": base_tid = "{}000".format(tid[0:13]) base_ver = get_versions(base_tid)[-1] download_game(base_tid, base_ver, tkey, nspRepack=self.repack, path_Dir=self.path) if ver != 'none': updateTid = "{}800".format(tid[0:13]) download_game(updateTid, ver, tkey, nspRepack=self.repack, path_Dir=self.path) DLC_titleID = [] tid = "{}".format(tid[0:12]) indices = [i for i, s in enumerate(self.titleID) if tid in s] for index in indices: if not self.titleID[index].endswith("00"): DLC_titleID.append(self.titleID[index]) for DLC_ID in DLC_titleID: DLC_ver = get_versions(DLC_ID)[-1] download_game(DLC_ID, DLC_ver, self.titleKey[self.titleID.index(DLC_ID)], nspRepack=self.repack, path_Dir=self.path) elif option == "U+D": if ver != "none": updateTid = "{}800".format(tid[0:13]) download_game(updateTid, ver, tkey, nspRepack=self.repack, path_Dir=self.path) DLC_titleID = [] tid = "{}".format(tid[0:12]) indices = [i for i, s in enumerate(self.titleID) if tid in s] for index in indices: if not self.titleID[index].endswith("00"): DLC_titleID.append(self.titleID[index]) for DLC_ID in DLC_titleID: DLC_ver = get_versions(DLC_ID)[-1] download_game(DLC_ID, DLC_ver, self.titleKey[self.titleID.index(DLC_ID)], nspRepack=self.repack, path_Dir=self.path) elif option == "D": DLC_titleID = [] tid = "{}".format(tid[0:12]) indices = [i for i, s in enumerate(self.titleID) if tid in s] for index in indices: if not self.titleID[index].endswith("00"): DLC_titleID.append(self.titleID[index]) for DLC_ID in DLC_titleID: DLC_ver = get_versions(DLC_ID)[-1] download_game(DLC_ID, DLC_ver, self.titleKey[self.titleID.index(DLC_ID)], nspRepack=self.repack, path_Dir=self.path) elif option == "B": base_tid = "{}000".format(tid[0:13]) base_ver = get_versions(base_tid)[-1] download_game(base_tid, base_ver, tkey, nspRepack=self.repack, path_Dir=self.path) elif option == "B+U": base_tid = "{}000".format(tid[0:13]) base_ver = get_versions(base_tid)[-1] download_game(base_tid, base_ver, tkey, nspRepack=self.repack, path_Dir=self.path) if ver != 'none': updateTid = "{}800".format(tid[0:13]) download_game(updateTid, ver, tkey, nspRepack=self.repack, path_Dir=self.path) else: print(_("No updates available for titleID: {}, base game downloaded!").format(tid)) index = self.get_index_in_queue(item) self.remove_item(index, True) ## except: ## print("Error downloading {}, note: if you're downloading a DLC then different versions of DLC may have different titlekeys".format(tid)) self.messages("", _("Download finished!")) self.stateLabel["text"] = _("Download finished!") # self.remove_all(dump_queue = True) if self.auto_shutdown == True: self.messages("", _("Computer will now auto shutdown")) threading.Timer(2, self.shutdown).start() def download_all(self): thread = threading.Thread(target = self.threaded_download_all) thread.start() ## def download_check(self, tid, ver): ## if ver != "0" or ver != "1": # Is an update game ## if any(tid_list in tid for tid_list in self.installed): ## print(tid, self.installed.index(tid)) ## else: ## if any(tid_list in tid for tid_list in self.installed): def normalize_file_path(self, file_path): if self.sys_name == "Win": return file_path.replace("/", "\\") else: return file_path def change_dl_path(self): self.path = self.normalize_file_path(filedialog.askdirectory()) updateJsonFile("Download_location", self.path) print("\nDownload Location:{}".format(self.path)) def change_nsp_path(self): global nsp_location path = self.normalize_file_path(filedialog.askdirectory()) nsp_location = path updateJsonFile("NSP_location", path) print("\nNSP Location: {}".format(path)) def nsp_repack_option(self): if self.repack == True: self.optionMenu.entryconfig(4, label= _("Enable NSP Repack")) self.repack = False elif self.repack == False: self.optionMenu.entryconfig(4, label= _("Disable NSP Repack")) self.repack = True updateJsonFile("NSP_repack", str(self.repack)) def threaded_update_titlekeys(self): # Set default values for CDNSP mode titlekey_file_name = "titlekeys.txt" titlekey_url = self.db_URL new_text_name = "new.txt" # Change the values if on Nut mode if self.current_mode == "Nut": titlekey_file_name = "Nut_titlekeys.txt" titlekey_url = "{}".format(base64.b64decode("aHR0cDovL3NuaXAubGkvbnV0ZGI=").decode("ascii")) new_text_name = "Nut_new.txt" self.status_label.config(text=_("Status: Updating titlekeys")) print(titlekey_url) ## try: r = requests.get(titlekey_url, allow_redirects=True) if "snip" in titlekey_url: try: result = re.search(r"Proceed", r.text) if result: titlekey_url = result.group(1) r = requests.get(titlekey_url, allow_redirects=True, verify=True) except: pass if str(r.status_code) == "200": r.encoding = "utf-8" newdb = r.text.replace("\r", "").split('\n') if newdb[-1] == "": newdb = newdb[:-1] if os.path.isfile(titlekey_file_name): with open(titlekey_file_name, encoding="utf8") as f: currdb = f.read().split('\n') if currdb[-1] == "": currdb = currdb[:-1] currdb = [x.strip() for x in currdb] counter = 0 info = '' new_tid = [] if self.current_mode == "Nut": found_line = False # Find the header info for line in newdb: if line[0] != "#" and line[:2] == "id" and current_mode_global == "Nut": line = line.strip() found_line = True header_list = line.split("|") index_tid = find_index(header_list, "id") index_title = find_index(header_list, "name") break if not found_line: print("\n"+"Error: Header is not found in the Nut_titlekeys.txt file, please double check you have the header") sys.exit() for line in newdb: if line[0:2] == "01": if line.strip() not in currdb: if line.strip() != newdb[0].strip(): new_tid.append(line.strip().split('|')[0]) if current_mode_global == "Nut": _name = line.strip().split('|')[index_title] + '\n' if _name not in info: info += _name else: continue else: info += (line.strip()).rsplit('|',1)[1] + '\n' counter += 1 if len(new_tid) != 0: file_path = open(r"Config/{}".format(new_text_name), "w") text = "" for new in new_tid: text += "{}\n".format(new[:16]) file_path.write(text) file_path.close() if counter: update_win = Toplevel(self.root) #https://stackoverflow.com/questions/13832720/how-to-attach-a-scrollbar-to-a-text-widget self.update_window = update_win global update_win_size update_win.title(_("Finished update!")) if update_win_size != "": update_win.geometry(update_win_size) else: update_win.geometry("600x400+120+200") # create a Frame for the Text and Scrollbar txt_frm = Frame(update_win, width=600, height=400) txt_frm.pack(fill="both", expand=True) # ensure a consistent GUI size txt_frm.grid_propagate(False) # implement stretchability txt_frm.grid_rowconfigure(0, weight=1) txt_frm.grid_columnconfigure(0, weight=3) # create a Text widget txt = Text(txt_frm, borderwidth=3, relief="sunken") txt.config(font=("Open Sans", 12), undo=True, wrap='word') txt.grid(row=0, column=0, sticky="nsew", padx=2, pady=2, columnspan=2) txt.insert("1.0", info) # create a Scrollbar and associate it with txt scrollb = Scrollbar(txt_frm, command=txt.yview, width=20) scrollb.grid(row=0, column=3, sticky='nsew') txt['yscrollcommand'] = scrollb.set # info on total games added and an exit button Label(txt_frm, text=_("Total of new games added: {}").format(counter)).grid(row=1, column=0) Button(txt_frm, text=_("Close"), height=2, command=lambda: update_win.destroy()).grid(row=1, column=1) ## Label(txt_frm, text=" ").grid(row=1, column=3) ## try: # print('\nSaving new database...') f = open(titlekey_file_name,'w',encoding="utf-8") for line in newdb: if line[-1] != "\n": line += "\n" f.write(str(line)) f.close() self.current_status = [] self.update_list(rebuild=True, label=build_text) else: self.status_label.config(text=_('Status: Finished update, There were no new games to update!')) print(_('\nStatus: Finished update, There were no new games to update!')) self.root.config(cursor="") try: self.imageLabel.config(cursor="hand2") except: pass self.done_status() else: try: # print('\nSaving new database...') f = open(titlekey_file_name,'w',encoding="utf-8") self.title = [] self.titleID = [] self.titleKey = [] for line in newdb: if line.strip(): self.title.append(line.strip().split("|")[2]) self.titleID.append(line.strip().split("|")[0][:16]) self.titleKey.append(line.strip().split("|")[1]) f.write(line.strip() + '\n') f.close() self.current_status = [] self.update_list(rebuild=True, label=_('Status: Finished update, Database rebuilt from scratch')) except Exception as e: print(e) else: self.messages(_("Error"), _("The database server {} might be down or unavailable").format(titlekey_url)) def update_titlekeys(self): self.root.config(cursor="watch") self.imageLabel.config(cursor="watch") thread = threading.Thread(target = self.threaded_update_titlekeys) thread.start() def mute_all(self): if self.mute == False: self.optionMenu.entryconfig(3, label= _("Unmute All Pop-ups")) self.mute = True elif self.mute == True: self.optionMenu.entryconfig(3, label= _("Mute All Pop-ups")) self.mute = False updateJsonFile("Mute", str(self.mute)) def messages(self, title, text): if self.mute != True: messagebox.showinfo(title, text) else: print(_("\n{}\n").format(text)) def titlekey_check_option(self): global titlekey_check if self.titlekey_check == True: self.titlekey_check = False titlekey_check = self.titlekey_check self.optionMenu.entryconfig(5, label= _("Enable Titlekey Check")) # Automatically disable repacking as well self.repack = False self.optionMenu.entryconfig(4, label= _("Enable NSP Repack")) elif self.titlekey_check == False: self.titlekey_check = True titlekey_check = self.titlekey_check self.optionMenu.entryconfig(5, label= _("Disable Titlekey Check")) self.repack = True self.optionMenu.entryconfig(4, label= _("Disable NSP Repack")) updateJsonFile("Titlekey_check", str(self.titlekey_check)) def disable_aria2c(self): pass def disable_game_image(self): if self.game_image_disable == False: self.game_image_disable = True self.optionMenu.entryconfig(1, label= _("ENABLE GAME IMAGE")) elif self.game_image_disable == True: self.game_image_disable = False self.optionMenu.entryconfig(1, label= _("DISABLE GAME IMAGE")) updateJsonFile("Disable_game_image", str(self.game_image_disable)) def disable_game_description(self): if self.game_desc_disable == False: self.game_desc_disable = True self.optionMenu.entryconfig(0, label= _("ENABLE GAME DESCRIPTION")) elif self.game_desc_disable == True: self.game_desc_disable = False self.optionMenu.entryconfig(0, label= _("DISABLE GAME DESCRIPTION")) updateJsonFile("Disable_description", str(self.game_desc_disable)) def threaded_preload_images(self): ## try: start = time.time() for k in self.titleID: if k != "": tid = k isDLC = False if not tid.endswith("00"): isDLC = True tid = "{}".format(tid[0:12]) indices = [i for i, s in enumerate(self.titleID) if tid in s] if len(indices) >= 2: for t in indices: if self.titleID[t].endswith("000"): tid = self.titleID[t] break if tid.endswith("000"): isDLC = False print(_("Currently downloading the image for TID: {}").format(tid)) if edgeToken == None: image_name = "{}.jpg".format(tid.lower()) if not os.path.isfile("Images/{}".format(image_name)): print("don't have") url = "https://terannet.sirv.com/CDNSP/{}".format(image_name) r = requests.get(url) if r.status_code != 200: isDLC = True else: file_name = os.path.join("Images", image_name) urllib.request.urlretrieve(url, file_name) else: if not self.game_image_disable and not isDLC: if not os.path.isfile("Images/{}.jpg".format(tid)): base_ver = get_versions(tid)[-1] result = game_image(tid, base_ver, self.titleKey[self.titleID.index(tid)]) if result[1] != "Error": if result[1] != "Exist": if self.sys_name == "Win": subprocess.check_output("{0} -k keys.txt {1}\\control.nca --section0dir={1}\\section0".format(hactoolPath, result[0].replace("/", "\\")), shell=True) else: subprocess.check_output("{0} -k keys.txt '{1}/control.nca' --section0dir='{1}/section0'".format(hactoolPath, result[0]), shell=True) icon_list = ["icon_AmericanEnglish.dat", "icon_BritishEnglish.dat",\ "icon_CanadianFrench.dat", "icon_German.dat", \ "icon_Italian.dat", "icon_Japanese.dat", \ "icon_LatinAmericanSpanish.dat", "icon_Spanish.dat", \ "icon_Korean.dat", "icon_TraditionalChinese.dat"] file_name = "" dir_content = os.listdir(os.path.dirname(os.path.abspath(__file__))+'/Images/{}/section0/'.format(tid)) for i in icon_list: if i in dir_content: file_name = i.split(".")[0] break os.rename('{}/section0/{}.dat'.format(result[0], file_name), '{}/section0/{}.jpg'.format(result[0], file_name)) shutil.copyfile('{}/section0/{}.jpg'.format(result[0], file_name), 'Images/{}.jpg'.format(tid)) shutil.rmtree(os.path.dirname(os.path.abspath(__file__))+'/Images/{}'.format(tid)) end = time.time() print(_("\nIt took {} seconds for you to get all images!\n").format(end - start)) self.messages("", _("Done getting all game images!")) ## except: ## print("Error getting game images") def preload_images(self): thread = threading.Thread(target = self.threaded_preload_images) thread.start() def get_update_ver(self): if edgeToken == None: tid = self.game_titleID.get().lower() if tid in known_ver: ver = known_ver[tid] update_list = [] if ver == "none": update_list.append("none") else: ver = int(ver) while ver != 0: update_list.append(str(ver)) ver -= 65536 if not tid.endswith("00"): update_list.append("0") update_list = update_list[::-1] update_list.insert(0, _("Latest")) self.version_select["values"] = update_list self.version_select.set(_("Latest")) else: print("Unable to get the latest version for this TID") ## update_list.insert(0, _("Latest")) self.version_select["values"] = [_("Latest")] self.version_select.set(_("Latest")) else: tid = self.game_titleID.get() if tid != "" and len(tid) == 16: value = self.titleID.index(tid) print(tid) try: isDLC = False tid = self.titleID[value] updateTid = tid if tid.endswith('000'): updateTid = '%s800' % tid[:-3] elif tid.endswith('800'): baseTid = '%s000' % tid[:-3] updateTid = tid elif not tid.endswith('00'): isDLC = True update_list = [] for i in get_versions(updateTid): update_list.append(i) if isDLC: if update_list[0] != "0": update_list.insert(0, "0") if update_list[0] == 'none': update_list[0] = "0" print(update_list) update_list.insert(0, _("Latest")) self.version_select["values"] = update_list self.version_select.set(_("Latest")) except: print(_("Failed to get version")) else: print(_("No TitleID or TitleID not 16 characters!")) def get_update_lastestVer(self): if edgeToken == None: tid = self.game_titleID.get().lower() if tid in known_ver: ver = known_ver[tid] update_list = [] if ver == "none": update_list.append("none") else: ver = int(ver) while ver != 0: update_list.append(str(ver)) ver -= 65536 if not tid.endswith("00"): update_list.append("0") update_list = update_list[::-1] update_list.insert(0, _("Latest")) self.version_select["values"] = update_list self.version_select.set(update_list[-1]) else: print("Unable to get the latest version for this TID") ## update_list.insert(0, _("Latest")) self.version_select["values"] = [_("Latest")] self.version_select.set(_("Latest")) else: tid = self.game_titleID.get() if tid != "" and len(tid) == 16: value = self.titleID.index(tid) print(tid) try: isDLC = False tid = self.titleID[value] updateTid = tid if tid.endswith('000'): updateTid = '%s800' % tid[:-3] elif tid.endswith('800'): baseTid = '%s000' % tid[:-3] updateTid = tid elif not tid.endswith('00'): isDLC = True update_list = [] for i in get_versions(updateTid): update_list.append(i) if isDLC: if update_list[0] != "0": update_list.insert(0, "0") if update_list[0] == 'none': update_list[0] = "0" print(update_list) update_list.insert(0, _("Latest")) self.version_select["values"] = update_list self.version_select.set(update_list[-1]) except: print(_("Failed to get version")) else: print(_("No TitleID or TitleID not 16 characters!")) def shorten(self): global truncateName if truncateName == False: truncateName = True self.optionMenu.entryconfig(7, label= _("Disable Shorten Name")) elif truncateName == True: truncateName = False self.optionMenu.entryconfig(7, label= _("Enable Shorten Name")) updateJsonFile("Shorten", str(truncateName)) def tinfoil_change(self): global tinfoil if tinfoil == False: tinfoil = True self.optionMenu.entryconfig(8, label= _("Disable Tinfoil Download")) elif tinfoil == True: tinfoil = False self.optionMenu.entryconfig(8, label= _("Enable Tinfoil Download")) updateJsonFile("Tinfoil", str(tinfoil)) def window_info(self, window): x = window.winfo_x() y = window.winfo_y() w = window.winfo_width() h = window.winfo_height() size_pos = "{}x{}+{}+{}".format(w, h, x, y) return size_pos def window_save(self): if Toplevel.winfo_exists(self.root): updateJsonFile("Main_win", self.window_info(self.root)) try: if Toplevel.winfo_exists(self.queue_win): updateJsonFile("Queue_win", self.window_info(self.queue_win)) global queue_win queue_win = self.window_info(self.queue_win) except: pass try: if Toplevel.winfo_exists(self.update_window): updateJsonFile("Update_win", self.window_info(self.update_window)) global update_win update_win = self.window_info(self.update_window) except: pass try: if Toplevel.winfo_exists(self.my_game): updateJsonFile("Scan_win", self.window_info(self.my_game)) global scan_win scan_win = self.window_info(self.my_game) except: pass try: if Toplevel.winfo_exists(self.base_64): updateJsonFile("Base64_win", self.window_info(self.base_64)) global base64_win base64_win = self.window_info(self.base_64) except: pass self.messages("", _("Windows size and position saved!")) def my_game_GUI(self): global scan_win my_game = Toplevel(self.root) self.my_game = my_game my_game.title(_("Search for existing games")) my_game.geometry(scan_win) entry_w = 50 if sys_name == "Mac": entry_w = 32 dir_text = "" dir_entry = Entry(my_game, width=entry_w, text=dir_text) if self.game_location != "": dir_entry.delete(0, END) dir_entry.insert(0, self.game_location) self.dir_entry = dir_entry dir_entry.grid(row=0, column=0, padx=(10,0), pady=10) browse_btn = Button(my_game, text=_("Browse"), command=self.my_game_directory) browse_btn.grid(row=0, column=1, padx=10, pady=10) scan_btn = Button(my_game, text=_("Scan"), command=self.my_game_scan) scan_btn.grid(row=1, column=0, columnspan=2, sticky=N, padx=10) def my_game_directory(self): path = self.normalize_file_path(filedialog.askdirectory()) if path != "": self.game_location = path updateJsonFile("Game_location", str(self.game_location)) self.my_game.lift() self.my_game.update() self.dir_entry.delete(0, END) self.dir_entry.insert(0, path) def my_game_scan(self, a_dir=None, silent=False): import re if silent == True: a_dir = "_NSPOUT" if a_dir == None: a_dir = self.dir_entry.get() if a_dir == "": if not silent: self.messages(_("Error"), _("You didn't choose a directory!")) self.my_game.lift() elif not os.path.isdir(a_dir): if not silent: self.messages(_("Error"), _("The chosen directory doesn't exist!")) self.my_game.lift() else: game_list = [] for root, dirs, files in os.walk(a_dir): for basename in files: if basename.endswith(".nsp") or basename.endswith(".xci"): game_list.append(basename) if not os.path.isdir("Config"): os.mkdir("Config") tid_exist = [] # Tid that's already in the installed.txt ver_exist = [] if os.path.isfile(r"Config/installed.txt"): file = open(r"Config/installed.txt", "r") for game in file.readlines(): tid_exist.append("{}".format(game.split(",")[0].strip().lower())) ver_exist.append("{}".format(game.split(",")[1].strip().lower())) file.close() file = open(r"Config/installed.txt", "w") for game in game_list: title = re.search(r".*[0][0-9a-zA-Z]{15}.*", game) if title: try: tid_check = re.compile(r"[0][0-9a-zA-Z]{15}") tid_result = tid_check.findall(game)[0] tid_result = tid_result.lower() if tid_result.endswith("800"): tid_result = "{}000".format(tid_result[:13]) except: tid_result = "0" try: ver_check = re.compile(r"[v][0-9]+") ver_result = ver_check.findall(game)[0] ver_result = ver_result.split("v")[1] except: ver_result = "0" if tid_result != "0": if tid_result in tid_exist: # Check if the tid is already in installed.txt if int(ver_result) > int(ver_exist[tid_exist.index(tid_result)]): ver_exist[tid_exist.index(tid_result)] = ver_result else: tid_exist.append(tid_result.lower()) ver_exist.append(ver_result) for i in range(len(tid_exist)): file.write("{}, {}\n".format(tid_exist[i], ver_exist[i])) file.close() if not silent: self.update_list(rebuild=True, label=build_text) self.my_game.destroy() def base_64_GUI(self): global base64_win base_64 = Toplevel(self.root) self.base_64 = base_64 base_64.title(_("Base64 Decoder")) base_64.geometry(base64_win) entry_w = 50 if sys_name == "Mac": entry_w = 28 base_64_label = Label(base_64, text=_("Base64 text:")) base_64_label.grid(row=0, column=0) base_64_entry = Entry(base_64, width=entry_w) self.base_64_entry = base_64_entry base_64_entry.grid(row=0, column=1, padx=(10,0), pady=10) browse_btn = Button(base_64, text=_("Decode"), command=self.decode_64) browse_btn.grid(row=0, column=2, padx=10, pady=10) decoded_label = Label(base_64, text=_("Decoded text:")) decoded_label.grid(row=1, column=0) decoded_entry = Entry(base_64, width=entry_w) self.decoded_entry = decoded_entry decoded_entry.grid(row=1, column=1, padx=(10,0), pady=10) scan_btn = Button(base_64, text=_("Open"), command=self.base64_open) scan_btn.grid(row=1, column=2, sticky=N, padx=10, pady=10) def decode_64(self): base64_text = self.base_64_entry.get() self.decoded_entry.delete(0, END) self.decoded_entry.insert(0, base64.b64decode(base64_text)) def base64_open(self): url = self.decoded_entry.get() webbrowser.open(url, new=0, autoraise=True) def make_list(self): # Create list in advance self.full_list = self.current_status if current_mode_global == "CDNSP": self.no_demo_list = [] # No demo list for game in self.full_list: if not "demo" in game[2].strip().lower() and not "体験版" in game[2].strip().lower(): self.no_demo_list.append(game) self.no_jap_list = [] for game in self.full_list: try: game[2].strip().lower().encode(encoding='utf-8').decode('ascii') except UnicodeDecodeError: pass else: self.no_jap_list.append(game) self.no_demo_jap_list = [] for game in self.full_list: if not "demo" in game[2].strip().lower() and not "体験版" in game[2].strip().lower(): try: game[2].strip().lower().encode(encoding='utf-8').decode('ascii') except UnicodeDecodeError: pass else: self.no_demo_jap_list.append(game) elif current_mode_global == "Nut": self.no_demo_list = [] # No demo list for game in self.full_list: try: if self.info_list[int(game[0])-1][0] == "0": self.no_demo_list.append(game) except IndexError: pass self.no_jap_list = [] for game in self.full_list: try: if self.info_list[int(game[0])-1][1] != "JP": self.no_jap_list.append(game) except IndexError: pass self.no_demo_jap_list = [] for game in self.full_list: try: if self.info_list[int(game[0])-1][0] == "0": if self.info_list[int(game[0])-1][1] != "JP": self.no_demo_jap_list.append(game) except IndexError: pass def filter_game(self): demo_off = self.demo.get() no_jap = self.jap.get() if demo_off: updateJsonFile("No_demo", "True") else: updateJsonFile("No_demo", "False") if no_jap: updateJsonFile("No_japanese_games", "True") else: updateJsonFile("No_japanese_games", "False") if demo_off and no_jap: self.current_status = self.no_demo_jap_list elif demo_off: self.current_status = self.no_demo_list elif no_jap: self.current_status = self.no_jap_list else: self.current_status = self.full_list try: search_term = self.search_var.get() except: search_term = "" self.tree.delete(*self.tree.get_children()) for game_status in self.current_status: number = game_status[0].strip() tid = game_status[1].strip() game_name = game_status[2].strip() state = game_status[3].strip() release_date = game_status[4].strip() tree_row = (str(number).zfill(4), tid, game_name, state, release_date) if search_term.lower().strip() in game_name.lower() or search_term.lower().strip() in tid.lower(): self.tree.insert('', 'end', values=tree_row) # Reset the sorting back to default (descending) self.tree.heading("num", text="#", command=lambda c="num": self.sortby(self.tree, c, 1)) self.tree.heading("tid", text=_("TitleID"), command=lambda c="tid": self.sortby(self.tree, c, 1)) self.tree.heading("G", text=_("Game"), command=lambda c="G": self.sortby(self.tree, c, 1)) self.tree.heading("S", text=_("State"), command=lambda c="S": self.sortby(self.tree, c, 1)) def sysver_zero(self): global sysver0 if sysver0 == False: sysver0 = True self.optionMenu.entryconfig(9, label= _("Disable SysVer 0 Patch")) elif sysver0 == True: sysver0 = False self.optionMenu.entryconfig(9, label= _("Enable SysVer 0 Patch")) updateJsonFile("SysVerZero", str(sysver0)) ## def threaded_preload_desc(self): ## self.status_label.config(text=_("Status: Downloading all game descriptions")) ## ## global game_info_json ## for tid in self.titleID: ## if not tid.endswith("00"): ## tid = "{}".format(tid[0:12]) ## indices = [i for i, s in enumerate(self.titleID) if tid in s] ## if len(indices) >= 2: ## for t in indices: ## if self.titleID[t].endswith("000"): ## tid = self.titleID[t] ## break ## if tid not in game_info_json: ## if len(tid) == 16: ## print(tid) ## self.download_desc(tid, silent=True) ## ## print(_("Done preloading all game descriptions!")) ## thread = threading.Thread(target = lambda: self.done_status()) ## thread.start() ## ## def preload_desc(self): ## thread = threading.Thread(target = lambda: self.threaded_preload_desc()) ## thread.start() def credit_gui(self): credit_win = Toplevel(self.root) ## credit_win.geometry("600x500+100+100") self.credit_win = credit_win credit_win.title(_("Credits")) credit_text = """This GUI was originally a project started by Bob, and eventually grew thanks to the overwhelming support from the community! We now support 24 different languages! I would like to thank the following users for translating: German: Jojo#1234 Portuguese: KazumaKiryu#7300 Chinese Simplified: Dolur#7867 Chinese Traditional: Maruku#7128 CZech: -Spider86-#7530 Japanese: Jinoshi(ジノシ)#4416 Korean: RoutineFree#4012 Spanish: pordeciralgo#3603 French: cdndave#1833 Russian: JHI_UA#8876 Arabic: mk#6387 Turkish: arkham_knight#9797 Dutch: Soundwave#2606 Italian: Vinczenon#7788 Hebrew: dinoster#0218 Persian: SirArmazd#8283 Thai: Pacmasaurus#4158 Greek: ioann1s#3498 Indonesian: Damar#0799 Polish: szczuru#7105 Afrikaans: twitchRSA#5765 Vietnamese: gurucuku#4629 Hungarian: Quince#2831 Malaysian: fadzly#4390""" credit = Text(credit_win, wrap=WORD) credit.grid(row=0, column=0) credit.insert(INSERT, credit_text) scrollb = Scrollbar(credit_win, command=credit.yview) scrollb.grid(row=0, column=1, sticky='nsew') credit['yscrollcommand'] = scrollb.set def threaded_update_ver_list(self): self.status_label.config(text=_("Status: Updating version list...")) global known_ver known_ver = {} if not os.path.isfile("Config/Version_info.json"): print(_("\nCan't find {} file!\n").format("Version_info.json")) print(_("Attempting to download the Version_info.json file for you")) urllib.request.urlretrieve("https://raw.githubusercontent.com/Bob123a1/CDNSP-GUI-Files/master/Config/Version_info.json", "Config/Version_info.json") if os.path.isfile("Config/Version_info.json"): ver_file = open("Config/Version_info.json", "r", encoding="utf8") known_ver = json.load(ver_file) ver_file.close() installed = [] file_path = r"Config/installed.txt" if os.path.exists(file_path): file = open(file_path, "r") for line in file.readlines(): if line[-1] == "\n": line = line[:-1] installed.append(line.split(",")[0].strip()) file.close() print("\nUpdating version list...") for tid in installed: if tid.endswith("00"): updateTid = "{}800".format(tid[:13]) else: updateTid = tid latest_ver = str(get_versions(updateTid)[-1]) print("Tid: {}, latest version: {}".format(updateTid, latest_ver)) known_ver[tid] = latest_ver ver_file = open("Config/Version_info.json", "w", encoding="utf8") json.dump(known_ver, ver_file, indent=4) ver_file.close() else: print(_("Unable to find Version_info.json file inside your Config folder")) self.update_list(rebuild=True) def update_ver_list(self): thread = threading.Thread(target=self.threaded_update_ver_list) thread.start() def change_mode(self): if self.current_mode == "CDNSP": self.current_mode = "Nut" self.list_mode.config(text=_("CDNSP Mode").replace("\n", "")) elif self.current_mode == "Nut": self.current_mode = "CDNSP" self.list_mode.config(text=_("Nut Mode").replace("\n", "")) updateJsonFile("Mode", self.current_mode) self.current_mode_text.config(text=_("Current mode is: {}").format(self.current_mode)) self.root.destroy() main() # Thanks vertigo for your kindness to help me with the unlocking part of the GUI def unlock_nsx_gui_func(self): unlock_nsx_gui = Toplevel(self.root) self.unlock_nsx_gui = unlock_nsx_gui unlock_nsx_gui.title(_("Unlock NSX Files")) entry_w = 50 if sys_name == "Mac": entry_w = 32 dir_text = "" # Input (Entry) Bar 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) dir_entry = Entry(unlock_nsx_gui, width=entry_w, text=dir_text) self.dir_entry_nsx = dir_entry dir_entry.grid(row=1, column=0, padx=(10,0), pady=10) browse_btn = Button(unlock_nsx_gui, text=_("Browse"), command=self.unlock_nsx) browse_btn.grid(row=1, column=1, padx=10, pady=10) scan_btn = Button(unlock_nsx_gui, text=_("Unlock NSX"), command=self.unlock_nsx_scan) scan_btn.grid(row=2, column=0, columnspan=2, sticky=N, padx=10, pady=(0, 20)) def unlock_nsx(self): path = self.normalize_file_path(filedialog.askdirectory()) self.unlock_nsx_gui.lift() self.unlock_nsx_gui.update() self.dir_entry_nsx.delete(0, END) self.dir_entry_nsx.insert(0, path) def unlock_nsx_scan(self): import re a_dir = self.dir_entry_nsx.get() if a_dir == "": self.messages(_("Error"), _("You didn't choose a directory!")) self.unlock_nsx_gui.lift() elif not os.path.isdir(a_dir): self.messages(_("Error"), _("The chosen directory doesn't exist!")) self.unlock_nsx_gui.lift() else: game_list = [] for root, dirs, files in os.walk(a_dir): for basename in files: if basename.lower().endswith(".nsx"): game_list.append(os.path.join(root, basename)) print("\n\n") if len(game_list) != 0: # Temporary load the titlekeys.txt file to check if # we have the titlekey for the corresponding titleID temp_tid = [] temp_tkey = [] notified = False with open("titlekeys.txt", "r", encoding="utf-8") as file: for line in file.readlines(): line = line.strip() try: titleID, titleKey, title = line.split("|") except: if not notified: print(_("Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!")) notified = True if len(titleID) == 16 or len(titleID) == 32: if titleID != "": temp_tid.append(titleID[:16].lower()) temp_tkey.append(titleKey) unlocked_a_game = False # Check if a game has been unlocked for game in game_list: game_basename = os.path.basename(game) tid_result, ver_result = self.get_tid_get_ver(game_basename, ".nsx") if tid_result != "0": print() print(_("Attempting to unlock: {}").format(game_basename)) if tid_result in temp_tid: print(_("Found the titlekey for {}, unlocking the game now").format(game_basename)) tkey_block = self.find_tkey_block(game) if tkey_block != 0: self.write_tkey_block(game, tkey_block, temp_tkey[temp_tid.index(tid_result)]) print(_("Successfully unlocked {}").format(game_basename)) unlocked_a_game = True else: print(_("Unable to find the titlekey block")) else: print(_("Unable to find the titlekey for {}").format(game_basename)) if unlocked_a_game: self.messages("", _("Done unlocking nsx files")) else: self.messages("", _("Couldn't find nsx files that needs to be unlocked")) else: self.messages("", _("Couldn't find nsx files that needs to be unlocked")) self.unlock_nsx_gui.destroy() def get_tid_get_ver(self, game, extension='.nsp'): r_expression = r".*[0][0-9a-zA-Z]{15}.*[" + extension +"]" title = re.search(r_expression, game) if title: try: tid_check = re.compile(r"[0][0-9a-zA-Z]{15}") tid_result = tid_check.findall(game)[0] tid_result = tid_result.lower() if tid_result.endswith("800"): tid_result = "{}000".format(tid_result[:13]) except: tid_result = "0" try: ver_check = re.compile(r"[v][0-9]+") ver_result = ver_check.findall(game)[0] ver_result = ver_result.split("v")[1] except: ver_result = "0" return (tid_result, ver_result) return ("0", "0") def find_tkey_block(self, file): f = open(file, "rb") tkey_index = 0 # Find titlekey block location for chunk in iter(lambda: f.read(16), ""): start = time.time() if chunk == b'Root-CA00000003-': root_index = f.tell()-16 # Index of Root-CA00000003- tkey_index = root_index + 4*16 # Index of tkey block break ##D1D20486 21CDF338 37F1797E 217CD3B7 f.close() return tkey_index def write_tkey_block(self, file, tkey_block, title_key): f = open(file, "r+b") f.seek(tkey_block) f.write(uhx(title_key)) f.close() os.rename(file, file[:-3]+"nsp") def shutdown_set(self): if self.auto_shutdown == False: self.auto_shutdown = True self.toolMenu.entryconfig(5, label= _("Auto Shutdown: ON")) elif self.auto_shutdown == True: self.auto_shutdown = False self.toolMenu.entryconfig(5, label= _("Auto Shutdown: OFF")) def shutdown(self): if platform.system()=="Windows": os.system("shutdown -s -t 0") else: os.system("shutdown -h now") def threaded_download_all_games(self): self.messages("", _("Downloading all games")) for game in self.current_status: tid = game[1] self.download_option_B_U_D(tid) print("\n" + _("Finished downloading") + " " + tid) def download_all_games(self): thread = threading.Thread(target=self.threaded_download_all_games) thread.start() def download_option_B_U_D(self, tid): print(_("Downloading") + " " + tid) # Download Base Game base_tid = "{}000".format(tid[0:13]) tkey = self.titleKey[self.titleID.index(tid)] base_ver = get_versions(base_tid)[-1] download_game(base_tid, base_ver, tkey, nspRepack=self.repack, path_Dir=self.path) # Download Update updateTid = "{}800".format(tid[0:13]) ver = get_versions(updateTid)[-1] if ver == "none": ver = 0 if int(ver) > 0: download_game(updateTid, ver, tkey, nspRepack=self.repack, path_Dir=self.path) ## # Download DLC ## DLC_titleID = [] ## tid = "{}".format(tid[0:12]) ## indices = [i for i, s in enumerate(self.titleID) if tid in s] ## for index in indices: ## if not self.titleID[index].endswith("00"): ## DLC_titleID.append(self.titleID[index]) ## for DLC_ID in DLC_titleID: ## DLC_ver = get_versions(DLC_ID)[-1] ## download_game(DLC_ID, DLC_ver, self.titleKey[self.titleID.index(DLC_ID)], nspRepack=self.repack, path_Dir=self.path) def check_update(self): output_text = "" update = "" if not os.path.isfile("Config/version.txt"): file = open("Config/version.txt", "w") file.write("{}\n{}".format(__gui_version__, __lang_version__)) file.close() file = open("Config/version.txt", "r") ver_list = file.readlines() file.close() if len(ver_list) != 2: file = open("Config/version.txt", "w") file.write("{}\n{}".format(__gui_version__, __lang_version__)) file.close() file = open("Config/version.txt", "r") ver_list = file.readlines() file.close() gui_ver, lang_ver = ver_list gui_ver = __gui_version__ gui_ver = gui_ver.strip() lang_ver = lang_ver.strip() print("\n"+_("GUI Version: {}").format(__gui_version__)) print(_("Language Files Version: {}").format(lang_ver)) self.gui_ver = __gui_version__ self.lang_ver = lang_ver new_cdnsp_ver = requests.get("https://\ raw.githubusercontent.com/Bob123a1/\ CDNSP-GUI-Files/master/gui_version.txt".replace(" ", "")).text.replace("\n", "") new_lang_ver = requests.get("https://\ raw.githubusercontent.com/Bob123a1/\ CDNSP-GUI-Files/master/language_version.txt".replace(" ", "")).text.replace("\n", "") self.new_cdnsp_ver = new_cdnsp_ver self.new_lang_ver = new_lang_ver if StrV(new_cdnsp_ver) > StrV(gui_ver): output_text += "New GUI verison available" update = "G" # Indicates that the GUI has an update if StrV(new_lang_ver) > StrV(lang_ver): if output_text == "": output_text += "New language files available" update = "L" else: output_text = "New GUI version and language files available" update = "GL" if output_text == "": output_text = "No new updates" return update def download_update(self): gui_file, lang_file = requests.get("https://\ raw.githubusercontent.com/Bob123a1/\ CDNSP-GUI-Files/master/download_location.txt".replace(" ", "")).text.strip().split("\n") update_result = self.update_result updated = True if update_result == "GL": urllib.request.urlretrieve(gui_file, gui_file.split("/")[-1]) urllib.request.urlretrieve(lang_file, "lang.zip") self.messages("", _("New GUI version and Language Files downloaded!" + "\n" + _("Please restart your GUI"))) text = "{}\n{}".format(self.new_cdnsp_ver, self.new_lang_ver) elif update_result == "G": urllib.request.urlretrieve(gui_file, gui_file.split("/")[-1]) self.messages("", _("New GUI version downloaded!" + "\n" + "\n" + _("Please restart your GUI"))) text = "{}\n{}".format(self.new_cdnsp_ver, self.lang_ver) elif update_result == "L": urllib.request.urlretrieve(lang_file, "lang.zip") self.messages("", _("New Language Files downloaded!" + "\n" + _("Please restart your GUI"))) text = "{}\n{}".format(__gui_version__, self.new_lang_ver) else: updated = False if "L" in update_result: if os.path.isfile("lang.zip"): import zipfile zip_file = zipfile.ZipFile("lang.zip", "r") zip_file.extractall() zip_file.close() else: print(_("Couldn't find the download lang.zip file in your GUI folder")) if updated: file = open("Config/version.txt", "w") file.write(text) file.close() self.status_label.config(text=_("Status: Done!")) else: self.messages("", _("No new update available")) # ------------------------ # Main Section def find_index(header_list, text): if text in header_list: return header_list.index(text) else: print("Couldn't match the header text: {} in the header provided".format(text)) sys.exit() def read_installed(): if os.path.isfile("Config/installed.txt"): global installed_global installed_global = {} with open("Config/installed.txt", "r", encoding="utf-8") as file: for line in file.readlines(): tid = line.split(",")[0].strip() ver = line.split(",")[1].strip() if tid not in installed_global: installed_global[tid] = ver else: if ver > installed_global[tid]: installed_global[tid] = ver def read_titlekey_list(): titleID_list = [] titleKey_list = [] title_list = [] info_list = [] # Read titlekeys.txt file if current_mode_global == "CDNSP": f = open("titlekeys.txt", "r", encoding="utf8") content = f.readlines() notified = False for i in range(len(content)): titleID = "" try: titleID, titleKey, title = content[i].split("|") except: if not notified: print(_("Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!")) notified = True if len(titleID) == 16 or len(titleID) == 32: if titleID != "": titleID_list.append(titleID[:16].lower()) titleKey_list.append(titleKey) if title[:-1] == "\n": title_list.append(title[:-1]) else: title_list.append(title) f.close() elif current_mode_global == "Nut": unique_tid_list = [] info_list = [] f = open("Nut_titlekeys.txt", "r", encoding="utf8") content = f.readlines() found_line = False # Find the header info for line in content: if line[0] != "#" and line[:2] == "id": line = line.strip() found_line = True header_list = line.split("|") index_tid = find_index(header_list, "id") index_key = find_index(header_list, "key") index_title = find_index(header_list, "name") index_isDemo = find_index(header_list, "isDemo") index_region = find_index(header_list, "region") break if not found_line: print("\n"+"Error: Header is not found in the Nut_titlekeys.txt file, please double check you have the header") sys.exit() notified = False for i in range(len(content)): titleID = "" if content[i][0:2] == "01": try: content_row = content[i].split("|") except: if not notified: print(_("Check if there's extra spaces at the bottom of your Nut_titlekeys.txt file! Delete if you do!")) notified = True titleID = content_row[index_tid].lower() if len(titleID) == 32: titleID = titleID[:16] if len(titleID) == 16 or len(titleID) == 32: if titleID.endswith("800"): titleID = "{}000".format(titleID[:13]) if titleID not in unique_tid_list: unique_tid_list.append(titleID) if titleID != "": titleKey = content_row[index_key] if len(titleKey) == 32: title = content_row[index_title] isDemo = content_row[index_isDemo] if not titleID.endswith("00"): title = "[DLC] " + title if isDemo == "1": title += " Demo" titleID_list.append(titleID[:16].lower()) titleKey_list.append(titleKey) if title[:-1] == "\n": title_list.append(title[:-1]) else: title_list.append(title) region = content_row[index_region].strip() info_list.append((isDemo, region)) f.close() if os.path.isfile("titlekeys_overwrite.txt"): t_overwrite = open("titlekeys_overwrite.txt", "r", encoding="utf8") for line in t_overwrite.readlines(): line = line.strip() if "#" not in line and line != "": if line[-1] == "\n": line = line[:-1] item = line.split("|") if len(item) == 2: _tid = item[0][:16] _tkey = item[1][:32] _name = "Unknown Title" elif len(item) == 3: _tid = item[0][:16] _tkey = item[1][:32] _name = item[2] if len(_tid) == 16: _tid = _tid.lower() if len(_tkey) == 32: if _tid in titleID_list: titleKey_list[titleID_list.index(_tid)] = _tkey else: titleID_list.append(_tid) titleKey_list.append(_tkey) title_list.append(_name) return (titleID_list, titleKey_list, title_list, info_list) def main(): urllib3.disable_warnings() configPath = os.path.join(os.path.dirname(__file__), 'CDNSPconfig.json') global hactoolPath, keysPath, NXclientPath, ShopNPath, reg, fw, did, env, dbURL, nspout hactoolPath, keysPath, NXclientPath, ShopNPath, reg, fw, did, env, dbURL, nspout = load_config(configPath) global current_mode_global current_mode_global = get_current_mode() spam_spec = util.find_spec("tqdm") found = spam_spec is not None global tqdmProgBar if found: tqdmProgBar = True else: tqdmProgBar = False print('Install the tqdm library for better-looking progress bars! (pip install tqdm)') global keysArg if keysPath != '': keysArg = ' -k "%s"' % keysPath else: keysArg = '' # Create the list of TID, TKEY, and Game name to be passed to the Application class global titleID_list global titleKey_list global title_list global info_list titleID_list = [] titleKey_list = [] title_list = [] info_list = [] global edgeToken edgeToken = None if os.path.isfile("edge_token.txt"): with open("edge_token.txt", encoding="utf-8") as file: edgeToken = file.read() edgeToken = edgeToken.strip() if edgeToken == "": edgeToken = None print("\nToken: ", end="") print(edgeToken) root = Tk() root.title("CDNSP GUI - Bobv"+__gui_version__) Application(root, titleID_list, titleKey_list, title_list, dbURL, info_list=info_list) root.mainloop() if __name__ == '__main__': main() ================================================ FILE: LICENSE ================================================ GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . ================================================ FILE: README.md ================================================ # CDNSP GUI Bob Check [here](https://github.com/Bob123a1/CDNSP-GUI/releases) for the latest releases! People 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) ## Setup instructions * Download Python 3 (https://www.python.org/ftp/python/3.7.0/python-3.7.0.exe) (3.7 is the latest version) * Install Python 3, when installing make sure you ***tick "Add to Path"*** and ***untick install for "ALL USER"*** * Extract the folder in the zip file to your Desktop (or wherever you want) * Double click on "CDNSP-GUI-Bob-v4.1.1.py" and it should be opened in Python * The program will check for the required modules and start when done! * You can search for the game that you are looking for with the text box above the Game selection menu! ## Translation (Modifications) You 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! In 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! ## If you want to help me out! You 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! ## GUI screenshot: ![GUI screenshot](https://github.com/Bob123a1/CDNSP-GUI/raw/master/cdnsp_gui_bob_v6.0.2_ss.png) Here'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. ================================================ FILE: locales/af/LC_MESSAGES/language.po ================================================ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-08-01 00:27+1200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "Fout - Applikasie oop gemaak met Python2, installeer asablief Python3 en delete Python2" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr "Installeering fout {0}, maak die applikasie toe en jy kan die module jouself installeer deur die volgende te tik CMD: pip install {0}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr "Maak seeker alle benodigde modules is ingestalleer" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr "Alles lyk goed" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "Nie in staat om benodigde dokumente te kry nie! Maak seeker jy internet werk" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "Kyk of daar eksta spasies onder aan jou titlekeys.txt dokument is! Delete as daar is!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "Fout!, Verlore CDNSP-GUI-config.json dokument" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "Kies Download lokasie" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "Voorbelading Speletjie Beelde" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr "Laai Saved Queue" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "Save Queue" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "Aria2c sal gemis word" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "SIT AF SPIELETJIE BEELD" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "Sit Af Alle Pop-ups" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "Sit Af NSP Repack" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "Disable Titlekey check" msgstr "Sit Af Titlekey Kontroleer" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "Enable Shorten Name" msgstr "Sit Aan Korter Naam" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Enable Tinfoil Download" msgstr "Sit Aan Tinfoil Dowload" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "Enable SysVer 0 Patch" msgstr "Sit Aan SysVer 0 Patch" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "Save Windows Location and Size" msgstr "Save Venster Lokasie en Groote" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "Scan for existing games" msgstr "Soek bestaande spieletjies" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 Decoder" msgstr "Base64 Decoder" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "Download" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "Opsies" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "Gereedskap" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "Sit aan NSP Repack" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "Sit Aan alle Pop-ups" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr "Sit Aan Titlekey kontroleer" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "SIT AAN SPIELETJIE BEELD" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "Sit Aaf Korter Naam" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr "Sit Aff Tinfoil Download" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "Sit Aff SysVer 0 Patch" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr "Status:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "Spieletjie" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "Staat" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr "Spieletjie Beeld:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "Drik die boonste beeld \n" "om die spieletjie oop te maak in die eShop" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "Geen Demo" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "Titel ID:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "Titel Sleutle:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr "Kies nuudste weergawe:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr "Download opsies:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr "Base game + Opdateer + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "Base game + Opdateer" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "Opdateer + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "Slegs basiese spieletjie" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "Opdateer slegs" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "Alle DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "Sit by queue" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "Opdateer Titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "Queue Spyskaart" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "Sit Aff " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "Verwyder alles" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "Download alles" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "Kliek aflaai alles om alle speletjies in tou af te laai!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "Status: Kry spelstatus... Wag alablief" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Die huidige staat lêer bou... Wag asseblief, dit kan tyd duur, afhangende van hoeveel speletjies jy het." msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "Fout, Current_status.exe bestaan nie" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "Status: Kla!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr "" "\n" "\n" "\n" "Downloading spieletjie beeld..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "Fout" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr "Titlekey {} is nie 'n 32-digits heksadesimale nomer!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr "TitleID {} is nie 'n 16-digits heksadesimale nomer!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "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." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "Download kla!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "Geen opdaterings beskikbaar vir die spel nie" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "Geen opdaterings beskikbaar vir die spel nie, basis spel downloaded!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "" "\n" "Jy het nie 'n plek gekies om die lêer te stoor nie!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Persistent queue not found, skipping..." msgstr "Aanhoudende tou nie gevind nie, spring oor ..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "Item is nie in die tou gevind nie" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr "Naam vir titelID nie in die lys gevind nie" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "Geen spel gekies om te verwyder nie!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "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!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "Downloading spieletjies..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr "Geen opdaterings beskikbaar vir titelID: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr "Geen opdaterings beskikbaar vir titleID: (), basiese speletjie afgelaai!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "Download kla!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr "Download Kla!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "Status: Titels opdateer" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "Klaar werk!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr "Totale nuwe speletjies bygevoeg: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "Gesluit" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "Status: Voltooide opdatering, Daar was geen nuwe speletjies om op te dateer nie!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "Status: Voltooide opdatering, Daar was geen nuwe speletjies om op te dateer nie!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "Status: Afgewerkte update, databasis herbou van nuuts af" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr "Die databasis bediener {} kan af wees of nie beskikbaar wees nie" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" "\n" "{}\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr "Sit Aan TitelKey Kontroleer" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "Sit Aff TitelKey Kontroleer" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "Dit het {} sekondes geneem om al die beelde te kry!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "Klaar om al die speletjie beelde te kry!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "Kon nie weergawe kry nie" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr "Geen TitleID of TitleID nie 16 karakters!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "Windows grootte en posisie gestoor!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "Windows grootte en posisie gestoor!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "Snuffel" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "Skandering" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "Jy het nie 'n gids gekies nie!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "Die gekose gids bestaan nie!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "Voltooide skandering van jou speletjies!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "Status: Die huidige staatslêer bou ... Wag asseblief, dit kan tyd duur, afhangende van hoeveel speletjies jy het." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "Base64 teks:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "dekodeer" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "Dekodeer teks:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "Oop" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr "Spel Informasie:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr "Spel Prys:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description:" msgstr "Spel Beskrywing" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher:" msgstr "Uitgewer" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer" msgstr "Ontwikkelaar" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date:" msgstr "Datum van vrystelling:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category:" msgstr "Kategorie:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players:" msgstr "Aantal spelers:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "Spelinligting is nie beskikbaar vir hierdie speletjie nie!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "Informasie" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "Taal" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "Herbegin asseblief die GUI vir die nuwe taal om aansoek te doen!" msgid 'New' msgstr 'Nuwe' msgid 'Own' msgstr 'Eie' msgid 'Update' msgstr 'Opdateer' msgid 'Latest' msgstr 'Nuutste' msgid 'Update Version List' msgstr 'Update weergawe lys' msgid 'No Japanese Game' msgstr 'Geen Japannese Speletjie' ================================================ FILE: locales/ar/LC_MESSAGES/language.po ================================================ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-08-01 00:27+1200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "Python البرنامج بدأ مع النسخة 2، الرجاد تثبيت النسخة 3 وعدم حذف النسخة 2 من البرنامج" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr "خطأ في التثبيت! أغلق البرنامج وثبته يدويا عن طريق كتابة CMD: pip3 install {0} في cmd" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr " \n !التأكد من تثحيت جميع الوجدات المطلوبه" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr "يبدو كل شيء جيدا!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "غير قادر على الحصول على الملفات المطلوبة! الرجاء التأكد من شبكة الانترنت الخاصة بك" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "احذه إذا تواجد! titlekeys.txt تأكد إذا هناك مسافة موجودة بأسفل الملف " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "مفقود CDNSP-GUI-config.json خطأ! ملف " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "اختار موقع التنزيل" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "تثبيت صور الألعاب مسبقا" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr " تحميل الدور المخزن " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "حفظ الدور" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "Aria2c سنفقد " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "إلغاء صور اللعبة" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "تصميت كل النوافذ" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "NSP Repack تعطيل خاصية " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "Disable Titlekey check" msgstr "Titlekey تعطيل تفقد " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "Enable Shorten Name" msgstr "تعطيل تقصير الإسم" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Enable Tinfoil Download" msgstr "Tinfoil تفعيل التنزيل عن طريق " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "Enable SysVer 0 Patch" msgstr "SysVer 0 Patch تفعيل " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "Save Windows Location and Size" msgstr "حفظ مكان النافذة وحجمها" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "Scan for existing games" msgstr "البحث عن الألعاب الحالية" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 Decoder" msgstr "Base64 فك شفرة" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "تنزيل" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "خيارات" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "أدوات" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "NSP Repack تفعيل " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "فك تصميت كل النوافذ" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr "Titlekey تفعيل التأكد من " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "تفعيل صورة اللعبة" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "تعطيل تقصير الإسم" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr "Tinfoil تعطيل التنزيل عن طريق" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "SysVer 0 Patch تعطيل" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr ":الحالة" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "اللعبة" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "الحالة" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr "صورة اللعبة:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "اضغط على صورة اللعبة لفتح اللعبة على موقع المتجر!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "لا تتوفر نسخة تجريبية" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "Title ID:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "Title Key:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr "اختار نسخة التحديث:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr "خيارات التنزيل:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr "اللعبة+ التحديث+ المحتوى الإضافي " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "اللعبة+ التحديث" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "التحديث+ المحتوى الإضافي" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "اللعبة فقط" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "التحديث فقط" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "جميع المحتوى الإضافي" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "إضافة إلى الدور" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "Titlekeys تحديث" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "قائمة الأدوار" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "إزالة اللعبة المختارة" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "حذف الجميع" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "تنزيل الجميع" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "انقر لتنزيل جميع الألعاب في الدور!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "الحالة: جلب حالة اللعبة... الرجاء الانتظار" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "يتم بناء الملف... الرجاء الإنتظار، سيستغرق ذلك بعض الوقت على جسب الألعاب الموجودة لديك" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "Current_status.txt خطأ، الملف غير موجود" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "الحالة: تم الإنتهاء!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr "تنزيل صور الألعاب..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "خطأ" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr "لا توجد هوية العنوان أو هوية العنوان ليست بعدد 32 خانه!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr "لا توجد هوية العنوان أو هوية العنوان ليست بعدد 16 خانه!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "يتم التنزيل! سيستغرق ذلك بعض الوقت، الرجاء الإنتظار. يمكنك التأكد من حالة التنزيل في الصفحة الموجودة بالخلف" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "تم الإنتهاء من التنزيل!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "لا يتوفر تجديث لهذه اللعبة" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "لا يتوفر تحديث للعب، تم تنزيل اللعبة فقط!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "لم تختر مكان لحظ الملف!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Persistent queue not found, skipping..." msgstr "لا توجد قائمة دور دائمة ، تخطي" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "لا توجد المادة في الدور" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr "اسم هوية العوان غير موجودة في القائمة" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "لم تختر ألعاب لإزالتها!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "سيتم تنزيل جميع الألعاب الموجودة بالدور! سيتم تبليغك عند الإنتهاء، الرجاء الإنتظار" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "يتم تنزيل الألعاب..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr "{}لا يتوفر تجديث لهوية العنوان:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr "لا يوجد تجديث لهوية ال{}وان , تم تنزيل اللعبة فقط" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "!تم التنزيل" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr "!تم التنزيل" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "الحالة: تحديث هوية العناوين" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "تم التحديث!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr " {}عدد الألعاب الجديدة المضافه: " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "إغلاق" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "!الحالة: تم التجديث، لا توجد ألعاب جديدة للتحديث" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "!الحالة: تم التجديث، لا توجد ألعاب جديدة للتحديث" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "الحالة: تم الإنتهاء من التجديث، سيتم إعداد قائمة البيانات من الصفر" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr "قاغدة البيانات قد تكون غير متوفرة أو معطلة {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr "تفعيل التأكد من هوية العنوان" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "تعطيل التأكد من هوية العنوان" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "\n تم استغراق ثانية للحصول على صور الألعاب!{} " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "تم تنزيل جميع صور الألعاب" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "حصل خطأ في الحصول على النسخة" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr "لا توجد هوية العنوان أو هوية العنوان ليست بعدد 16 خانه!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "تم حفظ مكان وحجم النافذة!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "البحث عن الألعاب الموجودة" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "تصفح" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "فحص" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "لم تختر المكان الصحيح!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "المكان المختار غير موجود!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "تم الإنتهاء من البحث عن الألعاب المتوفره لديك!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "الحالي، قد يستغرق ذلك بعض الوقت على حسب كمية الألعاب الموجودة لديك state file الالحالة: يتم الآن بناء ال " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "Base64 نص" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "فك التشفير" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "النص الغير مشفر" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "فتح" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr "معلومات عن اللعبة" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr "سعر اللعبة" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description:" msgstr "وصف اللعبة" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher:" msgstr "الناشر" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer" msgstr "المطور" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date:" msgstr "تاريخ الإصدار" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category:" msgstr "التصنيف" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players:" msgstr "عدد اللاعبين" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "معلومات اللعبة غير متوفرة حاليا" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "عن البرنامج" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "اللغة" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "!الرجاء إعادة تشغيل البرنامج لتغيير اللغة" msgid 'New' msgstr 'جديد' msgid 'Own' msgstr 'منزلة' msgid 'Update' msgstr 'يوجد تحديث' msgid 'Latest' msgstr 'اخر تحديث' ================================================ FILE: locales/de/LC_MESSAGES/language.po ================================================ # REALLY DESCRIPTIVE TITLE. # Copyright (C) 2018 CDNSP GUI Translation Team # Jojo, 2018. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-08-01 00:27+1200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "" "\n" "\n" "Fehler - Anwendung wurde mit Python 2 gestartet, bitte installiere Python 3 und entferne Python 2\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr "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}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr "" "\n" "Prüfe ob alle erforderlichen Module installiert sind!\n" "\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr "Sieht alles in Ordnung aus!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "Die erforderlichen Dateien konnten nicht abgerufen werden! Bitte überprüfe die Internetverbindung!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "Bitte überprüfe ob am Ende der titlekeys.txt Datei zusätzliche Leerzeichen befinden, falls vorhanden lösche diese!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "Fehler, die Datei CDNSP-GUI-config.json existiert nicht!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "Speicherort auswählen" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "Spiel Abbilder vorladen" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr "Gespeicherte Warteschlange öffnen" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "Warteschlange speichern" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "Aria2c wird uns fehlen" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "SPIEL ABBILDER DEAKTIVIEREN" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "Alle Pop-ups stummschalten" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "NSP Neuverpacken deaktivieren" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "Disable Titlekey check" msgstr "Titlekey Überprüfung deaktivieren" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "Enable Shorten Name" msgstr "Verkürzte Namen aktivieren" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Enable Tinfoil Download" msgstr "Tinfoil Download aktivieren" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "Enable SysVer 0 Patch" msgstr "SysVer 0 Patch aktivieren" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "Save Windows Location and Size" msgstr "Fensterposition/-größen speichern" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "Scan for existing games" msgstr "Nach vorhandenen Spielen suchen" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 Decoder" msgstr "Base64 Dekodierer" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "Download" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "Optionen" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "Werkzeuge" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "NSP Neuverpacken aktivieren" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "Pop-ups Stummschaltung aufheben" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr "Titlekey Überprüfung aktivieren" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "SPIEL ABBILDER AKTIVIEREN" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "Verkürzte Dateinamen deaktivieren" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr "Tinfoil Download deaktivieren" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "SysVer 0 Patch deaktivieren" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr "Status:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "Spiel" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "Status" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr "Spiel Abbild:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "" "Klicke auf das Spiel Abbild oberhalb \n" "um das Spiel im eShop zu öffnen!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "Demos ausschließen" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "Titel ID:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "Titel Key:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr "Wähle eine Updateversion:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr "Download Optionen:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr "Basisspiel + Update + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "Basisspiel + Update" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "Update + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "Nur Basisspiel" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "Nur Update" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "Alle DLCs" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "Zur Warteschlange hinzufügen" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "Titlekeys aktualisieren" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "Warteschlange" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "Gewähltes Spiel löschen" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "Alles Löschen" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "Alles Herunterladen" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "Klicke auf Alles Herunterladen um alle Spiele in der Warteschlange herunterzuladen!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "Status: Spielstatus wird abgefragt... Bitte warten!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "" "\n" "Aktuelle Statusdatei wird erstellt... Bitte warten. Dies kann einige Zeit in Anspruch nehmen, abhängig davon wieviele Spiele in Besitz sind." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "Fehler, die Datei Current_status.txt existiert nicht!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "Status: Erledigt!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr "" "\n" "\n" "\n" "Spiel Abbild wird heruntergeladen..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "Fehler" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr "Titlekey {} ist keine 32-stellige Hexadezimalzahl!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr "TitleID {} ist keine 16-stellige Hexadezimalzahl!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "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." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "Download abgeschlossen!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "Keine Updates für das Spiel verfügbar." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "Keine Updates für das Spiel verfügbar, Basisspiel wurde heruntergeladen!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "" "\n" "Kein Speicherort zum Sichern der Datei gewählt!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Persistent queue not found, skipping..." msgstr "Keine gespeicherte Warteschlange gefunden, überspringe..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "Gegenstand in der Warteschlange nicht gefunden." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr "Der Name für die Titel ID wurde in der Liste nicht gefunden." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "Kein Spiel zum Löschen ausgewählt!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "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!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "Spiele werden heruntergeladen..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr "Keine Updates für die Titel ID {} verfügbar!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr "Keine Updates für die Titel ID {} verfügbar, Basisspiel heruntergeladen!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "Download abgeschlossen!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr "Download abgeschlossen!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "Status: Aktualisiere titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "Aktualisierung abgeschlossen!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr "Anzahl der neu hinzugefügten Spiele: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "Schließen" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "Status: Aktualisierung abgeschlossen, es wurden keine neuen Spiele hinzugefügt!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "" "\n" "Status: Aktualisierung abgeschlossen, es wurden keine neuen Spiele hinzugefügt!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "Status: Aktualisierung abgeschlossen, Datenbank wurde neu aufgebaut" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr "Der Datenbankserver {} ist möglicherweise außer Betrieb oder nicht verfügbar" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" "\n" "{}\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr "Titlekey Überprüfung aktivieren" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "Titlekey Überprüfung deaktivieren" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "" "\n" "Es wurden {} Sekunden benötigt um alle Bilder zu laden!\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "Alle Spiel Abbilder wurden geladen!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "Fehler beim Abrufen der Version!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr "Titel ID nicht vorhanden oder keine 16 Zeichen!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "Fensterposition/-größen gespeichert!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "Nach vorhandenen Spielen suchen" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "Durchsuchen" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "Suche starten" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "Kein Ordner ausgewählt!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "Der ausgewählte Ordner existiert nicht!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "Die Suche nach vorhandenen Spiele wurde abgeschlossen!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "Aktuelle Statusdatei wird erstellt... Bitte warten. Dies kann einige Zeit in Anspruch nehmen, abhängig davon wieviele Spiele in Besitz sind." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "Base64 Text:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "Dekodieren" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "Dekodierter Text:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "Öffne" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr "Spiel Info:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr "Spielpreis:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description:" msgstr "Spielbeschreibung:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher:" msgstr "Herausgeber:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer" msgstr "Entwickler" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date:" msgstr "Erscheinungsdatum:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category:" msgstr "Kategorie:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players:" msgstr "Anzahl der Spieler:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "Spielinformationen für dieses Spiel sind derzeit nicht verfügbar!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "Über" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "Credits" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "Sprache" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "Bitte starte die GUI neu um die neu gewählte Sprache anzuwenden!" msgid 'New' msgstr 'Neu' msgid 'Own' msgstr 'In Besitz' msgid 'Update' msgstr 'Veraltet' msgid 'Latest' msgstr 'Neueste' msgid 'Update Version List' msgstr 'Aktualisiere Versionsliste' msgid 'No Japanese Game' msgstr 'Keine japanischen Spiele' ================================================ FILE: locales/el/LC_MESSAGES/language.po ================================================ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-08-01 00:27+1200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: ioann1s \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "" "\n" "\n" "Σφάλμα - Η εφαρμογή ξεκίνησε με την έκδοση 2 της Python, παρακαλώ διαγράψτε την και στη συνέχεια προχωρήστε στην εγκατάσταση της έκδοσης 3\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr "Σφάλμα εγκατάστασης {0}, κλείστε την εφαρμογή και προχωρήστε στην χειροκίνητη εγκατάσταση πληκτρολογώντας pip3 install {0} σε CMD" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr "" "\n" "Έλέγχω ότι τα απαραίτητα modules έχουν εγκατασταθεί!\n" "\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr "Ολα καλά! Τέλεια! :)" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "Δεν μπόρω να κατεβάσω τα απαραίτητα αρχεία! Έλενξε τη σύνδεση σου" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "Έλενξε αν υπάρχουν κενά στο τέλος του αρχείου titlekeys.txt και διέγραψε τα!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "Σφάλμα! Απουσιάζει το αρχείο CDNSP-GUI-config.json" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "Επιλογή θέση αποθήκευσης" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "Προφόρτωση των εικόνων των παιχνιδιών" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr "Άνοιγμα της Αποθηκευμένης Ουράς" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "Αποθήκευση Ουράς" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "Το Aria2c θα μας λείψει" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "Απενεργοποίηση των εικόνων" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "Απενεργοποίηση των αναδυόμενων παραθύρων" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "Απενεργοποίηση της μετατροπής σε NSP" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "Disable Titlekey check" msgstr "Απενεργοποίηση του ελέγχου για το Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "Enable Shorten Name" msgstr "Ενεργοποίηση μικρότερου ονόματος" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Enable Tinfoil Download" msgstr "Ενεργοποίηση λήψης συμβατής με Tinfoil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "Enable SysVer 0 Patch" msgstr "Ενεργοποίηση SysVer 0 Patch" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "Save Windows Location and Size" msgstr "Αποθήκευση θέσης και μεγέθους παραθύρων" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "Scan for existing games" msgstr "Έλεγχος για υπάρχοντα παιχνίδια" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 Decoder" msgstr "Base64 Αποκωδικοποιητής" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "Λήψη" msgid "Download_bottom" msgstr "Λήψη" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "Επιλογές" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "Εργαλεία" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "Ενεργοποίηση της μετατροπής σε NSP" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "Ενεργοποίηση των αναδυόμενων παραθύρων" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr "Ενεργοποίηση του ελέγχου για το Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "Ενεργοποίηση GAME IMAGE" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "Απενεργοποίηση μικρότερου ονόματος" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr "Απενεργοποίηση λήψης συμβατής με Tinfoil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr "Απενεργοποίηση του SysVer 0 Patch" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "Τίτλος" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "Κατάσταση" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr "Εικόνα παιχνιδιού" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "" "Με αρίστερο κλικ πάνω στην εικόνα \n" "ανοίγει η περιγραφή του τίλου στο eShop!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "Χωρις Demo" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "ID Τίτλου:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "Κλειδί Τίτλου:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr "Επιλογή έκδοσης αναβάθμισης" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr "Επιλογές Λήψης:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr "Παιχνίδι (B) + Ενημερώσεις (U) + DLC (D)" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "Παιχνίδι (B) + Ενημερώσεις (U)" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "Ενημερώσεις (U) + DLC (D)" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "Παιχνίδι μόνο (B)" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "Ενημερώσεις μόνο (U)" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "Όλα τα DLC (D)" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "Προσθήκη στην ουρά" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "Ενημέρωση των Titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "Μενού ουράς" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "Αφαίρεση του επιλεγμένου τίτλου" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "Αφαίρεση όλων" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "Λήψη Όλων" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "Επιλογή του Λήψη Όλων για να το κατέβασμα όλλων των αντικειμένων της ουράς" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "Κατασταση:ʽΛήψη κατάστασης τίτλου... Παρακαλώ περιμένετε" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "" "\n" "Δημιουργία αρχείου τρέχουσας κατάστασης... Παρακαλώ περιμένετε, χρειάζεται περισσσότερος χρόνος για κάθε παιχνίδι που υπάρχει στο φάκελο." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "Σφάλμα, το αρχείο Current_status.txt δεν εντοπίστηκε" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "Κατάσταση: Έτοιμο!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr "" "\n" "\n" "\n" "Λήψη εικόνας παιχνιδιού..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "Σφάλμα" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr "Titlekey {} δεν είναι δεκαεξαδικός αριθμός 32 χαρακτήρων!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr "TitleID {} δεν είναι δεκαεξαδικός αριθμός 16 χαρακτήρων!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "Αρχίζω το κατέβασμα! Άραξε γιατί Θα πάρει λίγο χρόνο. Μπορείς να κοιτάς το CMD (γραμμή εντολών) που είναι ανοικτό για την πρόοδο των λήψεων σου." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "Οι Λήψεις ολοκληρώθηκαν" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "Δεν υπάρχουν ενημερώσεις για τον τίτλο αυτό" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "Δεν υπάρχουν ενημερώσεις για τον τίτλο αυτό, η λήψη του παιχνιδιού ολοκληρώθηκε!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "" "\n" "Δεν επέλεξες θέση αποθήκευσης για το αρχείο!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Persistent queue not found, skipping..." msgstr "Δεν εντοπίστηκε Μόνιμη Ουρά, παράβλεψη..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "Το αντικείμενο δεν εντοπίστηκε στην ουρά" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr "Το όνομα του titleID δεν βρέθηκε στη λίστα" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "Δεν επιλέχθηκε τίτλος για αφαίρεση!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "Θα ξεκινήσει η Λήψη για ό,τι έχεις στην ουρά! Θα ενημερωθείς όταν όλα ολοκληρωθούν, κάνε υπομονή!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "Λήψη παιχνιδιών..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr "Δεν υπάρχουν Ενημερώσεις για τον titleID: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr "Δεν υπάρχουν Ενημερώσεις για τον titleID: {}, η λήψη του παιχνιδιού ολοκληρώθηκε!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "Ολοκλήρωση Λήψεων" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr "Ολοκλήρωση Λήψεων" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "Κατάσταση: Ενημέρωση αρχείου titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "Ολοκλήρωση Ενημέρωσης!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr "Σύνολο νέων τίτλων που προστέθηκαν: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "Κλείσιμο" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "Κατάσταση: Ολοκλήρωση ενημέρωσης, δεν υπάρχουν νέοι τίτλοι για ενημέρωση!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "" "\n" "Κατάσταση: Ολοκλήρωση ενημέρωσης, δεν υπάρχουν νέοι τίτλοι για ενημέρωση!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "Κατάσταση: Ολοκλήρωση ενημέρωσης, η Βάση δημιουργήθηκε από την αρχή" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr "Ο σερβερ της Βάσης {} μπορεί να είναι κάτω ή μη διαθέσιμος" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" "\n" "{}\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr "Ενεργοποίηση Ελέγχου του Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "Απενεργοποίηση Ελέγχου του Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "" "\n" "Χρειάστηκαν {} για την λήψη όλων των εικόνων!\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "Ολοκλήρωση της λήψης των εικόνων για τους τίτλους" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "Αποτυχία λήψης της έκδοσης" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr "Χωρις TitleID ή το TitleID δεν έχει 16 χαρακτήρες!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "Μέγεθος και θέση παραθύρων αποθηκεύτηκε!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "Αναζήτηση υπάρχοντων τίτλων" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "Επιλογή φακέλου" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "Διερεύνηνση" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "Δεν επέλεξες φάκελο!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "Ο επιλεγμένος φάκελος δεν υπάρχει!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "Ολοκλήρωση διερεύνηνσης των τίτλων σου!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "Κατάσταση: Δημιουργία αρχείου τρέχουσας κατάστασης... Παρακαλώ περιμένετε, χρειάζεται περισσσότερος χρόνος για κάθε παιχνίδι που υπάρχει στο φάκελο." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "Κέιμενο Base64:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "Αποκωδικοποίηση" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "Αποκωδικοποιημένο κείμενο:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "ʼνοιγμα" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr "Πληροφορίες Τίτλου:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr "Κόστος Τίτλου:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description:" msgstr "Περιγραφή Τίτλου" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher:" msgstr "Εκδότης:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer" msgstr "Προγραματιστής" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date:" msgstr "Ημερομηνία κυκλοφορίας" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category:" msgstr "Κατηγορία:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players:" msgstr "Αριθμός παικτών:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "Οι πληροφορίες για τον τίτλο αυτό δεν είναι διαθέσιμες αυτή τη στιγμή!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "Περί" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "Ειδική Μνεία" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "Γλώσσα" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "Παρακαλω κάντε επανεκκινηση της εφαρμογής για να φορτωθεί η επιλεγμένη γλώσσα!" msgid 'New' msgstr 'Νέο' msgid 'Own' msgstr 'Το έχω ήδη' msgid 'Update' msgstr 'Υπάρχει Ενημέρωση' msgid 'Latest' msgstr 'τρέχουσα' ================================================ FILE: locales/en/LC_MESSAGES/language.po ================================================ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-08-01 00:27+1200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "Disable Titlekey check" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "Enable Shorten Name" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Enable Tinfoil Download" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "Enable SysVer 0 Patch" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "Save Windows Location and Size" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "Scan for existing games" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 Decoder" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "" msgid "Download_bottom" msgstr "Download" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Persistent queue not found, skipping..." msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description:" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher:" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date:" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category:" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players:" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "" ================================================ FILE: locales/es/LC_MESSAGES/language.po ================================================ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-08-01 00:27+1200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "" "\n" "\n" "Error - La aplicación se ha lanzado con Python 2. Por favor, instala Python 3 y borra Python 2.\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr "Error al instalar {0}. Cierra la aplicación e instala el módulo manualmente escribiendo en CMD: pip3 install {0}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr "" "\n" "Comprobando si todos los módulos necesarios están instalados\n" "\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr "¡Todo en orden!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "Error al descargar los ficheros necesarios. Comprueba tu conexión a Internet." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "Comprueba si hay algún espacio en blanco al final del fichero titlekeys.txt. ¡Bórralos si encuentras alguno!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "Error - Falta el fichero CDNSP-GUI-config.json" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "Carpeta de descargas" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "Precargar imágenes" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr "Recuperar cola de descargas" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "Guardar cola de descargas" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "Aria2c está deshabilitado" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "Desactivar imágenes" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "Desactivar pop-ups" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "Desactivar empaquetado NSP" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "Disable Titlekey check" msgstr "Desactivar comprobación de Title Keys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "Enable Shorten Name" msgstr "Activar nombres cortos" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Enable Tinfoil Download" msgstr "Activar formato Tinfoil [tf]" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "Enable SysVer 0 Patch" msgstr "Activar SysVer 0 Patch" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "Save Windows Location and Size" msgstr "Guardar posición y tamaño de la ventana" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "Scan for existing games" msgstr "Buscar juegos ya descargados" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 Decoder" msgstr "Descodificar Base64" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "Descargas" msgid "Download_bottom" msgstr "Descargar" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "Opciones" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "Herramientas" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "Activar empaquetado NSP" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "Activar pop-ups" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr "Activar comprobación de Titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "Activar imágenes" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "Desactivar nombres cortos" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr "Desactivar formato Tinfoil [tf]" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "Desactivar SysVer 0 Patch" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr "Estado:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "Juego" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "Estado" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr "Imagen de portada" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "" "Haz click en la imagen superior\n" "para abrir el juego en la eShop" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "Excluir demos" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "Title ID" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "Title Key" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr "Versión de la actualización" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr "Opciones de descarga:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr "Juego + Actualización + DLCs" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "Juego + Actualización" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "Actualización + DLCs" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "Solo juego" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "Solo actualización" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "Todos los DLCs" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "Añadir a cola de descargas" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "Actualizar Title Keys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "Cola de descargas" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "Eliminar título seleccionado" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "Eliminar todo" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "Descargar todo" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "Haz click en _Descargar todo_ para comenzar la descarga" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "Estado: Analizando juegos descargados... Espera, por favor." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "" "\n" "Actualizando biblioteca... Puede tardar, dependiendo del número de juegos que tengas. Espera, por favor." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "Error - El fichero Current_status.txt no existe." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "Estado: ¡Completado!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr "" "\n" "\n" "\n" "Descargando imagen..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "Error" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr "¡La Title Key {} no es un número hexadecimal de 32 dígitos!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr "¡La Title Key {} no es un número hexadecimal de 16 dígitos!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "La descarga ha comenzado. Puede tardar un poco, ten paciencia. Puedes ver el progreso de la descarga en la ventana del sistema (CMD)." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "¡Descarga finalizada!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "No hay actualizaciones para el juego." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "Juego descargado correctamente. No hay actualizaciones." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "" "\n" "Debes especificar la carpeta de descargas." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Persistent queue not found, skipping..." msgstr "No se ha encontrado cola de descargas, saltando..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "Elemento no encontrado en la cola de descargas." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr "El nombre asociado al Title ID no se encuentra en la lista." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "No se ha seleccionado ningún título para eliminar." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "La descarga va a comenzar. Te avisaremos cuando todas las descargas hayan sido completadas. Por favor, espera y sé paciente :)" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "Descargando títulos..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr "No hay actualizaciones para el Title ID {}." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr "Juego descargado correctamente. No hay actualizaciones para el Title ID {}." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "¡Descarga finalizada!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr "¡Descarga finalizada!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "Estado: Actualizando Title Keys." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "¡Actualización finalizada!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr "Nuevos títulos añadidos: {}." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "Cerrar" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "Estado: Actualización finalizada. ¡No había nuevos juegos para actualizar!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "" "\n" "Estado: Actualización finalizada. ¡No había nuevos juegos para actualizar!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "Estado: Actualización finalizada. Base de datos reconstruida." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr "El servidor de base de datos {} no está disponible." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" "\n" "{}\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr "Activar comprobación de Title Keys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "Desactivar comprobación de Title Keys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "" "\n" "Se han descargado todas las imágenes en {} segundos\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "Se han descargado todas las imágenes." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "No se ha podido identificar la versión" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr "No se ha encontrado Title ID o no tiene 16 caracteres." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "Posición y tamaño de la ventana guardados con éxito." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "Buscar juegos ya descargados" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "Explorar" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "Buscar" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "Debes seleccionar una carpeta" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "La carpeta seleccionada no existe." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "La búsqueda de de juegos ha finalizado." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "Estado: Actualizando biblioteca... Puede tardar, dependiendo del número de juegos que tengas. Espera, por favor." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "Texto en Base64" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "Descodificar" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "Texto descodificado:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "Abrir" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr "Información del juego:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr "Precio:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description:" msgstr "Descripción:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher:" msgstr "Editado por:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer" msgstr "Desarrollado por:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date:" msgstr "Fecha de lanzamiento:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category:" msgstr "Categoría:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players:" msgstr "Número de jugadores:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "La información del juego no se encuentra disponible en este momento." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "Acerca de..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "Créditos" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "Idioma" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "Por favor, reinicia el GUI para activar el nuevo idioma." msgid 'New' msgstr 'Nuevo' msgid 'Own' msgstr 'Descargado' msgid 'Update' msgstr 'Nueva actualización' msgid 'Latest' msgstr 'Última disponible' msgid 'Update Version List' msgstr "Actualizar versiones" msgid "No Japanese Game" msgstr "Excluir JP" ================================================ FILE: locales/fa/LC_MESSAGES/language.po ================================================ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-08-01 00:27+1200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "طرا نصب کنید Pyhton 3 را پاک کرده و Python 2 اجرا شده است ، لطفا Python 2 خطا - برنامه با\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr " ماژول را به صورت دستی نصب کنید CMD در pip3 install {0} خطا در نصب {0} ،برنامه را ببندید و با استفاده از کد " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr "بررسی کنید که تمام ماژول های مورد نیاز نصب شده باشد\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr "همه چیز خوب است" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "امکان دریافت فایل های مورد نظر وجود ندارد! لطفا اتصال اینترنت را بررسی کنید" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "فاصله اضافه وجود نداشته باشد ، در صورت وجود فاصله ها را پاک کنید Titlekeys.txt بررسی کنید در آخر فایل" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "یافت نشد CDNSP-GUI-config.json خطا ، فایل" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "مکان ذخیره دانلود ها را انتخاب کنید" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "دریافت عکس بازی" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr "بازیابی صف دانلود ذخیره شده" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "ذخیره صف دانلود" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "Aria2c پیدا نخواهد شد" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "غیر فعال کردن عکس بازی ها" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "غیر فعال کردن تمام پاپ آپ ها" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "NSP Repack غیر فعال کردن " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "Disable Titlekey check" msgstr "Titlekey غیر فعال کردن ، چک " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "Enable Shorten Name" msgstr "فعال سازی نام کوتاه" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Enable Tinfoil Download" msgstr "Tinfoil فعال سازی دانلود" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "Enable SysVer 0 Patch" msgstr "SysVer 0 فعال سازی پچ " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "Save Windows Location and Size" msgstr "ذخیره مکان و اندازه پنجره " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "Scan for existing games" msgstr "اسکن بازی های دانلود شده" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 Decoder" msgstr "Base64 Decoder" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "دانلود" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "تنضیمات" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "ابزار" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "NSP Repack فعال سازی " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "فعال سازی تمامی پاپ آپ ها" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr " Titlekey فعال سازی چک" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "فعال سازی عکس بازی ها" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "غیر فعال کردن نام کوتاه" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr " Tinfoil غیر فعال کردن دانلود" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "SysVer 0 غیر فعال کردن پچ " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr "وضعیت : " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "بازی" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "حالت" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr "عکس بازی" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "روی عکس کلیک کنید eShop برای باز شدن صفحه" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "به غیر از دمو ها" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "Title ID:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "Title Key:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr "ورژن آپدیت را انتخاب کنید" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr "گزینه های دانلود" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr " DLC + بازی اصلی + آپدیت " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "بازی اصلی + آپدیت" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "آپدیت + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "فقط بازی اصلی (بدون آپدیت)" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "فقط آپدیت" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "ها DLC تمام " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "اضافه کردن به صف دانلود" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "Titlekeys آپدیت " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "صف دانلود" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "حذف بازی های انتخابی از صف" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "خدف تمامی بازی ها از صف" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "دانلود تمام بازی ها" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "برای دانلود تمام بازی های صف ، روی دانلود تمام بازی ها کلیک کنید" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "وضعیت : درحال دریافت وضعیت بازی ... لطفا صبر کنید" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "در حال ساخت فایل حالت فعلی بازی ها ... لطفا صبر کنید، بسته به تعداد بازی های دانلود شده ، این حالت زمان بر است" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "خطا ، فایل Current_status.txt وجود ندارد" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "وضعیت : کامل شد" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr "در حال دریافت عکس بازی" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "خطا" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr " یک عدد 32 رقمی هگزادسیمال نیست Titlekey {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr " یک عدد 16 رقمی هگزادسیمال نیست TitleID {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "مراجعه کنید CMD در حال دانلود ، دانلوذ زمان بر خواهد بود، لطفا شکیبا باشید ، برای بررسی وضعیت دانلود لطفا به صفحه" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "دانلود کامل شد!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "هیج آپدیتی برای بازی عرضه نشده" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "هیچ آپدیتی برای بازی عرضه نشده ، بازی اصلی دانلود شد!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "مکانی برای ذخیره فایل انتخاب نکردید!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Persistent queue not found, skipping..." msgstr "...صف مداوم پیدا نشد،" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "آیتم در صف پیدا نشد" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr " موردنظر نامی پیدا نشد titleID برای" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "بازی برای حذف پیدا نشده" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "دانلود تمام بازی های صف شروع شد، زمانی که دانلود تمام شد به شما اطلاع رسانی خواهد شد،لطفا شکیبا باشید" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "...درحال دانلود بازی ها" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr " یافت نشد titleID {} هیچ آپدیتی برای" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr " یافت نشد titleID {} هیچ آپدیتی برای" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "دانلود کامل شد!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr " دانلود کامل شد!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "titlekeys وضعیت : بروز رسانی " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "بروز رسانی کامل شد" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr " بازی جدید اضافه شد{}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "بستن" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "وضعیت : بروز رسانی پایان یافت ، بازی جدید برای اضافه کردن پیدا نشد" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "وضعیت : بروز رسانی پایان یافت ، بازی جدید برای اضافه کردن پیدا نشد" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "وضعیت : آپدیت کامل شد ، داده ها از ابتدا باز سازی شدند" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr " سرور داده های {} در دسترس نمی باشد" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr " Titlekey فعال سازی چک " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "Titlekey غیر فعال سازی چک " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "دریافت تمام عکس ها {} ثانیه زمان بر بود" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "دریافت عکس تمام بازی ها با پایان رسید" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "خطا در دریافت ورژن " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr " یافت نشد یا 16 حرف نیست TitleID" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "اندازه و مکان پنجره ذخیره شد!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "جستجو برای بازی های دانلود شده" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "باز کردن" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "اسکن کردن" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "شما هیچ پوشه ای را انتخاب نکردید" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "پوشه انتخاب شده وجود ندارد!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "اسکن بازی ها کامل شد!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "وضعیت : در حال ساخت فایل وضعیت فعلی ... لطفا صبر کنید ، بسته به تعداد بازی های دانلود شده این پروسه زمان بر خواهد بود" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "Base64 text" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "دیکود" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "متن دیکود : " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "باز کردن" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr "اطلاعات بازی" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr "قیمت بازی :" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description:" msgstr "توضیحات بازی :" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher:" msgstr "ناشر :" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer" msgstr "سازنده :" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date:" msgstr "تاریح عرضه :" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category:" msgstr "ژانر :" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players:" msgstr "تعداد بازیکن : " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "درحال حاضر اطلاعات بازی موجود نمی باشد !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "درباره" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "دست اندرکاران" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "زبان" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "لطفا برای فعال سازی زبان جدید برنامه را ببنید و دوباره باز کنید" msgid 'New' msgstr 'بازی جدی' msgid 'Own' msgstr 'دانلود شده' msgid 'Update' msgstr 'آپدیت جدید موجود است' msgid 'Latest' msgstr 'دریافت آخرین ورژن' ================================================ FILE: locales/fr/LC_MESSAGES/language.po ================================================ # French language file for CDNSP Gui by Bob. # Copyright (C) 2018 Bob # cdndave, etraga, 2018. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-08-01 00:27+1200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "Erreur - L'application a été lancée avec Python 2, veuillez installer Python 3 et supprimer Python 2\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr "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}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr "Vérification de la présence de tous les modules requis... \n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr "Tout semble correct !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "Impossible d'obtenir les fichiers requis ! Vérifiez votre connexion Internet." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "Vérifiez s'il n'y a pas d'espace supplémentaire à la fin de votre fichier titlekeys.txt ! Si oui, supprimez-les !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "Erreur, le fichier CDNSP-GUI-config.json est introuvable" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "Dossier de destination des téléchargements" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "Précharger les images de jeux" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr "Charger une file d'attente" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "Sauvegarder la file d'attente" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "Aria2c est nécessaire" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "Désactiver les images de jeu" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "Désactiver les pop-ups" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "Désactiver le repack de NSP" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "Disable Titlekey check" msgstr "Désactiver la vérification de clé de titre" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "Enable Shorten Name" msgstr "Activer les noms courts" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Enable Tinfoil Download" msgstr "Activer le téléchargement Tinfoil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "Enable SysVer 0 Patch" msgstr "Activer le patch SysVer 0" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "Save Windows Location and Size" msgstr "Enregistrer l'emplacement et la taille des fenêtres" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "Scan for existing games" msgstr "Scanner les jeux existants" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 Decoder" msgstr "Décodeur Base64" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "Téléchargement" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "Options" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "Outils" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "Activer le repack de NSP" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "Activer les pop-ups" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr "Activer la vérification de clé de titre" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "Activer les images des jeux" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "Désactiver les noms courts" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr "Désactiver le téléchargement Tinfoil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "Désactiver le patch SysVer 0" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr "Statut :" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "Jeu" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "État" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr "Image du jeu :" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "" "Cliquez sur l'image du jeu \n" "pour ouvrir le jeu dans l'eShop" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "Ignorer les démos" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "ID du titre :" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "Clé du titre :" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr "Sélectionnez la version de mise à jour :" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr "Options de téléchargement :" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr "Jeu de base + Mise à jour + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "Jeu de base + Mise à jour" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "Mise à jour + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "Jeu de base seulement" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "Mise à jour seulement" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "Tous les DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "Ajouter à la file d'attente" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "Mettre à jour les clés de titre" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "Menu de file d'attente" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "Supprimer le jeu sélectionné" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "Tout supprimer" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "Tout Télécharger" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "Cliquez sur télécharger tout pour télécharger tous les jeux de la file d'attente !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "Statut : récupération du statut des jeux, veuillez patienter..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "" "\n" "Statut : création du fichier d'état actuel, veuillez patienter, cela peut prendre du temps selon votre nombre de jeux..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "Erreur, le fichier Current_status.txt n'existe pas" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "Statut : terminé !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr "" "\n" "\n" "\n" "Téléchargement de l'image du jeu..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "Erreur" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr "La clé du titre {} n'est pas un nombre hexadécimal à 32 chiffres !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr "L'ID du titre {} ​​n'est pas un nombre hexadécimal à 16 chiffres !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "" "Téléchargement en cours, cela prendra un peu de temps.\n "Vous pouvez consulter l'invite de commande lancé en arrière pour voir la progression de votre téléchargement." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "Téléchargement terminé !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "Aucune mise à jour disponible pour le jeu" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "Aucune mise à jour disponible pour le jeu, jeu de base téléchargé !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "" "\n" "Vous n'avez pas choisi d'emplacement pour enregistrer le fichier !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Persistent queue not found, skipping..." msgstr "File d'attente persistante introuvable, ignoré..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "Élément introuvable dans la file d'attente" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr "Nom pour l'ID de titre introuvable dans la liste" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "Aucun jeu à supprimer sélectionné !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "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 !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "Téléchargement des jeux..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr "Aucune mise à jour disponible pour l'ID de titre {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr "Aucune mise à jour disponible pour l'ID de titre {}, jeu de base téléchargé !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "Téléchargement terminé !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr "Téléchargement Terminé !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "Statut : mise à jour des clés de titre..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "Mise à jour terminée !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr "{} nouveau(x) jeu(x) ajouté(s)" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "Fermer" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "Statut : mise à jour terminée, aucun nouveau jeu à mettre à jour !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "" "\n" "Statut : mise à jour terminée, aucun nouveau jeu à mettre à jour !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "Statut : mise à jour terminée, base de données reconstruite à partir de zéro" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr "Le serveur de base de données {} est peut-être en panne ou indisponible" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" "\n" "{}\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr "Activer la vérification de clé de titre" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "Désactiver la vérification de clé de titre" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "" "\n" "Il a fallu {} secondes pour récupérer toutes les images !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "Toutes les images de jeux ont été telechargées !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "Impossible d'obtenir la version" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr "Aucun ID de titre ou l'ID de titre ne fait pas 16 caractères !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "Taille et position des fenêtres enregistrées" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "Scanner les jeux existants" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "Naviguer" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "Scan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "Vous n'avez pas choisi de répertoire !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "Le répertoire choisi n'existe pas !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "Le balayage de vos jeux est terminé !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "Statut : création du fichier d'état actuel, veuillez patienter, cela peut prendre du temps selon votre nombre de jeux..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "Texte en base64 :" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "Décoder" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "Texte décodé :" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "Ouvrir" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr "Informations sur le jeu :" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr "Prix :" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description" msgstr "Description du jeu" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher" msgstr "Éditeur" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer" msgstr "Développeur" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date" msgstr "Date de sortie" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category" msgstr "Catégorie" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players" msgstr "Nombre de joueurs" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "Informations de ce jeu non disponible pour le moment!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "À propos" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "Crédits" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "Langage" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "Veuillez redémarrer l'interface graphique pour appliquer la nouvelle langue !" msgid "Update Version List" msgstr "Mettre à jour la liste des versions" msgid "Status: Updating version list..." msgstr "Statut : mise à jour de la liste des versions..." msgid "\nGame Description" msgstr "\nDescription du jeu" msgid "Rating" msgstr "Classification" msgid "Game Size" msgstr "Taille du jeu" msgid "Unable to get game size" msgstr "Impossible de récupérer la taille du jeu" msgid "\n\n\nDownloading game info..." msgstr "\n\n\nTéléchargement des informations du jeu..." msgid "\n\n\nUnable to find game info" msgstr "\n\n\nImpossible de trouver les informations sur le jeu" msgid "US eShop Game Price" msgstr "Prix eShop US" msgid "New" msgstr "Nouveau" msgid "Own" msgstr "Possédé" msgid "Update" msgstr "Mis à jour" msgid "No Japanese Game" msgstr "Pas de jeu Japonais" msgid "Latest" msgstr "Dernière" ================================================ FILE: locales/he/LC_MESSAGES/language.po ================================================ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-08-01 00:27+1200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "בחר תיקיית הורדה" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "טען מראש תמונות משחקים" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr "טען רשימת הורדות שמורה" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "שמור רשימת הורדות" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "אופצית אריה2 תחסור לכולנו" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "בטל תמונת משחק" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "השתק חלונות קופצים" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "NSP Repack בטל" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "בטל בדיקת מפתח כותר" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "אפשר קיצור שם קובץ" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Tinfoil אפשר הורדה דרך" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "SysVer 0 Patch אפשר" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "שמור סדר וגודל חלונות" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "סרוק אחר משחקים קיימים" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 קידוד" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "הורדות" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "הגדרות" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "כלים" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "NSP Repack אפשר" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "החזר התראות חלונות קופצים" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr "אפשר בדיקת מפתח כותר" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "אפשר תמונת משחק" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "בטל קיצור שם" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr "Tinfoilבטל אופציה הורדה מ" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "SysVer 0 Patch בטל" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr ":סטטוס" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "משחק" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "מצב" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr ":תמונת משחק" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "" "\n לחץ על תמונת המשחק למעלה" "!eShopעל מנת לפתוח את עמוד המשחק בחנות ה" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "ללא דמו" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "של המשחק IDה" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "של המשחק Titleה" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr ":בחר גרסת עדכון" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr ":אפשרויות הורדה" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr "DLC + משחק + עדכון" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "משחק + עדכון" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "DLC + עדכון" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "משחק בלבד" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "עדכון בלבד" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "DLCכל ה" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "הוסף לרשימת הורדה" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "עדכון מאגר רשימת המשחקים" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "תפריט רשימת הורדות" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "הסר משחק מסומן" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "הסר הכל" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "הורד הכל" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "!לחץ 'הורד הכל' על מנת להוריד את כל המשחקים מהרשימה" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "סטטוס: טוען מצב משחק... אנא המתן" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "" "\n" "בונה את מסד הנתונים... אנא המתן, זה עלול לקחת קצת זמן בהתאם לכמות המשחקים הקיימים" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "אינו קיים Current_status.txt שגיאה, הקובץ" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "!סטטוס: סיים" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr "" "\n" "\n" "\n" "...מוריד תמונת משחק" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "שגיאה" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "שבצד על מנת לבדוק את סטטוס ההורדה command promptההורדה מתחילה! סבלנות, זה ייקח קצת זמן. בדוק את חלון ה" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "!ההורדה הסתיימה" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "אין עדכונים זמינים למשחק" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "!אין עדכונים זמינים למשחק, אך המשחק הורד" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "" "\n" "!לא נבחרה תיקיית הורדה לשמירת הקובץ" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Persistent queue not found, skipping..." msgstr "...כותר לא נמצא, מדלג" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "כותר לא נמצא ברשימת הורדה" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr "לא נמצא ברשימה tileIDשם ל" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "!לא נבחר משחק להסרה" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "!ההורדה לכל המשחקים תתחיל מיד, בסיומה תקבל התראה. אנא המתן בסבלנות" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "...מוריד משחקים" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr "{}אין עדכונים זמינים ל:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr "!אין עדכונים זמינים ל:{}, המשחק עצמו הורד בהצלחה!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "!ההורדה הסתיימה" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr "!ההורדה הסתיימה" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "מעדכן מסד נתונים" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "!העדכון הסתיים" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr "{} :כמות המשחקים שהתווספו" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "סגור" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "!העדכון הושלם: לא היו משחקים חדשים לעדכן" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "" "\n" "!העדכון הושלם: לא היו משחקים חדשים לעדכן" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "העדכון הושלם: מאגר הנתונים נבנה מחדש" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr "מסד הנתונים {} מושבת או אינו זמין" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr "Titlekey אפשר בדיקת" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "Titlekey בטל בדיקת" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "" "\n" "כל התמונות הורדו תוך {} שניות! \n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "!הורדת כל התמונות הסתיימה" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "כשל בבדיקת הגרסא" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "!גודל ומיקום החלון נשמר" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "סורק אחר משחקים קיימים" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "עיין" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "סרוק" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "!לא נבחרה תיקייה" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "!התיקייה שנבחרה אינה קיימת" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "!סריקת המשחקים הסתיימה" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "בונה את מסד הנתונים... אנא המתן, זה עלול לקחת קצת זמן" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "Base64 טקסט" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "פענח" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "טקסט מפוענח" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "פתח" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr ":מידע על המשחק" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr ":מחיר המשחק" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description:" msgstr ":תיאור המשחק" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher:" msgstr ":מפיץ" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer" msgstr "מפתח" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date:" msgstr ":תאריך שחרור המשחק" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category:" msgstr ":קטגורייה" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players:" msgstr ":מספר השחקנים" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "!תיאור המשחק אינו זמין כרגע" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "אודות" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "קרדיטים" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "שפה" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "!אנא פתח מחדש את התוכנה לשפה חדשה" ================================================ FILE: locales/hu/LC_MESSAGES/language.po ================================================ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-08-01 00:27+1200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "" "\n" "\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" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr "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}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr "" "\n" "Telepített modulok ellenőrzése..\n" "\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr "Minden működik!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "A szükséges fájlok letöltése sikertelen! Ellenőrizd, hogy van-e internet kapcsolatod." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "Nézd meg, hogy van-e üres hely kihagyva a titlekeys.txt fájlban! Ha igen, akkor töröld!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "Error!, hiányzó CDNSP-GUI-config.json fájl" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "Letöltés Helyének Megadása" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "Játékok képeinek letöltése egyszerre" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr "Elmentett Sor Betöltése" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "Sor Elmentése" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "Az Aria2c hiányozni fog" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "JÁTÉK KÉPÉNEK KIKAPCSOLÁSA" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "Előugró ablakok némítása" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "NSP újracsomagolás kikapcsolása" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "Disable Titlekey check" msgstr "Titlekey ellenőrzés kikapcsolása" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "Enable Shorten Name" msgstr "Rövidített név bekapcsolása" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Enable Tinfoil Download" msgstr "Tinfoil Letöltés bekapcsolása" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "Enable SysVer 0 Patch" msgstr "SysVer 0 Patch bekapcsolása" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "Save Windows Location and Size" msgstr "Ablak helyének és méretének mentése" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "Scan for existing games" msgstr "Meglévő játékok keresése" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 Decoder" msgstr "Base64 Dekódoló" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "Letöltés" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "Beállítások" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "Eszközök" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "NSP újracsomagolás bekapcsolása" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "Előugró ablakok némításának feloldása" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr "Titlekey ellenőrzés bekapcsolása" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "JÁTÉK KÉPÉNEK ENGEDÉLYEZÉSE" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "Rövidített név kikapcsolása" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr "Tinfoil Letöltés kikapcsolása" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "SysVer 0 Patch kikapcsolása" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr "Állapot:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "Játék" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "Állapot" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr "Játék Képe:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "" "Kattints a képre fent, \n" "hogy megnyisd a játékot az eShop-ban!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "Demo-k kizárása" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "Title ID:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "Title Key:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr "Frissítés verziója:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr "Letöltési opciók:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr "Alap játék + Frissítés + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "Alap játék + Frissítés" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "Frissítés + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "Csak az alap játék" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "Csak frissítés" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "Összes DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "Hozzáadás a sorhoz" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "Titlekey-ek frissítése" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "Sor Menü" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "A kiválasztott játék eltávolítása" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "Összes Eltávolítása" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "Összes Letöltése" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "Kattints az 'Összes Letöltése' gombra, hogy az összes sorban álló játékot letöltsd!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "Állapot: Játék állapotának lekérése... Kérlek várj!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "" "\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." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "Hiba, a 'Current_status.txt' nem létezik" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "Állapot: Kész!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr "" "\n" "\n" "\n" "Játék képfájljának letöltése..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "Hiba" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr "TitleID {} nem egy 32-karakterű hexadecimális szám!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr "TitleID {} nem egy 16-karakterű hexadecimális szám!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "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." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "Letöltés befejezve!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "Nincsenek elérhető frissítések a játékhoz" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "Nincsenek elérhető frissítések a játékhoz, alap játék letöltve!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "" "\n" "Nem választottál mentési helyet a fájlnak!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Persistent queue not found, skipping..." msgstr "Jelenlegi sor nem található, kihagyás..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "Ez az elem nem található a sorban." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr "A titleID nem található a listában." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "Nem választottál ki törlendő játékokat!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "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." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "Játékok letöltése..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr "Nem érhető el frissítés ehhez a titleID-hoz: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr "Nem érhető el frissítés ehhez a titleID-hoz: {}, alap játék letöltve!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "Letöltés befejezve!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr "Letöltés Befejezve!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "Állapot: Titlekey frissítése" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "Frissítés befejezve!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr "Új játékok száma: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "Bezárás" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "Állapot: Frissítés befejezve, nincs több frissítésre váró játék!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "" "\n" "Állapot: Frissítés befejezve, nincs több frissítésre váró játék!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "Állapot: Frissítés befejezve, Adatbázis teljesen újraépítve" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr "Az {} adatbázis szerver éppen nem elérhető" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" "\n" "{}\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr "Titlekey ellenőrzés bekapcsolása" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "Titlekey ellenőrzés kikapcsolása" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "" "\n" "{} másodpercbe telt az összes kép letöltése!\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "A játékok képeinek letöltése befejeződött!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "Hiba a verzió lekérése közben" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr "Nincs TitleID, vagy a TitleID nem 16 karakterből áll!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "Ablak mérete és helyzete elmentve!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "Meglévő játékok keresése" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "Böngészés" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "Keresés" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "Nem választottál kategóriát!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "A kiválasztott mappa nem létezik!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "Befejeződött a játékaid keresése!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "Á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." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "Base64 szöveg:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "Dekódolás" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "Dekódolt szöveg:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "Megnyitás" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr "Játék infó:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr "Játék ára:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description:" msgstr "Játék leírása:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher:" msgstr "Kiadó:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer" msgstr "Fejlesztő" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date:" msgstr "Kiadás dátuma:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category:" msgstr "Kategória:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players:" msgstr "Játékosok száma:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "A játék infó nem érhető el jelenleg!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "Infó" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "Készítők" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "Nyelv" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "Kérlek indítsd újra a GUI-t, az új nyelv használatához!" msgid 'New' msgstr 'Új' msgid 'Own' msgstr 'Meglévő játék' msgid 'Update' msgstr 'Frissítés elérhető' msgid 'Latest' msgstr 'Legújabb' ================================================ FILE: locales/id/LC_MESSAGES/language.po ================================================ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-08-01 00:27+1200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "" "\n" "\n" "Terjadi Kesalahan - Aplikasi dibuka menggunakan Python 2, mohon pasang Python 3 dan hapus Python 2\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr "Terjadi kesalahan dalam memasang {0}, tutup aplikasi dan lakukan pemasangan manual dengan mengetik di CMD: pip3 install {0}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr "" "\n" "Memeriksa modul-modul yang diperlukan...\n" "\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr "Pemeriksaan selesai, semua lengkap!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "Gagal mendapatkan file yang diperlukan! Cek koneksi internet anda" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "Cek apakah ada spasi tambahan di bagian paling bawah dari file titlekeys.txt! Hapus jika ada!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "Terjadi kesalahan!, file CDNSP-GUI-config.json tidak ditemukan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "Pilih lokasi Unduhan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "Tampilkan gambar Game" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr "Muat Antrian Tersimpan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "Simpan Antrian" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "Aria2c tidak dapat digunakan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "NONAKTIFKAN GAMBAR GAME" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "Matikan Semua Pop-up" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "Nonaktifkan NSP Repack" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "Disable Titlekey check" msgstr "Nonaktifkan pengecekan Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "Enable Shorten Name" msgstr "Aktifkan Pemendekan Nama" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Enable Tinfoil Download" msgstr "Aktifkan Unduhan Tinfoil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "Enable SysVer 0 Patch" msgstr "Aktifkan Patch SysVer 0" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "Save Windows Location and Size" msgstr "Simpan Ukuran dan Lokasi Windows" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "Scan for existing games" msgstr "Scan game yang tersedia" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 Decoder" msgstr "Dekoder Base64" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "Unduhan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "Pengaturan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "Peralatan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "Aktifkan NSP Repack" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "Nyalakan Semua Pop-up" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr "Aktifkan pengecekan Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "AKTIFKAN GAMBAR GAME" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "Nonaktifkan Pemendekan Nama" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr "Nonaktifkan Unduhan Tinfoil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "Nonaktifkan Patch SysVer 0" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr "Status:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "Game" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "Status" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr "Gambar Game:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "" "Klik gambar game di atas \n" "untuk membuka game di eShop!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "Tanpa Demo" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "Title ID:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "Title Key:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr "Pilih versi update:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr "Pilihan unduhan:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr "Game + Update + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "Game + Update" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "Update + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "Game saja" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "Update saja" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "Semua DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "Tambahkan ke antrian" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "Perbarui Titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "Daftar Antrian" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "Hapus game terpilih" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "Hapus semua" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "Unduh semua" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "Klik unduh semua untuk mengunduh semua game di antrian!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "Status: Mendapatkan status game... Tunggu sebentar" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "" "\n" "Membangun status file saat ini... Tunggu sebentar, ini akan memakan waktu tergantung seberapa banyak game yang anda miliki." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "Terjadi kesalahan, file Current_status.txt tidak ditemukan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "Status: Selesai!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr "" "\n" "\n" "\n" "Mengunduh gambar game..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "Terjadi Kesalahan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr "Titlekey {} bukan angka heksadesimal 32-digit" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr "TitleID {} bukan angka heksadesimal 16-digit" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "Memulai mengunduh! Mohon tunggu sebentar. Anda bisa cek CMD untuk melihat status unduhan anda." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "Unduhan selesai!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "Tidak ada pembaruan tersedia untuk game ini" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "Tidak ada pembaruan tersedia untuk game ini, game telah terunduh" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "" "\n" "Anda belum memilih lokasi untuk menyimpan file!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Persistent queue not found, skipping..." msgstr "Antrian tidak ditemukan, melewati..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "Item tidak ditemukan di antrian" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr "Nama untuk titleID tidak ditemukan di daftar" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "Tidak ada game terpilih untuk dihapus!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "Unduhan untuk semua game dalam antrian akan dimulai! Anda akan diberitahu ketika semua unduhan telah selesai, mohon tunggu dan bersabar!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "Mengunduh game..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr "Tidak ada pembaruan tersedia untuk titleID: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr "Tidak ada pembaruan tersedia untuk titleID: {}, game terunduh!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "Unduhan selesai!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr "Unduhan selesai!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "Status: Membarui titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "Pembaruan selesai!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr "Jumlah game baru yang ditambahkan: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "Tutup" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "Status: Pembaruan selesai, tidak ada game baru untuk diperbarui!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "" "\n" "Status: Pembaruan selesai, tidak ada game baru untuk diperbarui!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "Status: Pembaruan selesai, Database dibangun ulang" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr "Server database {} sedang tidak tersedia atau down" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" "\n" "{}\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr "Aktifkan Pengecekan Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "Nonaktifkan Pengecekan Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "" "\n" "{} detik diperlukan untuk mendapatkan semua gambar!\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "Selesai mendapatkan semua gambar game!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "Gagal mendapatkan versi" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr "Tidak ada TitleID atau TitleID bukan 16 karakter" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "Ukuran dan posisi windows tersimpan!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "Cari game yang tersedia" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "Telusuri" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "Scan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "Anda tidak memilih directory!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "Directory terpilih tidak ada!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "Scan game telah selesai!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "Status: Membangun status file saat ini... Tunggu sebentar, ini akan memakan waktu tergantung seberapa banyak game yang anda miliki." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "Teks Base64:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "Dekode" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "Teks terdekode:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "Buka" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr "Info Game" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr "Harga Game:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description:" msgstr "Deskripsi Game:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher:" msgstr "Publisher:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer" msgstr "Developer" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date:" msgstr "Tanggal Rilis:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category:" msgstr "Kategori:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players:" msgstr "Jumlah Pemain:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "Info Game tidak tersedia untuk saat ini!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "Tentang" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "Credits" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "Bahasa" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "Mohon restart GUI untuk menggunakan bahasa baru!" msgid 'New' msgstr 'Baru' msgid 'Own' msgstr 'Dimiliki' msgid 'Update' msgstr 'Perlu Pembaruan' msgid 'Latest' msgstr 'Terbaru' msgid "Update Version List" msgstr "Perbarui Daftar Versi Game" msgid "No Japanese Game" msgstr "Tanpa Game Jepang" ================================================ FILE: locales/id/LC_MESSAGES/language_old.po ================================================ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-08-01 00:27+1200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "" "\n" "\n" "Terjadi Kesalahan - Aplikasi dibuka menggunakan Python 2, mohon pasang Python 3 dan hapus Python 2\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr "Terjadi kesalahan dalam memasang {0}, tutup aplikasi dan lakukan pemasangan manual dengan mengetik di CMD: pip3 install {0}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr "" "\n" "Memeriksa modul-modul yang diperlukan...\n" "\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr "Pemeriksaan selesai, semua lengkap!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "Gagal mendapatkan file yang diperlukan! Cek koneksi internet anda" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "Cek apakah ada spasi tambahan di bagian paling bawah dari file titlekeys.txt! Hapus jika ada!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "Terjadi kesalahan!, file CDNSP-GUI-config.json tidak ditemukan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "Pilih lokasi Unduhan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "Tampilkan gambar Game" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr "Muat Antrian Tersimpan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "Simpan Antrian" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "Aria2c tidak dapat digunakan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "NONAKTIFKAN GAMBAR GAME" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "Matikan Semua Pop-up" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "Nonaktifkan NSP Repack" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "Disable Titlekey check" msgstr "Nonaktifkan pengecekan Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "Enable Shorten Name" msgstr "Aktifkan Pemendekan Nama" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Enable Tinfoil Download" msgstr "Aktifkan Unduhan Tinfoil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "Enable SysVer 0 Patch" msgstr "Aktifkan Patch SysVer 0" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "Save Windows Location and Size" msgstr "Simpan Ukuran dan Lokasi Windows" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "Scan for existing games" msgstr "Scan game yang tersedia" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 Decoder" msgstr "Dekoder Base64" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "Unduh" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "Pengaturan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "Peralatan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "Aktifkan NSP Repack" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "Nyalakan Semua Pop-up" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr "Aktifkan pengecekan Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "AKTIFKAN GAMBAR GAME" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "Nonaktifkan Pemendekan Nama" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr "Nonaktifkan Unduhan Tinfoil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "Nonaktifkan Patch SysVer 0" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr "Status:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "Game" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "Status" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr "Gambar Game:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "" "Klik gambar game di atas \n" "untuk membuka game di eShop!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "Tanpa Demo" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "Title ID:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "Title Key:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr "Pilih versi update:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr "Pilihan unduhan:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr "Game + Update + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "Game + Update" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "Update + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "Game saja" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "Update saja" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "Semua DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "Tambahkan ke antrian" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "Perbarui Titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "Daftar Antrian" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "Hapus game terpilih" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "Hapus semua" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "Unduh semua" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "Klik unduh semua untuk mengunduh semua game di antrian!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "Status: Mendapatkan status game... Tunggu sebentar" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "" "\n" "Membangun status file saat ini... Tunggu sebentar, ini akan memakan waktu tergantung seberapa banyak game yang anda miliki." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "Terjadi kesalahan, file Current_status.txt tidak ditemukan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "Status: Selesai!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr "" "\n" "\n" "\n" "Mengunduh gambar game..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "Terjadi Kesalahan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr "Titlekey {} bukan angka heksadesimal 32-digit" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr "TitleID {} bukan angka heksadesimal 16-digit" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "Memulai mengunduh! Mohon tunggu sebentar. Anda bisa cek CMD untuk melihat status unduhan anda." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "Unduhan selesai!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "Tidak ada pembaruan tersedia untuk game ini" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "Tidak ada pembaruan tersedia untuk game ini, game telah terunduh" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "" "\n" "Anda belum memilih lokasi untuk menyimpan file!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Persistent queue not found, skipping..." msgstr "Antrian tidak ditemukan, melewati..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "Item tidak ditemukan di antrian" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr "Nama untuk titleID tidak ditemukan di daftar" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "Tidak ada game terpilih untuk dihapus!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "Unduhan untuk semua game dalam antrian akan dimulai! Anda akan diberitahu ketika semua unduhan telah selesai, mohon tunggu dan bersabar!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "Mengunduh game..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr "Tidak ada pembaruan tersedia untuk titleID: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr "Tidak ada pembaruan tersedia untuk titleID: {}, game terunduh!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "Unduhan selesai!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr "Unduhan selesai!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "Status: Membarui titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "Pembaruan selesai!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr "Jumlah game baru yang ditambahkan: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "Tutup" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "Status: Pembaruan selesai, tidak ada game baru untuk diperbarui!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "" "\n" "Status: Pembaruan selesai, tidak ada game baru untuk diperbarui!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "Status: Pembaruan selesai, Database dibangun ulang" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr "Server database {} sedang tidak tersedia atau down" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" "\n" "{}\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr "Aktifkan Pengecekan Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "Nonaktifkan Pengecekan Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "" "\n" "{} detik diperlukan untuk mendapatkan semua gambar!\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "Selesai mendapatkan semua gambar game!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "Gagal mendapatkan versi" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr "Tidak ada TitleID atau TitleID bukan 16 karakter" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "Ukuran dan posisi windows tersimpan!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "Cari game yang tersedia" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "Telusuri" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "Scan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "Anda tidak memilih directory!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "Directory terpilih tidak ada!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "Scan game telah selesai!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "Status: Membangun status file saat ini... Tunggu sebentar, ini akan memakan waktu tergantung seberapa banyak game yang anda miliki." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "Teks Base64:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "Dekode" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "Teks terdekode:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "Buka" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr "Info Game" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr "Harga Game:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description:" msgstr "Deskripsi Game:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher:" msgstr "Publisher:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer" msgstr "Developer" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date:" msgstr "Tanggal Rilis:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category:" msgstr "Kategori:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players:" msgstr "Jumlah Pemain:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "Info Game tidak tersedia untuk saat ini!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "Tentang" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "Credits" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "Bahasa" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "Mohon restart GUI untuk menggunakan bahasa baru!" msgid 'New' msgstr 'Baru' msgid 'Own' msgstr 'Dimiliki' msgid 'Update' msgstr 'Perlu Pembaruan' msgid 'Latest' msgstr 'Terbaru' ================================================ FILE: locales/it/LC_MESSAGES/language.po ================================================ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2018-08-01 00:27+1200\n" "PO-Revision-Date: 2018-08-15 10:23+0200\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" "Last-Translator: \n" "Language-Team: \n" "Language: it\n" "X-Generator: Poedit 2.1.1\n" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "" "\n" "\n" "Errore - Applicazione avviata con Python 2, per favore installa Python 3 e cancella Python 2\n" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr "Errore d'installazione {0}, chiudi l'applicazione e installa i moduli manualmente digitanto in CMD: pip3 install {0}" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr "" "\n" "Verifico che tutti i moduli richiesti siano installati\n" "\n" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr "Tutto a posto!" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "Impossibile recuperare i file necessari! Verifica la tua connessione internet" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "Controlla se c'è uno SPAZIO alla fine del tuo file titlekeys.txt ! Se presente eliminalo!" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "Errore!, File CDNSP-GUI-config.json mancante" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "Seleziona cartella di Download" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "Precarica le immagini di gioco" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr "Carica la coda salvata" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "Salva la coda di Download" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "Aria2c non più attivo" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "Disabilita le immagini di gioco" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "Muta tutti i pop-up" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "Disabilita repack degli NSP" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "Disable Titlekey check" msgstr "Disabilita il controllo Titlekey" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "Enable Shorten Name" msgstr "Abilita nomi abbreviati" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Enable Tinfoil Download" msgstr "Abilita il download per Tinfoil" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "Enable SysVer 0 Patch" msgstr "Abilita la patch Sysver 0" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "Save Windows Location and Size" msgstr "Salva posizione e dimensione della finestra del programma" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "Scan for existing games" msgstr "Scansione dei giochi scaricati" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 Decoder" msgstr "Decoder Base64" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "Scarica" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "Opzioni" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "Strumenti" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "Abilita repack degli NSP" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "Riattiva tutti i pop-up" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr "Abilita il controllo Titlekey" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "Abilita l'immagine di gioco" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "Disabilita nomi abbreviati" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr "Disabilita il download per Tinfoil" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "Disabilita la patch Sysver 0" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr "Stato:" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "Gioco" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "Stato" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr "Immagine di Gioco:" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "" "Clicca sull'immagine del gioco\n" "per aprire la pagina corrispondente dell'eShop!" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "Nascondi Demo" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "Title ID:" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "Title key:" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr "Seleziona versione aggiornamento:" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr "Opzioni di download:" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr "Gioco base + Aggiornamenti + DLC" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "Gioco base + Aggiornamenti" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "Aggiornamenti + DLC" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "Solo Gioco base" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "Solo Aggiornamenti" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "Tutti i DLC" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "Aggiungi alla coda" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "Aggiorna Titlekeys" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "Menu della Coda" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "Rimuovi gioco selezionato" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "Rimuovi tutto" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "Scarica tutto" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "Clicca su scarica tutto per scaricare tutti i giochi in coda!" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "Stato : Ottenimento dello stato di gioco... Attendere prego" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "" "\n" "Costruendo lo stato dei file... Attendere prego, il tempo necessario potrebbe variare in base al numero di titoli posseduti." #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "Errore, Current_status.txt non esiste" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "Stato: Fatto!" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr "" "\n" "\n" "\n" "Scaricando l'immagine del gioco..." #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "Errore" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr "Titlekey {} non è un numero esadecimale a 32 cifre!" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr "TitleID {} non è un numero esadecimale a 16 cifre!" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "Avvio del download! Ci potrebbe volere del tempo, sii paziente. Puoi verificare lo stato dei download dalla finestra del Prompt dei Comandi (CMD)." #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "Download terminato!" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "Nessun aggiornamento disponibile per il gioco" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "Nessun aggiornamento disponibile per il gioco, gioco base scaricato!" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "" "\n" "Non hai scelto dove salvare i file!" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Persistent queue not found, skipping..." msgstr "Coda persistente non trovata, salto..." #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "Oggetto non trovato in coda" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr "Nome per titleID non trovato nella lista" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "Nessun gioco da rimuovere selezionato!" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "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!" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "Giochi in download..." #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr "Nessun aggiornamento disponibile per titleID: {}" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr "Nessun aggiornamento disponibile per titleID: {}, gioco base scaricato!" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "Download completato!" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr "Download completato!" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "Stato: Aggiornamento titlekeys" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "Aggiornamento completato!" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr "Totale di nuovi giochi aggiunti: {}" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "Chiudi" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "Stato: Aggiornamento completato, Non ci sono nuovi giochi da aggiornare!" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "" "\n" "Stato: Aggiornamento completato, Non ci sono nuovi giochi da aggiornare!" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "Stato: Aggiornato completato, Database ricostruito da zero" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr "Il database server {} potrebbere essere down o non disponibile" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" "\n" "{}\n" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr "Abilita Verifica Titlekey" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "Disabilita Verifica Titlekey" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "" "\n" "Ci vorranno {} secondi per scaricare tutte le immagini!\n" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "Tutte le immagini scaricate!" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "Impossibile ottenere la versione" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr "Nessun TitleID o TitleID non di 16 caratteri!" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "Dimensioni e posizione della finestra sono state salvate!" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "Cerca giochi scaricati" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "Sfoglia" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "Scansiona" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "Non hai scelto una directory!" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "La directory selezionata non esiste!" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "Scansione dei giochi posseduti completata!" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "Stato: Costruendo lo stato dei file... Attendere prego, il tempo necessario potrebbe variare in base al numero di titoli posseduti." #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "Testo Base64:" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "Decodifica" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "Testo decodificato:" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "Apri" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr "Informazioni di gioco:" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr "Prezzo del gioco:" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description:" msgstr "Descrizione del gioco:" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher:" msgstr "Publisher:" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer" msgstr "Sviluppatore:" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date:" msgstr "Data di rilascio:" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category:" msgstr "Categoria:" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players:" msgstr "Numero di giocatori:" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "Informazioni di gioco non disponibili al momento!" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "Info" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "Crediti" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "Lingua" #: C:\Users\Bob\Google #: Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "Per favore, riavvia la GUI per applicare la nuova lingua!" msgid "New" msgstr "Nuovo" msgid "Update" msgstr "Aggiornamento" msgid "Latest" msgstr "Ultimo" msgid "Own" msgstr "Posseduto" msgid "No Japanese Game" msgstr "Nascondi giochi Giapponesi" msgid "Update Version List" msgstr "Aggiorna Lista Versioni" msgid "Updating version list..." msgstr "Aggiorno la lista versioni..." msgid "Current language:" msgstr "Lingua corrente:" ================================================ FILE: locales/it/LC_MESSAGES/language_old.po ================================================ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-08-01 00:27+1200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "" "\n" "\n" "Errore - Applicazione lancaita con Python 2, perfavore installa Python 3 e cancella Python 2\n" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr "Errore d'installazione {0}, chiudi l'applicazione e puoi installare i moduli manualmente digidanto in CMD: pip3 install {0}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr "controllado se tutti i moduli richiesti sono installati" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr "tutto sembra a posto" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "impossibile prendere i files richiesti! controlla la tua connessione ad internet" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "controlla se c'è uno SPAZIO alla fine del tuo file titlekeys.txt ! cancellalo se c'è" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "Errore!, File CDNSP-GUI-config.json mancante" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "Seleziona posizione di scarico " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "Precarica le immagini di gioco" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr "Carica la coda salvata" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "salva la coda" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "Aria2c verrà persa" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "DISABILITA LE IMMAGINI DI GIOCO" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "MUTA tutti i pop-ups" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "Disabilita NSP repack" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "Disable Titlekey check" msgstr "Disabilita il controllo Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "Enable Shorten Name" msgstr "Abilita abbreviare il nome" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Enable Tinfoil Download" msgstr "Abilita lo scarico Tinfoil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "Enable SysVer 0 Patch" msgstr "abilita la patch Sysver 0" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "Save Windows Location and Size" msgstr "Salva posizione e dimensione della finestra del programma " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "Scan for existing games" msgstr "Scansiona per i giochi esistenti" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 Decoder" msgstr "Base64 decoder" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "Scarica" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "Opzioni" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "Utensili" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "Abilita Nsp Repack" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "Riattiva tutti i pop-ups" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr "Abilita il controllo Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "Abilita l'immagine di gioco" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "Disabilita l'abbreviazione di nome" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr "Disabilita lo scarico Tinfoil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "Disabilita SysVer 0 patch" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr "Stato:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "GIOCO" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "Stato" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr "Immagine di Gioco:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "" "Clicca sull'immagine del gioco \n" "per aprire la pagina del gioco in eShop!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "No Demo" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "Title ID" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "Title key" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr "Seleziona versione aggiornata" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr "Opzioni di scarico" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr "Gioco base + Aggiornamenti + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "Gioco base + Aggiornamenti" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "Aggiornamenti + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "Solo Gioco base" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "Solo Aggiornamenti" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "Tutti i DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "Aggiungi alla coda" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "Aggiorna Titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "Menu della Coda" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "Rimuovi gioco selezionato" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "Rimuovi tutto" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "Scarica tutto" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "Clicca su scarica tutto per scaricare tutti i giochi in coda" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "Stato : Ottenimento dello stato di gioco... Attendere prego " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "Costruento il corrente stato del file... Attnedere prego, questo potrebbe metterci del tempo a secondo di quanti giochi tu abbia" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "Errore, Current_statu.txt non esiste" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "Stato: Fatto!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr "" "\n" "\n" "\n" "Scaricando l'immagine del gioco..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "Errore" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr "Titlekey {} non è 32-digits numero esadecimale!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr "TitleID {} non è 16-digits numero esadecimale!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "Inizio dello scarico! Ci potrebbe mettere del tempo, sii paziente. Puoi controllare dal CMD (command prompt) per vedere il progresso dello scarico" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "Scarico terminato!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "Nessun aggiornamento disponibile per il gioco" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "Nessun aggiornamento disponibile per il gioco, gioco base scaricato" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "" "\n" "Non hai scelto dove salvare i file!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Persistent queue not found, skipping..." msgstr "Coda persistente non trovata , saltare... " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "Oggetto non trovato in coda" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr "Nome per titleID non trovato nella lista" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "nessun gioco selezionato da rimuovere" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "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!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "Giochi in scarico" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr "Nessun aggiornamento disponibile per titleID: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr "Nessun aggiornamento disponibile per titleID: {}, gioco base scaricato" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "Scarico completato" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr "Scarico completato" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "Stato: Aggiornamento titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "Aggiornamento finito!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr "Totale dei nuovi giochi aggiunti: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "Chiudi" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "Stato: Aggiornamento finito, Non ci sono nuovi giochi da aggiornare!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "" "\n" "Stato: Aggiornamento finito, Non ci sono nuovi giochi da aggiornare!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "Stato: Aggiornato finito, Database ricostruito da zero" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr "Il database server {} potrebbere essere down o non disponibile" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" "\n" "{}\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr "Abilita Verifica Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "Disabilita Verifica Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "" "\n" "Ci impiega {} secondi per avere tutte le immagini!\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "Fatto ottenute tutte le immagini" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "non è riuscito ad ottenere la versione" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr "No TitleID or TitleID non 16 caratteri!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "le dimensione e posizione della finestra del programma sono state salvate" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "Cerca giochi esistenti" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "sfoglia" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "scansiona" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "Non hai scelto una directory" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "la directory scelta non esiste" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "Finito di scansionare i tuoi giochi" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "Stato: Costruendo il corrente stato file... Attendere prego, ci potrebbe mettere del tempo dipende da quanti giochi hai" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "Base64 testo:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "Decodifica" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "Testo decodificato:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "Apri" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr "Informazioni di gioco:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr "Prezzo del gioco:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description:" msgstr "Descrizione del gioco:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher:" msgstr "Publisher:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer" msgstr "Sviluppatore" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date:" msgstr "Data di rilascio:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category:" msgstr "Categoria" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players:" msgstr "Numero di giocatori:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "Informazioni di gioco non disponibili al momento!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "Circa" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "Crediti" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "Lingua" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "Perfavore fai ripartire la GUI per applicare la nuova lingua" msgid 'New' msgstr 'Nuovo' msgid 'Own' msgstr 'Posseduto' msgid 'Update' msgstr 'Aggiornamento' msgid 'Latest' msgstr 'Ultimo' ================================================ FILE: locales/ja/LC_MESSAGES/language.po ================================================ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-08-01 00:27+1200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "" "\n" "\n" "エラーの Python 2 インストールされています。 Python 2 を削除します。 Python 3 をインストールします。\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr "エラーのインストール {0}, アプリケーションを閉じると PIP 3 モジュールを手動でインストールします. {0}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr "" "\n" "必要なモジュールのインストールをチェックしています。\n" "\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr "すべてのものがインストールされています。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "必要なファイルを取得できませんでした。 インターネット接続を確認します。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "下部に余分なスペースのために titlekeys ファイルがないかどうかを調べます。 余分なスペースを削除します。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "エラーファイルが見つかりません。CDNSP-GUI-config.json" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "ダウンロードする場所を選択します。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "プレロードゲーム画像。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr "保存されたキューをロードします。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "ダウンロードキューを保存します。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "Aria2c 使用されなくなりました。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "ゲームのイメージを無効にする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "すべてのポップアップのミュート" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "NSP 再構築を無効にする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "Disable Titlekey check" msgstr "Titlekey 検査を無効にする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "Enable Shorten Name" msgstr "短縮名を有効にする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Enable Tinfoil Download" msgstr "Tinfoil ダウンロードを有効にする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "Enable SysVer 0 Patch" msgstr "有効に SysVer 0 パッチ" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "Save Windows Location and Size" msgstr "ストアプログラムサイズと位置" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "Scan for existing games" msgstr "既存のゲームをスキャンします。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 Decoder" msgstr "ベース 64 デコードします。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "ダウンロードする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "選択肢" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "工具" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "NSP 再構築を有効にする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "すべてのポップアップのミュートを解除" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr "Titlekey チェックを有効にする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "ゲーム画像を有効にする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "短い名前を無効にする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr "Tinfoil ダウンロードを無効にする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "SysVer 0 パッチを無効にする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr "地位" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "ゲーム" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "状態" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr "ゲーム画像" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "" "上記のゲームの画像をクリックしてください。\n" "私は、 eShop で試合を開きます。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "デモの表示 / 非表示" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "タイトル ID" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "タイトルキー" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr "アップデートのバージョンを選択します。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr "ダウンロードのオプション :" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr "基本ゲーム + 更新 + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "基本ゲーム + 更新" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "更新 + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "ベースのゲーム" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "更新のみ" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "すべて DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "キューに追加します。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "Titlekeys を更新" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "キューのメニュー" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "取り除く選りすぐりの" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "すべてを破棄" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "すべてのダウンロードを開始します。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "すべてのダウンロードを開始しますすべてのダウンロードを開始しますをクリックします。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "ステータス:ゲームの状況の検査 ... しばらくお待ちください..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "" "\n" "ゲームの状態のファイルを作成しています ... 待ってください、このしたゲームの数に応じていくつかの時間がかかることがあります。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "エラーは、 現在のステータス.txt Current_status.txt が存在しません。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "ステータス : 終了しました !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr "\n" "\n" "\n" "ゲーム画像をダウンロードしています ..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "エラー" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr "Titlekey {} 16 進数の 32 桁の番号ではありません" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr "TitleID {} 桁の数字 16 桁の 16 進数値ではありません。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "をダウンロード開始! いくつかの時間、患者にしてください。 背面には、 CMD ( コマンドプロンプト ) を確認して、ダウンロードの進捗状況を確認することができます。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "ダウンロードが完了しました!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "ゲームのために利用可能な更新がありません" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "ゲームのために利用可能な更新がありません、ベースのゲームをダウンロードした !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "" "\n" "ファイルを保存する場所を選択してください!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Persistent queue not found, skipping..." msgstr "永続的なキューを見つけられませんでした。 スキップしています ....." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "キューが空になっています。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr "TitleID 用リストに名が見つかりません" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "を削除するには、選択したゲームはありません!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "ダウンロードを開始しています。 私は完了している時に私が通知します。 しばらくお待ちください。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "ゲームをダウンロードしています ..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr "TitleID に利用可能な更新がありません。 {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr "TitleID に利用可能な更新がありません。 {} ベースのゲームをダウンロードした !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "ダウンロードが完了しました!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr "ダウンロードが完了しました!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "ステータス:新しい titlekeys 得ること" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "更新を終了しました!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr "追加されたのは新しいゲームの合計数: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "終止; 締切り" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "ステータス : 終了を更新するには、何もありません。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "ステータス : 終了を更新するには、何もありません。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "ステータス:完了するには、新しい更新はありません!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr "データベース・サーバ {} がダウンしているか、または使用できないことがあり" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" "\n" "{}\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr "Titlekey チェックを有効にする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "Titlekey 検査を無効にする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "" "\n" "すべての画像を取得するために {} 秒かかりました!\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "すべてのゲーム画像の取得完了!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "バージョンの取得に失敗しました。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr "不足している TitleID または TitleID 16 文字ではありません!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "ウィンドウのサイズと位置が保存されました。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "既存のゲームを検索しています" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "立ち読み" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "スキャンするコンピュータ" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "エラー : ディレクトリを選択します。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "選択したディレクトリが存在しません!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "あなたのゲームのスキャンが完了しました!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "ステータス: ゲームの状態のファイルを作成しています ... 待ってください、このしたゲームの数に応じていくつかの時間がかかることがあります。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "ベース 64 のテキスト:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "解読する" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "デコードされたテキスト :" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "開始する" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr "ゲーム情報:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr "ゲーム価格:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description:" msgstr "ゲームの説明:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher:" msgstr "出版社:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer" msgstr "開発者:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date:" msgstr "リリース日:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category:" msgstr "カテゴリ:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players:" msgstr "プレーヤーの数:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "このゲームについての情報を見つけることができません。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "について" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "プログラムクレジット" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "言語" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "新しい言語を適用するには、 GUI を再起動してください!" msgid "New" msgstr "新しいゲーム" msgid "Own" msgstr "自身のゲーム" msgid "Update" msgstr "利用可能なアップデート" msgid "Latest" msgstr "最新バージョン" ================================================ FILE: locales/ja/LC_MESSAGES/language_.po ================================================ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-08-01 00:27+1200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "" "\n" "\n" "エラーの Python 2 インストールされています。 Python 2 を削除します。 Python 3 をインストールします。\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr "エラーのインストール {0}, アプリケーションを閉じると PIP 3 モジュールを手動でインストールします. {0}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr "" "\n" "必要なモジュールのインストールをチェックしています。\n" "\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr ""すべてのものがインストールされています。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "必要なファイルを取得できませんでした。 インターネット接続を確認します。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "下部に余分なスペースのために titlekeys ファイルがないかどうかを調べます。 余分なスペースを削除します。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "エラーファイルが見つかりません。CDNSP-GUI-config.json" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "ダウンロードする場所を選択します。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "プレロードゲーム画像。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr "保存されたキューをロードします。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "ダウンロードキューを保存します。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "Aria2c 使用されなくなりました。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "ゲームのイメージを無効にする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "すべてのポップアップのミュート" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "NSP 再構築を無効にする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "Disable Titlekey check" msgstr "Titlekey 検査を無効にする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "Enable Shorten Name" msgstr "短縮名を有効にする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Enable Tinfoil Download" msgstr "Tinfoil ダウンロードを有効にする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "Enable SysVer 0 Patch" msgstr "有効に SysVer 0 パッチ" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "Save Windows Location and Size" msgstr "ストアプログラムサイズと位置" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "Scan for existing games" msgstr "既存のゲームをスキャンします。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 Decoder" msgstr "ベース 64 デコードします。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "ダウンロードする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "選択肢" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "工具" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "NSP 再構築を有効にする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "すべてのポップアップのミュートを解除" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr "Titlekey チェックを有効にする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "ゲーム画像を有効にする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "短い名前を無効にする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr "Tinfoil ダウンロードを無効にする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "SysVer 0 パッチを無効にする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr "地位" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "ゲーム" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "状態" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr "ゲーム画像" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "" "上記のゲームの画像をクリックしてください。\n" "私は、 eShop で試合を開きます。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "デモの表示 / 非表示" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "タイトル ID" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "タイトルキー" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr "アップデートのバージョンを選択します。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr "ダウンロードのオプション :" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr "基本ゲーム + 更新 + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "基本ゲーム + 更新" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "更新 + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "ベースのゲーム" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "更新のみ" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "すべて DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "キューに追加します。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "Titlekeys を更新" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "キューのメニュー" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "取り除く選りすぐりの" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "すべてを破棄" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "すべてのダウンロードを開始します。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "すべてのダウンロードを開始しますすべてのダウンロードを開始しますをクリックします。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "ステータス:ゲームの状況の検査 ... しばらくお待ちください..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "" "\n" "ゲームの状態のファイルを作成しています ... 待ってください、このしたゲームの数に応じていくつかの時間がかかることがあります。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "エラーは、 現在のステータス.txt Current_status.txt が存在しません。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "ステータス : 終了しました !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr """\n" "\n" "\n" "ゲーム画像をダウンロードしています ..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "エラー" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr "Titlekey {} 16 進数の 32 桁の番号ではありません" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr "TitleID {} 桁の数字 16 桁の 16 進数値ではありません。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "をダウンロード開始! いくつかの時間、患者にしてください。 背面には、 CMD ( コマンドプロンプト ) を確認して、ダウンロードの進捗状況を確認することができます。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "ダウンロードが完了しました!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "ゲームのために利用可能な更新がありません" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "ゲームのために利用可能な更新がありません、ベースのゲームをダウンロードした !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "" "\n" "ファイルを保存する場所を選択してください!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Persistent queue not found, skipping..." msgstr "永続的なキューを見つけられませんでした。 スキップしています ....." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "キューが空になっています。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr "TitleID 用リストに名が見つかりません" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "を削除するには、選択したゲームはありません!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "ダウンロードを開始しています。 私は完了している時に私が通知します。 しばらくお待ちください。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "ゲームをダウンロードしています ..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr "TitleID に利用可能な更新がありません。 {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr "TitleID に利用可能な更新がありません。 {} ベースのゲームをダウンロードした !" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "ダウンロードが完了しました!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr "ダウンロードが完了しました!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "ステータス:新しい titlekeys 得ること" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "更新を終了しました!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr "追加されたのは新しいゲームの合計数: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "終止; 締切り" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "ステータス : 終了を更新するには、何もありません。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "ステータス:完了するには、新しい更新はありません!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr "データベース・サーバ {} がダウンしているか、または使用できないことがあり" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" "\n" "{}\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr "Titlekey チェックを有効にする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "Titlekey 検査を無効にする" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "" "\n" "すべての画像を取得するために {} 秒かかりました!\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "すべてのゲーム画像の取得完了!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "バージョンの取得に失敗しました。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr "不足している TitleID または TitleID 16 文字ではありません!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "ウィンドウのサイズと位置が保存されました。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "既存のゲームを検索しています" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "立ち読み" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "スキャンするコンピュータ" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "エラー : ディレクトリを選択します。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "選択したディレクトリが存在しません!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "あなたのゲームのスキャンが完了しました!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "ステータス: ゲームの状態のファイルを作成しています ... 待ってください、このしたゲームの数に応じていくつかの時間がかかることがあります。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "ベース 64 のテキスト:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "解読する" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "デコードされたテキスト :" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "開始する" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr "ゲーム情報:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr "ゲーム価格:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description:" msgstr "ゲームの説明:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher:" msgstr "出版社:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer" msgstr "開発者:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date:" msgstr "リリース日:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category:" msgstr "カテゴリ:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players:" msgstr "プレーヤーの数:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "このゲームについての情報を見つけることができません。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "について" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "プログラムクレジット" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "言語" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "新しい言語を適用するには、 GUI を再起動してください!" ================================================ FILE: locales/ko/LC_MESSAGES/language.po ================================================ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-08-01 00:27+1200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "" "\n" "\n" "오류 - 애플리케이션이 Python 2로 실행되어졌습니다. Python 3을 설치해주시고 Python 2를 삭제해주세요!\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr "설치 오류 {0}, 애플리케이션을 종료하신 후 CMD에서 다음과 같이 타이핑해서 모듈을 수동으로 설치해주세요: pip3 install {0}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr "" "\n" "필요한 모듈이 설치되어 있는지 확인합니다!\n" "\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr "모든 게 좋아 보이네요! 애플리케이션이 곧 실행됩니다!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "필요한 파일을 얻을 수 없습니다! 인터넷 연결을 확인하세요!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "titlekeys.txt 파일의 가장 아랫부분에 빈칸이 있는지 확인하세요! 만약 있다면 지워주세요!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "오류!, CDNSP-GUI-config.json 파일을 찾지 못함." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "다운로드 위치 선택" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "게임 이미지 팩 다운 " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr "저장된 대기열 불러오기" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "대기열 저장하기" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "Aria2c 기능 잠김" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "게임 이미지 비활성화" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "모든 팝업창 비활성화" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "NSP 리팩 비활성화" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "Disable Titlekey check" msgstr "타이틀 키 확인 비활성화" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "Enable Shorten Name" msgstr "이름 줄이기 활성화" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Enable Tinfoil Download" msgstr "Tinfoil 다운로드 활성화" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "Enable SysVer 0 Patch" msgstr "SysVer 0 패치 활성화" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "Save Windows Location and Size" msgstr "윈도우 창의 위치와 크기 저장" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "Scan for existing games" msgstr "보유한 게임 스캔하기" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 Decoder" msgstr "Base64 디코더" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "메뉴" msgid "Download_bottom" msgstr "다운로드" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "옵션" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "도구" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "NSP 리팩 활성화" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "모든 팝업창 활성화" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr "타이틀 키 확인 활성화" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "게임 이미지 활성화" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "이름 줄이기 비활성화" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr "Tinfoil 다운로드 비활성화" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "SysVer 0 패치 비활성화" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr "상태:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "게임" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "상태" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr "게임 이미지:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "" "게임 이미지를 클릭하시면 \n" "해당 게임의 eShop 페이지로 이동합니다!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "데모 표시하지 않음" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "타이틀 ID:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "타이틀 키:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr "업데이트 버전 선택:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr "다운로드 옵션:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr "게임 본편 + 업데이트 + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "게임 본편 + 업데이트" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "업데이트 + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "게임 본편만" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "게임 업데이트만" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "모든 DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "대기열에 추가" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "타이틀 키 업데이트" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "대기열 메뉴" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "선택된 게임 삭제" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "전부 삭제" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "전부 다운로드" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "다운로드를 클릭하시면 대기열에 있는 모든 게임을 다운로드합니다! " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "상태: 게임 상태 파일을 가져오는 중... 기다려주세요 " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "" "\n" "현재 상태 파일을 작성하고 있습니다... 기다려주세요, 보유한 게임의 개수에 따라 시간이 조금 걸릴 수 있습니다 ." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "오류, Current_status.txt 파일이 존재하지 않습니다" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "상태: 완료!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr "" "\n" "\n" "\n" "게임 이미지 다운로드중..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "오류" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr "타이틀 키 {}가 32자리의 16진수 숫자가 아닙니다!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr "타이틀 ID {}가 16자리의 16진수 숫자가 아닙니다!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "다운로드를 시작합니다! 시간이 조금 걸립니다, 기다려주세요. CMD(command prompt)를 통해 다운로드 진행 상황을 확인하실 수 있습니다" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "다운로드 완료!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "이 게임의 업데이트가 존재하지 않습니다" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "이 게임의 업데이트가 존재하지 않습니다, 게임 본편이 다운로드됩니다!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "" "\n" "파일을 저장할 위치를 선택하지 않았습니다!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Persistent queue not found, skipping..." msgstr "대기열이 발견되지 않았습니다. 스킵합니다..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "대기열에서 아이템을 찾지 못했습니다." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr "목록에서 타이틀 ID에 해당하는 이름을 찾을 수 없습니다" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "제거할 게임을 선택하지 않았습니다!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "대기열에 있는 모든 게임을 다운로드합니다! 모든 게임의 다운로드가 완료될 때까지 기다려주세요!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "게임 다운로드중..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr "타이틀 ID에 해당하는 업데이트가 없습니다: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr "타이틀 ID에 해당하는 업데이트가 없습니다: {}, 게임 본편이 다운로드됩니다!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "다운로드 완료!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr "다운로드 완료!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "상태: 타이틀 키 업데이트 중" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "업데이트 완료!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr "{}개의 새로운 게임이 추가되었습니다" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "닫기" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "상태: 업데이트 완료!, 업데이트할 새로운 게임이 없습니다!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "" "\n" "상태: 업데이트 완료, 업데이트할 새로운 게임이 없습니다!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "상태: 업데이트 완료!, 데이터베이스 리빌드 중" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr "데이터베이스 서버 {} 가 다운되었거나 존재하지 않습니다" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" "\n" "{}\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr "타이틀 키 확인 활성화" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "타이틀 키 확인 비활성화" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "" "\n" "모든 이미지를 얻는데 {}초가 걸렸습니다!\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "모든 게임의 이미지를 얻었습니다!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "버전 정보를 가져오는데 실패했습니다" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr "타이틀 ID가 없거나 타이틀 ID가 16자가 아닙니다!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "윈도우 창의 위치와 크기가 저장되었습니다!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "보유한 게임 스캔" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "찾아보기" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "스캔" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "디렉터리를 선택하지 않았습니다!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "선택한 디렉터리가 존재하지 않습니다!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "보유한 게임 스캔 완료!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "현재 상태 파일을 작성하고 있습니다... 기다려주세요, 보유한 게임의 개수에 따라 시간이 조금 걸릴 수 있습니다." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "Base64 텍스트:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "디코드" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "디코드된 텍스트:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "열기" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr "게임 정보:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr "게임 가격:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description:" msgstr "게임 설명:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher:" msgstr "유통사:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer" msgstr "개발자" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date:" msgstr "출시일:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category:" msgstr "카테고리:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players:" msgstr "플레이 인원수:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "현재 이 게임에 대한 게임 정보를 사용할 수 없습니다!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "대하여" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "만든 사람들" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "언어" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "새로운 언어를 적용하려면 GUI를 재시작해주세요!" msgid 'New' msgstr 'NEW' msgid 'Own' msgstr '보유함' msgid 'Update' msgstr '신규 업데이트' msgid 'Latest' msgstr '최신버전' ================================================ FILE: locales/ms/LC_MESSAGES/language.po ================================================ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-08-01 00:27+1200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "\n" "\n" "Ralat - Aplikasi telah dibuka menggunakan Python 2, sila pasang applikasi Python 3 dan buang Python 2" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr "Pemasangan ralat {0}, tutup aplikasi dan lakukan pemasangan secara manual dengan menaip di CMD: pip3 install {0}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr "\n" "Memeriksa modul-modul yang diperlukan...\n" "\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr "Pemeriksaan selesai, semuanya lengkap!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "Gagal mendapatkan file yang diperlukan! Sila lihat sambungan internet anda" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "Sila semak fail titlekeys.txt jika ada ada ruangan kosong di bawah. Buang jika ada." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "Ralat! CDNSP-GUI-config.json tidak ditemui" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "Pilih lokasi muat turun fail" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "Gambar Game Ditunjukkan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr "Tunjukan Giliran Yang Disimpan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "Simpan Giliran" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "Fungsi Aria2c dipadam " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "PAPARAN IMEJ GAME DITUTUP" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "Matikan Semua Pop-up" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "Matikan fungsi Repack NSP" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "Disable Titlekey check" msgstr "Matikan Fungsi Semakan Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "Enable Shorten Name" msgstr "Aktifkan Fungsi Ringkasan Nama" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Enable Tinfoil Download" msgstr "Aktifkan Fungsi Muat Turun Tinfoil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "Enable SysVer 0 Patch" msgstr "Aktifkan Fungsi SysVer 0 Patch" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "Save Windows Location and Size" msgstr "Simpan Lokasi dan Saiz Windows" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "Scan for existing games" msgstr "Scan game sedia ada" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 Decoder" msgstr "Dekoder Base64" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "Muat Turun" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "Pilihan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "Alatan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "Aktifkan NSP Repack" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "Benarkan Semua Pop-up" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr "Aktifkan semakan Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "AKTIFKAN GAMBAR GAME" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "Padam Fungsi Pendekan Nama" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr "Padam Fungsi Muat Turun Tinfoil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "Padam SysVer 0 Patch" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr "Status:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "Game" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "Status" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr "Gambar Game" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "" "Tekan gambar di bawah \n" "untuk membuka game di eShop!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "Tiada Demo" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "Title ID" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "Title Key" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr "Pilihan version" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr "Pilihan muat turun" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr "Game asal + Update + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "Game asal + Update" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "Update + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "Game asal sahaja" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "Update sahaja" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "Semua DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "Tambah ke senarai giliran" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "Kemasikini Titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "Senarai Giliran" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "Buang game yang dipilih" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "Buang semua" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "Muat turun semua" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "Tekan muat turun semua untuk memuaturun semua game di senarai giliran" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "Sedang mendapatkan game.. Sila tunggu" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "" "\n" "Sedang membina status semasa fail... Sila tunggu di mana ianya mungkin mengambil masa bergantung kepada berapa banyak game yang telah dipilih." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "Ralat, fail Current_status.txt tidak wujud" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "Status: Siap!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr "\n" "\n" "\n" "Memuat turun gambar game..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "Ralat" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr "Titlekey {} bukan nombor 32-digit hexadecimal " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr "TitleID {} bukan nombor hexadecimal 16-digit" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "Muat turun bermula! Ianya akan mengambil sedikit masa, sila bersabar. Anda boleh melihat status muat turun di CMD (command prompt)" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "Muat turun selesai!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "Tiada update untuk game berkenaan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "Tiada update untuk game berkenaan, hanya game asal dimuaturun!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "\n" "Anda belum memilih lokasi untuk menyimpan fail" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Persistent queue not found, skipping..." msgstr "Senarai giliran tidak ditemui, mengabaikan..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "Tiada di dalam senarai menunggu" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr "Nama titleID tidak dijumpai di dalam senarai" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "Tiada game yang dipilih untuk dibuang" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "Muaturun semua game anda bermula! Anda akan diberitahu selepas semua game telah dimuaturun, harap bersabar!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "Memuaturun game..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr "Tiada update untuk titleID: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr "Tiada update untuk titleID: {}, hanya game asas dimuaturun!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "Muaturun selesai!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr "Muaturun selesai!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "Sedang mengemaskini titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "Selesai kemaskini!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr "Jumlah game baru ditambah: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "Tutup" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "Status: Kemasiki selesai. Tiada lagi game baru untuk dikemaskini!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "\n" "Status: Kemasiki selesai. Tiada lagi game baru untuk dikemaskini!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "Status: Selesai kemaskini, Database dikemaskini daripada awal" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr "Server database {} mungkin tiada atau tutup" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" "\n" "{}\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr "Benarkan Fungsi Semakan Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "Padamkan Fungsi Semakan Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "" "\n" "Ia mengambil {} beberapa saat untuk mendapatkan semua gambar\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "Selesai untuk dapatkan semua gambar!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "Tidak berjaya mendapatkan version" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr "Tiada TitleID atau TitleID bukan 16 askara!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "Saiz dan posisi Windows disimpan!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "Semak game sedia ada" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "Memilih" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "Scan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "Anda tidak memilih lokasi" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "Lokasi yang dipilih tidak wujud" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "Selesai scan game" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "Status: Membina status fail semasa... Sila tunggu, ianya bergantung kepada bilangan game sedia ada anda." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "Base64 text" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "Dekod" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "Dekod text" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "Buka" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr "Info Game" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr "Harga Game" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description:" msgstr "Intipati Game" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher:" msgstr "Pemasaran" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer" msgstr "Developer" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date:" msgstr "Tarikh Dipasarkan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category:" msgstr "Kategori" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players:" msgstr "Bilangan Pemain:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "Intipati game tidak terdapat pada waktu ini!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "Diskripsi" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "Kredit" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "Bahasa" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "Sila restart semula GUI untuk menukar bahasa!" msgid "New" msgstr "Baru" msgid "Own" msgstr "Telah memiliki" msgid "Update" msgstr "Kemasikini" msgid "Latest" msgstr "Terbaharu" ================================================ FILE: locales/nl/LC_MESSAGES/language.po ================================================ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-08-01 00:27+1200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "Foutmelding programma gestart met Python 2, installeer alsjeblieft Python 3 en verwijder Python 2" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr "Foutmelding bij het installeren {0}, sluit het programma en installeer de module handmatig door in CMD pip3 install te tikken {0}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr "Controle of alles geïnstalleerd is om het programma te kunnen starten" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr "Alles is in orde!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "Niet mogelijk om de nodige bestanden te downloaden! Controleer je internet aansluiting en probeer opnieuw" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "Controleer of er extra spaties aan de onderkant van het titlekeys.txt bestand staan! Als deze er staan verwijder deze dan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "Foutmelding! , Bestand CDNSP-GUI-config.json mist " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "Selecteer de Download locatie" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "Pre-Load Spel Afbeeldingen" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr "Laad opgeslagen wachtrij" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "Sla wachtrij op" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "Aria2c wordt gemist" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "Schakel spel afbeeldingen uit" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "Stop alle Pop-Ups" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "Schakel NSP herpakken uit" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "Disable Titlekey check" msgstr "Schakel Titlekey controle uit" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "Enable Shorten Name" msgstr "Schakel afkorten van naam in" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Enable Tinfoil Download" msgstr "Schakel Tinfoil Download in" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "Enable SysVer 0 Patch" msgstr "Schakel Sysver 0 Patch in" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "Save Windows Location and Size" msgstr "Sla scherm locatie en grootte op" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "Scan for existing games" msgstr "Zoek naar reeds opgeslagen spellen" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 Decoder" msgstr "Base64 Decoder" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "Downloaden" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "Opties" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "Gereedschap" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "Inschakelen NSP herpakken" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "Schakel alle Pop-Ups in" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr "Schakel Titlekey controle in" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "Schakel spel afbeelding in" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "Schakel afkorten van naam uit" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr "Schakel Tinfoil Download uit" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "Schakel Sysver 0 Patch uit" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr "Status:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "Spel" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "Status" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr "Spel Afbeelding" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "" "Klik op de afbeelding hierboven \n" "om het spel te openen in de eShop!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "Geen Demo" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "Title ID:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "Title Key" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr "Selecteer update versie" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr "Download opties:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr "Basis Spel + Update + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "Basis Spel + Update" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "Update + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "Enkel het Basis Spel" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "Alleen de Update" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "Alleen DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "Toevoegen aan Wachtrij" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "Update Titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "Wachtrij Menu" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "Verwijder geselecteerd spel" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "Verwijder alles" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "Download alles" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "Klik op download om alle spellen te downloaden in de wachtrij!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "Status: Opvragen spel status... Even geduld a.u.b." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "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" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "Foutmelding het bestand Current_status.txt bestaat niet" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "Status: Klaar!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr "" "\n" "\n" "\n" "Downloaden spel afbeelding..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "Foutmelding" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr "Titlekey {} is niet een 32-digits hexadecimal nummer!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr "TitleID {} is niet een 16-digits hexadecimal nummer!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "Beginnen met downloaden! Dit zal wat tijd kosten, even geduld a.u.b. Je kan het command prompt controleren om de status te zien." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "Downloaden Klaar" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "Geen updates beschikbaar voor dit spel" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "Geen updates beschikbaar voor dit spel, basis spel gedownload!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "" "\n" "Je hebt geen locatie gekozen om het bestand op te slaan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Persistent queue not found, skipping..." msgstr "Wachtrij niet gevonden, wordt overgelagen..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "Item niet gevonden in wachtrij" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr "Naam van titleID niet gevonden in de lijst" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "Geen spel geselecteerd om te verwijderen" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "Download van alle spellen in wachtrij zal nu beginnen! Je wordt geinformeerd als de downloads klaar zijn, Wacht geduldig!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "Downloaden van spellen..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr "Geen updates beschikbaar voor titleID: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr "Geen updates beschikbaar voor titleID: {}, Basis spel gedownload" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "Downloaden Klaar!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr "Downloaden Klaar!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "Status: Updaten van titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "Klaar met update!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr "Totaal aantal nieuwe spellen toegevoegd: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "Sluiten" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "Status: Update Klaar, Er zijn geen nieuwe spellen om te updaten" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "" "\n" "Status: Update Klaar, Er zijn geen nieuwe spellen om te updaten" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "Status : Update Klaar, Database opnieuw opgebouwd" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr "De Database server {} is uit of niet beschikbaar" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" "\n" "{}\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr "Inschakelen Titlekey Controle" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "Uitschakelen Titlekey Controle" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "" "\n" "Het koste {} seconden om alle afbeeldingen te verkrijgen\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "Klaar met alle afbeeldingen te verkrijgen" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "Versie mislukt op te halen" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr "Geen TitleID of TitleID is geen 16 karakters" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "Schermgrootte en locatie opgeslagen" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "Zoeken naar bestaande spellen" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "Browse" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "Scannen" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "Je hebt geen directory gekozen!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "De gekozen directory bestaat niet!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "Klaar met scannen naar spellen!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "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" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "Base64 tekst:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "Decode" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "Decoded Tekst" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "Open" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr "Spel Info" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr "Spel Prijs" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description:" msgstr "Spel beschrijving" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher:" msgstr "Uitgever" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer" msgstr "Ontwikkelaar" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date:" msgstr "Uitgeef Datum:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category:" msgstr "Catagorie" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players:" msgstr "Aantal Spelers:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "Spelinformatie niet beschikbaar voor dit spel op dit moment!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "Over" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "Credits" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "Taal" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "Herstart de Gui om de nieuwe taal in te schakelen!" msgid 'New' msgstr 'Nieuw' msgid 'Own' msgstr 'In Bezit' msgid 'Update' msgstr 'Update' msgid 'Latest' msgstr 'Laatste Versie' ================================================ FILE: locales/pl/LC_MESSAGES/language.po ================================================ # Polish language file for CDNSP Gui by Bob. # Copyright (C) 2018 Bob # szczuru , 2018. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-08-01 00:27+1200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: szczuru \n" "Language-Team: CGPG @ Discord\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "" "\n" "\n" "Błąd - Aplikacja została uruchomiona za pomocą Pythona 2, proszę usunąć Pythona 2 i zainstalować Pythona 3\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr "Błąd instalacji {0}, zamknij aplikację i zainstaluj ręcznie moduł wpisując w linii komend: pip3 install {0}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr "" "\n" "Sprawdzam czy wszystkie wymagane moduły są zainstalowane!\n" "\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr "Wygląda na to, że tak :)" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "Nie można pobrać wymaganych plików! Sprawdź połączenie internetowe" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "Sprawdź czy nie ma pustych wierszy na końcu pliku titlekeys.txt! Jeśli tak - usuń je!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "Błąd! Brak pliku CDNSP-GUI-config.json" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "Wybierz lokalizację pobranych plików" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "Wstępnie wczytuj okładki gier" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr "Wczytaj zapisaną kolejkę" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "Zapisz kolejkę" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "Aria2c będzie niedostępny" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "UKRYJ OKŁADKI GIER" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "Wyłącz wyskakujące okna" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "Wyłącz przepakowywanie plików NSP" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "Disable Titlekey check" msgstr "Wyłącz sprawdzanie titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "Enable Shorten Name" msgstr "Włącz skrócone nazwy" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Enable Tinfoil Download" msgstr "Włącz pobieranie tylko ticketu dla Tinfoil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "Enable SysVer 0 Patch" msgstr "Włącz patch SysVer 0" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "Save Windows Location and Size" msgstr "Zapisz położenie i rozmiar okna" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "Scan for existing games" msgstr "Skanuj w poszukiwaniu pobranych gier" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 Decoder" msgstr "Dekoder Base64" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "Pobieranie" msgid "Download_bottom" msgstr "Pobierz" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "Ustawienia" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "Narzędzia" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "Włącz przepakowywanie plików NSP" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "Włącz wyskakujące okna" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr "Włącz sprawdzanie titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "POKAZUJ OKŁADKI GIER" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "Wyłącz skrócone nazwy" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr "Wyłącz pobieranie tylko ticketu dla Tinfoil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "Wyłącz patch SysVer 0" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr "Status:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "Gra" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "Stan" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr "Okładka:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "" "Kliknij na okładkę gry powyżej \n" "aby otworzyć grę w eShop-ie!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "Ukryj dema" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "Title ID:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "Title Key:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr "Wybierz wersję aktualizacji" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr "Opcje pobierania:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr "Wersja bazowa + Aktualizacja + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "Wersja bazowa + Aktualizacja" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "Aktualizacja + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "Tylko wersja bazowa" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "Tylko aktualizacja" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "Wszystkie DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "Dodaj do kolejki" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "Zaktualizuj Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "Menu kolejki" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "Usuń wybrane gry" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "Usuń wszystko" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "Pobierz wszystko" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "Kliknij pobierz wszystko aby pobrać wszystkie pozycje z kolejki!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "Status: Sprawdzanie statusu gry... Proszę czekać" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "" "\n" "Budowanie pliku statusu... Proszę czekać, może to chwilę potrwać, w zależności od ilości posiadanych gier." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "Błąd, plik Current_status.txt nie istnieje" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "Status: Zrobione!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr "" "\n" "\n" "\n" "Pobieranie okładki gry..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "Błąd" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr "Titlekey {} nie jest 32-cyfrowym numerem heksadecymalnym!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr "TitleID {} nie jest 16-cyfrowym numerem heksadecymalnym!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "Rozpoczynam pobieranie! Zajmie to jakiś czas, proszę o cierpliwość. Postęp można sprawdzić w oknie wiersza poleceń (CMD) w tle." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "Pobieranie zakończone!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "Brak aktualizacja dla tej gry" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "Brak aktualizacja dla tej gry, pobrano wersję bazową!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "" "\n" "Nie wybrano miejsca zapisu pliku!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Zapisana kolejka nie znaleziona, pomijam..." msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "Pozycja nie znaleziona w kolejce" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr "Nie znaleziono nazwy dla tego titleID" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "Nie wybrano gry do usunięcia!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "Rozpoczynam pobieranie gier z kolejki! Poinformuję gdy pobieranie zostanie zakończone, proszę czekać!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "Pobieranie gier..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr "Brak aktualizacji dla titleID: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr "Brak aktualizacji dla titleID: {}, pobrano wersję bazową!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "Zakończono pobieranie!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr "Zakończono pobieranie!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "Status: Aktualizowanie titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "Zakończono aktualizację" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr "Liczba nowych gier: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "Zamknij" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "Status: Zakończono aktualizację, Nie było pozycji do zaktualizowania!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "" "\n" "Status: Zakończono aktualizację, Nie było pozycji do zaktualizowania!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "Status: Zakończono aktualizację, baza danych zostanie ponownie zbudowana" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr "Serwer bazy danych {} jest niedostępny" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" "\n" "{}\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr "Włącz sprawdzanie TitlekeyS" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "Wyłącz sprawdzanie Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "" "\n" "Pobieranie okładek zajęło {} sekund!\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "Zakończono pobieranie okładek!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "Błąd pobierania wersji" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr "Brak TitleID lub TitleID ma błędny format!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "Zapisano rozmiar i położenie okna!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "Wyszukaj pobrane gry" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "Przeglądaj" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "Skanuj" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "Nie wybrano katalogu" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "Wybrany katalog nie istnieje!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "Zakończono skanowanie Twoich gier" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "Status: Budowanie pliku statusu... Proszę czekać, może to chwilę potrwać, w zależności od ilości posiadanych gier." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "Base64 tekst:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "Dekoduj" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "Zdekodowany tekst:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "Otwórz" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr "Informacje:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr "Cena:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description:" msgstr "Opis gry:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher:" msgstr "Wydawca" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer" msgstr "Developer:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date:" msgstr "Data wydania:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category:" msgstr "Kategoria:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players:" msgstr "Liczba graczy:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "Informacje dla tej gry nie są obecnie dostępne!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "O programie" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "Autorzy" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "Język" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "Proszę uruchomić aplikację ponownie aby zmienić język!" msgid 'New' msgstr 'Nowa' msgid 'Own' msgstr 'Posiadane' msgid 'Update' msgstr 'Aktualizacja' msgid 'Latest' msgstr 'Najnowsza' msgid 'Update Version List' msgstr 'Zaktualizuj listę wersji' msgid 'No Japanese Game' msgstr 'Ukryj japońskie wersje' ================================================ FILE: locales/pt/LC_MESSAGES/language.po ================================================ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-08-01 00:27+1200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: KazumaKiryu \n" "Language-Team: Portuguese (Brazil) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "" "\n" "\n" "Erro - Aplicativo carregado com Python 2, por favor instale o Python 3 e delete o Python 2\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr "Erro instalando {0}, feche o aplicativo e instale o modulo manualmente digitando no CMD: pip3 install {0}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr "" "\n" "Checando se todos os modulos necessários foram instalados!\n" "\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr "Está tudo perfeito!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "Impossível de obter os arquivos necessários! Verifique sua conexão de internet" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "Cheque se o seu titlekeys.txt possui espaços extras no fim do arquivo, delete os espaços se houver" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "Erro! falta o arquivo CDNSP-GUI-config.json" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "Escolha o local de download" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "Pré-carregamento das imagens dos jogos" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr "Carregar Fila Salva" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "Salvar Fila" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "Aria2c será perdido" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "Desabilitar imagens dos jogos" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "Silenciar todos pop-ups" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "Desabilitar NSP Repack" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "Disable Titlekey check" msgstr "Desabilitar checagem de Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "Enable Shorten Name" msgstr "Habilitar Encurtador de Nome" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Enable Tinfoil Download" msgstr "Habilitar Download em Modo Tinfoil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "Enable SysVer 0 Patch" msgstr "Habilitar Patch SysVer 0" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "Save Windows Location and Size" msgstr "Salvar Localização e Tamanho das Janelas" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "Scan for existing games" msgstr "Escanear por jogos existentes" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 Decoder" msgstr "Decodificador Base64" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "Download" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "Opções" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "Ferramentas" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "Habilitar NSP Repack" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "Ativar sons dos Pop-ups" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr "Habilitar checagem dos Titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "Habilitar imagens dos jogos" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "Desabilitar encurtador de nomes" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr "Desabilitar Download em Modo Tinfoil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "Desabilitar Patch SysVer 0" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr "Status" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "Jogo" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "Estado" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr "Imagem do Jogo" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "" "Clique na imagem do jogo abaixo \n" "para abrir o jogo na eShop!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "Sem Demos" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "Title ID:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "Title Key:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr "Escolha a versão do update:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr "Opções de Download" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr "Jogo Base + Update + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "Jogo Base + Update" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "Update + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "Somente jogo base" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "Somente update" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "Todos DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "Adicionar a fila" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "Atualizar Titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "Menu de Fila" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "Remover jogo selecionado" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "Remover tudo" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "Baixar tudo" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "Clique Baixar Tudo para baixar todos jogos na fila" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "Status: Obtendo status do jogo... aguarde" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "" "\n" "Montando a atual situação do arquivo... Aguarde, isso pode levar algum tempo dependendo de quantos jogos você tem." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "Erro, Current_status.txt não existe" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "Pronto!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr "" "\n" "\n" "\n" "Baixando imagem do jogo..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "Erro" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr "Titlekey {} não é um numero hexadecimal de 32 digitos!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr "TitleID {} não é um numero hexadecimal de 16 digitos" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "Iniciando download! Pode levar algum tempo, seja paciente. Você pode checar o prompt de comando para ver o progresso do download." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "Download concluido!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "Sem updates disponíveis para o jogo" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "Sem updates disponíveis para o jogo, jogo base baixado!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "" "\n" "Você não escolheu um local para baixar o arquivo!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Persistent queue not found, skipping..." msgstr "Fila persistente não encontrada, pulando..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "Item não encontrado na fila" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr "Nome para titleID não encontrado na lista" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "Sem jogo selecionado para remover!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "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!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "Baixando jogos..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr "Sem updates disponíveis para o titleID: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr "Sem updates disponíveis para o titleID: {}, jogo base baixado!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "Download completo!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr "Download Completo!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "Status: Atualizando titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "Update concluído!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr "Total de jogos novos adicionados: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "Fechar" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "Status: update concluído, não existe novos jogos para atualizar!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "Status: update concluído, não existe novos jogos para atualizar!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "Update concluído, Database reconstruída do início" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr "O servidor da database {} pode estar derrubado ou indisponível" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" "\n" "{}\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr "Habilitar checagem de Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "Desabilitar checagem de Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "" "\n" "Levará {} segundos para obter todas imagens!\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "Todas as imagens de jogos obtidas!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "Falha ao obter versão" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr "Sem TitleID ou TitleID sem 16 caracteres!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "Posição e tamanho das janelas salvos!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "Buscando por jogos existentes" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "Procurar" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "Escanear" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "Você não escolheu um diretório!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "O diretório escolhido não existe!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "Finalizado escaneamento dos jogos" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "Status: Construindo a situação do arquivo... Aguarde, isso pode levar algum tempo dependendo de quantos jogos você possuí." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "Texto Base64:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "Decodificar" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "Texto Decodificado:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "Abrir" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr "Informação de jogo:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr "Preço do Jogo:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description:" msgstr "Descrição do Jogo:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher:" msgstr "Editora:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer:" msgstr "Desenvolvedor:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date:" msgstr "Data de Lançamento:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category:" msgstr "Categoria:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players:" msgstr "Numero de Jogadores:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "Informações do jogo não são disponíveis nesse momento!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "Sobre" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "Créditos" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "Idioma" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "Por favor reinicie o GUI para aplicar o novo idioma!" msgid 'New' msgstr 'Novo' msgid 'Own' msgstr 'Possuí' msgid 'Update' msgstr 'Atualizar' msgid 'Latest' msgstr 'Atual' ================================================ FILE: locales/pt/LC_MESSAGES/language_old.po ================================================ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-08-01 00:27+1200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: KazumaKiryu \n" "Language-Team: Portuguese (Brazil) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "" "\n" "\n" "Erro - Aplicativo carregado com Python 2, por favor instale o Python 3 e delete o Python 2\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr "Erro instalando {0}, feche o aplicativo e instale o modulo manualmente digitando no CMD: pip3 install {0}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr "" "\n" "Checando se todos os modulos necess·rios foram instalados!\n" "\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr "Est· tudo perfeito!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "ImpossÌvel de obter os arquivos necess·rios! Verifique sua conex„o de internet" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "Cheque se o seu titlekeys.txt possui espaÁos extras no fim do arquivo, delete os espaÁos se houver" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "Erro! falta o arquivo CDNSP-GUI-config.json" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "Escolha o local de download" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "PrÈ-carregamento das imagens dos jogos" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr "Carregar Fila Salva" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "Salvar Fila" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "Aria2c ser· perdido" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "Desabilitar imagens dos jogos" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "Silenciar todos pop-ups" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "Desabilitar NSP Repack" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "Disable Titlekey check" msgstr "Desabilitar checagem de Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "Enable Shorten Name" msgstr "Habilitar Encurtador de Nome" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Enable Tinfoil Download" msgstr "Habilitar Download em Modo Tinfoil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "Enable SysVer 0 Patch" msgstr "Habilitar Patch SysVer 0" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "Save Windows Location and Size" msgstr "Salvar LocalizaÁ„o e Tamanho das Janelas" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "Scan for existing games" msgstr "Escanear por jogos existentes" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 Decoder" msgstr "Decodificador Base64" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "Download" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "OpÁıes" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "Ferramentas" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "Habilitar NSP Repack" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "Ativar sons dos Pop-ups" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr "Habilitar checagem dos Titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "Habilitar imagens dos jogos" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "Desabilitar encurtador de nomes" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr "Desabilitar Download em Modo Tinfoil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "Desabilitar Patch SysVer 0" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr "Status" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "Jogo" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "Estado" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr "Imagem do Jogo" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "" "Clique na imagem do jogo abaixo \n" "para abrir o jogo na eShop!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "Sem Demo" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "Title ID:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "Title Key:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr "Escolha a vers„o do update:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr "OpÁıes de Download" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr "Jogo Base + Update + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "Jogo Base + Update" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "Update + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "Somente jogo base" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "Somente update" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "Todos DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "Adicionar a fila" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "Atualizar Titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "Menu de Fila" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "Remover jogo selecionado" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "Remover tudo" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "Baixar tudo" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "Clique Baixar Tudo para baixar todos jogos na fila" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "Status: Obtendo status do jogo... aguarde" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "" "\n" "Montando a atual situaÁ„o do arquivo... Aguarde, isso pode levar algum tempo dependendo de quantos jogos vocÍ tem." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "Erro, Current_status.txt n„o existe" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "Pronto!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr "" "\n" "\n" "\n" "Baixando imagem do jogo..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "Erro" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr "Titlekey {} n„o È um numero hexadecimal de 32 digitos!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr "TitleID {} n„o È um numero hexadecimal de 16 digitos" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "Iniciando download! Pode levar algum tempo, seja paciente. VocÍ pode checar o prompt de comando para ver o progresso do download." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "Download concluido!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "Sem updates disponÌveis para o jogo" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "Sem updates disponÌveis para o jogo, jogo base baixado!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "" "\n" "VocÍ n„o escolheu um local para baixar o arquivo!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Persistent queue not found, skipping..." msgstr "Fila persistente n„o encontrada, pulando..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "Item n„o encontrado na fila" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr "Nome para titleID n„o encontrado na lista" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "Sem jogo selecionado para remover!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "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!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "Baixando jogos..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr "Sem updates disponÌveis para o titleID: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr "Sem updates disponÌveis para o titleID: {}, jogo base baixado!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "Download completo!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr "Download Completo!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "Status: Atualizando titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "Update concluÌdo!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr "Total de jogos novos adicionados: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "Fechar" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "Status: update concluÌdo, n„o existe novos jogos para atualizar!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "Status: update concluÌdo, n„o existe novos jogos para atualizar!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "Update concluÌdo, Database reconstruÌda do inÌcio" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr "O servidor da database {} pode estar derrubado ou indisponÌvel" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" "\n" "{}\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr "Habilitar checagem de Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "Desabilitar checagem de Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "" "\n" "Levar· {} segundos para obter todas imagens!\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "Todas as imagens de jogos obtidas!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "Falha ao obter vers„o" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr "Sem TitleID ou TitleID sem 16 caracteres!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "PosiÁ„o e tamanho das janelas salvos!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "Buscando por jogos existentes" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "Procurar" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "Escanear" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "VocÍ n„o escolheu um diretÛrio!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "O diretÛrio escolhido n„o existe!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "Finalizado escaneamento dos jogos" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "Status: Construindo a situaÁ„o do arquivo... Aguarde, isso pode levar algum tempo dependendo de quantos jogos vocÍ possuÌ." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "Texto Base64:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "Decodificar" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "Texto Decodificado:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "Abrir" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr "InformaÁ„o de jogo:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr "PreÁo do Jogo:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description:" msgstr "DescriÁ„o do Jogo:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher:" msgstr "Editora:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer:" msgstr "Desenvolvedor:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date:" msgstr "Data de LanÁamento:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category:" msgstr "Categoria:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players:" msgstr "Numero de Jogadores:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "InformaÁıes do jogo n„o s„o disponÌveis nesse momento!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "Sobre" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "CrÈditos" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "Idioma" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "Por favor reinicie o GUI para aplicar o novo idioma!" ================================================ FILE: locales/ru/LC_MESSAGES/language.po ================================================ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-08-01 00:27+1200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "" "\n" "\n" "Ошибка - приложение было запущено с помощью Python 2, установите Python 3 и удалите Python 2\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr "Ошибка установки {0}, закройте приложение, и установите модуль вручную, набрав в командной строке: pip3 install {0}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr "" "\n" "Проверка наличия всех необходимых модулей!\n" "\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr "Все модули установлены! Приложение сейчас будет запущено!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "Не удалось получить требуемые файлы! Проверьте свое подключение к Интернету!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "Проверьте, есть ли пробелы в нижней части файла titlekeys.txt! Удалите их, если есть!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "Ошибка! Не могу найти CDNSP-GUI-config.json" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "Выбрать директорию для загрузки игр" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "Предзагрузить обложки для игр" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr "Загрузить сохраненную очередь загрузки" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "Сохранить очередь загрузки" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "Нам будет тебя не хватать, aria2c" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "Отключить обложки для игр" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "Отключить всплывающие сообщения" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "Отключить перепаковку в NSP" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "Disable Titlekey check" msgstr "Отключить проверку Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "Enable Shorten Name" msgstr "Включить сокращение имени" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Enable Tinfoil Download" msgstr "Включить загрузку Tinfoil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "Enable SysVer 0 Patch" msgstr "Включить патч SysVer 0" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "Save Windows Location and Size" msgstr "Сохранить местоположение и размер окон" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "Scan for existing games" msgstr "Найти существующие игры" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 Decoder" msgstr "Декодер Base64" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "Загрузка" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "Настройки" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "Инструменты" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "Включить перепаковку в NSP" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "Включить всплывающие сообщения" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr "Включить проверку Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "Включить обложки для игр" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "Отключить сокращение имени" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr "Отключить загрузку Tinfoil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "Отключить патч SysVer 0" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr "Статус: " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "Игра" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "Состояние" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr "Обложка игры" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "" "Кликните на обложку игры, \n" "чтобы перейти на страницу игры в eShop!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "Отключить демо-версии" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "Title ID:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "Title Key:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr "Выберите версию обновления" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr "Настройки загрузки" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr "Игра + Обновление + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "Игра + Обновление" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "Обновление + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "Только Игра" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "Только Обновление" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "Все DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "Добавить в очередь загрузки" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "Обновить Titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "Очередь загрузки" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "Убрать выбранные игры" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "Убрать все игры" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "Загрузить все игры" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "Нажмите \"Загрузить все игры\" чтобы загрузить все игры в очереди загрузки!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "Статус: Получение статуса игр... Пожалуйста подождите" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "" "\n" "Создание текущего файла состояния... Пожалуйста подождите, это займет некоторое время." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "Ошибка, файл Current_status.txt не существует!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "Статус: Готово!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr "" "\n" "\n" "\n" "Загрузка обложки для игры..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "Ошибка" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr "Titlekey {} не является 32-значным шестандцатеричным числом!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr "TitleID {} не является 16-значным шестандцатеричным числом!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "Начинается загрузка! Это займет некоторое время. Вы можете следить за прогрессом в командной строке." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "Загрузка завершена!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "Для этой игры нет доступных обновлений" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "Для этой игры нет доступных обновлений, была загружена только игра!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "" "\n" "Вы не выбрали директорию для сохранения файла!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Persistent queue not found, skipping..." msgstr "Сохраненная очередь загрузки не найдена, пропускаем..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "Элемент не найден в очереди загрузки" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr "Имя TitleID не найдено в списке" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "Ни одна игра не выбрана для удаления из очереди!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "Начинается загрузка всех ваших игр в очереди! Вы будете проинформированы, как только все загрузки будут завершены!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "Загрузка игр..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr "Для TitleID: {} нет доступных обновлений" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr "Для TitleID: {} нет доступных обновлений, была загружена только игра!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "Загрузка завершена" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr "Загрузка завершена" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "Статус Обновление Titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "Обновление завершено" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr "Всего новых игр добавлено: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "Закрыть" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "Статус: Обновление завершено, новый игр для обновления нет!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "" "\n" "Статус: Обновление завершено, новый игр для обновления нет!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "Статус: Обновление завершено, база была данных перестроена с нуля" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr "Сервер базы данных {} недоступен" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" "\n" "{}\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr "Включить проверку Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "Отключить проверку Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "" "\n" "{} секунд заняла загрузка всех обложек!\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "Все обложки были успешно загружены!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "Не удалось получить версию" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr "Нет TitleID или он не состоит из 16 символов!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "Местоположение и размер окон сохранены!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "Поиск существующих игр" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "Выбрать папку" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "Найти" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "Вы не выбрали директорию!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "Выбранная вами директория не существует!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "Сканирование игр завершено!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "Статус: Создание текущего файла состояния... Пожалуйста подождите, это займет некоторое время." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "Base64 текст:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "Раскодировать" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "Раскодированный текст:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "Открыть" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr "Информация об игре" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr "Цена" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description:" msgstr "Описание" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher:" msgstr "Издатель" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer" msgstr "Разработчик" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date:" msgstr "Дата выхода" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category:" msgstr "Категория" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players:" msgstr "Количество игроков:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "Информация об игре недоступна в данный момент!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "О программе" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "Авторы" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "Язык" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "Пожалуйста перезапустите GUI для смены языка!" msgid 'New' msgstr 'Новая игра' msgid 'Own' msgstr 'Загруженная игра' msgid 'Update' msgstr 'Есть обновление' msgid 'Latest' msgstr 'Последняя' msgid "Update Version List" msgstr "Обновить список версий" msgid "No Japanese Game" msgstr "Убрать японские игры" ================================================ FILE: locales/th/LC_MESSAGES/language.po ================================================ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-08-01 00:27+1200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "เกิดข้อผิดพลาด! โปรแกรมถูกเปิดด้วย Python 2!!! กรุณาถอนการติดตั้ง Python 2 และทำการติดตั้ง Python 3 แทน\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr "เกิดข้อผิดพลาดในการติดตั้ง {0}, กรุณาปิดโปรแกรม จากนั้นทำการติดตั้งโมดูลด้วยตนเอง ด้วยการพิมพ์ใน CMD: pip3 install {0}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr "กำลังตรวจสอบการติดตั้งโมดูลทั้งหมด!\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr "ไม่พบปัญหา!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "ไม่สามารถติดตั้งไฟล์ที่จำเป็นได้! กรุณาตรวจสอบการเชื่อมต่ออินเทอร์เน็ต" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "กรุณาเปิดไฟล์ titlekeys.txt และตรวจสอบด้านล่างสุดของไฟล์ว่ามีเนื้อที่ว่างอยู่ไหม! หากมีให้ทำการลบเนื้อที่ว่างนั้นออก!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "เกิดข้อผิดพลาด! ไม่พบไฟล์ CDNSP-GUI-config.json" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "เลือกตำแหน่งเก็บไฟล์ดาวน์โหลด" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "โหลดภาพประกอบ" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr "โหลดคิว" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "เซฟคิว" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "Aria2c will be missed" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "ปิดการแสดงผลรูปภาพประกอบ" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "ปิดการใช้งานป๊อปอัพทั้งหมด" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "ปิดการใช้งาน NSP Repack" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "Disable Titlekey check" msgstr "ปิดการใช้งานการตรวจสอบ Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "Enable Shorten Name" msgstr "เปิดการใช้งานย่อชื่อไฟล์" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Enable Tinfoil Download" msgstr "เปิดการใช้งานดาวน์โหลดสำหรับ Tinfoil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "Enable SysVer 0 Patch" msgstr "เปิดการใช้งาน SysVer 0 แพทช์" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "Save Windows Location and Size" msgstr "บันทึกตำแหน่งและขนาดของหน้าต่าง" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "Scan for existing games" msgstr "สแกนรายการเกม" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 Decoder" msgstr "Base64 Decoder" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "ดาวน์โหลด" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "ตัวเลือก" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "เครื่องมือ" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "เปิดการใช้งาน NSP Repack" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "เปิดการใช้งานป๊อปอัพ" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr "เปิดการใช้งานตรวจสอบ Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "เปิดการใช้งานภาพประกอบ" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "ปิดการใช้งานการย่อชื่อไฟล์" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr "ปิดการใช้งานดาวน์โหลดสำหรับ Tinfoil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "ปิดการใช้งาน SysVer 0 แพทช์" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr "สถานะ:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "เกม" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "สถานะ" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr "ภาพประกอบ:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "คลิกที่รูปภาพ \n" "เพื่อดูข้อมูลของเกมใน eShop" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "ไม่ต้องแสดงเดโมเกม" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "Title ID:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "Title Key:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr "เลือกเวอร์ชั่นอัพเดท:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr "ตัวเลือกการดาวน์โหลด:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr "เกมหลัก + อัพเดท + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "เกมหลัก + อัพเดท" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "อัพเดท + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "เกมหลักเท่านั้น" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "อัพเดทเท่านั้น" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "DLC ทั้งหมด" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "เพิ่มลงในคิว" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "อัพเดท Titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "รายการคิวดาวน์โหลด" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "นำเกมที่เลือกไว้ออก" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "เอาออกทั้งหมด" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "ดาวน์โหลดทั้งหมด" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "คลิกดาวน์โหลดทั้งหมดเพื่อเริ่มดาวน์โหลดเกมในรายการ" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "สถานะ: กำลังเรียกสถานะของเกม... กรุณารอซักครู่" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "กำลังสร้างไฟล์สถานะระบบ... โปรดรอซักครู่! ขั้นตอนนี้อาจใช้เวลา ขึ้นอยู่กับจำนวนเกมที่คุณมี" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "เกิดข้อผิดพลาด! ไม่พบไฟล์ Current_status.txt" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "สถานะ: เสร็จสิ้น!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr "กำลังดาวน์โหลดภาพประกอบ..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "เกิดข้อผิดพลาด" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr "TitleID {} ไม่ใช่เลขฐานสิบหก 32อักษร!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr "TitleID {} ไม่ใช่เลขฐานสิบหก 16อักษร!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "เริ่มต้นการดาวน์โหลด! การดาวน์โหลดต้องใช้เวลา กรุณาใจเย็นๆ - คุณสามารถตรวจสอบหน้าต่าง CMD (command prompt) ที่ด้านหลังเพื่อดูความคืบหน้าในการดาวน์โหลด" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "ดาวน์โหลดเสร็จสิ้น!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "ไม่พบอัพเดทเกม" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "เกมหลักดาวน์โหลดเสร็จสิ้น และไม่พบอัพเดทเกม" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "คุณยังไม่ได้เลือกตำแหน่งในการบันทึกข้อมูล!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Persistent queue not found, skipping..." msgstr "Persistent queue not found, ทำการข้าม..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "ไม่มีรายการในคิว" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr "ไม่พบชื่อสำหรับ titleID ในรายการ" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "คุณยังไม่ได้เลือกเกมที่จะนำออกจากรายการ!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "เริ่มต้นการดาวน์โหลดเกมทั้งหมดในรายการ! คุณจะได้รับการแจ้งเตือนเมื่อการดาวน์โหลดเสร็จสิ้น โปรดรออย่างใจเย็น!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "กำลังดาวน์โหลดเกม..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr "ไม่มีอัพเดทสำหรับ titleID: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr "เกมหลักดาวน์โหลดเสร็จสิ้น และไม่มีอัพเดทสำหรับเกม titleID: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "ดาวน์โหลดเสร็จสิ้น!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr "ดาวน์โหลดเสร็จสิ้น!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "สถานะ: กำลังอัพเดท titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "อัพเดทเสร็จสิ้น!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr "เพิ่มเกมใหม่ทั้งหมดจำนวน: {} เกม" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "ปิด" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "สถานะ: อัพเดทเสร็จสิ้น! ไม่พบเกมใหม่!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "สถานะ: อัพเดทเสร็จสิ้น! ไม่พบเกมใหม่!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "สถานะ: อัพเดทเสร็จสิ้น! ทำการสร้างดาต้าเบสใหม่ทั้งหมด" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr "ดาต้าเบสเซิร์ฟเวอร์ {} อาจจะล่ม หรือไม่ว่าง" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr "เปิดการใช้งานตรวจสอบ Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "ปิดการใช้งานตรวจสอบ Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "ใช้เวลา {} วินาทีในการดาวน์โหลดภาพประกอบทั้งหมด!\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "ดาวน์โหลดภาพประกอบทั้งหมดเสร็จสิ้น!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "ไม่สามารถโหลดเวอร์ชั่นดังกล่าว" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr "ไม่พบ TitleID หรือ TitleID ไม่ครบ 16 อักษร!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "บันทึกขนาดและตำแหน่งของหน้าต่างแล้ว!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "ค้นหาเกมที่มีอยู่" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "เลือก" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "สแกน" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "คุณไม่ได้เลือกตำแหน่ง!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "ตำแหน่งที่คุณเลือกไว้ไม่มีในระบบ!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "ทำการสแกนเกมเสร็จสิ้น!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "สถานะ: กำลังสร้างไฟล์สถานะระบบ... โปรดรอซักครู่! ขั้นตอนนี้อาจใช้เวลา ขึ้นอยู่กับจำนวนเกมที่คุณมี" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "Base64 text:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "Decode" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "Decoded text:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "เปิด" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr "ข้อมูลเกม:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr "ราคา:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description:" msgstr "คำบรรยาย:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher:" msgstr "ผู้จัดจำหน่าย:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer" msgstr "ผู้พัฒนา" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date:" msgstr "วันที่เผยแพร่:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category:" msgstr "ประเภท:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players:" msgstr "จำนวนผู้เล่น:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "ไม่พบข้อมูลเกมดังกล่าวในขณะนี้!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "เกี่ยวกับ" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "เครดิต" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "ภาษา" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "กรุณาปิดและเปิดโปรแกรมใหม่ เพื่อทำการใช้ภาษาที่เลือก!" msgid 'New' msgstr 'ใหม่ !!' msgid 'Own' msgstr 'ดาวน์โหลดไปแล้ว' msgid 'Update' msgstr 'มีอัพเดทใหม่' msgid 'Latest' msgstr 'เวอร์ชั่นล่าสุด' ================================================ FILE: locales/tr/LC_MESSAGES/language.po ================================================ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-08-01 00:27+1200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "" "\n" "\n" "Hata - Uygulama Python 2 ile başlatıldı, lütfen Python 2'yi silip Phyton 3'ü yükleyin\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr "{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}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr "" "\n" "Gerekli modüller kontrol ediliyor!\n" "\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr "Herşey düzgün çalışıyor!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "Gerekli dosyalar bulunumadı! Internet bağlatınızı kontrol edin" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "titlekeys.txt dosyasındaki fazladan boşlukları kontrol edin! Gereksiz boşlukları silin!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "Hata!, CDNSP-GUI-config.json dosyası bulunamadı" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "Indirilecek Konumu Seç" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "Oyun Resimlerini Önceden Yükle" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr "Kayıtlı Sırayı Yükle" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "Sırayı Kaydet" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "Aria2c Kaldır" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "OYUN RESMİ DEVREDIŞI" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "Açılır Pencereler Aktif" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "NSP Paketleme Devredışı" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "Disable Titlekey check" msgstr "Titlekey Kontrolü Devredışı" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "Enable Shorten Name" msgstr "Kısaltmalar Aktif" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Enable Tinfoil Download" msgstr "Tinfoil Indirmesi Aktif" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "Enable SysVer 0 Patch" msgstr "SysVer 0 Patch Aktif" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "Save Windows Location and Size" msgstr "Windows Konumunu ve Boyutunu Kaydet" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "Scan for existing games" msgstr "Seçili Oyunları Tara" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 Decoder" msgstr "Base64 Çevirici" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "Indir" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "Ayarlar" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "Araçlar" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "NSP Paketleme Aktif" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "Açılır Pencereler Devredışı" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr "Titlekey Kontrolü Açık" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "OYUN RESMİ AKTİF" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "Kısaltmalar Devredışı" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr "Tinfoil Indirmesi Devredışı" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "SysVer 0 Patch Devredışı" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr "Durum:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "Oyun Adı" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "Kaynak" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr "Oyun Resmi:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "" "Oyunu Eshop'ta Açmak İçin \n" "Üstteki Resme Tıklayın!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "Demoları Gösterme" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "Title ID:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "Title Key:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr "Güncelleme Sürümünü Seç:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr "Indirme Seçenekleri:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr "Oyun + Güncelleme + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "Oyun + Güncelleme" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "Güncelleme + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "Sadece Oyun" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "Sadece Güncelleme" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "Tüm Güncellemeler" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "Sıraya Ekle" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "Titlekey'leri Güncelle" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "Sıra Menüsü" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "Seçilen Oyunu Sil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "Hepsini Sil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "Hepsini İndir" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "Sıralamadaki oyunların hepsini indirmek için download all tıkla " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "Durum: Oyun Durumu Belirleniyor...Lütfen Bekleyin" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "" "\n" "Mevcut oyunlar hazırlanıyor... Lütfen bekleyin, oyun sayısına bağlı olarak süreç değişebilir." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "Hata, Current_status.txt mevcut değil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "Durum: Tamam!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr "" "\n" "\n" "\n" "Oyun Resimleri İndiriliyor..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "Hata" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr "Titlekey {} : 32 haneli hexadecimal sayısı değil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr "TitleID {} : 16 haneli hexadecimal sayısı değil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "İndirme başlıyor! Biraz zaman alabilir, lütfen sabredin. İndirme sırasında CMD (Komut Sistemi) arkaplanda indirilirken gözükür" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "İndirme Tamam!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "Bu oyun için güncelleme bulunamadı" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "Bu oyun için güncelleme bulunamadı, sadece oyun indirildi!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "" "\n" "Kaydedilecek konumu seçmedin!!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Persistent queue not found, skipping..." msgstr "Kalıcı sıra bulunamadı, esgeçiliyor..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "Sıradaki öğe bulunamadı" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr "Listede belirtilen isimle uyuşan titleID bulunamadı " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "Kaldırılacak oyun seçilmedi!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "Sıralamadaki oyunlar şimdi başlıyor! Indirmeler tamamlanınca bilgilendirileceksiniz, lütfen sabredin!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "Oyunlar İndiriliyor..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr "titleID: {} için güncelleme güncelleme mevcut değil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr "titleID: {} için güncelleme güncelleme mevcut değil, sadece oyun indirildi!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "İndirme tamamlandı!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr "İndirme Tamamlandı!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "Durum: titlekeys güncelleniyor" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "Güncelleme Tamamlandı!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr "Yeni Eklenen oyun adedi: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "Kapat" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "Durum: Güncelleme Tamamlandı, yeni oyun bulunamadı" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "" "\n" "Durum: Güncelleme Tamamlandı, yeni oyun bulunamadı" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "Durum: Güncelleme tamamlandı, veritabanı yenilendi" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr "Sunucu {} çöktü veya kapalı" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" "\n" "{}\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr "Title Kontrolü Aktif" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "Title Kontrolü Devredışı" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "" msgid "" "\n" " Tüm resimlerin indirilmesi {} saniye sürdü!\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "Tüm resimlere erişildi" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "Version bilgisi alınamadı" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr "TitleID değil veya 16 karakterli bir TitleID değil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "Windows Boyutu ve yeri kaydedildi!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "Mevcut oyunlar aranıyor" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "Gözat" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "Tara" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "Tercihleri seçmediniz" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "Seçtiğiniz tercih mevcut değil!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "Mevcut Oyunlar tarandı" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "Durum: belirtilen dosya hazırlandı... Lütfen bekleyin, süreç seçilen oyun sayısına bağlı olarak değişebilir. " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "Base64 yazısı:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "Çeviri" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "Çervilirilmiş yazı:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "Aç" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr "Oyun Bilgisi:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr "Oyun Fiyatı:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description:" msgstr "Oyun Açıklaması:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher:" msgstr "Dağıtıcı:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer" msgstr "Geliştirici:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date:" msgstr "Çıkış Tarihi:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category:" msgstr "Kategori:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players:" msgstr "Oyuncu Sayısı:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "Bu oyun ile ilgili bilgi şimdilik bulunamadı!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "Hakkında" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "Credits" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "Dil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "Yeni dil tercihinin uygulanması için lütfen GUI'yi yeniden başlatın!" msgid "New" msgstr "Yeni" msgid "Own" msgstr "Indirilenler" msgid "Update" msgstr "Veri güncelleme" msgid "Latest" msgstr "Son sürüm" ================================================ FILE: locales/vi/LC_MESSAGES/language.po ================================================ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-08-01 00:27+1200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: HUNG NGUYEN \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "" "\n" "\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" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr "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}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr "" "\n" "Kiểm tra các modules bắt buộc đã cài đặt chưa!\n" "\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr "Ứng dụng đủ điều kiện khởi động" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "Không thể tải về các files cần thiết, vui lòng kiểm tra kết nối Internet" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "Vui lòng kiểm tra và xóa bỏ cách dòng thừa (space) ở cuối file titlekeys.txt!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "Lỗi thiếu file CDNSP-GUI-config.json" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "Chọn nơi lưu games tải về" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "Tải trước ảnh game" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr "Mở danh sách games đã lưu" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "Lưu danh sách games" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "Aria2c không còn được sử dụng" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "TẮT HÌNH ẢNH GAME" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "Tắt tất cả thông báo" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "Tắt chức năng NSP Repack" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "Disable Titlekey check" msgstr "Tắt kiểm tra Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "Enable Shorten Name" msgstr "Bật chức năng đổi tên ngắn" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Enable Tinfoil Download" msgstr "Bật chức năng tải game dạng Tinfoil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "Enable SysVer 0 Patch" msgstr "Bật Sysver 0 Patch" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "Save Windows Location and Size" msgstr "Lưu vị trí và kích thước cửa sổ" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "Scan for existing games" msgstr "Quét các games hiện tại" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 Decoder" msgstr "Giải mã Bas64" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "Tải về" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "Lựa chọn" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "Công cụ" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "Bật chức năng NSP Repack" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "Bật tất cả thông báo" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr "Bật kiểm tra Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "HIỂN THỊ ẢNH GAME" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "Tắt chức năng đổi tên ngắn" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr "Tắt chức năng tải games dạng Tinfoil" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "Tắt SysVer 0 Patch" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr "Trạng thái" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "Game" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "Trạng thái" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr "Hình ảnh" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "" "Click ảnh game \n" "để mở link tới eShop!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "Không có Demo" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "Title ID" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "Title Key" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr "Chọn phiên bản update" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr "Lựa chọn tải về" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr "Base game + Update + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "Base game + Update" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "Update + DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "Chỉ tải base game" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "Chỉ tải update" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "Tất cả DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "Thêm vào danh sách" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "Cập nhật Titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "Danh sách" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "Xóa game đã chọn" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "Xóa hết" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "Tải tất cả" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "Ấn nút tải tất cả để tải về các games đã lưu" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "Tình trạng: Đang cập nhât...vui lòng đợi trong giây lát" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "" "\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ó." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "Lỗi thiếu file Current_status.txt" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr "" "\n" "\n" "\n" "Đang tải hình ảnh..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "Lỗi" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr "Titlekey {} không có dạng 32-digits hexadecimal hợp lệ!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr "TitleID {} không có dạng 16-digits hexadecimal hợp lệ!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "Đang tải về, xem trong cửa sổ CMD (Windows) hoặc terminal (Mac) để kiểm tra trạng thái" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "Tải về thành công!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "Game không có update nào" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "Game không có update, base game đã được tải về" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "" "\n" "Bạn chưa chọn nợi lưu games" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Persistent queue not found, skipping..." msgstr "Đang bỏ qua vì danh sách game không tìm thấy" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "Không tìm thấy game trong danh sách" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr "titleID không có trong danh sách" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "Không có game nào được chọn để xóa" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "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" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "Đang tải về..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr "Không có update nào cho titleID: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr "Không có update nào cho titleID: {}, base game đã được tải về!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "Đã tải xong" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr "Đã tải xong" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "Đang cập nhật titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "Hoàn tất cập nhật!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr "Tổng số game được thêm: {}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "Đóng" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "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" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "" "\n" "Trạng thái: Hoàn tất cập nhật, không có games mới!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "Trạng thái: Hoàn tất cập nhật, Database sẽ được lưu mới" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr "Máy chủ CSDL {} đang gặp trục trặc" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" "\n" "{}\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr "Bật kiểm tra Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "Tắt kiểm tra Titlekey" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "" "\n" "Mất {} giây để tải về tất cả các ảnh!\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "Hoàn tất tải ảnh về" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "Lỗi không lấy được phiên bản" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr "Không có TitleID hoặc TitleID không đủ 16 ký tự" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "Kích cỡ và vị trí cửa sổ đã được lưu" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "Đang tìm các games hiện tại" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "Mở" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "Quét" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "Bạn chưa chọn thư mục" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "Thư mục được chọn không tồn tại!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "Đã quét xong các games của bạn" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "Trạng thái: " #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "Base64 text" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "Giải mã" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "Text đã được giải mã" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "Mở" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr "Thông tin" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr "Giá" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description:" msgstr "Mô tả" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher:" msgstr "Nhà phát hành" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer" msgstr "Nhà phát triển" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date:" msgstr "Ngày phát hành:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category:" msgstr "Nhóm:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players:" msgstr "Số lượng người chơi" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "Thông tin game không tồn tại" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "Giới thiệu" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "Danh sách thành viên" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "Ngôn ngữ" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "Khởi động lại ứng dụng để thay đổi ngôn ngữ mới" msgid 'New' msgstr 'Game mới download' msgid 'Own' msgstr 'Game đã download' msgid 'Update' msgstr 'Game có update' msgid 'Latest' msgstr 'Phiên bản mới nhất' ================================================ FILE: locales/zh-cn/LC_MESSAGES/language.po ================================================ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-08-01 00:27+1200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "" "\n" "\n" "错误 - 程序无法在Python 2环境下运行,请安装Python 3并删除Python 2\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr "{0}安装错误,请关闭程序,并在CMD窗口输入以下命令手动安装:pip3 install {0}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr "" "\n" "正在检查是否安装了所有需求模块!\n" "\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr "看起来一切已准备就绪!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "无法获取所需文件!请检查你的网络连接。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "请检查titlekeys.txt文件末尾是否有多余空行!如有请删除!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "错误!找不到CDNSP-GUI-config.json文件。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "选择下载位置" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "预载所有游戏图片" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr "载入已保存队列" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "保存队列" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "多线程下载功能已移除" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "关闭游戏图片显示" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "禁止弹出消息" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "关闭NSP打包" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "Disable Titlekey check" msgstr "关闭游戏密钥校验" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "Enable Shorten Name" msgstr "开启短文件名" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Enable Tinfoil Download" msgstr "开启Tinfoil版下载" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "Enable SysVer 0 Patch" msgstr "开启SysVer 0补丁" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "Save Windows Location and Size" msgstr "保存窗口位置及大小" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "Scan for existing games" msgstr "扫描本地游戏" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 Decoder" msgstr "Base64解码器" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "下载" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "选项" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "工具" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "开启NSP打包" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "允许弹出消息" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr "开启游戏密钥校验" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "开启游戏图片显示" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "关闭短文件名" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr "关闭Tinfoil版下载" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "关闭SysVer 0补丁" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr "状态:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "游戏" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "状态" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr "游戏图片:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "点击游戏图片\n" "打开相应eShop页面!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "不显示体验版" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "游戏标识:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "游戏密钥:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr "选择升级补丁版本:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr "下载选项:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr "游戏本体+升级补丁+DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "游戏本体+升级补丁" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "升级补丁+DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "仅游戏本体" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "仅升级补丁" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "全部DLC" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "添加到队列" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "更新游戏密钥清单" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "队列菜单" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "移除选中的游戏" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "移除所有游戏" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "下载所有游戏" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "点击“下载所有游戏”开始队列下载!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "状态:正在获取游戏状态...请耐心等待" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "" "\n" "正在构建当前状态文件...根据游戏数量多少需要相应的时间,请耐心等待。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "错误,Current_status.txt不存在" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "状态:完成!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr "" "\n" "\n" "\n" "正在下载游戏图片..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "错误" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr "游戏密钥{}不是有效的32位十六进制数字!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr "游戏标识{}不是有效的16位十六进制数字!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "开始下载!需要一定时间,请耐心等待。你可以查看后端的CMD窗口了解下载进度。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "下载完成!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "该游戏没有升级补丁" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "该游戏没有升级补丁,将仅下载游戏本体!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "" "\n" "你未选择下载文件位置!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Persistent queue not found, skipping..." msgstr "未发现连续队列,跳过..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "未在队列中发现项目" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr "未在游戏清单内找到该标识对应的名称" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "未选中任何游戏来移除!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "开始下载队列中的所有游戏!全部下载完成后会进行通知,请耐心等待!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "正在下载游戏...." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr "该游戏标识没有升级补丁:{}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr "该游戏标识没有升级补丁:{},将仅下载游戏本体!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "下载完成!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr "下载完成!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "状态:正在更新游戏密钥清单" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "更新完成!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr "新增游戏数量:{}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "关闭" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "状态:更新完成,没有新增游戏!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "" "\n" "更新完成,没有新增游戏!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "状态:更新完成,重建游戏数据库" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr "在线数据库{}可能已失效或无法访问" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" "\n" "{}\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr "开启游戏密钥校验" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "关闭游戏密钥校验" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "总共耗时{}秒下载所有游戏图片!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "所有游戏图片下载完成!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "无法取得版本信息" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr "缺少游戏标识,或游戏标识不是16位字符!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "窗口位置及大小已保存!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "扫描本地游戏" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "浏览" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "扫描" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "你未选择任何文件夹!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "已选择的文件夹不存在" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "完成扫描本地游戏!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "状态:正在构建当前状态文件... 根据游戏数量多少需要相应的时间,请耐心等待。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "Base64文本:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "解码" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "解码文本:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "打开" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr "游戏信息:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr "游戏价格:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description:" msgstr "游戏简介:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher:" msgstr "发行商:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer" msgstr "开发商:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date:" msgstr "发行日期:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category:" msgstr "类别:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players:" msgstr "玩家人数:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "该游戏暂时无法取得相关信息!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "关于" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "团队" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "语言" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "请重新启动本程序以启用新语言!" msgid 'New' msgstr '新增' msgid 'Own' msgstr '拥有' msgid 'Update' msgstr '升级' msgid 'Latest' msgstr '最新' msgid 'Update Version List' msgstr '更新版本清单' msgid 'No Japanese Game' msgstr '不显示日文游戏' ================================================ FILE: locales/zh-tw/LC_MESSAGES/language.po ================================================ # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR ORGANIZATION # Maruku , 2018. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2018-08-12 01:56+0800\n" "PO-Revision-Date: 2018-08-12 01:56+0800\n" "Last-Translator: Maruku \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: pygettext.py 1.5\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:25 msgid "" "\n" "\n" "Error - Application launched with Python 2, please install Python 3 and delete Python 2\n" msgstr "" "\n" "\n" "錯誤 - 應用程式使用 Python 2 啟動,請安裝 Python 3 並刪除 Python 2\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:49 msgid "Error installing {0}, close the application and you can install the module manually by typing in CMD: pip3 install {0}" msgstr "安裝 {0} 錯誤, 關閉應用程式然後使用手動安裝模組在 CMD 輸入: pip3 install {0}" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:51 msgid "" "\n" "Checking if all required modules are installed!\n" "\n" msgstr "" "\n" "正在檢查全部必要的模組是否已經安裝!\n" "\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:86 msgid "Everything looks good!" msgstr "一切看起來都很好!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:88 msgid "Unable to get required files! Check your internet connection" msgstr "無法取得必要的檔案! 請檢查你的網際網路連線" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1334 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2470 msgid "Check if there's extra spaces at the bottom of your titlekeys.txt file! Delete if you do!" msgstr "檢查 titlekeys.txt 檔案底部是否有多餘的空格! 如果有,請刪除!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1355 msgid "Error!, Missing CDNSP-GUI-config.json file" msgstr "錯誤!, 找不到 CDNSP-GUI-config.json 檔案" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1485 msgid "Select Download Location" msgstr "選擇下載位置" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1486 msgid "Preload Game Images" msgstr "預載遊戲圖片" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1488 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1709 msgid "Load Saved Queue" msgstr "載入儲存佇列" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1489 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1710 msgid "Save Queue" msgstr "儲存佇列" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1493 msgid "Aria2c will be missed" msgstr "Aria2c 會造成封包遺失(停用)" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1494 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1540 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2544 msgid "DISABLE GAME IMAGE" msgstr "停用遊戲圖片" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1498 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1532 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2499 msgid "Mute All Pop-ups" msgstr "全部彈出視窗靜音" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1499 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1526 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2344 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2522 msgid "Disable NSP Repack" msgstr "停用 NSP 重新封裝" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1500 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1534 msgid "Disable Titlekey check" msgstr "停用 Titlekey 檢查" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1504 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1544 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2642 msgid "Enable Shorten Name" msgstr "啟用短名稱" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1505 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1548 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2652 msgid "Enable Tinfoil Download" msgstr "啟用 Tinfoil 下載" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1506 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1552 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2855 msgid "Enable SysVer 0 Patch" msgstr "啟用 SysVer 0 補丁" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1510 msgid "Save Windows Location and Size" msgstr "儲存視窗位置與大小" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1515 msgid "Scan for existing games" msgstr "掃瞄現存遊戲" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1516 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2786 msgid "Base64 Decoder" msgstr "Base64 解碼器" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1519 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1684 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1713 msgid "Download" msgstr "下載" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1520 msgid "Options" msgstr "選項" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1521 msgid "Tools" msgstr "工具" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1528 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2341 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2516 msgid "Enable NSP Repack" msgstr "啟用 NSP 重新封裝" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1530 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2496 msgid "Unmute All Pop-ups" msgstr "取消全部彈出視窗靜音" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1536 msgid "Enable Titlekey check" msgstr "啟用 Titlekey 檢查" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1538 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2541 msgid "ENABLE GAME IMAGE" msgstr "啟用遊戲圖片" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1542 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2639 msgid "Disable Shorten Name" msgstr "停用短名稱" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1546 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2649 msgid "Disable Tinfoil Download" msgstr "停用 Tinfoil 下載" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1550 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2852 msgid "Disable SysVer 0 Patch" msgstr "停用 SysVer 0 補丁" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1555 msgid "Status:" msgstr "狀態:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1589 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1904 msgid "Game" msgstr "遊戲" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1591 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1905 msgid "State" msgstr "狀態" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1603 msgid "Game Image:" msgstr "遊戲圖片:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1615 msgid "" "Click the game image above \n" "to open the game in the eShop!" msgstr "" "點擊上面的遊戲圖片\n" "可以開啟在 eShop 裡的遊戲介紹!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1626 msgid "No Demo" msgstr "排除試玩版遊戲" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1631 msgid "Title ID:" msgstr "Title ID:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1639 msgid "Title Key:" msgstr "Title Key:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1647 msgid "Select update version:" msgstr "選擇更新版本:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1657 msgid "Download options:" msgstr "下載選項:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1661 msgid "Base game + Update + DLC" msgstr "遊戲 + 更新 + 遊戲追加內容" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1662 msgid "Base game + Update" msgstr "遊戲 + 更新" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1663 msgid "Update + DLC" msgstr "更新 + 遊戲追加內容" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1664 msgid "Base game only" msgstr "只有遊戲" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1665 msgid "Update only" msgstr "只有更新" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1666 msgid "All DLC" msgstr "全部遊戲追加內容" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1682 msgid "Add to queue" msgstr "加入佇列" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1687 msgid "Update Titlekeys" msgstr "更新 Titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1700 msgid "Queue Menu" msgstr "佇列選單" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1728 msgid "Remove selected game" msgstr "移除選擇的遊戲" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1729 msgid "Remove all" msgstr "全部移除" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1730 msgid "Download all" msgstr "全部下載" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1731 msgid "Click download all to download all games in queue!" msgstr "點擊 [全部下載] 來下載全部在佇列中的遊戲" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1795 msgid "Status: Getting game status... Please wait" msgstr "狀態: 正在取得遊戲狀態... 請稍等" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1803 msgid "" "\n" "Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "" "\n" "正在建立目前的狀態檔案... 請稍等, 這個可能要花點時間且取決於你有多少遊戲。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1899 msgid "Error, Current_status.txt doesn't exist" msgstr "錯誤, Current_status.txt 不存在" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1919 msgid "Status: Done!" msgstr "狀態: 完成!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:1996 msgid "" "\n" "\n" "\n" "Downloading game image..." msgstr "" "\n" "\n" "\n" "正在下載遊戲圖片..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "Error" msgstr "錯誤" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2009 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2165 msgid "Titlekey {} is not a 32-digits hexadecimal number!" msgstr "Titlekey {} 不是一個 32-位的16進制的數字!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2011 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2167 msgid "TitleID {} is not a 16-digits hexadecimal number!" msgstr "TitleID {} 不是一個 16-位的16進制的數字!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2034 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2042 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2062 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2077 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2092 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2099 msgid "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." msgstr "正在開始下載! 它會花點時間, 請有點耐心。你可以檢查後面的 CMD (命令提示視窗) 來檢視下載進度。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2036 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2057 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2073 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2087 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2095 #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2105 msgid "Download finished!" msgstr "下載完成!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2038 msgid "No updates available for the game" msgstr "這個遊戲沒有可用的更新" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2107 msgid "No updates available for the game, base game downloaded!" msgstr "這個遊戲沒有可用的更新,主要遊戲已經下載!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2124 msgid "" "\n" "You didn't choose a location to save the file!" msgstr "" "\n" "你沒有選擇要儲存檔案的位置!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2143 msgid "Persistent queue not found, skipping..." msgstr "找不到一致的佇列,正在略過..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2149 msgid "Item not found in queue" msgstr "在佇列找不到項目" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2198 msgid "Name for titleID not found in the list" msgstr "在清單裡找不到 titleID 的名稱" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2224 msgid "No game selected to remove!" msgstr "沒有選取的遊戲可以移除!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2235 msgid "Download for all your queued games will now begin! You will be informed once all the download has completed, please wait and be patient!" msgstr "全部你的已佇列的遊戲將要開始下載! 一旦下載完成就會通知你,請有耐心一點!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2236 msgid "Downloading games..." msgstr "正在下載遊戲..." #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2247 msgid "No updates available for titleID: {}" msgstr "對 titleID: {} 沒有可用的更新" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2306 msgid "No updates available for titleID: {}, base game downloaded!" msgstr "對 titleID: {} 沒有可用的更新, 主要遊戲已經下載!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2312 msgid "Download complete!" msgstr "下載完成!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2313 msgid "Download Complete!" msgstr "下載完成" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2349 msgid "Status: Updating titlekeys" msgstr "狀態: 正在更新 titlekeys" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2385 msgid "Finished update!" msgstr "已完成更新!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2412 msgid "Total of new games added: {}" msgstr "總共有: {} 新遊戲已被加入。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2413 msgid "Close" msgstr "關閉" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2434 msgid "Status: Finished update, There were no new games to update!" msgstr "狀態: 已完成更新,沒有新的遊戲可以更新!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2435 msgid "" "\n" "Status: Finished update, There were no new games to update!" msgstr "" "\n" "狀態: 已完成更新,沒有新的遊戲可以更新!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2450 msgid "Status: Finished update, Database rebuilt from scratch" msgstr "狀態:已完成更新,資料庫將從頭開始重建" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2456 msgid "The database server {} might be down or unavailable" msgstr "資料庫伺服器 {} 可能被關閉或是不可用" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2507 msgid "" "\n" "{}\n" msgstr "" "\n" "{}\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2514 msgid "Enable Titlekey Check" msgstr "啟用 Titlekey 檢查" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2520 msgid "Disable Titlekey Check" msgstr "停用 Titlekey 檢查" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2593 msgid "" "\n" "It took {} seconds for you to get all images!\n" msgstr "" "\n" "它需要 {} 秒,來為您取得全部圖片!\n" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2594 msgid "Done getting all game images!" msgstr "取得全部的遊戲圖片!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2631 msgid "Failed to get version" msgstr "取得版本失敗" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2633 msgid "No TitleID or TitleID not 16 characters!" msgstr "沒有 TitleID 或者 TitleID 沒有 16 個字元!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2677 msgid "Windows size and position saved!" msgstr "視窗尺寸和位置已經儲存!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2682 msgid "Search for existing games" msgstr "為了已存的遊戲搜尋" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2694 msgid "Browse" msgstr "瀏覽" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2696 msgid "Scan" msgstr "掃瞄" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2715 msgid "You didn't choose a directory!" msgstr "你沒有選擇資料夾!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2718 msgid "The chosen directory doesn't exist!" msgstr "選擇的資料夾不存在!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2778 msgid "Finished scanning your games!" msgstr "你的遊戲已經完成掃瞄!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2779 msgid "Status: Building the current state file... Please wait, this may take some time depending on how many games you have." msgstr "狀態: 正在建立目前的狀態檔... 請稍等, 這個可能要花點時間且取決於你有多少遊戲。" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2791 msgid "Base64 text:" msgstr "Base64 文字:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2796 msgid "Decode" msgstr "解碼" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2799 msgid "Decoded text:" msgstr "已解碼文字:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2804 msgid "Open" msgstr "開啟" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2885 msgid "Game Info:" msgstr "遊戲資訊:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2886 msgid "Game Price:" msgstr "遊戲價格:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2887 msgid "Game Description:" msgstr "遊戲說明:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2888 msgid "Publisher:" msgstr "發行者:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2889 msgid "Developer" msgstr "研發人員" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2890 msgid "Release Date:" msgstr "釋出日期:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2891 msgid "Category:" msgstr "分類:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2892 msgid "Number of Players:" msgstr "遊戲人數:" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2893 msgid "Game Info not avaiable for this game at the moment!" msgstr "這個遊戲在這時候沒有可用的遊戲資訊!" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2894 msgid "About" msgstr "關於" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2895 msgid "Credits" msgstr "團隊" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2896 msgid "Language" msgstr "語系" #: #: C:\Users\Bob\Google Drive\CDNSP_new\CDNSP-GUI-Bob-v4\CDNSP-GUI-Bobv4\CDNSP-GUI-Bob-v4.1.py:2897 msgid "Please restart the GUI for the new language to apply!" msgstr "請重新啟動 GUI 來對新語系套用" msgid "New" msgstr "新的" msgid "Own" msgstr "擁有的" msgid "Update" msgstr "更新" msgid "Latest" msgstr "最新的" msgid "Update Version List" msgstr "更新版本清單" msgid "No Japanese Game" msgstr "排除日文版遊戲"