diff --git a/app/Console/Commands/CrowdinSync.php b/app/Console/Commands/CrowdinSync.php index 5a52df60..b286af3f 100644 --- a/app/Console/Commands/CrowdinSync.php +++ b/app/Console/Commands/CrowdinSync.php @@ -28,8 +28,9 @@ class CrowdinSync extends Command protected string $runEnv = self::RUN_ENV_LARAVEL; protected string $mtType = "crowdin"; + protected array|null $mtInfo = null; - protected bool $noPreTrans = false; + protected bool $noPreTrans = true; protected bool $debug = false; /** @@ -87,6 +88,7 @@ class CrowdinSync extends Command 'pt' => 'pt-PT', 'es' => 'es-ES', 'sv' => 'sv-SE', + 'nb' => 'no',//挪威 ]; /** @@ -379,9 +381,18 @@ class CrowdinSync extends Command throw new \RuntimeException('No project languages found.'); } - $this->info('Found ' . count($languageIds) . ' project languages: ' . implode(', ', $languageIds)); + $engineInfo = $this->getMachineTranslationEngine(); + $engineSupportedLanguageIds = $engineInfo['supportedLanguageIds']; + $result = array_intersect($languageIds, $engineSupportedLanguageIds); - return $languageIds; + $this->info(sprintf( + "Found %s project languages: %s \nengine supported %s languages: %s \nresult: %s languages: %s", + count($languageIds), implode(', ', $languageIds), + count($engineSupportedLanguageIds), implode(', ', $engineSupportedLanguageIds), + count($result), implode(', ', $result) + )); + + return $result; } /** @@ -502,13 +513,9 @@ class CrowdinSync extends Command return $result; } - protected function doMachineTranslate($fileIds, $targetLanguages) + protected function doMachineTranslate($fileIds, $languages) { $engineInfo = $this->getMachineTranslationEngine(); - $languages = array_intersect($targetLanguages, $engineInfo['supportedLanguageIds']); - if (empty($languages)) { - throw new \RuntimeException('No languages available, target: ' . json_encode($targetLanguages) . ', supported: ' . json_encode($engineInfo['supportedLanguageIds'])); - } $params = [ 'languageIds' => $languages, 'fileIds' => $fileIds, @@ -525,12 +532,15 @@ class CrowdinSync extends Command protected function getMachineTranslationEngine() { + if (!is_null($this->mtInfo)) { + return $this->mtInfo; + } $url = sprintf("%s/mts", trim($this->apiBaseUrl, '/')); $response = $this->getHttpClient()->get($url); $data = $response->json('data'); foreach ($data as $mt) { if ($mt['data']['type'] === $this->mtType) { - return $mt['data']; + return $this->mtInfo = $mt['data']; } } throw new \RuntimeException("can not get machine-translation id for mtType: $this->mtType, data: " . json_encode($data)); diff --git a/lang/cs/lang_complains.php b/lang/cs/lang_complains.php index e855477d..9ecee59f 100644 --- a/lang/cs/lang_complains.php +++ b/lang/cs/lang_complains.php @@ -29,4 +29,5 @@ $lang_complains = [ 'text_view_band_log' => 'Zobrazit záznam o zákazu', 'reply_notify_subject' => 'Stížnost odpověděla', 'reply_notify_body' => 'Máte odpověď na vaši stížnost na stránce %s, klikněte zde a uvidíte ji.', + 'complain_not_enabled' => 'Stížnost není povolena', ]; diff --git a/lang/cs/lang_settings.php b/lang/cs/lang_settings.php index 9cd0b9dd..b3c61aaa 100644 --- a/lang/cs/lang_settings.php +++ b/lang/cs/lang_settings.php @@ -814,6 +814,8 @@ $lang_settings = array 'text_paid_torrent_enabled_note' => 'Pokud je povoleno, uživatelé s oprávněním mohou nastavit určitou výši bonusu, který bude účtován uživatelům, kteří si stáhnou torrenty při odeslání, výchozí: ne', 'row_use_challenge_response_authentication' => 'Ověření odpovědi na výzvu', 'text_use_challenge_response_authentication_note' => 'Pokud je povoleno, při přihlášení nebudou přenášena žádná klíčová hesla. Budoucí vydání tuto konfiguraci odstraní a povolí tuto funkci.' , + 'row_complain_enabled' => 'Zda povolit stížnosti', + 'row_complain_enabled_note' => 'výchozí: "ano"', ); ?> diff --git a/lang/da/lang_complains.php b/lang/da/lang_complains.php index 30ba6561..23402928 100644 --- a/lang/da/lang_complains.php +++ b/lang/da/lang_complains.php @@ -29,4 +29,5 @@ $lang_complains = [ 'text_view_band_log' => 'Se ban log', 'reply_notify_subject' => 'Klager besvaret', 'reply_notify_body' => 'Du har et svar på din klage på siden %s, klik her for at se det.', + 'complain_not_enabled' => 'Klager ikke aktiveret', ]; diff --git a/lang/da/lang_settings.php b/lang/da/lang_settings.php index 0a7ec138..f2561ad1 100644 --- a/lang/da/lang_settings.php +++ b/lang/da/lang_settings.php @@ -814,6 +814,8 @@ $lang_settings = array 'text_paid_torrent_enabled_note' => 'Når aktiveret, kan brugere med tilladelse indstille en vis mængde bonus, der skal debiteres brugere, der downloader torrents når de sendes, standard: nej', 'row_use_challenge_response_authentication' => 'Challenge-Response Godkendelse', 'text_use_challenge_response_authentication_note' => 'Hvis aktiveret, vil ingen klartekst adgangskoder blive sendt ved login, anbefales. Fremtidige udgivelser vil fjerne denne konfiguration og aktivere denne funktion.' , + 'row_complain_enabled' => 'Om klager skal aktiveres', + 'row_complain_enabled_note' => 'default: "ja"', ); ?> diff --git a/lang/de/lang_complains.php b/lang/de/lang_complains.php index 2a1f6617..71c060c5 100644 --- a/lang/de/lang_complains.php +++ b/lang/de/lang_complains.php @@ -29,4 +29,5 @@ $lang_complains = [ 'text_view_band_log' => 'Sperrprotokoll anzeigen', 'reply_notify_subject' => 'Beschwerde beantwortet', 'reply_notify_body' => 'Sie haben eine Antwort auf Ihre Beschwerde auf der Website %s, klicken Sie hier , um sie zu sehen.', + 'complain_not_enabled' => 'Beschwerde nicht aktiviert', ]; diff --git a/lang/de/lang_settings.php b/lang/de/lang_settings.php index e2f55d8c..27786c74 100644 --- a/lang/de/lang_settings.php +++ b/lang/de/lang_settings.php @@ -814,6 +814,8 @@ $lang_settings = array 'text_paid_torrent_enabled_note' => 'Wenn aktiviert, können Benutzer mit Erlaubnis einen bestimmten Bonus festlegen, der Benutzern in Rechnung gestellt wird, die die Torrents herunterladen, wenn sie gesendet werden, default: Nein', 'row_use_challenge_response_authentication' => 'Challenge-Response-Authentifizierung', 'text_use_challenge_response_authentication_note' => 'Wenn aktiviert, werden beim Login keine Klartext-Passwörter übermittelt, empfohlen. Zukünftige Versionen werden diese Konfiguration entfernen und diese Funktion aktivieren.' , + 'row_complain_enabled' => 'Ob Beschwerden aktiviert werden sollen', + 'row_complain_enabled_note' => 'default: "Ja"', ); ?> diff --git a/lang/el/lang_aboutnexus.php b/lang/el/lang_aboutnexus.php new file mode 100644 index 00000000..3f1b768a --- /dev/null +++ b/lang/el/lang_aboutnexus.php @@ -0,0 +1,38 @@ + "Έκδοση", + 'text_version_note' => "Αυτός ο ανιχνευτής %s τροφοδοτείται από τον %s. Η παρακάτω είναι λεπτομέρεια έκδοσης.", + 'text_main_version' => "Κύρια Έκδοση", + 'text_sub_version' => "Υποέκδοση", + 'text_release_date' => "Ημερομηνία Κυκλοφορίας", + 'text_authorize_to' => "Εξουσιοδοτημένο για", + 'text_authorization_type' => "Τύπος Εξουσιοδότησης", + 'text_commercial' => "Εμπορικό", + 'text_free' => "Δωρεάν", + 'text_nexus' => "Σχετικά ", + 'text_nexus_note' => " είναι πρωτοβουλία από ένα σωρό παιδιά στο Πανεπιστήμιο Zhejiang, Κίνα που αποκαλούν τους εαυτούς τους «ομάδα Nexus». Είναι αφιερωμένο να είναι η αντικατάσταση του έργου TBSource και να παρουσιάσει μια ολοκληρωμένη λύση για να δημιουργήσει μια κοινότητα κοινής χρήσης πόρων με μέλη της πίστωσης, τάξη και γνώση.

+Το πρώτο στάδιο του %s πιρούνια από το TBSource. Προσφέρουμε ένα εκτεταμένο σύνολο χαρακτηριστικών γνωρισμάτων που δεν υπάρχει μέσα ή πολύ ανώτερη από τον αρχικό κώδικα TBSource με πολύ βελτιωμένη απόδοση κώδικα. Εκτός από το TBSource, δανειζόμαστε επίσης κάποιες ιδέες ή κώδικα από άλλα ιδιωτικά trackers, π.χ. Bit-HDTV, What.cd, SceneTorrents.", + 'text_authorization' => "Σχετικά Με Εξουσιοδότηση", + 'text_authorization_note' => "If you like to use %s to power your tracker, feel free to contact us.", + 'text_translation' => "Σχετικά Με Μετάφραση", + 'text_translation_note' => " supports user-side site language switch. The master language is English.

If your language is not (yet) available and you are interested in translating it, please read the translation HOWTO and contact us. We always welcome new translations. Also, the available translations can always use a helping hand, especially those marked as outdate, incomplete or in need of new translators.", + 'text_flag' => "Σημαία", + 'text_language' => "Γλώσσα", + 'text_state' => "Κατάσταση", + 'text_stylesheet' => "Σχετικά Με Stylesheet", + 'text_stylesheet_note' => "The layout of %s is fully CSS-based designed, which allows maximum user interface customization and makes adding new stylesheets easy.

The following is a list of currently available stylesheets at this tracker %s. If you want more stylesheets or feel like to design your own one, contact us.", + 'text_name' => "Όνομα", + 'text_designer' => "Σχεδιαστής", + 'text_comment' => "Σχόλιο", + 'text_contact' => "Επικοινωνία ", + 'text_contact_note' => "Wanna μαζί μας? Λάβετε προτάσεις ή βρείτε σφάλματα? Μιλήστε για την επιχείρηση? Επικοινωνήστε μαζί μας με οποιονδήποτε από τους ακόλουθους τρόπους.", + 'text_web_site' => "Web Site", + 'text_email' => "E-mail", + 'text_msn' => "MSN", + 'text_qq' => "QQ", + 'text_telephone' => "Tele.", +); + +?> diff --git a/lang/el/lang_admanage.php b/lang/el/lang_admanage.php new file mode 100644 index 00000000..c1b50c12 --- /dev/null +++ b/lang/el/lang_admanage.php @@ -0,0 +1,103 @@ + "Διαχείριση Διαφημίσεων", + 'text_ad_management' => "Διαχείριση Διαφημίσεων", + 'text_add_ad' => "Προσθήκη Διαφημίσεων", + 'text_header' => "Κεφαλίδα", + 'text_footer' => "Υποσέλιδο", + 'text_below_navigation' => "Κάτω Από Πλοήγηση", + 'text_below_searchbox' => "Κάτω Πλαίσιο Αναζήτησης", + 'text_torrent_detail' => "Λεπτομέρειες Torrent", + 'text_comment_page' => "Σελίδα Σχολίου", + 'text_inter_overforums' => "Inter Overforums", + 'text_forum_post_page' => "Σελίδα Άρθρου Φόρουμ", + 'text_popup' => "Popup", + 'text_no_ads_yet' => "Δεν υπάρχουν διαφημίσεις ακόμα!", + 'col_enabled' => "Ενεργοποιημένο", + 'col_name' => "Όνομα", + 'col_position' => "Θέση", + 'col_order' => "Σειρά", + 'col_type' => "Μέθοδος", + 'col_start_time' => "Ώρα Έναρξης", + 'col_end_time' => "Ώρα Λήξης", + 'col_action' => "Ενέργεια", + 'text_yes' => "Ναι", + 'text_no' => "Όχι", + 'text_bbcodes' => "BB κωδικοί", + 'text_xhtml' => "XHTML", + 'text_text' => "Κείμενο", + 'text_image' => "Εικόνα", + 'text_flash' => "Φλας", + 'text_delete' => "Διαγραφή", + 'text_edit' => "Επεξεργασία", + 'js_sure_to_delete_ad' => "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτή τη διαφήμιση?", + 'std_error' => "Σφάλμα", + 'std_invalid_id' => "Invalid ID", + 'std_invalid_position' => "Μη έγκυρη θέση", + 'head_add_ad' => "Προσθήκη Διαφημίσεων", + 'head_edit_ad' => "Επεξεργασία Διαφημίσεων", + 'text_note' => "Σημείωση", + 'text_ad_detail' => "Λεπτομέρειες Διαφημίσεων", + 'row_name' => "Όνομα", + 'row_start_time' => "Ώρα Έναρξης", + 'row_end_time' => "Ώρα Λήξης", + 'row_enabled' => "Ενεργοποιημένο", + 'row_order' => "Σειρά", + 'row_type' => "Μέθοδος Εμφάνισης", + 'row_image_url' => "Url Εικόνας", + 'row_image_link' => "Ad Link", + 'row_image_width' => "Πλάτος Εικόνας", + 'row_image_height' => "Ύψος Εικόνας", + 'row_image_tooltip' => "Συμβουλή Συνδέσμου", + 'row_text_content' => "Περιεχόμενο Κειμένου", + 'row_text_link' => "Ad Link", + 'row_text_size' => "Μέγεθος Κειμένου", + 'row_bbcodes_code' => "BB κωδικοί", + 'row_xhtml_code' => "Κωδικός XHTML", + 'row_flash_url' => "Flash URL", + 'row_flash_width' => "Flash Width", + 'row_flash_height' => "Ύψος Flash", + 'submit_submit' => "Sumbit", + 'text_ad' => "Διαφήμιση", + 'text_header_note' => "Εμφάνιση στην επάνω δεξιά γωνία κάθε σελίδας. Συνιστάται η χρήση εικόνας ή flash μεγέθους εντός 580 * 90. Μόνο μία διαφήμιση θα εμφανίζεται. ", + 'text_footer_note' => "Εμφάνιση στο κάτω μέρος κάθε σελίδας. Το συνιστώμενο μέγεθος είναι 728 * 160. Μόνο μία διαφήμιση θα εμφανίζεται. ", + 'text_below_navigation_note' => "Εμφάνιση δεξιά κάτω από τη γραμμή πλοήγησης σε κάθε σελίδα. Συνιστώμενο μέγεθος είναι 728 * 90. Μόνο μία διαφήμιση θα εμφανίζεται. ", + 'text_below_searchbox_note' => "Εμφάνιση δεξιά κάτω από το πλαίσιο αναζήτησης στη σελίδα torrents. Προτεινόμενο μέγεθος είναι 728 * 90. Μόνο μία διαφήμιση θα εμφανίζεται. ", + 'text_torrent_detail_note' => "Εμφάνιση στην περιγραφή torrent στη σελίδα λεπτομερειών του torrent. Συνιστώμενο μέγεθος είναι 600 * 160. Μόνο μία διαφήμιση θα εμφανιστεί. ", + 'text_comment_page_note' => "Εμφάνιση μεταξύ των σχολίων στη σελίδα λεπτομερειών του torrent ή στη σελίδα λεπτομερειών προσφοράς. Συνιστώμενο μέγεθος είναι 600 * 160. Πολλές διαφημίσεις θα εμφανιστούν μαζί. ", + 'text_inter_overforums_note' => "Εμφάνιση μεταξύ overforums στην αρχική σελίδα του φόρουμ. Το συνιστώμενο μέγεθος είναι 728 * 90. Πολλές διαφημίσεις θα εμφανιστούν μαζί.", + 'text_forum_post_page_note' => "Εμφάνιση μεταξύ δημοσιεύσεων φόρουμ στη σελίδα λεπτομερειών θέματος του φόρουμ. Το συνιστώμενο μέγεθος είναι 600 * 160. Πολλές διαφημίσεις θα εμφανιστούν μαζί.", + 'text_popup_note' => "Αναδυόμενο παράθυρο σε κάθε σελίδα. Πολύ ενοχλητική, χρήση με προσοχή. Συνιστώμενο μέγεθος είναι 468 * 90", + 'text_name_note' => "Απλά ένα όνομα για να καλέσετε τη διαφήμιση.", + 'text_start_time_note' => "Σε μορφή YYYY-MM-DD hh:mm:ss, π.χ. «2007-12-24 21:00:00».", + 'text_end_time_note' => "Σε μορφή YYYY-MM-DD hh:mm:ss, π.χ. «2008-01-24 21:00:00». Ο χρόνος μέχρι όταν είναι διαθέσιμη η διαφήμιση.", + 'text_order_note' => "Η προτεραιότητα των διαφημίσεων. Η τιμή '0' έχει την πρώτη προτεραιότητα.
Όταν αρκετές διαφημίσεις είναι διαθέσιμες για μια θέση, αυτή με την υψηλότερη προτεραιότητα θα δείξει αν η θέση επιτρέπει μόνο μία διαφήμιση, και εκείνοι με υψηλότερες προτεραιότητες θα εμφανιστούν στην κορυφή αν η θέση επιτρέπει αρκετές διαφημίσεις. Όταν αρκετές διαθέσιμες διαφημίσεις έχουν την ίδια αξία προτεραιότητας, η πιο πρόσφατα που προστέθηκε έχει την υψηλότερη προτεραιότητα. ", + 'text_enabled_note' => "Μόνο ενεργοποιημένες διαφημίσεις θα εμφανίζονται. ", + 'text_type_note' => "Επιλέξτε τη μέθοδο εμφάνισης των διαφημίσεων. ", + 'text_image_url_note' => "Το URL του αρχείου εικόνας.
Και η σχετική διαδρομή (π.χ. 'pic/ad.jpg') ή η απόλυτη διαδρομή (π.χ. 'https://nexusphp.org/ad.jpg') είναι εντάξει. ", + 'text_image_link_note' => "Ο σύνδεσμος της διαφήμισης, π.χ. 'https://nexusphp.org/ad.html'. ", + 'text_image_width_note' => "Σε εικονοστοιχεία. Το πλάτος στο οποίο εμφανίζεται η εικόνα. ", + 'text_image_height_note' => "Σε εικονοστοιχεία. Το ύψος στο οποίο εμφανίζεται η εικόνα. ", + 'text_image_tooltip_note' => "Το κείμενο που εμφανίζεται στην υπόδειξη του συνδέσμου. ", + 'text_text_content_note' => "Το περιεχόμενο του κειμένου διαφήμισης. ", + 'text_text_link_note' => "Ο σύνδεσμος της διαφήμισης, π.χ. 'https://nexusphp.org/ad.html'. ", + 'text_text_size_note' => "Το μέγεθος γραμματοσειράς της διαφήμισης κειμένου. Θα μπορούσε να είναι σε pt, px ή em, π.χ. '30pt'. Αν δεν έχει οριστεί κάτι, θεωρείται το '30pt'.", + 'text_bbcodes_code_note' => "Τι είναι οι κωδικοί ΒΒ? ", + 'text_here' => "εδώ", + 'text_xhmtl_code_note' => "Θα πρέπει να αποφύγετε τη χρήση XHTML όχι μόνο επειδή εσφαλμένος κώδικας XHTML θα μπορούσε εύκολα να χαλάσει ολόκληρη τη σελίδα, αλλά και επειδή είναι INSECURE. Αν το έχετε, βεβαιωθείτε ότι ο κωδικός XHTML είναι ασφαλής και σωστός.
NOTE: Παρακαλώ ακολουθήστε τις Μεταβατικές προδιαγραφές XHTML 1.0, όχι HTML 4.01.", + 'text_flash_url_note' => "Η διεύθυνση URL του αρχείου flash.
Και οι δύο σχετικές διαδρομές (π.χ. 'pic/flash.demo.swf') ή απόλυτη διαδρομή (π.χ. 'https://nexusphp.org/flash.demo.swf') είναι εντάξει.", + 'text_flash_width_note' => "Σε pixels. Το πλάτος στο οποίο εμφανίζεται το Flash. ", + 'text_flash_height_note' => "Σε pixels. Το ύψος στο οποίο εμφανίζεται το Flash. ", + 'std_missing_form_data' => "Λείπει η φόρμα.", + 'std_invalid_type' => "Μη έγκυρη μέθοδος εμφάνισης.", + 'std_success' => "Επιτυχία", + 'std_edit_success' => "Η διαφήμιση επεξεργάζεται. ", + 'std_add_success' => "Προστέθηκε η διαφήμιση. ", + 'text_unlimited' => "απεριόριστο", + 'std_go_back' => "Πηγαίνετε πίσω στη λίστα διαφημίσεων", + 'col_clicks' => "Κλικ" +); + +?> diff --git a/lang/el/lang_adredir.php b/lang/el/lang_adredir.php new file mode 100644 index 00000000..6e6c586a --- /dev/null +++ b/lang/el/lang_adredir.php @@ -0,0 +1,11 @@ + "Σφάλμα", + 'std_ad_system_disabled' => "Σύστημα διαφημίσεων απενεργοποιημένο.", + 'std_invalid_ad_id' => "Invalid ad id", + 'std_no_redirect_url' => "Δεν υπάρχει URL ανακατεύθυνσης." +); + +?> diff --git a/lang/el/lang_attachment.php b/lang/el/lang_attachment.php new file mode 100644 index 00000000..2cf4b53c --- /dev/null +++ b/lang/el/lang_attachment.php @@ -0,0 +1,20 @@ + "Αποτυχία! Τίποτα δεν ελήφθη!", + 'text_file_number_limit_reached' => "Αποτυχία! Δεν μπορείτε να ανεβάσετε περισσότερα αρχεία προς το παρόν. Παρακαλώ περιμένετε κάποιο χρόνο.", + 'text_file_size_too_big' => "Αποτυχία! Το μέγεθος του αρχείου είναι πολύ μεγάλο.", + 'text_file_extension_not_allowed' => "Αποτυχία! Η επέκταση αρχείου δεν επιτρέπεται.", + 'text_invalid_image_file' => "Αποτυχία! Μη έγκυρο αρχείο εικόνας.", + 'text_cannot_move_file' => "Αποτυχία! Δεν είναι δυνατή η μετακίνηση μεταφορτωμένου αρχείου.", + 'submit_upload' => "Ανέβασμα", + 'text_left' => "Σήμερα Αριστερά: ", + 'text_of' => " από ", + 'text_size_limit' => "Μέγεθος: ", + 'text_file_extensions' => "Επεκτάσεις Αρχείων: ", + 'text_mouse_over_here' => "ποντίκι εδώ", + 'text_small_thumbnail' => "μικρή μικρογραφία", +); + +?> diff --git a/lang/el/lang_attendance.php b/lang/el/lang_attendance.php new file mode 100644 index 00000000..d8f2d5b0 --- /dev/null +++ b/lang/el/lang_attendance.php @@ -0,0 +1,16 @@ + "Παρακολούθηση", + 'success' => "Επιτυχία", + 'attend_info' => "Έχετε ήδη παρακολουθήσει %u ημέρες, Continuous %u ημέρες, αυτή τη φορά θα λάβετε μπόνους %u.", + 'initial' => "Πρώτη συμμετοχή πάρτε %u μπόνους.", + 'steps' => "Κάθε συνεχής συμμετοχή παίρνει μπόνους %u εκτός και αν φτάσει στο μέγιστο %u", + 'continuous' => "Παρακολουθήστε συνέχεια %u η μέρα, θα πάρει το %u bouns πρόσθετο.", + 'sorry' => "Συγνώμη", + 'already_attended' => "Έχετε ήδη παρευρεθεί, δεν ανανεώστε παρακαλώ.", + 'retroactive_event_text' => 'Re', + 'retroactive_confirm_tip' => 'Επιβεβαίωση συμμετοχής: ', + 'retroactive_description' => 'Κάντε κλικ στην τελεία στο λευκό φόντο για να συμμετάσχετε. Αυτή τη στιγμή έχετε μια κάρτα συμμετοχής %d.', +); diff --git a/lang/el/lang_bitbucket-upload.php b/lang/el/lang_bitbucket-upload.php new file mode 100644 index 00000000..f1350340 --- /dev/null +++ b/lang/el/lang_bitbucket-upload.php @@ -0,0 +1,36 @@ + "Η αποστολή απέτυχε", + 'std_nothing_received' => "Τίποτα δεν ελήφθη!", + 'std_file_too_large' => "Λυπούμαστε, αυτό το αρχείο είναι πολύ μεγάλο για τον κουβά.", + 'std_bad_file_name' => "Λάθος όνομα αρχείου.", + 'std_file_with_the_name' => "Λυπούμαστε, ένα αρχείο με το όνομα ", + 'std_already_exists' => " υπάρχει ήδη στον κάδο bit-bucket.", + 'std_error' => "Σφάλμα", + 'std_invalid_image_format' => "Μη έγκυρη επέκταση: gif, jpg ή png μόνο!", + 'std_image_processing_failed' => "Η επεξεργασία εικόνας απέτυχε", + 'std_sorry_the_uploaded' => "Συγγνώμη, το ανέβασμα ", + 'std_failed_processing' => " απέτυχε η επεξεργασία. Προσπαθήστε να αποθηκεύσετε την εικόνα σε έναν επεξεργαστή γραφικών. Ευχαριστούμε.", + 'std_success' => "Επιτυχία", + 'std_use_following_url' => "Χρησιμοποιήστε το ακόλουθο URL για να αποκτήσετε πρόσβαση στο αρχείο: ", + 'std_upload_another_file' => "Ανεβάστε ένα άλλο αρχείο", + 'std_image' => "Εικόνα ", + 'std_need_not_rescaling' => "δεν απαιτεί κλιμάκωση", + 'std_rescaled_from' => " κλιμάκωση από ", + 'std_to' => " προς ", + 'std_profile_updated' => "
Note: Your profile has been updated!", + 'head_avatar_upload' => "Μεταφόρτωση AVATAR", + 'text_avatar_upload' => "Μεταφόρτωση AVATAR", + 'text_upload_directory_unwritable' => "ΠΡΟΣΟΧΗ: Ο κατάλογος αποστολής δεν είναι εγγράψιμος. Επικοινωνήστε με το διαχειριστή για αυτό το πρόβλημα!", + 'text_disclaimer' => "Disclaimer
Do not upload unauthorized or illegal pictures.
Uploaded pictures should be considered \"public domain\". So do not upload pictures you wouldn't want a stranger to have access to.
Uploaded images will be scaled by keeping aspect ratio if height exceeds ", + 'text_disclaimer_two' => " υπερβαίνει τα pixel ή το πλάτος ", + 'text_disclaimer_three' => " pixel
Μέγιστο μέγεθος αρχείου είναι ", + 'text_disclaimer_four' => " bytes.", + 'row_file' => "Αρχείο", + 'checkbox_avatar_shared' => "Άλλοι χρήστες μπορούν να χρησιμοποιήσουν το avatar μου (Είναι επιλεγμένο σε usercp).", + 'submit_upload' => "Ανέβασμα", +); + +?> diff --git a/lang/el/lang_catmanage.php b/lang/el/lang_catmanage.php new file mode 100644 index 00000000..b032e2ea --- /dev/null +++ b/lang/el/lang_catmanage.php @@ -0,0 +1,86 @@ + "Διαχείριση Κατηγοριών", + 'text_category_management' => "Διαχείριση Κατηγοριών", + 'text_manage' => "Διαχείριση", + 'text_searchbox' => "Πλαίσιο Αναζήτησης", + 'text_category_icons' => "Πακέτο εικονιδίων κατηγοριών", + 'text_second_icons' => "Δεύτερα εικονίδια", + 'text_categories' => "Κατηγορίες", + 'text_sources' => "Πηγές", + 'text_media' => "Πολυμέσα", + 'text_codecs' => "Κωδικοποιητές", + 'text_standards' => "Πρότυπα", + 'text_processings' => "Επεξεργασίες", + 'text_teams' => "Ομάδες", + 'text_audio_codecs' => "Κωδικοποιητές Ήχου", + 'std_error' => "Σφάλμα", + 'std_invalid_type' => "Invalid type.", + 'text_add' => "Προσθήκη", + 'text_no_record_yet' => "Καμία εγγραφή ακόμα!", + 'col_id' => "ID", + 'col_name' => "Όνομα", + 'col_order' => "Σειρά", + 'col_action' => "Ενέργεια", + 'text_delete' => "Διαγραφή", + 'text_edit' => "Επεξεργασία", + 'js_sure_to_delete_this' => "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτό?", + 'col_sub_category' => "Υποκατηγορία", + 'text_per_row' => "Αντικείμενα/Γραμμή", + 'text_padding' => "Padding", + 'text_enabled' => "Ενεργοποιημένο", + 'text_disabled' => "Απενεργοποιημένο", + 'col_folder' => "Φάκελος Πακέτου Εικονιδίων", + 'text_multi_language' => "Πολλαπλών lang.", + 'text_second_icon' => "Δεύτερο Εικονίδιο", + 'text_css_file' => "CSS αρχείο", + 'text_none' => "κανένα", + 'text_css_file_note' => "Αρχείο CSS για αυτό το πακέτο εικονιδίων. Εισάγετε την πλήρη διαδρομή, π.χ. 'styles/scenetorrents.css'. Αφήστε το κενό αν δεν υπάρχει.
Επιτρεπόμενοι χαρακτήρες: [a-z] (σε χαμηλότερη περίπτωση), [0-9], [_./].", + 'text_designer' => "Σχεδιαστής", + 'text_comment' => "Σχόλιο", + 'text_yes' => "Ναι", + 'text_no' => "Όχι", + 'col_image' => "Εικόνα", + 'text_class_name' => "χαρακτηριστικό κλάσης", + 'col_mode' => "Λειτουργία", + 'std_invalid_id' => "Invalid id", + 'submit_submit' => "Υποβολή", + 'text_subcategory_name_note' => "Μην χρησιμοποιείτε μακρύ όνομα. Προτείνετε λιγότερο από 10 γράμματα.", + 'text_order_note' => "Αξιοσημείωτα, δηλαδή το '0' έρχεται πρώτο.", + 'row_searchbox_name' => "Όνομα SearchBox", + 'text_searchbox_name_note' => "Επιτρεπόμενοι χαρακτήρες: [a-z] (σε χαμηλότερη περίπτωση), [0-9], [_./].", + 'row_show_sub_category' => "Εμφάνιση υποκατηγορίας", + 'text_show_sub_category_note' => "Ελέγξτε τις υποκατηγορίες που θέλετε να ενεργοποιήσετε.", + 'row_items_per_row' => "Αντικείμενα ανά γραμμή", + 'text_items_per_row_note' => "Ορίστε πόσα αντικείμενα θα εμφανίζονται σε μια γραμμή στο πλαίσιο αναζήτησης, π.χ. '8'.", + 'row_padding_between_items' => "Γέμισμα μεταξύ αντικειμένων", + 'text_padding_between_items_note' => "Σε εικονοστοιχεία. Ο ορίζων χώρος γεμίσματος μεταξύ αντικειμένων στο πλαίσιο αναζήτησης, π.χ. '3'.", + 'text_category_icon_name_note' => "Επιτρεπόμενοι χαρακτήρες: [a-z] (σε χαμηλότερη περίπτωση), [0-9], [_./].", + 'text_folder_note' => "Το όνομα φακέλου του πακέτου εικονιδίων. Επιτρεπόμενοι χαρακτήρες: [a-z] (σε χαμηλότερη περίπτωση), [0-9], [_. ].
ΠΡΕΠΕΙ προσθέστε μια τελική κάθετο (/) στο τέλος, π.χ. 'mycaticon/'", + 'text_multi_language_note' => "Αν θα χρησιμοποιηθούν διαφορετικά εικονίδια κατηγοριών για διαφορετικές γλώσσες. Αν επιλέξετε 'ναι', βάλτε πολλά πακέτα εικονιδίων σε πολλούς φακέλους με το όνομα 'en', 'chs', κλπ.", + 'text_second_icon_note' => "Αν θα χρησιμοποιηθούν δεύτερα εικονίδια για περισσότερες πληροφορίες. Αν επιλέξετε 'ναι', βάλτε τα δεύτερα εικονίδια σε ένα φάκελο με το όνομα 'πρόσθετο' μαζί με τα κανονικά εικονίδια.", + 'text_designer_note' => "Το άτομο που σχεδίασε το πακέτο εικονιδίων.", + 'text_comment_note' => "Πληροφορίες σχετικά με το πακέτο εικονιδίων.", + 'text_icon_directory_note' => "You need to put the icons in the right directory for these settings to work. Put the normal icons in 'pic/category/searchbox_name/icon_pack_folder[language_short_name/]' and the second icons in 'pic/category/searchbox_name/icon_pack_folder[language_short_name/]additional/'.
Don't get it? See if the following examples could help: ", + 'text_second_icon_name_note' => "Μην χρησιμοποιείτε μακρύ όνομα. Προτείνετε λιγότερο από 10 γράμματα.", + 'text_image_note' => "Το όνομα του αρχείου εικόνας. Επιτρεπόμενοι χαρακτήρες: [a-z] (σε χαμηλότερη περίπτωση), [0-9], [_./].", + 'row_selections' => "Επιλογές", + 'text_selections_note' => "Αν δεν έχει οριστεί μια επιλογή, όλες οι επιλογές από την επιλογή επιτρέπονται για τον κανόνα. Πρέπει να οριστεί τουλάχιστον μία επιλογή.", + 'row_category_name' => "Όνομα κατηγορίας", + 'text_category_name_note' => "Μην χρησιμοποιείτε μακρύ όνομα. Προτείνετε λιγότερο από 10 γράμματα.", + 'row_mode' => "Λειτουργία", + 'text_class_name_note' => "Η τιμή του χαρακτηριστικού 'class' της εικόνας. Αφήστε την κενή αν δεν υπάρχει. Επιτρεπόμενοι χαρακτήρες: [a-z] (σε χαμηλότερη περίπτωση), [0-9], [_], και το πρώτο γράμμα πρέπει να είναι σε [a-z].", + 'std_missing_form_data' => "Λείπει η φόρμα.", + 'std_invalid_character_in_filename' => "Μη έγκυρος χαρακτήρας στο όνομα αρχείου ", + 'std_must_define_one_selection' => "Πρέπει να ορίσετε τουλάχιστον μία επιλογή!", + 'std_invalid_mode_id' => "Μη έγκυρο id λειτουργίας.", + 'row_enable_custom_field' => 'Ενεργοποίηση προσαρμοσμένου πεδίου', + 'row_custom_field_display_name' => 'Όνομα εμφάνισης προσαρμοσμένου πεδίου', + 'row_custom_field_display' => 'Εμφάνιση προσαρμοσμένων πεδίων', + 'row_custom_field_display_help' => "Χρησιμοποιήστε 'συγκεκριμένη ετικέτα' για να αναπαραστήσετε την ετικέτα και την τιμή του προσαρμοσμένου πεδίου, όπως το όνομα ενός προσαρμοσμένου πεδίου είναι 'καλλιτέχνης',
τότε είναι ετικέτα:<%artist.label%>, είναι τιμή:<%artist.value%>", + 'row_searchbox_extras' => 'Extras', +); + +?> diff --git a/lang/el/lang_cheaterbox.php b/lang/el/lang_cheaterbox.php new file mode 100644 index 00000000..0fd4da67 --- /dev/null +++ b/lang/el/lang_cheaterbox.php @@ -0,0 +1,28 @@ + "Oho!", + 'std_no_suspect_detected' => "Κανένας ύποπτος δεν εντοπίστηκε ακόμα.", + 'head_cheaterbox' => "Cheaterbox", + 'text_cheaterbox' => "Cheaterbox BETA", + 'col_added' => "Προστέθηκε", + 'col_suspect' => "Ύποπτο", + 'col_hit' => "Χτύπημα", + 'col_torrent' => "Torrent", + 'col_ul' => "UL", + 'col_dl' => "DL", + 'col_ann_time' => "Ann. Ώρα", + 'col_seeders' => "Σπόροι", + 'col_leechers' => "Leechers", + 'col_comment' => "Σχόλιο", + 'col_dealt_with' => "Συμφωνία Με", + 'col_action' => "Πράξη.", + 'text_torrent_does_not_exist' => "Το torrent δεν υπάρχει ή έχει διαγραφεί", + 'text_yes' => "Ναι", + 'text_no' => "Όχι", + 'submit_set_dealt' => "Ορισμός Προσφοράς", + 'submit_delete' => "Διαγραφή" +); + +?> diff --git a/lang/el/lang_checkuser.php b/lang/el/lang_checkuser.php new file mode 100644 index 00000000..5e57e7f9 --- /dev/null +++ b/lang/el/lang_checkuser.php @@ -0,0 +1,17 @@ + "Σφάλμα", + 'std_no_user_id' => "Κανένας χρήστης με αυτό το ID!", + 'std_no_permission' => "Δεν έχετε άδεια", + 'head_detail_for' => "Λεπτομέρειες για ", + 'text_account_disabled' => "

Αυτός ο λογαριασμός έχει απενεργοποιηθεί!

", + 'row_join_date' => "Join date", + 'row_gender' => "Φύλο", + 'row_email' => "E-mail", + 'row_ip' => "IP", + 'submit_confirm_this_user' => "Επιβεβαίωση this user" +); + +?> diff --git a/lang/el/lang_comment.php b/lang/el/lang_comment.php new file mode 100644 index 00000000..0f28eac9 --- /dev/null +++ b/lang/el/lang_comment.php @@ -0,0 +1,51 @@ + "Σφάλμα", + 'std_comment_flooding_denied' => "Δεν επιτρέπονται πλημμύρες. Παρακαλώ περιμένετε ", + 'std_before_posting_another' => " δευτερόλεπτο(α) πριν από την ανάρτηση ένα άλλο σχόλιο.", + 'std_no_torrent_id' => "Κανένα torrent με αυτό το ID.", + 'std_no_comment_id' => "Κανένα σχόλιο με αυτό το ID", + 'std_comment_body_empty' => "Το σώμα του σχολίου δεν μπορεί να είναι κενό!", + 'head_add_comment_to' => "Προσθέστε ένα σχόλιο για ", + 'text_add_comment_to' => "Προσθέστε ένα σχόλιο για ", + 'submit_okay' => "Εντάξει", + 'text_comments_in_reverse_order' => "Πιο πρόσφατα σχόλια, με αντίστροφη σειρά\n", + 'std_invalid_id' => "Invalid ID.", + 'std_permission_denied' => "Άρνηση άδειας.", + 'head_edit_comment_to' => "Επεξεργασία σχολίου σε ", + 'text_edit_comment_to' => "Επεξεργασία σχολίου σε ", + 'std_delete_comment' => "Διαγραφή σχολίου", + 'std_delete_comment_note' => "You are about to delete a comment. Click\n", + 'std_here_if_sure' => ">here if you are sure.", + 'head_original_comment' => "Αρχικό σχόλιο", + 'text_original_content_of_comment' => "Αρχικό περιεχόμενο σχολίου ", + 'std_unknown_action' => "Άγνωστη ενέργεια.", + 'std_no_review_id' => "Καμία κριτική με αυτό το ID", + 'std_review_body_empty' => "Το σώμα αναθεώρησης δεν μπορεί να είναι κενό!", + 'text_reviews_in_reverse_order' => "

Πιο πρόσφατες αξιολογήσεις, σε αντίστροφη σειρά

\n", + 'head_edit_review_to' => "Επεξεργασία κριτικής σε ", + 'text_edit_review_to' => "Επεξεργασία κριτικής σε ", + 'std_delete_review' => "Διαγραφή κριτικής", + 'std_delete_review_note' => "You are about to delete a review. Click\n", + 'head_original_review' => "Αρχική κριτική", + 'text_original_content_of_review' => "Αρχικό περιεχόμενο της εξέτασης ", + 'std_unknown_action' => "Άγνωστη ενέργεια.", + 'row_user_comment' => "User Comment", + 'row_editor_notes' => "Σημειώσεις Επεξεργαστή", + 'row_bouns_change' => "Αλλαγή Μπόνους", + 'text_bouns_change_notes' => " 0 έως 1000, με βάση την ποιότητα της ανασκόπησης (πάνω από 1000 θα αντιμετωπίζονται ως 1000 και άλλοι που δεν ανήκουν στο εύρος θα αντιμετωπίζονται ως 0)", + 'std_review_no_external_info' => "Δεν ήταν δυνατή η επισήμανση σχολίων χωρίς εξωτερικές πληροφορίες!", + 'std_review_unmark' => "Αναίρεση Σήμανσης", + 'std_unmark_review_note' => "You are about to unmark a review. Click\n", + 'row_original_torrent' => "Αρχικό Torrent", + 'text_no_exists' => "Δεν Υπάρχει Περισσότερα!", + 'text_torrent_id' => " Id Torrent: ", + 'text_back' => "πίσω", + 'text_body' => "Σώμα", + 'text_compose' => "Σύνθεση", + 'text_edit' => "Επεξεργασία", +); + +?> diff --git a/lang/el/lang_complains.php b/lang/el/lang_complains.php new file mode 100644 index 00000000..19895669 --- /dev/null +++ b/lang/el/lang_complains.php @@ -0,0 +1,33 @@ + 'Διαμαρτυρήστε το πρόβλημα λογαριασμού', + 'text_new_complain' => 'Νέα καταγγελία', + 'text_new_email' => 'Account Email:', + 'text_new_body' => 'Διαμαρτύρονται Λεπτομέρεια:', + 'text_new_body_placeholder' => "Describe issue here:\nRelated proof is applicable: Images are shown in form of [κάνε είσοδο για να δεις το URL]", + 'text_new_submit' => 'Υποβολή', + 'text_new_failure' => 'Έγινε εισαγωγή εσφαλμένου email ή κενών διαμαρτύρων.', + 'text_created_title' => 'Διαμαρτυρία δημιουργήθηκε', + 'text_created_note' => 'Παρακαλούμε σελιδοδείκτη αυτής της σελίδας ώστε να μπορείτε να ελέγξετε τις ενημερώσεις της αργότερα. ΜΗΝ ΑΠΑΙΤΕΙΤΕ ΤΗΝ ΑΥΤΟΤΗΤΑ! Διαφορετικά, το παράπονο σας δεν θα αντιμετωπίζεται.', + 'text_search_account' => 'Αναζήτηση λογαριασμού με αυτό το email', + 'text_reply' => 'Απάντηση', + 'text_replies' => 'Παρακολούθηση μηνυμάτων', + 'text_complainer' => 'Καταγγελία', + 'text_added' => 'Προστέθηκε χρόνος', + 'text_no_replies' => 'Δεν υπάρχουν μηνύματα τώρα', + 'text_closed' => 'Η καταγγελία αυτή απαντήθηκε και κλειδώθηκε για νέες απαντήσεις.', + 'text_answer_it' => 'ΚΛΕΙΣΤΕ', + 'text_unanswer_it' => 'ΕΠΑΝΑΛΗΨΗ', + 'th_complain_at' => 'Διαμαρτύρονται σε', + 'th_complain_account' => 'Παραπομπή λογαριασμού', + 'th_action_view' => 'Προβολή', + 'pending_complaints' => 'Εκκρεμείς καταγγελίες', + 'no_pending_complaints' => 'Δεν υπάρχουν εκκρεμείς καταγγελίες', + 'complaints_processed' => 'Καταγγελίες που υποβλήθηκαν σε επεξεργασία', + 'no_complaints_have_been_processed' => 'Δεν έχουν επεξεργαστεί παράπονα', + 'text_view_band_log' => 'Προβολή αρχείου καταγραφής απαγόρευσης', + 'reply_notify_subject' => 'Η καταγγελία απάντησε', + 'reply_notify_body' => 'You have a reply to your complaint on the site %s, click here to see it.', + 'complain_not_enabled' => 'Η καταγγελία δεν είναι ενεργοποιημένη', +]; diff --git a/lang/el/lang_confirm_resend.php b/lang/el/lang_confirm_resend.php new file mode 100644 index 00000000..9d502cd0 --- /dev/null +++ b/lang/el/lang_confirm_resend.php @@ -0,0 +1,37 @@ + "Αποτυχία αποστολής email επιβεβαίωσης", + 'std_fields_blank' => "Μην αφήνετε κενά πεδία.", + 'std_invalid_email_address' => "Μη έγκυρη διεύθυνση email!", + 'std_email_not_found' => "Η διεύθυνση ηλεκτρονικού ταχυδρομείου δεν βρέθηκε στη βάση δεδομένων.\n", + 'std_user_already_confirm' => "Ο χρήστης που χρησιμοποιεί αυτή τη διεύθυνση ηλεκτρονικού ταχυδρομείου έχει ήδη επιβεβαιωθεί.\n", + 'std_passwords_unmatched' => "Οι κωδικοί πρόσβασης δεν ταιριάζουν! Musthave typoed. Προσπαθήστε ξανά.", + 'std_password_too_short' => "Λυπούμαστε, ο κωδικός πρόσβασης είναι πολύ μικρός (το ελάχιστο είναι 6 χαρακτήρες)", + 'std_password_too_long' => "Λυπούμαστε, ο κωδικός είναι πολύ μεγάλος (μέγιστο είναι 40 χαρακτήρες)", + 'std_password_equals_username' => "Συγγνώμη, ο κωδικός πρόσβασης δεν μπορεί να είναι ίδιος με το όνομα χρήστη.", + 'std_error' => "Σφάλμα", + 'std_database_error' => "Σφάλμα βάσης δεδομένων. Επικοινωνήστε με έναν διαχειριστή για αυτό.", + 'text_resend_confirmation_mail_note' => "

Send confirmation mail again

Use the form below to have your confirmation mail send to you again.

You must be registered within 1 day and haven't confirmed,
otherwise your pending account might be deleted and you should register again.

Note: %s failed attempts in a row will result in banning your ip!

", + 'row_registered_email' => "Εγγεγραμμένο email: ", + 'row_new_password' => "Νέος κωδικός πρόσβασης: ", + 'text_password_note' => "Ελάχιστο είναι 6 χαρακτήρες", + 'row_enter_password_again' => "Εισάγετε και πάλι τον κωδικό: ", + 'submit_send_it' => "Στείλτε Αυτό!", + 'text_you_have' => "Έχετε ", + 'text_remaining_tries' => " εναπομείναντες προσπάθειες.", + + 'mail_title' => " Επιβεβαίωση Εγγραφής Χρήστη (Επαναποστολή)", + 'mail_this_link' => "ΑΥΤΗ ΓΡΑΜΜΗ", + 'mail_here' => "ΕΔΩ", + 'mail_one' => "Hi ", + 'mail_two' => ",

Έχετε ζητήσει ένα νέο email επιβεβαίωσης στο %s και έχετε ορίσει
αυτή τη διεύθυνση ", + 'mail_three' => " as user contact.

If you did not do this, please ignore this email. The person who entered your
email address had the IP address ", + 'mail_four' => ". Παρακαλώ μην απαντήσετε.

Για να επιβεβαιώσετε την εγγραφή χρήστη σας, πρέπει να ακολουθήσετε ", + 'mail_four_1' => "

Αν ο παραπάνω σύνδεσμος έχει χαλάσει ή έχει λήξει, προσπαθήστε να στείλετε ξανά ένα νέο email επιβεβαίωσης από ", + 'mail_five' => "

After you do this, you will be able to use your new account. If you fail to
do this, your account will be deleted within 24 hours. We urge you to read
the RULES and FAQ before you start using %s.

Please Note: If you did not register for %s, please report this email to %s

------
Yours,
The %s Team.", + 'text_select_lang' => "Επιλογή Γλώσσας Ιστοσελίδας: ", + 'std_need_admin_verification' => "Ο λογαριασμός χρειάζεται χειροκίνητη επαλήθευση από τους διαχειριστές." +); +?> diff --git a/lang/el/lang_contactstaff.php b/lang/el/lang_contactstaff.php new file mode 100644 index 00000000..5fd1474c --- /dev/null +++ b/lang/el/lang_contactstaff.php @@ -0,0 +1,12 @@ + "Προσωπικό Επικοινωνίας", + 'text_message_to_staff' => "Αποστολή μηνύματος στο προσωπικό", + 'row_subject' => "Θέμα", + 'row_body' => "Σώμα", + 'submit_send_it' => "Send It!" +); + +?> \ No newline at end of file diff --git a/lang/el/lang_delete.php b/lang/el/lang_delete.php new file mode 100644 index 00000000..3cf4d38a --- /dev/null +++ b/lang/el/lang_delete.php @@ -0,0 +1,17 @@ + "Η διαγραφή απέτυχε!", + 'std_missing_form_date' => "λείπουν δεδομένα φόρμας", + 'std_not_owner' => "Δεν είστε ο ιδιοκτήτης! Πώς συνέβη αυτό?", + 'std_invalid_reason' => "Μη έγκυρος λόγος ", + 'std_describe_violated_rule' => "Περιγράψτε τον παραβιασμένο κανόνα.", + 'std_enter_reason' => "Παρακαλώ εισάγετε το λόγο για τη διαγραφή αυτού του torrent.", + 'head_torrent_deleted' => "Torrent διαγράφηκε!", + 'text_go_back' => "Πηγαίνετε πίσω στο πού ήρθατε", + 'text_back_to_index' => "Πίσω στο ευρετήριο", + 'text_torrent_deleted' => "Torrent διαγράφηκε!" +); + +?> diff --git a/lang/el/lang_deletedisabled.php b/lang/el/lang_deletedisabled.php new file mode 100644 index 00000000..b3079662 --- /dev/null +++ b/lang/el/lang_deletedisabled.php @@ -0,0 +1,12 @@ + "Διαγραφή Απενεργοποιημένου", + 'text_delete_diasabled' => "Διαγραφή Απενεργοποιημένου", + 'submit_delete_all_disabled_users' => "Διαγραφή όλων των απενεργοποιημένων χρηστών", + 'text_delete_disabled_note' => "If you click the following button, all disabled users at your site will be DELETED. NEVER click the button unless you are VERY SURE.", + 'text_users_are_disabled' => " οι χρήστες διαγράφονται." +); + +?> diff --git a/lang/el/lang_deletemessage.php b/lang/el/lang_deletemessage.php new file mode 100644 index 00000000..16c72b94 --- /dev/null +++ b/lang/el/lang_deletemessage.php @@ -0,0 +1,12 @@ + "Εσφαλμένο ID μηνύματος", + 'std_not_suggested' => "Δεν θα το έκανα αυτό αν ήμουν εσείς...", + 'std_not_in_inbox' => "Το μήνυμα δεν βρίσκεται στα Εισερχόμενά σας.", + 'std_not_in_sentbox' => "Το μήνυμα δεν είναι στο Sentbox.", + 'std_unknown_pm_type' => "Άγνωστος τύπος PM." +); + +?> \ No newline at end of file diff --git a/lang/el/lang_details.php b/lang/el/lang_details.php new file mode 100644 index 00000000..1ab27177 --- /dev/null +++ b/lang/el/lang_details.php @@ -0,0 +1,247 @@ + "Σφάλμα", + 'std_no_torrent_id' => "Κανένα torrent με αυτό το ID", + 'head_details_for_torrent' => "Λεπτομέρειες για torrent ", + 'text_successfully_uploaded' => "Επιτυχής μεταφόρτωση!", + 'text_redownload_torrent_note' => "You should re-download the torrent and start seeding now.", + 'text_successfully_edited' => "Επιτυχής επεξεργασία!", + 'text_go_back' => "Μετάβαση πίσω στο ", + 'text_whence_you_came' => "whence you came", + 'text_rating_added' => "Η αξιολόγηση προστέθηκε!", + 'text_thanks_added' => "Οι ευχαριστίες σας προστέθηκαν!", + 'text_free' => "Δωρεάν", + 'text_two_times_up' => "2X", + 'text_free_two_times_up' => "2X Δωρεάν", + 'text_half_down' => "50%", + 'row_download' => "Λήψη", + 'text_downloading_not_allowed' => "Δεν επιτρέπεται η λήψη.", + 'row_small_description' => "Μικρή Περιγραφή", + 'row_info_hash' => "Κατακερματισμός πληροφοριών", + 'row_description' => "Περιγραφή", + 'text_nfo' => "NFO", + 'text_view_nfo' => "[Όλες Οι Λειτουργίες]", + 'row_imdb_url' => "IMDb URL", + 'row_subtitles' => "Υπότιτλοι", + 'text_no_subtitles' => "Δεν υπάρχουν διαθέσιμοι υπότιτλοι για αυτό το torrent", + 'submit_upload_subtitles' => "Ανεβάστε Υπότιτλο!", + 'row_info' => " Πληροφορίες", + 'text_imdb' => "IMDb", + 'text_lastfm' => "Last.fm", + 'text_douban' => "Douban", + 'text_not_ready' => " πληροφορίες δεν είναι έτοιμες, κάντε κλικ ", + 'text_here_to_retrieve' => "here to retrive from ", + 'text_someone_has_requested' => "Κάποιος ζήτησε να ανακτήσει πληροφορίες από ", + 'text_please_be_patient' => " δευτερόλεπτα πριν, παρακαλώ να είστε υπομονετικοί.", + 'text_information' => "Πληροφορίες:", + 'text_title' => " Τίτλος: ", + 'text_title_chinese' => "Κινεζικός τίτλος: ", + 'text_also_known_as' => " Γνωστός και ως: ", + 'text_year' => " Έτος: ", + 'text_runtime' => " Χρόνος Εκτέλεσης: ", + 'text_mins' => " λεπτά", + 'text_votes' => " Ψηφοφορίες: ", + 'text_rating' => " Βαθμολογία: ", + 'text_language' => " Γλώσσα: ", + 'text_country' => " Χώρα: ", + 'text_all_genres' => " Όλα Τα Είδη: ", + 'text_tagline' => " Tagline: ", + 'text_director' => " Διευθυντής: ", + 'text_written_by' => " Γράφτηκε Από: ", + 'text_performed_by' => " Εκτελέστηκε Από: ", + 'text_offcial_site' => " Offcial Site: ", + 'text_imdb_link' => " Σύνδεσμος IMDB: ", + 'text_produced_by' => " Παράγεται Από: ", + 'text_music' => " Μουσική: ", + 'text_plot_outline' => " Διάγραμμα Γραφείου:", + 'text_cast' => " Παράδειγμα:", + 'text_as' => " ως ", + 'text_recommended_comment' => " Συνιστώμενο Σχόλιο:", + 'text_information_updated_at' => "

ΣΗΜΕΙΩΣΗ: Αυτή η ενημέρωση ενημερώνεται στις ", + 'text_might_be_outdated' => " και μπορεί να είναι ξεπερασμένη τώρα, κάντε κλικ ", + 'text_here_to_update' => "here to update outdated info", + 'text_network_error' => "Προσοχή! Η κατάσταση δικτύου δεν επιτρέπει την ανάκτηση της εισροής από το IMDb στην πτήση", + 'text_avprogress' => "Μέσος Όρος Προόδου: ", + 'row_type' => "Τύπος", + 'text_none_selected' => "(ένα δεν επιλέχθηκε)", + 'text_source' => "Πηγή:", + 'text_codec' => "Κωδικοποιητής:", + 'text_stardard' => "Πρότυπο:", + 'text_processing' => "Επεξεργασία:", + 'row_quality' => "Ποιότητα", + 'col_type' => "Τύπος", + 'col_name' => "Όνομα", + 'col_quality' => "Ποιότητα", + 'title_size' => "Μέγεθος", + 'title_time_added' => "Ο Χρόνος Προστέθηκε", + 'title_seeders' => "Σπόροι", + 'title_leechers' => "Leechers", + 'col_special' => "Προώθηση?", + 'text_normal' => "κανονικό", + 'row_other_copies' => "Άλλα Αντίγραφα", + 'row_last_seeder' => "Τελευταία Δράση  ", + 'text_ago' => " πριν", + 'text_size' => "Μέγεθος: ", + 'text_none_yet' => "κανένα ακόμα (χρειάζεται τουλάχιστον %s ψήφους και έχει λάβει ", + 'text_only' => "μόνο ", + 'text_none' => "κανένα", + 'text_no_votes_yet' => "Δεν υπάρχουν ακόμα ψήφοι", + 'text_invalid' => "άκυρο?", + 'text_out_of_five_with' => " από 5 με ", + 'text_votes_total' => " σύνολο ψήφων", + 'text_login_to_vote' => "Συνδεθείτε στο για να το αξιολογήσετε", + 'select_add_rating' => "(προσθήκη βαθμολογίας)", + 'submit_vote' => "Ψηφοφορία!", + 'text_rating' => "Βαθμολογία: ", + 'row_time' => "Ώρα", + 'row_hot_meter' => "Θερμός Μετρητής", + 'text_views' => "Προβολές: ", + 'text_hits' => "Εμφανίσεις: ", + 'text_snatched' => "Άρπαξε: ", + 'text_view_snatches' => " x χρόνος(οι)", + 'text_average_speed' => "Μέση Ταχύτητα: ", + 'text_total_speed' => "Συνολική Ταχύτητα: ", + 'text_health_note' => "(Αυτοί είναι οι μέσοι όροι με την πάροδο του χρόνου, έτσι δεν είναι τόσο ακριβείς)", + 'text_traffic' => "Κίνηση: ", + 'text_no_traffic' => "Δεν υπάρχει κυκλοφορία για τη στιγμή", + 'text_status' => "Κατάσταση: ", + 'text_dead' => "νεκρός", + 'row_health' => "Υγεία", + 'text_anonymous' => "Ανώνυμος", + 'text_edit_torrent' => "Επεξεργασία", + 'text_edit_and_delete_torrent' => "Επεξεργασία/Διαγραφή", + 'title_edit_torrent' => "Click to Edit or Delete this torrent", + 'row_upped_by' => "Ανέβηκε από", + 'text_click' => "Click ", + 'text_num_files' => "Αριθμός αρχείων: ", + 'text_see_full_list' => "[Προβολή πλήρους λίστας]", + 'text_files' => " αρχεία", + 'row_file_list' => "Λίστα αρχείων", + 'text_hide_list' => "[Απόκρυψη λίστας]", + 'row_action' => "Ενέργεια", + 'text_download_torrent' => "Λήψη torrent", + 'text_download_paid_torrent' => "Κατεβάστε torrent(ανακοίνωση θα αφαιρέσει μπόνους: %s)", + 'text_download_bought_torrent' => "Λήψη torrent(αγορασμένα)", + 'title_download_torrent' => "Λήψη torrent", + 'text_ask_for_reseed' => "Ερώτηση για έναν reseed", + 'title_ask_for_reseed' => "Ρωτήστε το snatched users for reseeding when there's no seeder", + 'text_report_torrent' => "Αναφορά torrent", + 'title_report_torrent' => "Έκθεση torrent για παραβίαση κανόνες", + 'text_here' => "here", + 'row_peers' => "Υπολογιστές", + 'text_seeders' => " Seeder", + 'text_leechers' => " Leecher", + 'text_peers_total' => " Σύνολο ομότιμων", + 'row_seeders' => "Σπόροι", + 'row_leechers' => "Leechers", + 'submit_say_thanks' => "Say Thanks!", + 'submit_you_said_thanks' => "You Said Thanks!", + 'text_no_thanks_added' => "δεν προστέθηκαν ευχαριστίες ακόμα", + 'row_thanks_by' => "Ευχαριστούμε από", + 'row_torrent_info' => "Torrent Πληροφορίες", + 'text_torrent_structure' => "Δομή: ", + 'text_torrent_info_note' => "[Προβολή Δομής]", + 'head_comments_for_torrent' => "Σχόλια για torrent ", + 'text_comments_for' => "Σχόλια για ", + 'text_snatch_detail_for' => "Λεπτομέρειες αρπαγής για ", + 'text_users_top_finished_recently' => "Οι χρήστες στην κορυφή ολοκλήρωσαν τη λήψη πιο πρόσφατα", + 'col_username' => "Όνομα Χρήστη", + 'col_uploaded' => "Ανέβηκε", + 'col_downloaded' => "Λήφθηκε", + 'col_when_completed' => "Όταν Ολοκληρώθηκε", + 'col_last_action' => "Τελευταία Ενέργεια", + 'col_seeding' => "Διαμοιρασμός", + 'col_pm_user' => "Χρήστης ΜΜ", + 'col_report_user' => "Αναφορά Χρήστη", + 'col_on_or_off' => "Ενεργοποίηση/Απενεργοποίηση", + 'text_global' => "Καθολικό", + 'text_torrent' => "Torrent", + 'text_yes' => "Ναι", + 'text_no'=> "Όχι", + 'text_add_a_comment' => "Προσθήκη Σχολίου", + 'text_no_comments_yet' => "Δεν υπάρχουν σχόλια ακόμα", + 'text_quick_comment' => "Γρήγορο Σχόλιο", + 'submit_add_comment' => "Add Comment", + 'title_pm' => "Αποστολή ΜΜ", + 'title_report' => "Αναφορά", + 'title_online' => "Συνδεδεμένος", + 'title_offline' => "Αποσυνδεδεμένος", + 'select_kewl' => "Kewl!", + 'select_pretty_good' => "Όμορφα καλά", + 'select_decent' => "Αξιοπρεπές", + 'select_pretty_bad' => "Αρκετά κακό", + 'select_sucks' => "Επιτυχία!", + 'text_lastfm_not_ready' => "Οι πληροφορίες Last.fm δεν είναι έτοιμες, κάντε κλικ ", + 'text_biography' => "Βιογραφία", + 'text_tags' => "Ετικέτες:", + 'text_similiar_artists' => "Similiar Καλλιτέχνες:", + 'text_may_also_like' => "Μπορεί Επίσης Να Μου Αρέσει:", + 'text_top_albums' => "Κορυφαία Άλμπουμ:", + 'text_listener' => " Ακροατής", + 'text_scrobbled' => " Παίζει", + 'text_album' => " Άλμπουμ", + 'text_album_name' => "Όνομα: ", + 'text_track_number_info' => "Κομμάτια: ", + 'text_release_date' => "Ημερομηνία Κυκλοφορίας: ", + 'text_label' => "Ετικέτα: ", + 'text_track_list' => "Λίστα Κομματιού: ", + 'text_track_number' => "#   ", + 'text_track_name' => "Όνομα Κομματιού", + 'text_track_duration' => "Διάρκεια", + 'text_track_listener' => "Ακροατής", + 'text_ratings_legend' => "Υπόμνημα: ", + 'text_points' => " πόντοι", + 'text_totalvotes' => " ψήφοι", + 'text_author' => "Συγγραφέας: ", + 'text_from' => "από", + 'h1_user_reviews' => "Αξιολογήσεις Επιλεγμένων Χρηστών", + 'h1_critic_reviews' => "Κριτικές Για Κριτικές Κινηματογράφου", + 'h1_user_comments' => "Σχόλια Χρήστη", + 'text_local_link' => "Τοπικός Σύνδεσμος", + 'text_at' => " στις ", + 'row_basic_info' => "Βασικές Πληροφορίες", + 'text_site_rating' => " Βαθμολογία", + 'text_blank' => " ", + 'text_creator' => "Δημιουργός: ", + 'submit_search_at_shooter' => "Αναζήτηση στο Shooter", + 'submit_search_at_opensubtitles' => "Αναζήτηση στο Opensubtitles", + 'title_show_or_hide' => "Εμφάνιση ή Απόκρυψη", + 'title_bookmark' => "Σελιδοδείκτης", + 'text_album_information' => "Πληροφορίες Άλμπουμ: ", + 'text_about_album' => "Σχετικά με αυτό το άλμπουμ: ", + 'text_artist' => " Καλλιτέχνης", + 'text_artist_name' => "Καλλιτέχνης: ", + 'text_medium' => "Μέσο:", + 'text_team' => "Ομάδα:", + 'text_audio_codec' => "Κωδικοποιητής Ήχου:", + 'text_delete' => "Διαγραφή", + 'text_other_copies' => " Άλλα Αντίγραφα", + 'row_uploader_bandwidth' => "Ανεβάστε
Εύρος Ζώνης", + 'text_and_more' => " and more (thanks from ", + 'text_users_in_total' => " οι χρήστες συνολικά)", + 'torrent_dl_url' => "Url Torrent", + 'torrent_dl_url_notice' => "Μπορείτε να το αντιγράψετε στον πελάτη BT σας. Ισχύει μόνο σήμερα.", + 'torrent_dl_url_text' => "Δεξί κλικ για προβολή.", + 'span_description_have_given' =>'Έχετε δώσει τη μαγεία της αξίας', + 'text_no_magic_added' => "Δεν υπάρχει μαγική αξία του βραβείου", + 'magic_value_number' => "Αριθμός Magic σημείο τιμή έχει παρουσιαστεί", + 'magic_value_award' => "Μαγική αξία των βραβείων", + 'magic_newest_record' =>'Εδώ μόνο η τελευταία εγγραφή. ', + 'magic_sum_user_give_number' => 'Ο αριθμός των βουλευτών έδωσε το μαγικό βραβείο ολοκληρωτικά', + 'magic_show_all_description' => 'Προβολή λεπτομερειών ενός μόνο', + 'magic_haveGotBonus' => 'Εκδότης τώρα πήρε Αριθμός Μπόνους του βραβείου.', + 'magic_have_no_enough_bonus_value' => 'απαιτούνται περισσότεροι πόντοι', + 'claim_already' => 'Διεκδικείται', + 'claim_now' => 'Claim', + 'claim_info' => 'Already claimed by %s users, %s place left.', + 'claim_detail' => 'Ισχυρισμός λεπτομερειών', + 'claim_label' => 'Διεκδίκηση torrent', + 'claim_confirm' => 'Είστε βέβαιοι να διεκδικήσετε αυτό το torrent?', + 'action_approval' => 'Έγκριση', + 'row_tags' => 'Ετικέτες', + 'torrent_existed' => 'Το torrent μεταφορτώθηκε ήδη!', +); + +?> diff --git a/lang/el/lang_docleanup.php b/lang/el/lang_docleanup.php new file mode 100644 index 00000000..6c05045c --- /dev/null +++ b/lang/el/lang_docleanup.php @@ -0,0 +1,9 @@ + 'Εκκαθάριση', + 'running' => 'καθάρισμα σε εξέλιξη... παρακαλώ περιμένετε', + 'force' => 'Αν χρειαστεί να επιβάλετε έναν πλήρη καθαρισμό, κάντε κλικ στην επιλογήεδώ', + 'time_consumed' => 'Χρόνος που καταναλώνεται:%f δευτερόλεπτο', + 'done' => 'Ολοκληρώθηκε', +]; diff --git a/lang/el/lang_donate.php b/lang/el/lang_donate.php new file mode 100644 index 00000000..5dc06a23 --- /dev/null +++ b/lang/el/lang_donate.php @@ -0,0 +1,31 @@ + "Συγνώμη", + 'std_do_not_accept_donation' => "Δεν δεχόμαστε δωρεά αυτή τη στιγμή.", + 'std_success' => "Επιτυχία", + 'std_donation_success_note_one' => "Σας ευχαριστούμε για τη δωρεά σας! Η συναλλαγή σας έχει ολοκληρωθεί. Παρακαλώ κάντε κλικ ", + 'std_here' => "εδώ", + 'std_donation_success_note_two' => " για να μας στείλετε τα στοιχεία της συναλλαγής ώστε να μπορούμε να πιστώσουμε το λογαριασμό σας!", + 'head_donation' => "Δωρεά", + 'text_donate' => "Δωρεά", + 'std_error' => "Σφάλμα", + 'std_no_donation_account_available' => "Δεν έχουν οριστεί λογαριασμοί δωρεάς. Παρακαλείσθε να το αναφέρετε στο προσωπικό.", + 'text_donation_note' => "Σας ευχαριστούμε για το ενδιαφέρον σας για τη δωρεά. Οτιδήποτε θα μπορούσατε να δωρίσετε θα ήταν ευγνωμοσύνη λάβετε ανεξάρτητα από το πόσο μικρό.", + 'text_donate_with_paypal' => "Δωρεά με PayPal", + 'text_donate_paypal_note' => "1. Επιλέξτε το ποσό δωρεάς σας.
2. Κάντε κλικ στο κουμπί PayPal.
3. Ολοκληρώστε την πληρωμή σας στο PayPal.", + 'text_select_donation_amount' => "Παρακαλώ επιλέξτε ένα ποσό δωρεάς: ", + 'select_choose_donation_amount' => "---Επιλέξτε Ποσό Δωρεά---", + 'select_other_donation_amount' => "Άλλο Ποσό Δωρεάς", + 'text_usd_mark' => "$", + 'text_donation' => " Δωρεά", + 'text_donate_with_alipay' => "Δωρεά με Alipay", + 'text_donate_alipay_note_one' => "1. Κάντε κλικ στο κουμπί Alipay.
2. Επιλέξτε «πληρωμή για να αγνώστου».
3. Εισάγετε τον λογαριασμό μας στο Alipay ", + 'text_donate_alipay_note_two' => "
4. Πήγαινε μέχρι να τελειώσεις.", + 'text_after_donation_note_one' => "Αφού έχετε δωρίσει, βεβαιωθείτε ότι ", + 'text_send_us' => "Στείλτε Μας", + 'text_after_donation_note_two' => " the transaction information so we can credit your account!", +); + +?> diff --git a/lang/el/lang_download.php b/lang/el/lang_download.php new file mode 100644 index 00000000..9f8fedb0 --- /dev/null +++ b/lang/el/lang_download.php @@ -0,0 +1,5 @@ + "Ειδοποίηση Λήψης", + 'text_client_banned_notice' => "Ειδοποίηση αποκλεισμού πελάτη", + 'text_client_banned_note' => "Hi!
The tracker has detected that you have been using a banned BitTorrent client in the last connecting. Please read the following notice.", + 'text_low_ratio_notice' => "Ειδοποίηση χαμηλής αναλογίας", + 'text_low_ratio_note_one' => "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Η αναλογία σας είναι χαμηλή! Πρέπει να τη βελτιώσετε μέσα ", + 'text_low_ratio_note_two' => ", or you will lose your membership here. If you have no idea what your ratio is, read the following notice carefully.", + 'text_first_time_download_notice' => "Πρώτη ειδοποίηση λήψης", + 'text_first_time_download_note' => "Hi!
Chances are it's your first time downloading a torrent from our tracker.
There are probably a few things you should know before you continue. I will try to make this short :)", + 'text_this_is_private_tracker' => "Αυτό είναι ένα ιδιωτικό Tracker με απαίτηση αναλογίας", + 'text_private_tracker_note_one' => "Αυτό είναι ένα ιδιωτικό tracker, πράγμα που σημαίνει ότι διατηρούμε τον ιχνηλάτη για την αποκλειστική χρήση των εγγεγραμμένων μελών μας. ", + 'text_learn_more' => "Μάθετε περισσότερα για το ιδιωτικό tracker στο ", + 'text_nexuswiki' => "NexusWiki", + 'text_private_tracker_note_two' => "You MUST keep a minimum required upload-to-download ratio, or you will lose your membership here. ", + 'text_see_ratio' => "Βλέπε απαίτηση λόγου σε ", + 'text_private_tracker_note_three' => "Η τρέχουσα αναλογία σας εμφανίζεται πάντα κάτω από το μενού πλοήγησης του ιστοτόπου. Παρακαλώ προσέξτε το.", + 'text_private_tracker_note_four' => "How to keep a good ratio?
Well, the best way is to always leave your BitTorrent client running and keep on seeding the torrents you've downloaded until you delete the files.", + 'text_use_allowed_clients' => "Επιτρεπόμενοι πελάτες BitTorrent", + 'text_allowed_clients_note_one' => "Well, there are quite a few BitTorrent clients out there. However, we ONLY accept some of them. Others (e.g. qbittorrentEE, Thunder) are banned here and would fail to connect our tracker. ", + 'text_allowed_clients_note_two' => "Μπορείτε να βρείτε μια πλήρη λίστα των επιτρεπόμενων πελατών στο ", + 'text_allowed_clients_note_three' => ". Εάν δεν είστε σίγουροι ποιος να επιλέξετε, εξετάστε τα ακόλουθα δύο συνιστώμενους πελάτες: ", + 'title_download' => "Λήψη ", + 'text_for' => "Για ", + 'text_for_more_information_read' => "Για περισσότερες πληροφορίες, ανατρέξτε στο ", + 'text_rules' => "Κανόνες", + 'text_and' => " και ", + 'text_faq' => "Συχνές", + 'text_let_me_download' => "Θα βελτιώσω την αναλογία μου. ", + 'text_notice_not_show_again' => "Να μην εμφανιστεί ξανά αυτή η ειδοποίηση. ", + 'text_notice_always_show' => "Αυτή η ειδοποίηση θα δείχνει πάντα μέχρι να βελτιώσετε την αναλογία σας. ", + 'submit_download_the_torrent' => "Κατεβάστε Το Torrent", +); + +?> diff --git a/lang/el/lang_edit.php b/lang/el/lang_edit.php new file mode 100644 index 00000000..ba1dce0d --- /dev/null +++ b/lang/el/lang_edit.php @@ -0,0 +1,74 @@ + "Επεξεργασία torrent - ", + 'text_cannot_edit_torrent' => "Αδυναμία επεξεργασίας αυτού του torrent", + 'text_cannot_edit_torrent_note' => "You're not the rightful owner, or you're not logged in properly.\n", + 'row_torrent_name' => "Όνομα torrent", + 'row_small_description' => "Μικρή περιγραφή", + 'row_nfo_file' => "Αρχείο NFO", + 'radio_keep_current' => "Διατήρηση Τρέχοντος", + 'radio_update' => "Ενημέρωση", + 'radio_remove' => "Αφαίρεση", + 'row_description' => "Περιγραφή", + 'row_type' => "Τύπος", + 'text_source' => "Πηγή:", + 'select_choose_one' => "επιλέξτε ένα", + 'text_codec' => "Κωδικοποιητής:", + 'text_standard' => "Πρότυπο:", + 'text_processing' => "Επεξεργασία:", + 'row_quality' => "Ποιότητα", + 'text_quality_note' => "Επιλέξτε μόνο για βίντεο", + 'row_visible' => "Ορατό", + 'checkbox_visible' => "Ορατό στην κύρια σελίδα", + 'text_visible_note' => "Σημειώστε ότι το torrent θα γίνει αυτόματα ορατό όταν υπάρχει ένα seeder, και θα γίνει αυτόματα αόρατος (νεκρός) όταν δεν υπάρχει σπόρος για λίγο. Χρησιμοποιήστε αυτό το διακόπτη για να επιταχύνετε τη διαδικασία χειροκίνητα. Επίσης, σημειώστε ότι αόρατα (νεκρά) torrents μπορεί ακόμα να δει ή να αναζητήσει, δεν είναι ακριβώς η προεπιλογή.", + 'row_anonymous_uploader' => "Ανώνυμος", + 'checkbox_anonymous_note' => "Ενεργοποιήστε αυτό το πλαίσιο για την απόκρυψη του αποστολέα του torrent", + 'row_special_torrent' => "Προώθηση", + 'select_use_global_setting' => "χρήση καθολικής ρύθμισης", + 'select_forever' => "για πάντα", + 'select_until' => "μέχρι", + 'text_keep_current' => "διατήρηση τρέχοντος", + 'text_ie_for' => "για ", + 'text_promotion_until_note' => "(Η μορφή ώρας είναι ΕΕΕ-ΜΜ-ΗΗ ωω:λλ:τ)", + 'select_normal' => "κανονικό", + 'select_free' => "δωρεάν", + 'select_two_times_up' => "2x πάνω", + 'select_free_two_times_up' => "δωρεάν και 2x επάνω", + 'select_half_down' => "50% κάτω", + 'select_choose_torrent_state' => "Ορισμός torrent κατά την προώθηση", + 'row_torrent_position' => "Torrent Θέση", + 'row_recommended_movie' => "Προτεινόμενη Ταινία ", + 'select_choose_recommended_movie' => "Επιλέξτε αν η αφίσα ενός torrent ταινιών θα εμφανιστεί στην κεντρική σελίδα", + 'select_hot' => "ζεστό", + 'select_classic' => "κλασικό", + 'select_recommended' => "συνιστάται", + 'select_sticky' => "κολλώδες", + 'select_choose_if_sticky' => "Επιλέξτε αν το torrent θα είναι κολλημένο στη σελίδα torrents", + 'row_banned' => "Αποκλεισμένος", + 'checkbox_banned' => "Αποκλεισμένος", + 'submit_edit_it' => "Επεξεργασία it!", + 'submit_revert_changes' => "Επαναφορά αλλαγώνchar@@0 ", + 'text_delete_torrent' => "Διαγραφή torrent - Λόγος:", + 'radio_dead' => "Νεκρός", + 'text_dead_note' => " 0 σπόροι + 0 χρήστες = 0 ομότιμοι συνολικοί", + 'radio_dupe' => "Dupe", + 'radio_nuked' => "Ξηροί", + 'radio_rules' => "Κανόνες", + 'text_req' => "(req)", + 'radio_other' => "Άλλο", + 'submit_delete_it' => "Διαγραφή αυτό!", + 'text_move_to_browse' => "Μετακίνηση στην ενότητα Torrents ως ", + 'text_move_to_special' => "Μετακίνηση στην ενότητα Special ως ", + 'text_medium' => "Μέσο:", + 'row_pick' => "Επιλέξτε", + 'row_check' => "Έλεγχος", + 'text_team' => "Ομάδα", + 'text_audio_codec' => "Κωδικοποιητής Ήχου", + 'row_content' => "Περιεχόμενο", + 'ban_reason_label' => 'Λόγος', + 'fill_quality' => 'Ποιότητα γεμίσματος', +); + +?> diff --git a/lang/el/lang_faq.php b/lang/el/lang_faq.php new file mode 100644 index 00000000..b96d2554 --- /dev/null +++ b/lang/el/lang_faq.php @@ -0,0 +1,12 @@ + "Συχνές", + 'text_welcome_to' => "Καλώς ήλθατε στο ", + 'text_welcome_content_one' => "The goal is to provide the absolutely high quality stuff. Therefore, only specially authorised users have permission to upload torrents. If you have access to 0-day stuff do not hesitate to contact us!

This is a private tracker, and you have to register before you can get full access to the site.", + 'text_welcome_content_two' =>" Πριν κάνετε κάτι εδώ στο %s, σας προτείνουμε να διαβάσετε τους κανόνες ! Υπάρχουν μόνο λίγοι κανόνες που πρέπει να τηρούμε, αλλά τους επιβάλλουμε!

Πριν προχωρήσετε περαιτέρω, θα πρέπει να διαβάσετε τη συμφωνία χρήστη %s .", + 'text_contents' => "Περιεχόμενα", +); + +?> diff --git a/lang/el/lang_fastdelete.php b/lang/el/lang_fastdelete.php new file mode 100644 index 00000000..e2f26673 --- /dev/null +++ b/lang/el/lang_fastdelete.php @@ -0,0 +1,13 @@ + "Η διαγραφή απέτυχε!", + 'std_missing_form_data' => "λείπουν δεδομένα φόρμας", + 'text_no_permission' => "Δεν είστε εξουσιοδοτημένοι να διαγράψετε αυτό το torrent, μόνο οι συντονιστές ή οι παραπάνω μπορούν να το κάνουν. Παρακαλώ επικοινωνήστε με ένα αν αυτό είναι το torrent σας και θέλετε να το διαγράψετε.\n", + 'std_delete_torrent' => "Διαγραφή torrent", + 'std_delete_torrent_note' => "Έλεγχος Sanity: Πρόκειται να διαγράψετε ένα torrent. Κάντε κλικ", + 'std_here_if_sure' => " here if you are sure." +); + +?> diff --git a/lang/el/lang_fields.php b/lang/el/lang_fields.php new file mode 100644 index 00000000..5b9b393d --- /dev/null +++ b/lang/el/lang_fields.php @@ -0,0 +1,31 @@ + 'Διαχείριση προσαρμοσμένων πεδίων', + 'text_manage' => 'Διαχείριση', + 'text_add' => 'Προσθήκη', + 'text_field' => 'Πεδίο', + 'text_delete' => 'Διαγραφή', + 'text_edit' => 'Επεξεργασία', + 'col_id' => 'ID', + 'col_name' => 'Όνομα', + 'col_name_help' => 'Να επιτρέπονται μόνο ψηφία, αλφάβητο, υπογράμμιση', + 'col_label' => 'Εμφάνιση ετικέτας', + 'col_type' => 'Τύπος', + 'col_required' => 'Απαιτείται', + 'col_help' => 'Κείμενο βοήθειας', + 'col_options' => 'Επιλογές', + 'col_options_help' => 'Απαιτείται όταν ο τύπος είναι ραδιόφωνο, πλαίσιο ελέγχου, επιλογή. Μία γραμμή, μία επιλογή, μορφή: τιμή/εμφάνιση κειμένου', + 'col_action' => 'Ενέργεια', + 'col_is_single_row' => 'Εμφάνιση σε μία μόνο γραμμή', + 'js_sure_to_delete_this' => 'Σίγουρα για διαγραφή?', + 'submit_submit' => 'Υποβολή', + 'field_type_text' => 'Σύντομο κείμενο', + 'field_type_textarea' => 'Μακρύ κείμενο', + 'field_type_radio' => 'Οριζόντια ενιαία επιλογή', + 'field_type_checkbox' => 'Οριζόντια πολλαπλή επιλογή', + 'field_type_select' => 'Κατακόρυφη μεμονωμένη επιλογή', + 'field_type_image' => 'Εικόνα', + 'col_display' => 'Προσαρμοσμένη οθόνη', + +]; diff --git a/lang/el/lang_forummanage.php b/lang/el/lang_forummanage.php new file mode 100644 index 00000000..0fc3cadf --- /dev/null +++ b/lang/el/lang_forummanage.php @@ -0,0 +1,38 @@ + "Διαχείριση Φόρουμ", + 'text_forum_management' => "Διαχείριση Φόρουμ", + 'text_edit_forum' => "Επεξεργασία Φόρουμ", + 'row_forum_name' => "Όνομα φόρουμ", + 'row_forum_description' => "Περιγραφή του φόρουμ", + 'row_overforum' => "Overforum", + 'row_moderator' => "Συντονιστής", + 'text_moderator_note' => "Μέγιστο 3 συντονιστές. Διαχωρίστε τα με ','.", + 'row_minimum_read_permission' => "Ελάχιστο δικαίωμα ανάγνωσης", + 'row_minimum_write_permission' => "Ελάχιστη άδεια εγγραφής", + 'row_minimum_create_topic_permission' => "Ελάχιστη άδεια δημιουργίας θέματος", + 'row_forum_order' => "Παραγγελία φόρουμ", + 'text_forum_order_note' => "Ταξινόμηση κατά αύξοντα αριθμό. Δηλαδή, 0 δείχνει στην κορυφή", + 'submit_edit_forum' => "Επεξεργασία φόρουμ", + 'text_no_records_found' => "Λυπούμαστε, δεν βρέθηκαν εγγραφές!", + 'text_add_forum' => "Προσθήκη Φόρουμ", + 'text_make_new_forum' => "Δημιουργία νέου φόρουμ", + 'submit_overforum_management' => "Διαχείριση Overforum", + 'submit_add_forum' => "Προσθήκη Φόρουμ", + 'col_name' => "Όνομα", + 'col_overforum' => "Overforum", + 'col_read' => "Ανάγνωση", + 'col_write' => "Εγγραφή", + 'col_create_topic' => "Δημιουργία Θέματος", + 'col_moderator' => "Συντονιστής", + 'col_modify' => "Τροποποίηση", + 'text_not_available' => "Δ/Υ", + 'text_edit' => "Επεξεργασία", + 'text_delete' => "Διαγραφή", + 'js_sure_to_delete_forum' => "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτό το φόρουμ?", + 'submit_make_forum' => "Δημιουργία Φόρουμ" +); + +?> diff --git a/lang/el/lang_forums.php b/lang/el/lang_forums.php new file mode 100644 index 00000000..688cbe93 --- /dev/null +++ b/lang/el/lang_forums.php @@ -0,0 +1,204 @@ + "Δεν υπάρχει ενεργός χρήστης στο φόρουμ τώρα.", + 'text_stats' => "Στατιστικά", + 'text_our_members_have' => "Τα μέλη μας έχουν κάνει ", + 'text_posts_in_topics' => " δημοσιεύσεις στο ", + 'text_in_topics' => " θέματα. ", + 'text_there' => "Εκεί ", + 'text_online_user' => " συνδεδεμένος χρήστης", + 'text_in_forum_now' => " στο φόρουμ τώρα. ", + 'std_no_post_found' => "Δεν βρέθηκε δημοσίευση", + 'text_quick_jump' => "Γρήγορο άλμα: ", + 'submit_go' => "Go!", + 'std_bad_forum_id' => "Λάθος id φόρουμ", + 'text_new_topic_in' => "Νέο θέμα στο", + 'text_forum' => "φόρουμ", + 'std_forum_error' => "Σφάλμα φόρουμ", + 'std_topic_not_found' => "Το θέμα δεν βρέθηκε.", + 'text_reply_to_topic' => "Απάντηση στο θέμα: ", + 'text_compose' => "Σύνθεση", + 'std_error' => "Σφάλμα", + 'std_no_post_id' => "Καμία δημοσίευση με αυτό το ID", + 'submit_submit' => "Υποβολή", + 'submit_preview' => "Προεπισκόπηση", + 'text_tags' => "Ετικέτες", + 'text_smilies' => "Smilies", + 'text_ten_last_posts' => "10 τελευταίες δημοσιεύσεις, με αντίστροφη σειρά", + 'text_by' => "από ", + 'text_at' => "στις ", + 'head_edit_forum' => "Επεξεργασία φόρουμ", + 'text_edit_forum' => "Επεξεργασία Φόρουμ", + 'row_forum_name' => "Όνομα Φόρουμ", + 'row_description' => "Περιγραφή", + 'row_permission' => "Άδεια", + 'text_minimum' => "Ελάχιστο ", + 'select_minimum_class_view' => "Κατηγορία που απαιτείται για την προβολή
 Ελάχιστη", + 'select_minimum_class_post' => "Κατηγορία που απαιτείται για τη θέση
 Ελάχιστη", + 'select_minimum_class_topic' => "Απαιτείται κλάση για τη δημιουργία θεμάτων", + 'std_no_forum_id' => "Το ID του φόρουμ δεν βρέθηκε.", + 'std_must_specify_forum_name' => "Πρέπει να ορίσετε ένα όνομα για το φόρουμ.", + 'std_must_provide_forum_description' => "Πρέπει να δώσετε μια περιγραφή για το φόρουμ.", + 'head_delete_forum' => "Διαγραφή φόρουμ", + 'text_warning' => "** ΠΡΟΕΙΔΟΠΟΙΗΣΗ! **", + 'text_deleting_forum_id' => "Διαγραφή ID φόρουμ ", + 'text_will_also_delete' => " θα διαγράψει επίσης ", + 'text_posts_in' => "δημοσιεύσεις στο ", + 'text_topics' => " θέματα. ", + 'text_accept' => "ΑΠΟΔΟΧΗ", + 'text_cancel' => "ΑΚΥΡΩΣΗ", + 'std_unauthorised_performing_action' => "Δεν είστε εξουσιοδοτημένοι να εκτελέσετε αυτήν την ενέργεια!", + 'head_new_topic' => "Νέο θέμα", + 'std_must_enter_subject' => "Πρέπει να εισάγετε ένα θέμα.", + 'std_subject_limited' => "Το θέμα είναι περιορισμένο. Παρακαλώ συντομεύστε το θέμα σας", + 'std_bad_topic_id' => "Εσφαλμένο ID θέματος", + 'std_sorry' => "Sorry...", + 'std_unauthorized_to_post' => "You are not authorized to Post. Read (Inbox)", + 'std_permission_denied' => "Άρνηση άδειας.", + 'std_no_body_text' => "Δεν υπάρχει κείμενο σώματος.", + 'std_post_flooding' => "Δεν επιτρέπεται η δημοσίευση πλημμύρας. Παρακαλώ περιμένετε ", + 'std_seconds_before_making' => " δευτερόλεπτα πριν από την πραγματοποίηση μιας άλλης δημοσίευσης.", + 'std_no_topic_id_returned' => "Κανένα θέμα ID δεν επέστρεψε", + 'std_topic_locked' => "Αυτό το θέμα είναι κλειδωμένο.", + 'std_post_id_not_available' => "Ανάρτηση id n/a", + 'std_unpermitted_viewing_topic' => "Δεν σας επιτρέπεται να δείτε αυτό το θέμα.", + 'text_prev' => "Προηγ.", + 'text_next' => "Επόμενο", + 'head_view_topic' => "Προβολή θέματος", + 'text_forums' => " Φόρουμ", + 'text_ago' => " πριν", + 'text_quote' => "Παράθεση", + 'text_last_edited_by' => "Τελευταία επεξεργασία από ", + 'text_last_edit_at' => " στις ", + 'text_posts' => "Αναρτήσεις: ", + 'text_ul' => "UL: ", + 'text_dl' => "DL: ", + 'text_ratio' => "Αναλογία: ", + 'text_class' => "Κλάση:", + 'text_back_to_top' => "Επιστροφή στην κορυφή", + 'title_sticky' => "Κολλημένο", + 'submit_sticky' => "Κολλημένο", + 'submit_unsticky' => "Απρόσκοπτη", + 'submit_unlock' => "Unlock Topic", + 'submit_lock' => "Lock Topic", + 'submit_delete_topic' => "Διαγραφή Θέματος ", + 'text_rename_topic' => "Μετονομασία θέματος:", + 'submit_okay' => "Εντάξει", + 'text_move_thread_to' => "Μετακίνηση αυτού του νήματος σε:", + 'submit_move' => "Μετακίνηση", + 'text_topic_locked_new_denied' => "

Αυτό το θέμα είναι κλειδωμένο. Δεν επιτρέπονται νέες δημοσιεύσεις.

", + 'text_unpermitted_posting_here' => "

Δεν επιτρέπεται να δημοσιεύσετε σε αυτό το φόρουμ.

", + 'head_post_reply' => "Ανάρτηση απάντησης", + 'std_forum_not_found' => "Το φόρουμ δεν βρέθηκε.", + 'std_cannot_get_posts_count' => "Δεν ήταν δυνατή η λήψη αρίθμησης δημοσιεύσεων.", + 'std_delete_topic' => "Διαγραφή θέματος", + 'std_delete_topic_note' => "Έλεγχος υγιεινής: Πρόκειται να διαγράψετε ένα θέμα. Κάντε κλικ ", + 'std_here_if_sure' => "here if you are sure.", + 'std_no_topic_for_post' => "Κανένα θέμα που σχετίζεται με αυτό το ID δημοσίευσης", + 'std_denied' => "Απορρίφθηκε!", + 'std_body_empty' => "Το σώμα δεν μπορεί να είναι κενό!", + 'std_subject_empty' => "Το θέμα δεν μπορεί να είναι κενό!", + 'std_success' => "Επιτυχία", + 'std_post_edited_successfully' => "Η ανάρτηση επεξεργάστηκε με επιτυχία.", + 'text_edit_post' => "Επεξεργασία Δημοσίευσης", + 'std_how_could_this_happen' => "how could this happenσυμβαίνει αυτό?!", + 'std_post_not_found' => "Η ανάρτηση δεν βρέθηκε", + 'std_cannot_delete_post' => "Δεν είναι δυνατή η διαγραφή δημοσίευσης. Είναι η πρώτη δημοσίευση του θέματος. Θα πρέπει να ", + 'std_delete_topic_instead' => "delete the topic instead.", + 'std_delete_post' => "Διαγραφή δημοσίευσης", + 'std_delete_post_note' => "Έλεγχος υγιεινής: Πρόκειται να διαγράψετε μια δημοσίευση. Κάντε κλικ ", + 'std_must_enter_new_title' => "Πρέπει να εισάγετε ένα νέο τίτλο!", + 'std_not_permitted' => "Δεν επιτρέπεται", + 'std_sql_error' => "Σφάλμα SQL", + 'head_forum' => "Φόρουμ", + 'col_topic' => "Θέμα", + 'col_replies' => "Απαντήσεις", + 'col_views' => "Προβολές", + 'col_author' => "Συγγραφέας", + 'col_last_post' => "Last post", + 'text_no_topics_found' => "Δεν βρέθηκαν θέματα", + 'text_new_posts' => "Νέες αναρτήσεις", + 'text_locked_topic' => "Κλειδωμένο θέμα", + 'text_unpermitted_starting_new_topics' => "Δεν σας επιτρέπεται να ξεκινήσετε νέα θέματα σε αυτό το φόρουμ.", + 'submit_view_unread' => "View unread", + 'submit_new_topic' => "Νέο θέμα", + 'text_topics_with_unread_posts' => "Θέματα με μη αναγνωσμένες αναρτήσεις", + 'col_forum' => "Φόρουμ", + 'text_more_than' => "Περισσότερο από ", + 'text_items_found_displaying_first' => " τα στοιχεία βρέθηκαν, εμφανίζονται πρώτα ", + 'text_catch_up' => "Σύλληψη πάνω", + 'text_nothing_found' => "Δεν βρέθηκε τίποτα", + 'head_forum_search' => "Αναζήτηση Στο Φόρουμ", + 'col_post' => "Δημοσίευση", + 'col_posted_by' => "Καταχωρήθηκε από", + 'text_found' => "Βρέθηκαν ", + 'text_num_posts' => " δημοσιεύσεις", + 'text_search_on_forum' => "Αναζήτηση στα Φόρουμ", + 'text_by_keyword' => "ανά λέξη-κλειδί", + 'head_forums' => "Φόρουμ", + 'col_forums' => "Φόρουμ", + 'col_topics' => "Θέματα", + 'col_posts' => "Αναρτήσεις", + 'std_bad_forum_last_post' => "Λάθος φόρουμ τελευταία δημοσίευση", + 'text_in' => "σε ", + 'text_edit' => "Επεξεργασία", + 'text_delete' => "Διαγραφή", + 'std_unknown_action' => "Άγνωστη ενέργεια", + 'text_search' => "Αναζήτηση", + 'text_view_unread' => "Προβολή μη αναγνωσμένων", + 'text_forum_manager' => "Διαχειριστής φόρουμ", + 'title_reply_with_quote' => "Reply with Quote", + 'title_reply_directly' => "Απάντηση directly to this post", + 'title_delete_post' => "Διαγραφή Δημοσίευσης", + 'title_edit_post' => "Επεξεργασία Δημοσίευσης", + 'text_quick_reply' => "Γρήγορη Απάντηση", + 'submit_add_reply' => "Προσθήκη Απάντησης", + 'text_add_reply' => "Προσθήκη Απάντησης", + 'title_online' => "Συνδεδεμένος", + 'title_offline' => "Αποσυνδεδεμένος", + 'title_send_message_to' => "Send message to ", + 'title_report_this_post' => "Report this post", + 'title_new_topic' => "Νέο Θέμα", + 'col_moderator' => "Συντονιστής", + 'text_apply_now' => "Δ/Υ", + 'text_locked' => "Κλειδωμένο", + 'text_number' => "#", + 'text_lou' => "", + 'there_is' => "", + 'hits_on_this_topic' => " εμφανίσεις σε αυτό το νήμα", + 'title_read' => "Ανάγνωση", + 'title_unread' => "Αδιάβαστο", + 'title_locked' => "Κλειδωμένο", + 'title_locked_new' => "Κλειδωμένο & μη αναγνωσμένο", + 'text_highlight_topic' => "Χρώμα θέματος σε ", + 'select_color' => "Κανένα", + 'submit_change' => "Go!", + 'head_view_unread' => "Προβολή Μη Αναγνωσμένων", + 'text_today' => "Σήμερα: ", + 'text_new_post' => " δημοσίευση", + 'text_posts_today' => " σήμερα.", + 'text_at_time' => " στις ", + 'text_blank' => " ", + 'text_last_posted_by' => "Τελευταία ανάρτηση από ", + 'text_fast_search' => "Γρήγορη Αναζήτηση: ", + 'text_go' => "Go!", + 'submit_show_more' => "Εμφάνιση Περισσότερων", + 'text_view_all_posts' => "Προβολή όλων των δημοσιεύσεων", + 'text_view_this_author_only' => "Προβολή μόνο αυτού του συγγραφέα", + 'title_jump_to_unread' => "Μετάβαση σε μη αναγνωσμένες δημοσιεύσεις", + 'text_new' => "νέο", + 'title_order_topic_desc' => "Order by topic time descendant", + 'title_order_topic_asc' => "Order by topic time ascendant", + 'title_order_post_asc' => "Ταξινόμηση κατά τελευταία δημοσίευση ανερχόμενη ώρα", + 'title_order_post_desc' => "Ταξινόμηση κατά την τελευταία δημοσίευση", + 'text_order' => "Ταξινόμηση Κατά", + 'text_topic_desc' => "Απόγονος Θέματος", + 'text_topic_asc' => "Αύξων Χρόνος Θέματος", + 'text_post_asc' => "Χρόνος Τελευταίας Δημοσίευσης Ascendant", + 'text_post_desc' => "Τελευταία Δημοσίευση Χρόνος Descendant", + 'text_post_protected' => "[size=3][b]--Privacy protection is enabled in this forum---[/b]\nOnly topic poster,mods,admins and reply's author can read the content.[/size]", +); + +?> diff --git a/lang/el/lang_friends.php b/lang/el/lang_friends.php new file mode 100644 index 00000000..1e039ddd --- /dev/null +++ b/lang/el/lang_friends.php @@ -0,0 +1,38 @@ + "Σφάλμα", + 'std_invalid_id' => "Invalid ID ", + 'std_access_denied' => "Δεν επιτρέπεται η πρόσβαση.", + 'std_no_user_id' => "Κανένας χρήστης με ID ", + 'std_unknown_type' => "Άγνωστος τύπος ", + 'std_user_id' => "Id Χρήστη ", + 'std_already_in' => " είναι ήδη στο δικό σας ", + 'std_list' => " λίστα.", + 'std_delete' => "Διαγραφή ", + 'std_delete_note' => "Θέλετε πραγματικά να διαγράψετε ένα ", + 'std_click' => "? Click \n", + 'std_here_if_sure' => "εδώ αν είστε σίγουροι.", + 'std_no_friend_found' => "Δεν βρέθηκε φίλος με ID ", + 'std_no_block_found' => "Δεν βρέθηκε μπλοκ με ID ", + 'head_personal_lists_for' => "Προσωπικές λίστες για ", + 'text_personallist' => "ΠΡΟΣΩΠΙΚΟΣ", + 'text_friendlist' => "FRIENDLIST", + 'text_friends_empty' => "No friends yet", + 'text_neighbors_empty' => "Κανένας γείτονες ακόμα", + 'text_last_seen_on' => "Τελευταία προβολή στις ", + 'text_ago' => " πριν", + 'text_remove_from_friends' => "Αφαίρεση από τους φίλους", + 'text_send_pm' => "Αποστολή ΜΜ", + 'text_added_you_to_friendslist' => "Προστέθηκε στη λίστα φίλων", + 'text_add_to_friends' => "Προσθήκη στους φίλους", + 'text_blocklist_empty' => "Your blocked userlist is empty", + 'text_blocked_users' => "Αποκλεισμένοι Χρήστες", + 'text_find_user' => "Εύρεση λίστας χρηστών/περιηγήσεων", + 'text_neighbors' => "Γείτονες", + 'text_friend' => "φίλος", + 'text_block' => "μπλοκ", +); + +?> diff --git a/lang/el/lang_fun.php b/lang/el/lang_fun.php new file mode 100644 index 00000000..93069805 --- /dev/null +++ b/lang/el/lang_fun.php @@ -0,0 +1,44 @@ + "Διαγραφή Διασκέδασης Αντικειμένου?", + 'text_please_click' => "Do you really want to delete a fun item? Click\n", + 'text_here_if_sure' => "here if you are sure.", + 'std_error' => "Σφάλμα", + 'std_invalid_id' => "Μη έγκυρο id διασκεδαστικού αντικειμένου", + 'std_permission_denied' => "Άρνηση άδειας!", + 'text_fun_title' => "Fun Title", + 'text_body' => "Σώμα", + 'submit_okay' => "Εντάξει", + 'head_new_fun' => "Νέο Αστείο Stuff", + 'text_submit_new_fun' => "Υποβάλετε νέα αστεία πράγματα", + 'text_new_compose' => "Νέα Σύνθεση", + 'head_fun' => "Διασκέδαση", + 'text_on' => " ενεργό ", + 'text_blank' => " ", + 'text_ago' => " πριν", + 'text_posted_by' => " Δημοσιεύτηκε από ", + 'text_not_funny' => "Βόραγο", + 'text_funny' => "Αστείο", + 'text_very_funny' => "Διαχωρισμός", + 'head_edit_fun' => "Επεξεργασία Διασκέδασης", + 'text_edit_fun' => "Επεξεργασία Διασκέδασης", + 'std_body_is_empty' => "Το σώμα δεν μπορεί να είναι άδειο!", + 'std_title_is_empty' => "Ο τίτλος δεν μπορεί να είναι κενό!", + 'std_fun_added_successfully' => "Διασκεδαστικό στοιχείο προστέθηκε με επιτυχία.", + 'std_error_happened' => "Κάτι περίεργο μόλις συνέβη.", + 'std_the_newest_fun_item' => "Το τελευταίο διασκεδαστικό αντικείμενο ", + 'std_posted_on' => " αναρτήθηκε στις ", + 'std_need_to_wait' => ". Παρακαλώ περιμένετε μέχρι να πάρει 24 ώρες.", + 'std_are_you_sure' => "Είσαι σίγουρος?", + 'std_only_against_rule' => "Είστε βέβαιοι να απαγορεύσει αυτό το διασκεδαστικό στοιχείο? Σημειώστε ότι θα πρέπει να το κάνετε αυτό μόνο αν το διασκεδαστικό στοιχείο είναι ενάντια στους κανόνες. BTW, μπορεί επίσης να θέλετε να δώσετε στον χρήστη μια μικρή προειδοποίηση.", + 'std_reason_required' => "Λόγος (απαιτείται): ", + 'std_reason_is_empty' => "Πρέπει να δώσετε τον λόγο!", + 'std_success' => "Επιτυχία", + 'std_fun_item_banned' => "Το διασκεδαστικό αντικείμενο έχει αποκλειστεί με επιτυχία.", + 'std_already_vote' => "Έχετε ήδη ψηφίσει!", + 'std_cannot_give_bonus' => "Το σύστημα δεν μπορεί να δώσει μπόνους σε διασκεδαστικό αντικείμενο αφίσα. Παρακαλούμε αναφέρετε αυτό στο διαχειριστή.", +); + +?> diff --git a/lang/el/lang_functions.php b/lang/el/lang_functions.php new file mode 100644 index 00000000..77499537 --- /dev/null +++ b/lang/el/lang_functions.php @@ -0,0 +1,344 @@ + "Άρνηση Πρόσβασης!", + 'std_fake_account' => "Ερχόμαστε να πιστεύουμε ότι χρησιμοποιείτε έναν ψεύτικο λογαριασμό, επομένως έχουμε καταγράψει αυτή τη δράση!", + 'std_permission_denied' => "Άρνηση άδειας!", + 'std_permission_denied_only' => "Άρνηση άδειας. Μόνο ", + 'std_or_above_can_view' => " ή παραπάνω θα μπορούσαν.

Παρακαλώ δείτε το "."FAQ για περισσότερες πληροφορίες σχετικά με διαφορετικές κατηγορίες χρηστών και τι μπορούν να κάνουν.

Το προσωπικό %s
", + 'std_target_not_exists' => 'Target not exists', + 'std_already_logged_in' => "Έχετε ήδη συνδεθεί!", + 'text_page_last_updated' => "Τελευταία ενημέρωση σελίδας ", + 'text_browser_cookies_note' => "Αν ενεργοποιήσετε τα cookies και δεν είστε ακόμα σε θέση να συνδεθείτε, ίσως κάτι να προκαλέσει πρόβλημα με το cookie σύνδεσης. Σας προτείνουμε να διαγράψετε τα cookies σας και να δοκιμάσετε ξανά. Για να διαγράψετε τα cookies στον Internet Explorer, μεταβείτε στα Εργαλεία > Επιλογές Διαδικτύου... και κάντε κλικ στο κουμπί Διαγραφή cookies. Σημειώστε ότι αυτό θα διαγράψει όλα τα cookies που είναι αποθηκευμένα στο σύστημά σας και για άλλους ιστότοπους.", + 'std_error' => "Σφάλμα", + 'text_unable_to_send_mail' => "Δεν είναι δυνατή η αποστολή μηνύματος. Επικοινωνήστε με έναν διαχειριστή για αυτό το σφάλμα.", + 'std_success' => "Επιτυχία", + 'std_confirmation_email_sent' => "Ένα email επιβεβαίωσης έχει αποσταλεί στο ", + 'std_please_wait' => "Παρακαλώ αφήστε λίγα λεπτά για να φτάσει το ταχυδρομείο.", + 'std_account_details_sent' => "Τα στοιχεία του νέου λογαριασμού έχουν αποσταλεί στο ", + 'std_locked' => " Κλειδωμένο! (ο μέγιστος αριθμός απέτυχε ", + 'std_attempts_reached' => " επιτεύχθηκαν προσπάθειες κατά την επανταυτοποίηση)", + 'std_your_ip_banned' => "Ερχόμαστε να πιστεύουμε ότι προσπαθείτε να εξαπατήσει το σύστημά μας, ως εκ τούτου έχουμε απαγορεύσει ip!", + 'std_login_failed' => "Η σύνδεση απέτυχε!", + 'std_login_failed_note' => "Error: Username or password incorrect! Or you are not confirmed yet

Don't remember your password? Recover your password!", + 'std_failed' => "Απέτυχε", + 'std_oops' => "Ωχ!", + 'std_sorry' => "Συγνώμη", + 'std_invite_system_disabled' => "Το σύστημα πρόσκλησης είναι απενεργοποιημένο αυτή τη στιγμή...", + 'std_open_registration_disabled' => "Το άνοιγμα εγγραφής είναι απενεργοποιημένο. Μόνο προσκαλείται. Αν είστε τυχεροί μπορεί να έχετε έναν φίλο που θέλει να σας προσκαλέσει :) Απλά θα δούμε πόσο απατεώνες θα αρχίσουν να σέβονται τους λογαριασμούς τους αφού συνειδητοποιήσουν ότι δεν μπορούν απλά να επιστρέψουν και να πάρουν ένα άλλο :). Κρατήστε αυτό κατά νου, αν είστε ήδη μέλος και προσκαλέστε έναν γνωστό απατεώνα, and you knewήξερε about it in the first placeθέση, both yours and the personπρόσωπο you invited are disableedαναπηρία . Θα πρέπει να επικοινωνήσετε μαζί μας για να ανακτήσει τον λογαριασμό σας. Αν θέλετε μια πρόσκληση και ξέρετε κάποιον που έχει ένα είναι στο χέρι τους να σας δώσει μια πρόσκληση.", + 'std_account_limit_reached' => "Το όριο του τρέχοντος λογαριασμού χρήστη έχει συμπληρωθεί. Οι ανενεργοί λογαριασμοί περικόπτονται όλη την ώρα, παρακαλώ ελέγξτε ξανά αργότερα...", + 'std_the_ip' => "Η IP ", + 'std_used_many_times' => " χρησιμοποιείται ήδη σε πάρα πολλούς λογαριασμούς.... Δεν επιτρέπονται πλέον λογαριασμοί στο %s.", + 'std_invalid_image_code' => "Invalid Image Code!
Do not go back, The image code has been cleared!

Please click ", + 'std_here_to_request_new' => "here to request a new image code.", + 'std_action' => 'Ενέργεια', + 'std_report' => 'Αναφορά', + 'std_desc' => 'Περιγραφή', + 'std_comment' => 'Σχόλιο', + 'std_quick_comment' => 'Γρήγορο σχόλιο', + 'std_click_here_to_goback' => 'Κάντε κλικ εδώ για να επιγονατίσετε', + 'std_you_will_get' => 'Θα πάρετε', + 'std_by' => 'Από', + 'row_security_image' => "Εικόνα Ασφαλείας:", + 'row_security_code' => "Κωδικός Ασφαλείας:", + 'text_slots' => "Αυλακώσεις:", + 'text_unlimited' => "Απεριόριστο", + 'std_server_load_very_high' => "Το φορτίο του διακομιστή είναι πολύ υψηλό αυτή τη στιγμή. Προσπαθείτε, παρακαλώ περιμένετε...", + 'std_too_many_users' => "Πάρα πολλοί χρήστες. Παρακαλώ πατήστε το κουμπί Ανανέωση στο πρόγραμμα περιήγησης για να ξαναδοκιμάσετε.", + 'text_unauthorized_ip' => "

403 Απαγορευμένη

Μη εξουσιοδοτημένη διεύθυνση IP.", + 'text_home' => "Αρχική", + 'text_forums' => "Φόρουμ", + 'text_torrents' => "Torrents", + 'text_offers' => "Προσφορές", + 'text_request' => "Αιτήματα", + 'text_upload' => "Ανέβασμα", + 'text_subtitles' => "Υπότιτλοι", + 'text_user_cp' => "Χρήστης CP", + 'text_top_ten' => "Πάνω 10", + 'text_log' => "LOG", + 'text_rules' => "Κανόνες", + 'text_faq' => "Συχνές", + 'text_staff' => "Προσωπικό", + 'std_site_down_for_maintenance' => "Η ιστοσελίδα είναι κάτω για συντήρηση, παρακαλώ ελέγξτε ξανά αργότερα... Ευχαριστώ", + 'text_click_view_full_image' => "Κάντε κλικ σε αυτή τη γραμμή για να δείτε την πλήρη εικόνα.", + 'text_image_resized' => "Αυτή η εικόνα έχει αλλάξει μέγεθος. Κάντε κλικ σε αυτή τη γραμμή για να δείτε την πλήρη εικόνα.", + 'text_click_view_small_image' => "Κάντε κλικ σε αυτή τη γραμμή για να δείτε τη μικρή εικόνα.", + 'text_login' => "Είσοδος", + 'text_signup' => "Εγγραφή", + 'text_inf' => "Inf.", + 'title_donor' => "δότης", + 'title_warned' => "προειδοποιήθηκε", + 'title_inbox_new_messages' => "εισερχόμενα (νέα μηνύματα)", + 'title_inbox_no_new_messages' => "εισερχόμενα (χωρίς νέα μηνύματα)", + 'text_yes' => "Ναι", + 'text_no' => "Όχι", + 'text_unknown' => "Άγνωστο", + 'text_welcome_back' => "Καλωσόρισμα", + 'text_staff_panel' => "Επιτροπή Προσωπικού", + 'text_site_settings' => "Ρυθμίσεις Ιστοσελίδας", + 'text_logout' => "αποσύνδεση", + 'text_bonus' => "Μπόνους ", + 'text_use' => "Χρήση", + 'text_ratio' => "Αναλογία:", + 'text_uploaded' => "Μεταφορτώθηκε:", + 'text_downloaded' => "Ληφθέντα:", + 'text_active_torrents' => "Ενεργό:", + 'title_torrents_seeding' => "Torrents Seeding", + 'title_torrents_leeching' => "Torrents Leeching", + 'text_connectable' => "Συνδεδεμένο: ", + 'text_the_time_is_now' => "Ώρα: ", + 'text_message_new' => " Νέο", + 'title_sentbox' => "αποστολέας", + 'title_inbox' => "εισερχόμενα", + 'title_buddylist' => "Λίστα Buddylist", + 'text_you_have' => "Έχετε ", + 'text_new_message' => " νέο μήνυμα", + 'text_s' => "ίνα", + 'text_click_here_to_read' => "! Κάντε κλικ εδώ για να διαβάσετε.", + 'text_your_friends' => "Ο φίλος σας", + 'text_awaiting_confirmation' => " εν αναμονή επιβεβαίωσης από εσάς!", + 'text_website_offline_warning' => "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Η ιστοσελίδα αυτή τη στιγμή είναι εκτός σύνδεσης! Κάντε κλικ στο κουμπί εδώ για να αλλάξετε τις ρυθμίσεις.", + 'text_there_is' => "Εκεί", + 'text_new_report' => " νέα αναφορά", + 'text_new_staff_message' => " νέο μήνυμα προσωπικού", + 'text_search' => "Αναζήτηση", + 'text_profile' => "Προφίλ", + 'text_chat' => "Συνομιλία", + 'text_dox' => "DOX", + 'text_links' => "Σύνδεσμοι", + 'text_username' => "Όνομα Χρήστη: ", + 'text_password' => "Κωδικός: ", + 'submit_log_in' => "Log in!", + 'text_register' => "Εγγραφή", + 'text_rules_link' => "Κανόνες", + 'text_faq_link' => "Συχνές", + 'text_useragreement' => "Σύναψη Χρήστη", + 'text_prev' => "Προηγ.", + 'text_next' => "Επόμενο", + 'text_by' => " από ", + 'text_orphaned' => "(ορφανά)", + 'text_at' => " στις ", + 'text_edit' => "Επεξεργασία", + 'text_delete' => "Διαγραφή", + 'text_view_original' => "Προβολή αρχικού", + 'text_last_edited_by' => "Τελευταία επεξεργασία από ", + 'text_edited_at' => " στις ", + 'col_type' => "Τύπος", + 'col_name' => "Όνομα", + 'col_dl' => "DL", + 'col_wait' => "Αναμονή", + 'col_edit' => "Επεξεργασία", + 'col_visible' => "Ορατό", + 'title_number_of_comments' => "Αριθμός των σχολίων ", + 'title_time_added' => "Time Added", + 'title_size' => "Μέγεθος", + 'title_number_of_seeders' => "Αριθμός του Seeders", + 'title_number_of_leechers' => "Αριθμός του Leechers", + 'title_number_of_snatched' => "Αριθμός του άρπαξε", + 'col_uploader' => "Μεταφόρτωση", + 'col_action' => "Πράξη", + 'text_normal' => "Κανονικό", + 'text_free' => "Δωρεάν", + 'text_two_times_up' => "2X", + 'text_free_two_times_up' => "2X Δωρεάν", + 'text_half_down' => "50%", + 'text_half_down_two_up' => "2X 50%", + 'text_new_uppercase' => "ΝΕΟ", + 'text_sticky' => "Κολλημένο", + 'title_download_torrent' => "Λήψη Torrent", + 'text_h' => " ω", + 'text_none' => "Κανένα", + 'text_anonymous' => "Ανώνυμος", + 'text_promoted_torrents_note' => "Those highlighted are:   Free | 2x up | 2x up and free | 50% down | 2x up and 50% down | 30% down torrents
Leeching them is the best way to fix your ratio!", + 'std_file' => "Αρχείο ", + 'std_does_not_exist' => " δεν υπάρχει", + 'std_access_permission_note' => "!
Before the setup starts, please ensure that you have properly configured file and directory access permissions. Please see below.

chmod -R 777 config (config directory).", + 'std_cannot_read_file' => "Αδυναμία ανάγνωσης αρχείου ", + 'std_cannot_serialize_file' => "Αδυναμία σειριοποίησης αρχείου ", + 'std_cannot_open_file' => "Αδυναμία ανοίγματος αρχείου ", + 'std_to_save_info' => " για αποθήκευση πληροφοριών", + 'text_cannot_save_info_in' => "Αδυναμία αποθήκευσης πληροφοριών στο αρχείο (σφάλμα κατά τη σειριοποίηση) ", + 'std_your_account_parked' => "Ο λογαριασμός σας είναι σταθμευμένος.", + 'title_online' => "Συνδεδεμένος", + 'title_offline' => "Αποσυνδεδεμένος", + 'title_send_message_to' => "Send message to ", + 'title_report_this_comment' => "Report this comment", + 'text_bookmarks' => "Σελιδοδείκτες", + 'title_bookmark_torrent' => "Σελιδοδείκτης", + 'title_delbookmark_torrent' => "Μη Σελιδοδείκτης", + 'text_mark' => "Σημείωση", + 'text_unmark' => "Unmark", + 'text_award' => "Βραβείο Μπόνους: ", + 'text_additional_notes' => "Πρόσθετες Σημειώσεις: ", + 'title_view_reviews' => "Click to view reviews", + 'title_has_new_comment' => "Has new comment", + 'title_no_new_comment' => "No new comment", + 'row_external_info' => "Εξωτερική Πληροφορίες", + 'row_imdb_url' => "IMDb URL", + 'text_imdb_url_note' => "(URL λαμβάνεται από IMDb. π.χ. για την ταινία The Dark Knight the URL is https://www.imdb.com/title/tt0468569/)", + 'text_artist' => " Artist: ", + 'text_album' => "Άλμπουμ: ", + 'title_get_rss' => "Λήψη RSS", + 'text_hot' => "Ζεστό", + 'text_classic' => "Κλασικό", + 'text_recommended' => "Καλό", + 'title_view_nfo' => "Προβολή αρχείου NFO ", + 'title_edit_torrent' => "Επεξεργασία ή διαγραφή torrent", + 'title_time_alive' => "Time Alive", + 'title_add_comments' => "Add comment", + 'text_at_time' => " στις ", + 'text_blank' => " ", + 'text_ago' => " πριν", + 'text_last_commented_by' => "Τελευταία σχολίασε από ", + 'text_imdb' => "IMDb", + 'text_votes' => " ψήφοι", + 'text_country' => "Χώρα", + 'text_genres' => "Genres", + 'text_director' => "Διευθυντής", + 'text_starring' => "Πρωταγωνιστής", + 'text_runtime' => "Χρόνος Εκτέλεσης", + 'text_language' => "Γλώσσα", + 'text_douban' => "Douban", + 'text_region' => "Περιοχή", + 'text_creator' => "Δημιουργός", + 'text_awaiting_five_votes' => "awaiting 5 votes", + 'text_invite' => "Πρόσκληση ", + 'text_send' => "Αποστολή", + 'text_tracks' => "Κομμάτια", + 'text_label' => "Ετικέτα", + 'text_tags' => "Ετικέτες", + 'text_user_ip' => "Χρήστης IP", + 'text_location_main' => "Τοποθεσία Κύρια", + 'text_location_sub' => "Τοποθεσία Sub", + 'text_ip_range' => "IP Εύρος", + 'text_min' => " λεπτά", + 'text_music' => "Μουσική", + 'text_special' => "Ειδικό", + 'title_reply_with_quote' => "Παράθεση", + 'title_add_reply' => "Προσθήκη Απάντησης", + 'title_delete' => "Διαγραφή", + 'title_edit' => "Επεξεργασία", + 'title_reportbox' => "κουτί αναφοράς", + 'title_staffbox' => "προσωπικό", + 'title_sticky' => "Κολλημένο", + 'text_new_news' => " μη αναγνωσμένα σημαντικά νέα", + 'std_no_user_named' => "Δεν υπάρχει κανένας χρήστης που να ονομάζεται ", + 'text_banned' => "Αποκλεισμένος", + 'text_are' => " είναι ", + 'text_is' => " είναι ", + 'select_choose_one' => "επιλέξτε ένα", + 'text_space' => " ", + 'text_day' => "οφ ", + 'text_new_suspected_cheater' => " νέο ύποπτο ζητωκραυγή", + 'title_cheaterbox' => "cheaterbox", + 'text_will_end_in' => " θα λήξει σε ", + 'text_alt_pageup_shortcut' => "Alt+Pageup", + 'text_alt_pagedown_shortcut' => "Alt+Pagedown", + 'text_shift_pageup_shortcut' => "Shift+Pageup", + 'text_shift_pagedown_shortcut' => "Shift+Pagedown", + 'text_quote' => "Παράθεση", + 'text_code' => "ΚΩΔΙΚΟΣ", + 'std_invalid_id' => "Μη έγκυρο ID! Για λόγους ασφαλείας, έχουμε καταγράψει αυτήν την ενέργεια.", + 'text_smilies' => "Smilies", + 'col_type_something' => "Type...", + 'col_to_make_a' => "Για να κάνει...", + 'text_year' => " έτος", + 'text_month' => " μήνας", + 'text_day' => " ημέρα", + 'text_hour' => " ώρα", + 'text_min' => " λεπτά", + 'select_color' => "Χρώμα", + 'select_font' => "Font", + 'select_size' => "Μέγεθος", + 'text_subject' => "Θέμα:", + 'text_more_smilies' => "Περισσότερα Smilies", + 'js_prompt_enter_url' => "Πρέπει να εισάγετε μια διεύθυνση URL", + 'js_prompt_enter_title' => "Πρέπει να εισάγετε έναν τίτλο", + 'js_prompt_error' => "Σφάλμα!", + 'js_prompt_enter_item' =>"Εισάγετε το στοιχείο της λίστας. Για τέλος της λίστας, πατήστε 'Ακύρωση' ή αφήστε το επόμενο κενό πεδίο ", + 'js_prompt_enter_image_url' => "Πρέπει να εισάγετε μια πλήρη διεύθυνση URL εικόνας", + 'js_prompt_enter_email' => "Πρέπει να εισάγετε ένα E-mail", + 'text_new' => "Νέο", + 'text_reply' => "Απάντηση", + 'submit_submit' => "Υποβολή", + 'submit_preview' => "Προεπισκόπηση", + 'row_subject' => "Θέμα", + 'row_body' => "Σώμα", + 'text_peasant' => "Peasant", + 'text_user' => "Χρήστης", + 'text_power_user' => "Ενεργός Χρήστης", + 'text_elite_user' => "Elite Χρήστης", + 'text_crazy_user' => "Τρελός Χρήστης", + 'text_insane_user' => "Παρανόητος Χρήστης", + 'text_veteran_user' => "Βετεράνος Χρήστης", + 'text_extreme_user' => "Ακραίος Χρήστης", + 'text_ultimate_user' => "Τελικός Χρήστης", + 'text_nexus_master' => "Nexus Master", + 'text_vip' => "VIP", + 'text_uploader' => "Μεταφόρτωση", + 'text_retiree' => "Συνταξιούχος", + 'text_forum_moderator' => "Συντονιστής Φόρουμ", + 'text_moderators' => "Συντονιστής", + 'text_administrators' => "Διαχειριστής", + 'text_sysops' => "SysOp", + 'text_staff_leader' => "Επικεφαλής Προσωπικού", + 'text_short_year'=> "Y", + 'text_short_month' => "MON", + 'text_short_day' => "D", + 'text_short_hour' => "H", + 'text_short_min' => "Μ", + 'submit_edit' => "Επεξεργασία", + 'text_banned_client_warning' => "Χρησιμοποιήσατε έναν αποκλεισμένο πελάτη BitTorrent την τελευταία φορά που συνδέετε τον ιχνηλάτη! Κάντε κλικ εδώ.", + 'text_please_improve_ratio_within' => "Παρακαλώ βελτιώστε την αναλογία σας ", + 'text_or_you_will_be_banned' =>", ή ο λογαριασμός σας θα αποκλειστεί! Κάντε κλικ εδώ.", + 'text_size' => "Μέγεθος", + 'text_downloads' => "Λήψεις", + 'text_attachment_key' => "Συνημμένο για κλειδί ", + 'text_not_found' => " δεν βρέθηκε", + 'text_thirty_percent_down' => "30%", + 'text_please_download_something_within' => "Παρακαλώ κατεβάστε κάτι μέσα ", + 'text_inactive_account_be_deleted' => ". Οι ανενεργοί λογαριασμοί (χωρίς ποσό μεταφοράς) θα διαγραφούν.", + 'text_attendance' => '[Συμμετοχή στο μπόνους]', + 'text_attended' => '[Παρακολουθήστε got: %u, κάρτα: %d]', + 'row_pt_gen_douban_url' => "PT-Gen douban link", + 'text_pt_gen_douban_url_note' => "(URL λήφθηκε από douban. π.χ. για την ταινία Transformers η διεύθυνση URL είναι https://movie.douban.com/subject/1794171//)", + 'row_pt_gen_imdb_url' => "PT-Gen imdb link", + 'text_pt_gen_imdb_url_note' => "(URL λαμβάνεται από imdb. π.χ. για την ταινία Transformers η διεύθυνση URL είναι https://www.imdb.com/title/tt0418279/)", + 'row_pt_gen_bangumi_url' => "PT-Gen bangumi link", + 'text_pt_gen_bangumi_url_note' => "(URL λήφθηκε από bangumi. π.χ. για κινούμενα σχέδια Cowboy Bebop το URL είναι https://bangumi.tv/subject/253/)", + 'imdb_cache_dir_can_not_create' => 'imdb dir cache δεν μπορεί να δημιουργήσει', + 'imdb_cache_dir_is_not_writeable' => 'imdb cache dir δεν είναι εγγράψιμο', + 'imdb_photo_dir_can_not_create' => 'imdb photo dir δεν μπορεί να δημιουργήσει', + 'imdb_photo_dir_is_not_writeable' => 'imdb photo dir δεν είναι εγγράψιμο', + 'text_tag_no_release_to_any_other' => 'Καμία απελευθέρωση σε οποιοδήποτε άλλο', + 'text_tag_first_release' => 'Πρώτη έκδοση', + 'text_tag_official' => 'Επίσημο', + 'text_tag_diy' => 'DIY', + 'text_tag_mother_language' => 'Μητρική γλώσσα', + 'text_tag_mother_language_subtitle' => 'Μητέρα γλώσσα υπότιτλος', + 'text_tag_hdr' => 'HDR', + 'text_required' => 'Απαιτείται', + 'text_invalid' => 'Μη Έγκυρο', + 'text_technical_info' => 'MediaInfo', + 'text_technical_info_help_text' => 'Το MediaInfo προέρχεται από το λογισμικό MediaInfo,ανοιχτό αρχείο, γλώσσα επιλέξτε αγγλικά, κάντε κλικ στο μενού προβολής > κείμενο > δεξί κλικ στο πλαίσιο > επιλέξτε όλα > αντιγραφή > παρελθόν σε αυτό το κουτί.', + 'text_management_system' => 'Διαχείριση', + 'text_seed_points' => 'Σημεία σποράς', + 'spoiler_expand_collapse' => 'Κλικ για επέκταση/σύμπτυξη', + 'spoiler_default_title' => 'Σύμπτυξη περιεχομένου', + 'menu_claim' => 'Claim: ', + 'text_complains' => 'Υπάρχει %s %u εκκρεμεί καταγγελία%s.', + 'text_contactstaff' => 'Επικοινωνία με προσωπικό', + 'full_site_promotion_in_effect' => 'Full site [%s] in effect!', + 'full_site_promotion_time_range' => 'Χρονικό εύρος: %s ~ %s', + 'text_torrent_to_approval' => 'Υπάρχει %s%u δεν εγκρίνει torrent%s.', + 'std_confirm_remove' => 'Είστε βέβαιοι ότι θέλετε να το διαγράψετε?', + 'select_an_user_class' => 'Επιλέξτε μια κλάση χρήστη', + 'input_check_all' => "Επιλογή Όλων", + 'input_uncheck_all' => "Αποεπιλογή Όλων", + 'select_at_least_one_record' => 'Επιλέξτε τουλάχιστον μία εγγραφή!', + 'text_seed_box_record_to_approval' => 'Υπάρχει %s%u δεν εγκρίνει το κουτί σπόρου%s.', + 'approval_deny_reach_upper_limit' => 'Ο αριθμός των torrents των οποίων η τρέχουσα έγκριση απορρίφθηκε: Το %s έφτασε το ανώτερο όριο και δεν επιτρέπεται να φορτωθεί.', +); + +?> diff --git a/lang/el/lang_getrss.php b/lang/el/lang_getrss.php new file mode 100644 index 00000000..3d245251 --- /dev/null +++ b/lang/el/lang_getrss.php @@ -0,0 +1,51 @@ + "Ροές RSS", + 'head_rss_feeds' => "Ροές RSS", + 'std_error' => "Σφάλμα", + 'std_no_row' => "Πρέπει να επιλέξετε γραμμές!", + 'std_done' => "Ολοκληρώθηκε!", + 'std_use_following_url' => "Χρησιμοποιήστε την ακόλουθη διεύθυνση URL στον αναγνώστη RSS σας, π.χ. Google Reader: ", + 'std_utorrent_feed_url' => "Χρησιμοποιήστε την ακόλουθη διεύθυνση URL σε πελάτες BitTorrent που υποστηρίζουν RSS Feed, π.χ. uTorrent: ", + 'row_categories_to_retrieve' => "Κατηγορίες για ανάκτηση", + 'row_feed_type' => "Τύπος ροής", + 'text_web_link' => "Δικτυακός Σύνδεσμος", + 'text_download_link' => "Σύνδεσμος Λήψης", + 'row_rows_per_page' => "Γραμμές Ανά Σελίδα", + 'submit_generatte_rss_link' => "Δημιουργία συνδέσμου RSS", + 'text_category' => "Κατηγορία", + 'text_source' => "Πηγή", + 'text_codec' => "Κωδικοποιητής", + 'text_standard' => "Τυπικό", + 'text_processing' => "Επεξεργασία", + 'text_medium' => "Μεσαίο", + 'text_team' => "Ομάδα", + 'text_audio_codec' => "Κωδικοποιητής Ήχου", + 'row_item_title_type' => "Μορφή εμφάνισης τίτλου", + 'text_item_category' => "[Category] + ", + 'text_item_title' => "Τίτλος + ", + 'text_item_small_description' => "[Μικρή Περιγραφή] + ", + 'text_item_size' => "[Size] + ", + 'text_item_uploader' => "[Uploader]", + 'row_show_bookmarked' => "Εμφάνιση Σελιδοδείκτη", + 'text_all' => "όλα", + 'text_only_bookmarked' => "μόνο σελιδοδείκτης", + 'text_show_bookmarked_note' => "Ony για τους πελάτες BitTorrent", + 'row_keyword' => "Keyword", + 'text_with' => "με", + 'select_and' => "ΚΑΙ", + 'select_or' => "Ή", + 'select_exact' => "Ακριβής", + 'text_mode' => "λειτουργία αντιστοίχισης ", + 'text_keyword_note' => "Ony εγγραφείτε σε αντικείμενα με αυτές τις λέξεις-κλειδιά στους τίτλους.", + 'row_sticky' => 'Κολλημένο', + 'row_paid' => 'Η Magic θα αφαιρεθεί για τη λήψη', + 'row_paid_help' => 'Σημείωση: Αυτό δεν είναι δωρεάν / 50% τύπο προώθησης, όταν ο αποστολέας ορίζει το torrent που πρέπει να πληρωθεί, η λήψη θα απαιτήσει έκπτωση μπόνους', + 'paid_no' => 'Δωρεάν', + 'paid_yes' => 'Πληρωμένο', + 'paid_all' => 'Όλα', +); + +?> diff --git a/lang/el/lang_getusertorrentlistajax.php b/lang/el/lang_getusertorrentlistajax.php new file mode 100644 index 00000000..d4347741 --- /dev/null +++ b/lang/el/lang_getusertorrentlistajax.php @@ -0,0 +1,23 @@ + "Τύπος", + 'col_name' => "Όνομα", + 'title_size' => "Μέγεθος", + 'title_seeders' => "Σπόροι", + 'title_leechers' => "Leechers", + 'col_uploaded' => "Ul.", + 'col_downloaded' => "Dl.", + 'col_ratio' => "Αναλογία", + 'col_anonymous' => "Anonym.", + 'col_time_completed' => "Sna. σε", + 'col_se_time' => "Se. Ώρα", + 'col_le_time' => "Le. Χρόνος", + 'text_record' => " εγγραφή", + 'text_no_record' => "Δεν υπάρχει εγγραφή.", + 'text_total_size' => " «Συνολικό μέγεθος: ", + 'col_added' => "Προστέθηκε", + 'col_client' => 'Πελάτης', +); +?> diff --git a/lang/el/lang_increment-bulk.php b/lang/el/lang_increment-bulk.php new file mode 100644 index 00000000..6ca13e2d --- /dev/null +++ b/lang/el/lang_increment-bulk.php @@ -0,0 +1,27 @@ + 'Μαζική προσθήκη μπόνους/κάρτα συμμετοχής/προσκεκλημένη/φορτώθηκε/προσωρινή πρόσκληση', + 'sent_success' => ' έχει προστεθεί και μήνυμα ενημέρωσης έχει σταλεί', + 'types' => [ + 'seedbonus' => 'μπόνους', + 'attendance_card' => 'κάρτα φοίτησης', + 'invites' => 'πρόσκληση', + 'uploaded' => 'ανέβασμα', + 'tmp_invites' => 'προσωρινή πρόσκληση', + ], + 'labels' => [ + 'type' => 'Τύπος', + 'amount' => 'Ποσό', + 'duration' => 'Διάρκεια', + 'duration_help' => 'Απαιτείται μόνο εάν ο τύπος είναι [Προσωρινή Πρόσκληση], σε ημέρες', + 'user_class' => 'Κλάση χρήστη', + 'roles' => 'Ρόλοι', + 'msg_subject' => 'θέμα μηνύματος', + 'msg_body' => 'περιεχόμενο μηνύματος', + 'operator' => 'Χειριστής', + ], +); + +?> diff --git a/lang/el/lang_index.php b/lang/el/lang_index.php new file mode 100644 index 00000000..5ca539cd --- /dev/null +++ b/lang/el/lang_index.php @@ -0,0 +1,111 @@ + "Χωρίς δημοσκόπηση", + 'std_error' => "Σφάλμα", + 'std_duplicate_votes_denied' => "Δεν επιτρέπονται διπλότυπες ψηφοφορίες!", + 'std_vote_not_counted' => "Παρουσιάστηκε σφάλμα. Η ψήφος σας δεν μετρήθηκε.", + 'std_option_unselected' => "Παρακαλώ επιλέξτε μια επιλογή.", + 'text_news_page' => "Νέο", + 'text_recent_news' => "Πρόσφατα νέα", + 'text_e' => "Επεξεργασία", + 'text_d' => "Διαγραφή", + 'text_hotmovies' => "Ζεστό", + 'text_classicmovies' => "Κλασικό", + 'text_free' => "Δωρεάν", + 'text_two_times_up' => "2X", + 'text_free_two_times_up' => "2X Δωρεάν", + 'text_shoutbox' => "Shoutbox", + 'text_message' => "Μήνυμα: ", + 'sumbit_shout' => "shout", + 'submit_clear' => "καθαρισμός", + 'text_last_five_posts' => "Τελευταίες 5 Δημοσιεύσεις Φόρουμ", + 'col_topic_title' => "Τίτλος Θέματος", + 'col_view' => "Προβολές", + 'col_author' => "Συγγραφέας", + 'col_posted_at' => "Αναρτήθηκε Στις", + 'text_in' => "σε ", + 'std_no_torrent_found' => "Δεν βρέθηκαν torrent", + 'text_last_five_torrent' => "Τελευταία 5 Μεταφορτώσεις Torrent", + 'col_name' => "Όνομα", + 'col_seeder' => "Seeder", + 'col_leecher' => "Leecher", + 'text_polls' => "Δημοσκοπήσεις ", + 'text_new' => "Νέο", + 'text_edit' => "Επεξεργασία", + 'text_delete' => "Διαγραφή", + 'text_votes' => "Ψηφοφορίες:", + 'radio_blank_vote' => "Κενή ψήφος (άλλως \"Απλά θέλω να δω τα αποτελέσματα!\")", + 'submit_vote' => "Ψηφοφορία!", + 'text_previous_polls' => "Προηγούμενες δημοσκοπήσεις", + 'text_tracker_statistics' => "Στατιστικά Ανιχνευτή", + 'row_registered_users' => "Εγγεγραμμένοι Χρήστες / Όριο", + 'row_unconfirmed_users' => "Ανεπιβεβαίωτοι χρήστες", + 'row_vips' => "VIPs", + 'row_donors' => "Donors", + 'row_warned_users' => "Προειδοποιημένοι Χρήστες", + 'row_banned_users' => "Απαγορευμένοι Χρήστες", + 'row_male_users' => "Ανδρικοί Χρήστες", + 'row_female_users' => "Γυναίκες Χρήστες", + 'row_torrents' => "Torrents", + 'row_dead_torrents' => "Νεκρά Torrents", + 'row_seeders' => "Διαμοιρασμένοι Υπολογιστές", + 'row_leechers' => "Υπολογιστές Ξύρισμα", + 'row_peers' => "Υπολογιστές", + 'row_seeder_leecher_ratio' => "Αναλογία διαχωρισμού / επαναχρησιμοποίησης", + 'row_total_size_of_torrents' => "Συνολικό μέγεθος Torrents", + 'row_total_uploaded' => "Συνολικό Ανέβασμα", + 'row_total_downloaded' => "Συνολική Λήψη", + 'row_total_data' => "Σύνολο Δεδομένων", + 'text_no_users_day' => "Δεν υπάρχει ενεργός χρήστης τις τελευταίες 24 ώρες.", + 'text_no_active_users_now' => "Δεν υπάρχει κανένας ενεργός χρήστης τώρα.", + 'text_no_user_torrenting' => "Δεν υπάρχει διαμοιρασμός ή διαρροή από τον χρήστη. :(", + 'text_tracker_load' => "Φόρτωση Ανιχνευτή", + 'text_our_tracker_load' => "Φόρτωση Υπολογιστών Ιχνηλατών: ", + 'text_global_server_load' => "Φόρτωση Παγκόσμιου Εξυπηρετητή: ", + 'text_whats_going_on' => "Τι συμβαίνει?", + 'text_members_have_visited' => " μέλη έχουν επισκεφθεί τις τελευταίες 24 ώρες, και καλώς ήρθατε στο νεότερο μέλος μας, ", + 'text_users_browsing_now' => " οι χρήστες περιηγούνται στην ιστοσελίδα τα τελευταία 15 λεπτά. ", + 'text_peers_active_now' => " οι χρήστες κάνουν σπορά ή εκβιασμό. ", + 'text_disclaimer' => "Αποποίηση", + 'text_disclaimer_content' => "Κανένα από τα αρχεία που εμφανίζονται εδώ δεν φιλοξενείται σε αυτόν το διακομιστή. Ο ιχνηλάτης διαχειρίζεται μόνο συνδέσεις, δεν έχει καμία γνώση του περιεχομένου των αρχείων που διανέμονται. Οι σύνδεσμοι παρέχονται αποκλειστικά από τους χρήστες αυτής της ιστοσελίδας. Ο διαχειριστής αυτής της ιστοσελίδας %s δεν μπορεί να θεωρηθεί υπεύθυνος για το τι δημοσιεύουν οι χρήστες της ή οποιαδήποτε άλλη ενέργεια των χρηστών της. Δεν μπορείτε να χρησιμοποιήσετε αυτό το site %s για να διανείμετε ή να κατεβάσετε οποιοδήποτε υλικό όταν δεν έχετε τα νομικά δικαιώματα να το κάνετε. Είναι δική σας ευθύνη να τηρήσετε αυτούς τους όρους.", + 'text_browser_note' => "Αυτή η ιστοσελίδα είναι καλύτερα να προβληθεί με \"Googleή\"Firefox\" και με ανάλυση πάνω από 1024 * 768. Προτεινόμενοι πελάτες BitTorrent: \"qBittorrent\"ή\"Transmission\"", + 'title_show_or_hide' => "Εμφάνιση/Απόκρυψη", + 'text_links' => "Σύνδεσμοι", + 'text_manage_links' => "Διαχείριση Συνδέσμων", + 'text_author' => "Συγγραφέας:", + 'text_datetime' => "Ώρα:", + 'p_critic_reviews' => "Κριτικές Για Κριτικές Κινηματογράφου", + 'p_user_reviews' => "Αξιολογήσεις Επιλεγμένων Χρηστών", + 'head_home' => "Αρχική", + 'sumbit_to_guest' => "to guest", + 'text_apply_for_link' => "Αίτηση για Σύνδεσμοι", + 'text_ago' => " πριν", + 'text_auto_refresh_after' => "αυτόματη ανανέωση μετά ", + 'text_seconds' => " δευτερόλεπτα", + 'text_funbox' => "Funbox", + 'text_more_fun' => "Περισσότερα", + 'text_new_fun' => "Νέο", + 'text_ban' => "Αποκλεισμός", + 'submit_fun' => "Διασκέδαση", + 'submit_dull' => "Τραχύ", + 'text_out_of' => " εκτός από ", + 'text_people_found_it' => " people found it fun. ", + 'text_your_opinion' => "Τι σκέφτεστε? ", + 'text_vote_accepted' => "Ευχαριστούμε! Η ψήφος σας είναι αποδεκτή.", + 'row_users_active_today' => "Χρήστες Ενεργοί Σήμερα", + 'row_users_active_this_week' => "Οι Χρήστες Ενεργοποιούνται Αυτή Την Εβδομάδα", + 'row_active_browsing_users' => "Ενεργοί Χρήστες Περιήγησης", + 'row_tracker_active_users' => "Ανιχνευτής Ενεργών Χρηστών", + 'text_detail' => "Λεπτομέρεια", + 'top_uploader_title' => 'Κορυφαία μεταφόρτωση (Πλήθος αγορών)', + 'col_counts' => 'Μετρήσεις', + 'col_ranking' => 'Κατάταξη', + 'top_uploader_toggle_time_range_tab' => 'Κάντε κλικ για εναλλαγή του χρονικού εύρους', + 'top_uploader_toggle_time_range_recently' => 'Τελευταίες 30 ημέρες', + 'top_uploader_toggle_time_range_all' => 'Όλη την ώρα', + 'clear_shout_box' => 'Εκκαθάριση πλαισίου shout', + 'sure_to_clear_shout_box' => 'Είστε βέβαιοι ότι θέλετε να καθαρίσετε το κουτί shout?', +); + +?> diff --git a/lang/el/lang_invite.php b/lang/el/lang_invite.php new file mode 100644 index 00000000..eb81b4cf --- /dev/null +++ b/lang/el/lang_invite.php @@ -0,0 +1,70 @@ + "Συγνώμη", + 'std_permission_denied' => "Άρνηση Άδειας!", + 'head_invites' => "Προσκληθέντα", + 'std_no_invites_left' => "Δεν έχετε απομείνει καμία πρόσκληση. :(

Παρακαλώ κάντε κλικ ", + 'here_to_go_back' => "here to go back.", + 'text_invite_code_sent' => "The invite code has been sent!
", + 'text_invite_someone' => "Προσκαλέστε κάποιον να ενταχθεί ", + 'text_s' => "ίνα", + 'text_invitation' => " πρόσκληση", + 'text_left' => " αριστερά", + 'text_email_address' => "Διεύθυνση Email", + 'text_email_address_note' => "Η διεύθυνση ηλεκτρονικού ταχυδρομείου πρέπει να είναι έγκυρη. Η πρόσκληση θα λάβει ένα email για την πρόσκλησή σας.", + 'text_message' => "Μήνυμα", + 'submit_invite' => "Πρόσκληση", + 'text_invite_status' => "Τρέχουσα κατάσταση των προσκλήσεων", + 'text_no_invites' => "Δεν υπάρχουν ακόμα προσκλήσεις.", + 'text_username' => "Όνομα Χρήστη", + 'text_email' => "E-mail", + 'text_uploaded' => "Ανέβηκε", + 'text_downloaded' => "Λήφθηκε", + 'text_ratio' => "Αναλογία", + 'text_status' => "Κατάσταση", + 'text_confirm' => "Επιβεβαίωση", + 'text_confirmed' => "Επιβεβαιωμένο", + 'text_pending' => "Εκκρεμεί", + 'submit_confirm_users' => "Επιβεβαίωση Χρηστών", + 'sumbit_invite_someone' => "Invite Someone", + 'text_sent_invites_status' => "Τρέχουσα κατάσταση των απεσταλμένων προσκλήσεων", + 'text_no_invitation_sent' => "Καμία πρόσκληση δεν εστάλη αυτή τη στιγμή.", + 'text_hash' => "Κατακερματισμός", + 'text_send_date' => "Ημερομηνία Αποστολής", + 'text_hash_status' => 'Hash valid', + 'text_invitee_user' => 'Προσκεκλημένος χρήστης', + + 'text_invitation_body' => " +Hi Buddy, + +I am inviting you to join %s which is a private community that have the finest +and most abundant stuff. If you are interested in joining us please read over +the rules and confirm the invite. Finally, please make sure you keep a nice ratio and +only upload content that follows rules of the site. + +Welcome aboard! :) +Best Regards, +", + 'text_invite_system' => "'s Invite System", + 'std_only' => "Μόνο ", + 'std_or_above_can_invite' => " ή παραπάνω μπορούν να στείλουν πρόσκληση.", + 'text_email_restriction_note' => "Θα μπορούσατε μόνο να στείλετε πρόσκληση σε email από αυτούς τους τομείς: ", + 'harem_addition' => 'Προσθήκη λόχου', + 'signup_link_help' => 'Δεξί κλικ για αντιγραφή', + 'signup_link' => 'Σύνδεσμος εγγραφής', + 'text_seed_torrent_count' => 'Μετρητές σποράς', + 'text_seed_torrent_size' => 'Μέγεθος σποράς', + 'text_seed_torrent_bonus_per_hour' => 'Μπόνους σποράς ανά ώρα', + 'text_seed_torrent_bonus_per_hour_help' => 'Δηλαδή, τα σημεία σπόρων, δεν εξετάζουν τις δωρεές, τα επίσημα torrent, τα χαρέμια και οποιεσδήποτε άλλες προσθήκες', + 'text_seed_torrent_last_announce_at' => 'Τελευταία ανακοίνωση', + 'text_enabled' => 'Ενεργοποιημένο', + 'text_tmp_status' => 'Κατάσταση προσωρινής πρόσκλησης', + 'text_expired_at' => 'Έληξε στις', + 'text_permanent' => 'Χρήση μόνιμης πρόσκλησης', + 'text_consume_invite' => 'Χρήση πρόσκλησης', + 'text_temporary_left' => 'Προσωρινή πρόσκληση %s', +); + +?> diff --git a/lang/el/lang_iphistory.php b/lang/el/lang_iphistory.php new file mode 100644 index 00000000..6ffa8803 --- /dev/null +++ b/lang/el/lang_iphistory.php @@ -0,0 +1,16 @@ + "Σφάλμα", + 'std_invalid_id' => "Invalid ID", + 'text_user_not_found' => "Ο χρήστης δεν βρέθηκε", + 'head_ip_history_log_for' => "Καταγραφή ιστορικού IP για ", + 'text_historical_ip_by' => "Ιστορικές διευθύνσεις IP που χρησιμοποιούνται από ", + 'col_last_access' => "Τελευταία πρόσβαση", + 'col_ip' => "IP", + 'col_hostname' => "Hostname", + 'text_not_available' => "Δ/Υ", + 'text_duplicate' => "Dupe", +); +?> diff --git a/lang/el/lang_ipsearch.php b/lang/el/lang_ipsearch.php new file mode 100644 index 00000000..13900454 --- /dev/null +++ b/lang/el/lang_ipsearch.php @@ -0,0 +1,24 @@ + "Σφάλμα", + 'std_invalid_ip' => "Μη Έγκυρη Ip", + 'std_invalid_subnet_mask' => "Μη έγκυρη μάσκα υποδικτύου.", + 'head_search_ip_history' => "Αναζήτηση στο ιστορικό IP", + 'text_search_ip_history' => "Αναζήτηση στο ιστορικό IP", + 'row_ip' => "IP", + 'row_subnet_mask' => "Μάσκα Υποδικτύου", + 'submit_search' => "Αναζήτηση", + 'text_no_users_found' => "Δεν βρέθηκαν χρήστες", + 'text_users_used_the_ip' => " οι χρήστες έχουν χρησιμοποιήσει την IP: ", + 'col_username' => "Όνομα Χρήστη", + 'col_last_ip' => "Τελευταία IP", + 'col_last_access' => "Τελευταία πρόσβαση", + 'col_ip_num' => "IP Nums", + 'col_last_access_on' => "Τελευταία πρόσβαση σε αυτήν την IP", + 'col_added' => "Προστέθηκε", + 'col_invited_by' => "Προσκλήθηκε από", + 'text_not_available' => "Δ/Υ", +); +?> diff --git a/lang/el/lang_linksmanage.php b/lang/el/lang_linksmanage.php new file mode 100644 index 00000000..c370232f --- /dev/null +++ b/lang/el/lang_linksmanage.php @@ -0,0 +1,51 @@ + "Αίτηση για Σύνδεσμοι", + 'text_apply_for_links' => "Αίτηση για Σύνδεσμοι", + 'text_rules' => "Κανόνες ανταλλαγής δεσμών:", + 'text_rule_one' => "1.Παρακαλώ κάντε το σύνδεσμο μας %s στην ιστοσελίδα σας πριν μας ζητήσετε να κάνουμε το ίδιο.", + 'text_rule_two' => "2.Your site MUST NOT be involed in any illegal things. The administrators of this site %s take absolutely no responsibily for anything of your site.", + 'text_rule_three' => "3.All οι σύνδεσμοι που κάνουμε εδώ στην ιστοσελίδα μας %s είναι μόνο κείμενο.", + 'text_rule_four' => "4.Η ιστοσελίδα σας θα πρέπει να έχει τουλάχιστον 200 εγγεγραμμένους χρήστες ή 50 καθημερινά-επισκέπτοντες ανθρώπους.", + 'text_rule_five' => "5.Διατηρούμε τα δικαιώματα σε MODIFY Ή DELETE Οποιοδήποτε LINKS στην ιστοσελίδα μας %s χωρίς ειδοποίηση.", + 'text_rule_six' => "6.Εάν συμμορφώνονται με τους παραπάνω κανόνες, μη διστάσετε να υποβάλετε αίτηση για συνδέσμους της ιστοσελίδας σας στο %s. Ωστόσο, δεν δίνουμε καμία εγγύηση για να δεχτούμε κάθε αίτηση.", + 'text_red_star_required' => "Τα πεδία με κόκκινο αστέρι (*) είναι υποχρεωτικά.", + 'text_site_name' => "Όνομα Ιστοτόπου", + 'text_url' => "URL", + 'text_title' => "Τίτλος", + 'text_title_note' => "Ο τίτλος χρησιμοποιείται για την εμφάνιση υποδείξεων σε ένα σύνδεσμο. π.χ. NexusPHP", + 'text_administrator' => "Διαχειριστής", + 'text_administrator_note' => "Απαιτήσαμε το όνομα διαχειριστή TRUE NAME.", + 'text_email' => "E-mail", + 'text_reason' => "Λόγος", + 'submit_okay' => "Εντάξει", + 'submit_reset' => "Reset", + 'std_error' => "Σφάλμα", + 'std_no_sitename' => "Το όνομα του ιστότοπου δεν μπορεί να είναι κενό.", + 'std_no_url' => "Το URL δεν μπορεί να είναι κενό.", + 'std_no_admin' => "Ο διαχειριστής δεν μπορεί να είναι κενός. Πρέπει να γνωρίζουμε το όνομα διαχειριστή", + 'std_no_email' => "Το email δεν μπορεί να είναι κενό.", + 'std_invalid_email' => "Η διεύθυνση ηλεκτρονικού ταχυδρομείου δεν είναι έγκυρη", + 'std_no_reason' => "Ο λόγος δεν μπορεί να είναι άδειος. Ελάτε, παρακαλούμε να μας δώσετε λόγους για να συνδέσετε το site σας.", + 'std_reason_too_short' => "Λόγος είναι πολύ σύντομος. Ελάτε, παρακαλώ πείτε κάτι περισσότερο.", + 'std_success' => "Επιτυχία", + 'std_success_note' => "Η αίτησή σας έχει επιτυχώς σταλεί. Παρακαλώ περιμένετε για την απάντησή μας.", + 'text_sitename_note' => "Το όνομα του ιστοτόπου σας. π.χ. NexusPHP", + 'text_url_note' => "π.χ. https://nexusphp.org", + 'text_email_note' => "Διεύθυνση ηλεκτρονικού ταχυδρομείου επικοινωνίας διαχειριστή", + 'std_missing_form_data' => "Λείπει η φόρμα.", + 'std_unable_creating_new_link' => "Δεν είναι δυνατή η δημιουργία νέου συνδέσμου.", + 'std_links_manage' => "Διαχείριση Συνδέσμων", + 'text_add_link' => "Προσθήκη Συνδέσμου", + 'text_manage_links' => "Διαχείριση Συνδέσμων", + 'text_modify' => "Τροποποίηση", + 'text_edit' => "Επεξεργασία", + 'text_delete' => "Διαγραφή", + 'text_no_links_found' => "Λυπούμαστε, δεν βρέθηκαν σύνδεσμοι!", + 'text_edit_link' => "Επεξεργασία Συνδέσμου", + 'js_sure_to_delete_link' => "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτόν τον σύνδεσμο?", +); + +?> diff --git a/lang/el/lang_log.php b/lang/el/lang_log.php new file mode 100644 index 00000000..cd48829e --- /dev/null +++ b/lang/el/lang_log.php @@ -0,0 +1,67 @@ + "Sorry...", + 'std_permission_denied_only' => "Άρνηση άδειας. Μόνο ", + 'std_or_above_can_view' => " ή πιο πάνω θα μπορούσε να δει LOG.

Παρακαλώ δείτε τις Συχνές Ερωτήσεις για περισσότερες πληροφορίες σχετικά με τις διαφορετικές κατηγορίες χρηστών και τι μπορούν να κάνουν.

Το Προσωπικό %s
", + 'head_site_log' => "Ημερήσιο Αρχείο Καταγραφής", + 'text_search_log' => "Καθημερινή Καταγραφή Αναζήτησης", + 'submit_search' => "Αναζήτηση", + 'text_log_empty' => "Το αρχείο καταγραφής είναι άδειο
", + 'title_time_added' => "Ώρα", + 'col_date' => "Ημερομηνία", + 'col_event' => "Γεγονός", + 'time_zone_note' => "

Times είναι σε GMT +8:00.

", + 'text_daily_log' => "Ημερήσιο Αρχείο Καταγραφής", + 'text_chronicle' => "Χρονικό", + 'text_code_update' => "Ενημέρωση Κώδικα", + 'text_funbox' => " Funbox ", + 'text_news' => "  News  ", + 'text_poll' => "  Δημοσκόπηση  ", + 'std_error' => "Σφάλμα", + 'std_invalid_action' => "Μη Έγκυρη Ενέργεια", + 'head_chronicle' => "Χρονικό", + 'text_search_chronicle' => "Αναζήτηση Χρονικού", + 'text_chronicle_empty'=> "Χρονικό είναι άδειο
", + 'col_modify' => "Τροποποίηση", + 'text_edit' => "Επεξεργασία", + 'text_delete' => "Διαγραφή", + 'submit_add' => "Προσθήκη", + 'text_add_chronicle' => "Προσθήκη Χρονικού Γεγονότος", + 'std_permission_denied' => "Πίσω! Δεν επιτρέπεται να το κάνετε αυτό.", + 'submit_okay' => "Εντάξει", + 'text_edit_chronicle' => "Επεξεργασία Χρονικού Γεγονότος", + 'head_code_update' => "Ενημέρωση Κώδικα", + 'text_search_code_update' => "Αναζήτηση Συμβάντος Κωδικού-Ενημέρωσης", + 'text_add_code_update' => "Προσθήκη Γεγονότος Ενημέρωσης Κώδικα", + 'text_edit_codeupdate' => "Επεξεργασία Γεγονότος Ενημέρωσης Κώδικα", + 'text_codeupdate_empty' => "Κωδικός-Ενημέρωση είναι άδειο
", + 'head_funbox' => "Καταγραφή Funbox", + 'head_news' => "Νέα", + 'text_search_news' => "Αναζήτηση Ειδήσεων", + 'text_news_empty' => "Νέα είναι άδεια
", + 'col_title' => "Τίτλος", + 'col_body' => "Σώμα", + 'col_user' => 'Χρήστης', + 'std_delete_poll' => "Διαγραφή δημοσκόπησης", + 'std_delete_poll_confirmation' => "Θέλετε πραγματικά να διαγράψετε μια δημοσκόπηση? Κάντε κλικ ", + 'std_here_if_sure' => "εδώ αν είστε σίγουροι.", + 'std_sorry' => "Sorry...", + 'std_no_polls' => "Δεν υπάρχουν δημοσκοπήσεις!", + 'head_previous_polls' => "Προηγούμενες δημοσκοπήσεις", + 'text_previous_polls' => "Προηγούμενες δημοσκοπήσεις", + 'text_ago' => " πριν", + 'text_votes' => "Ψηφοφορίες: ", + 'text_in' => "σε ", + 'text_funbox_empty' => "Funbox είναι άδειο
", + 'text_search_funbox' => "Αναζήτηση funbox", + 'text_title' => "τίτλος", + 'text_body' => "σώμα", + 'text_both' => "και", + 'text_all' => "όλα", + 'text_normal' => "κανονικό", + 'text_mod' => "mod", +); + +?> diff --git a/lang/el/lang_login.php b/lang/el/lang_login.php new file mode 100644 index 00000000..9bcde238 --- /dev/null +++ b/lang/el/lang_login.php @@ -0,0 +1,40 @@ + "Δεν είστε συνδεδεμένοι!", + 'p_error' => "Σφάλμα:", + 'p_after_logged_in' => "Η σελίδα που προσπαθήσατε να δείτε μπορεί να χρησιμοποιηθεί μόνο όταν είστε συνδεδεμένοι.", + 'p_need_cookies_enables' => "Σημείωση: Χρειάζεστε cookies ενεργοποιημένα για να συνδεθείτε ή να αλλάξετε γλώσσα.", + 'p_fail_ban' => "οι αποτυχημένες συνδέσεις σε μια σειρά θα έχουν ως αποτέλεσμα την απαγόρευση του IP σας!", + 'p_you_have' => "Έχετε", + 'p_remaining_tries' => "εναπομείναντες προσπάθειες.", + 'p_no_account_signup' => "Don't have an account? Sign up right now!", + 'p_forget_pass_recover' => "Ξεχάστε τον κωδικό πρόσβασής σας? Ανάκτηση του κωδικού σας μέσω email", + 'p_account_banned' => "Ο λογαριασμός απαγορεύθηκε? λόγος προβολής στο αρχείο καταγραφής απαγόρευσης", + 'p_resend_confirm' => "Δεν έλαβε email επιβεβαίωσης ή ο σύνδεσμος επιβεβαίωσης είναι σπασμένος? Αποστολή email επιβεβαίωσης ξανά", + 'rowhead_username' => "Όνομα Χρήστη:", + 'rowhead_password' => "Κωδικός:", + 'button_login' => "Σύνδεση!", + 'button_reset' => "Reset", + 'text_auto_logout' => "Αυτόματη Αποσύνδεση:", + 'text_restrict_ip' => "Περιορισμός IP:", + 'text_ssl' => "SSL (HTTPS):", + 'checkbox_auto_logout' => " Αποσυνδεθείτε μετά από 15 λεπτά", + 'checkbox_restrict_ip' => " Περιορισμός συνεδρίας στην IP μου", + 'checkbox_ssl' => " Περιηγηθείτε στην ιστοσελίδα με κρυπτογράφηση SSL (πρόγραμμα περιήγησης)", + 'checkbox_ssl_tracker' => " Σύνδεση ιχνηλάτη με κρυπτογράφηση SSL (BitTorrent client)", + 'text_advanced_options' => "Προχωρημένες Επιλογές:", + 'text_helpbox' => "Helpbox", + 'text_helpbox_note' => "Έχετε πρόβλημα στην εγγραφή ή σύνδεση? Αφήστε ένα μήνυμα εδώ", + 'text_message' => "Μήνυμα: ", + 'sumbit_shout' => "shout", + 'submit_clear' => "καθαρισμός", + 'text_select_lang' => "Επιλογή Γλώσσας Ιστοσελίδας: ", + 'head_login' => "Είσοδος", + 'rowhead_two_step_code' => 'Έλεγχος Ταυτότητας Δύο Παραγόντων', + 'two_step_code_tooltip' => 'Εάν ενεργοποιηθεί πρέπει να συμπληρωθεί', + 'text_complain' => 'Κανάλι Καταγγελίας', +); + +?> diff --git a/lang/el/lang_mailtest.php b/lang/el/lang_mailtest.php new file mode 100644 index 00000000..6c5fddf9 --- /dev/null +++ b/lang/el/lang_mailtest.php @@ -0,0 +1,18 @@ + "Δοκιμή Αλληλογραφίας", + 'text_mail_test' => "Δοκιμή Αλληλογραφίας", + 'row_enter_email' => "Εισάγετε email", + 'text_enter_email_note' => "Εισάγετε μια διεύθυνση ηλεκτρονικού ταχυδρομείου για να στείλετε ένα δοκιμαστικό μήνυμα, π.χ. yourname@gmail.com", + 'submit_send_it' => "Στείλτε το!", + 'text_smtp_testing_mail' => " SMTP Δοκιμαστικό Ταχυδρομείο", + 'std_error' => "Σφάλμα", + 'std_invalid_email_address' => "Μη έγκυρη διεύθυνση email!", + 'mail_test_mail_content' => "Γεια, Αν δείτε αυτό το μήνυμα, η λειτουργία SMTP λειτουργεί υπέροχα. Έχετε μια ωραία μέρα.", + 'std_success' => "Επιτυχία", + 'std_success_note' => "Δεν βρέθηκε σφάλμα. Ωστόσο αυτό δεν σημαίνει ότι το μήνυμα έφτασε 100%. Παρακαλώ ελέγξτε το μήνυμα." +); + +?> diff --git a/lang/el/lang_makepoll.php b/lang/el/lang_makepoll.php new file mode 100644 index 00000000..404e1bae --- /dev/null +++ b/lang/el/lang_makepoll.php @@ -0,0 +1,24 @@ + "Σφάλμα", + 'std_no_poll_id' => "Δεν βρέθηκε δημοσκόπηση με αυτό το ID", + 'std_missing_form_data' => "Ελλείψει δεδομένων φόρμας!", + 'head_edit_poll' => "Επεξεργασία Δημοσκόπησης", + 'text_edit_poll' => "Επεξεργασία Δημοσκόπησης", + 'head_new_poll' => "Νέα Δημοσκόπηση", + 'text_day' => " ημέρα", + 'text_hour' => " ώρα", + 'text_current_poll' => "Σημείωση: Η τρέχουσα δημοσκόπηση ", + 'text_is_only' => " είναι μόνο ", + 'text_old' => " παλιά.", + 'text_make_poll' => "Κάντε δημοσκόπηση", + 'text_question' => "Ερώτηση", + 'text_option' => "Επιλογή ", + 'submit_edit_poll' => "Επεξεργασία Δημοσκόπησης", + 'submit_create_poll' => "Δημιουργία Δημοσκόπησης", + 'text_required' => " απαιτείται" +); + +?> diff --git a/lang/el/lang_messages.php b/lang/el/lang_messages.php new file mode 100644 index 00000000..853ae610 --- /dev/null +++ b/lang/el/lang_messages.php @@ -0,0 +1,81 @@ + "Σφάλμα", + 'std_invalid_mailbox' => "Μη Έγκυρο Γραμματοκιβώτιο", + 'text_inbox' => "Εισερχόμενα", + 'text_sentbox' => "Sentbox", + 'text_sender' => "Αποστολέας", + 'text_receiver' => "Παραλήπτης", + 'col_status' => "Κατάσταση", + 'col_subject' => "Θέμα", + 'col_date' => "Ημερομηνία", + 'col_act' => "Πράξη.", + 'text_no_messages' => "Δεν Υπάρχουν Μηνύματα.", + 'text_remove_from_friends' => "[αφαίρεση από φίλους]", + 'text_add_to_friends' => "[προσθήκη σε φίλους]", + 'submit_move_to' => "Move to", + 'text_or' => " ή ", + 'submit_delete' => "Διαγραφή", + 'text_unread_messages' => " Μη Αναγνωσμένα Μηνύματα.", + 'text_read_messages' => " Ανάγνωση Μηνυμάτων.", + 'text_mailbox_manager' => "Διαχειριστής Γραμματοκιβωτίου", + 'std_no_permission' => "Δεν έχετε δικαίωμα να δείτε αυτό το μήνυμα.", + 'text_to' => "Προς", + 'text_from' => "Από", + 'text_new' => "(Νέο)", + 'text_reply' => "Απάντηση", + 'text_delete' => "Διαγραφή", + 'text_forward_pm' => "Προώθηση ΜΜ", + 'std_cannot_move_messages' => "Τα μηνύματα δεν μπορούσαν να μετακινηθούν! ", + 'std_cannot_delete_messages' => "Τα μηνύματα δεν μπόρεσαν να διαγραφούν! ", + 'std_no_action' => "Καμία ενέργεια", + 'std_no_permission_forwarding' => "Δεν έχετε άδεια να προωθήσετε αυτό το μήνυμα.", + 'row_to' => "Προς: ", + 'row_original_receiver' => "Καταγωγή Παραλήπτη:", + 'row_original_sender' => "Αρχικό Αποστολέα:", + 'row_subject' => "Θέμα:", + 'row_message' => "Μήνυμα:", + 'checkbox_save_message' => "Αποθήκευση Μηνύματος ", + 'submit_forward' => "Μπροστά", + 'std_no_such_user' => "Λυπούμαστε, δεν υπάρχει χρήστης με αυτό το όνομα χρήστη.", + 'std_rufused' => "Άρνηση", + 'std_user_blocks_your_pms' => "Αυτός ο χρήστης έχει αποκλείσει PMs από εσάς.", + 'std_user_accepts_friends_pms' => "Αυτός ο χρήστης δέχεται μόνο PMs από χρήστες στη λίστα φίλων του.", + 'std_user_blocks_all_pms' => "Αυτός ο χρήστης δεν δέχεται PMs.", + 'std_success' => "Επιτυχία", + 'std_pm_forwarded' => "Διαβίβαση PM", + 'head_editing_mailboxes' => "Επεξεργασία Γραμματοκιβωτίων", + 'text_editing_mailboxes' => "Επεξεργασία Γραμματοκιβωτίων", + 'text_add_mailboxes' => "Προσθήκη Γραμματοκιβωτίων", + 'text_extra_mailboxes_note' => "Μπορείτε να προσθέσετε επιπλέον γραμματοκιβώτια. Δεν χρειάζεται να χρησιμοποιήσετε όλα τα πλαίσια εισαγωγής.", + 'submit_add' => "Προσθήκη", + 'text_edit_mailboxes' => "Επεξεργασία Γραμματοκιβωτίων", + 'text_edit_mailboxes_note' => "You may edit the names, or delete the name to delete this virtual directory.
Please note, that all messages in this directory will be lost if you delete this directory. ", + 'text_no_mailboxes_to_edit' => "Δεν υπάρχουν γραμματοκιβώτια για επεξεργασία.", + 'submit_edit' => "Επεξεργασία", + 'std_no_message_id' => "Δεν υπάρχει μήνυμα με αυτό το ID.", + 'std_could_not_delete_message' => "Δεν ήταν δυνατή η διαγραφή μηνύματος.", + 'text_jump_to' => " στις ", + 'select_inbox' => "Εισερχόμενα", + 'select_sentbox' => "Sentbox", + 'submit_go' => "Μετάβαση", + 'input_check_all' => "Επιλογή Όλων", + 'input_uncheck_all' => "Αποεπιλογή Όλων", + 'title_unread' => "Αδιάβαστο", + 'title_read' => "Ανάγνωση", + 'text_system' => "Σύστημα", + 'text_no_subject' => "Κανένα Θέμα", + 'col_search_message' => "Αναζήτηση Μηνύματος", + 'text_search' => "Αναζήτηση: ", + 'text_in' => "σε", + 'select_title' => "τίτλος", + 'select_body' => "σώμα", + 'select_both' => "και", + 'submit_mark_as_read' => "Mark as read", + 'std_cannot_mark_messages' => "Αδυναμία σήμανσης μηνύματος ως αναγνωσμένο.", + 'std_no_message_selected' => "Δεν επιλέχθηκε μήνυμα." +); + +?> diff --git a/lang/el/lang_moforums.php b/lang/el/lang_moforums.php new file mode 100644 index 00000000..2cb2867f --- /dev/null +++ b/lang/el/lang_moforums.php @@ -0,0 +1,26 @@ + "Διαχείριση Overforum", + 'text_forum_management' => "Διαχείριση Φόρουμ", + 'text_overforum_management' => "Διαχείριση Overforum", + 'col_name' => "Όνομα", + 'col_viewed_by' => "Προβλήθηκε Από", + 'col_modify' => "Τροποποίηση", + 'text_edit' => "Επεξεργασία", + 'text_delete' => "Διαγραφή", + 'js_sure_to_delete_overforum' => "Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτό το overforum?", + 'text_no_records_found' => "Λυπούμαστε, δεν βρέθηκαν εγγραφές!", + 'text_new_overforum' => "Νέα Overforum", + 'text_overforum_name' => "Όνομα Overforum", + 'text_overforum_description' => "Περιγραφή υπερφόρουμ", + 'text_minimum_view_permission' => "Ελάχιστη προβολή δικαιωμάτων", + 'text_overforum_order' => "Overforum παραγγελία", + 'text_overforum_order_note' => "Ταξινόμηση κατά αύξοντα αριθμό. Δηλαδή, 0 δείχνει στην κορυφή", + 'submit_make_overforum' => "Κάνε Overforum", + 'text_edit_overforum' => "Επεξεργασία Overforum", + 'submit_edit_overforum' => "Επεξεργασία Overforum" +); + +?> diff --git a/lang/el/lang_moresmilies.php b/lang/el/lang_moresmilies.php new file mode 100644 index 00000000..6c367c3f --- /dev/null +++ b/lang/el/lang_moresmilies.php @@ -0,0 +1,9 @@ + "Περισσότερα Clickable Smilies", + 'text_close' => "Κλείσιμο", +); + +?> diff --git a/lang/el/lang_mybonus.php b/lang/el/lang_mybonus.php new file mode 100644 index 00000000..9cf546cf --- /dev/null +++ b/lang/el/lang_mybonus.php @@ -0,0 +1,173 @@ + "Συγνώμη!", + 'std_karma_system_disabled' => "Το Karma Bonus Point System είναι προς το παρόν απενεργοποιημένο. ", + 'std_points_active' => "Ωστόσο, τα σημεία σας είναι ακόμα ενεργά.", + 'text_success_upload' => "Συγχαρητήρια! Μόλις αυξήσατε το Ανεβάστε το Ποσό!", + 'text_success_download' => "Συγχαρητήρια! Μόλις αυξήσατε το Κατεβάστε το Ποσό!", + 'text_success_invites' => "Congratulations! You have got yourself 1 new invite!", + 'text_success_vip' => "Συγχαρητήρια! Έχετε τον εαυτό σας ", + 'text_success_vip_two' => " κατάσταση για ένα μήνα!", + 'text_no_permission' => "ERROR! You have no permission.", + 'text_success_custom_title' => "Congradulations! You are now known as %s!", + 'text_success_gift' => " Έχετε εξαπλωθεί το Karma καλά.", + 'head_karma_page' => "'s Karma Bonus Page", + 'text_karma_system' => " Σύστημα Σημείου Μπόνους Του Κάρμα", + 'text_exchange_your_karma' => "Ανταλλάξτε τους Πόντους μπόνους Κάρμα σας (αυτή τη στιγμή ", + 'text_for_goodies' => " ) για καλούδια!", + 'text_no_buttons_note' => "Αν το κουμπί είναι απενεργοποιημένο, δεν έχετε κερδίσει αρκετούς πόντους μπόνους για τη συναλλαγή. ", + 'col_option' => "Επιλογή", + 'col_description' => "Περιγραφή", + 'col_points' => "Πόντοι", + 'col_trade' => "Εμπόριο", + 'text_username' => "Όνομα Χρήστη: ", + 'text_to_be_given' => "να δοθεί: ", + 'text_karma_points' => " Σημεία κάρμα!", + 'text_enter_titile' => "Enter the Special Title you would like to have ", + 'text_click_exchange' => " κάντε κλικ στο Exchange! ", + 'text_enter_receiver_name' => "Enter the username of the person you would like to send karma to, and select how many points you want to send and click Karma Gift!", + 'text_min' => "min.", + 'text_max' => "μέγ.", + 'submit_karma_gift' => "Karma Gift!", + 'text_plus_only' => "+ μόνο!", + 'submit_exchange' => "Ανταλλαγή!", + 'text_unavailable' => "Αυτή τη στιγμή δεν είναι διαθέσιμη!", + 'text_more_points_needed' => "περισσότερα σημεία που απαιτούνται", + 'text_what_is_karma' => "Ποια είναι η κόλαση αυτά τα Κάρμα Μπόνους πόντους, και πώς μπορώ να τα πάρω?", + 'text_get_by_seeding' => "Παίρνετε παρακάτω σημεία κάρμα ανά ώρα με σπορά:", + 'text_for_seeding_torrent' => " για κάθε torrent που κάνετε seeding (μέγιστο από ", + 'text_torrent' => " torrent", + 'text_donors_always_get' => "Οι δωρητές παίρνουν πάντα ", + 'text_times_of_bonus' => "x πόντοι μπόνους.", + 'text_other_things_get_bonus' => "Άλλα πράγματα που θα σας οδηγήσουν σε σημεία κάρμα:", + 'text_point' => " πόντος", + 'text_upload_torrent' => "μεταφόρτωση νέου torrent = ", + 'text_upload_subtitle' => "αποστολή υποτίτλων = ", + 'text_start_topic' => "ξεκινώντας ένα θέμα = ", + 'text_make_post' => "making a post = ", + 'text_add_comment' => "σχολιασμός torrent ή προσφορά = ", + 'text_poll_vote' => "ψηφοφορία επί της δημοσκόπησης = ", + 'text_offer_vote' => "ψηφοφορία επί της προσφοράς = ", + 'text_funbox_vote' => "ψηφοφορία επί funbox = ", + 'text_rate_torrent' => "βαθμολόγηση ενός torrent = ", + 'text_say_thanks' => "λέγοντας ευχαριστώ = ", + 'text_receive_thanks' => "λήψη ευχαριστώ = ", + 'text_funbox_reward' => "απόσπαση funbox πράγματα που έλαβαν υψηλές βαθμολογίες (βλ. κανόνες)", + 'text_howto_get_karma_four' => " +

Πράγματα που πρέπει να έχετε κατά νου:

+", + 'std_no_permission' => "Δεν υπάρχει άδεια", + 'std_class_above_vip' => "Η τάξη σας πάνω από το VIP!", + 'text_wasted_karma' => "I just wastedσπατάλη my karma", + 'text_huh' => "Huh?", + 'text_karma_self_giving_warning' => "Not so fast there Mr. fancy pants...
You can not spread the karma to yourself...
If you want to spread the love, pick another user!

click to go back to your Karma Bonus Point page.", + 'text_receiver_not_exists' => "Sorry...
No User with that username

click to go back to your Karma Bonus Point page.", + 'text_oups' => "OUPS!", + 'text_not_enough_karma' => "Sorry, you don't have enough Karma points!
go back to your Karma Bonus Point page.", + 'text_cheat_alert' => "Γαμώ! Γνωρίζουμε ότι προσπαθείτε να εξαπατήσετε!", + 'text_not_enough_bonus' => "Λυπούμαστε, δεν έχετε αρκετά μπόνους. BTW, πώς μπορείτε να φτάσετε εδώ?", + 'text_uploaded_one' => "1.0 Gb Ανέβηκε", + 'text_uploaded_note' => "Με αρκετούς πόντους μπόνους που αποκτήθηκαν, μπορείτε να τους ανταλλάξετε με μια Πιστωτική Μεταφόρτωση. Οι πόντοι στη συνέχεια αφαιρούνται από την Τράπεζα Μπόνους σας και η πίστωση προστίθεται στο συνολικό ποσό που μεταφορτώσατε.", + 'text_download_note' => "With enough bonus points acquired, you are able to exchange them for an Download Credit. The points are then removed from your Bonus Bank and the credit is added to your total downloaded amount.", + 'text_uploaded_two' => "5.0 Gb Ανέβηκε", + 'text_uploaded_three' => "10.0 Gb Ανέβηκε", + 'text_uploaded_four' => "100.0 Gb Μεταφορτώθηκε", + 'text_downloaded_ten_gb' => "10.0 Gb Ληφθέντα", + 'text_downloaded_hundred_gb' => "100.0 Gb Ληφθέντα", + 'text_buy_invite' => "1 Πρόσκληση", + 'text_buy_invite_note' => "Με αρκετούς πόντους μπόνους που αποκτήθηκαν, είστε σε θέση να τους ανταλλάξετε για μερικές προσκλήσεις. Οι πόντοι στη συνέχεια αφαιρούνται από την Τράπεζα Μπόνους σας και οι προσκλήσεις προστίθενται στο ποσό των προσκλήσεων σας.", + 'text_custom_title' => "Προσαρμοσμένος Τίτλος!", + 'text_custom_title_note' => "Με αρκετούς πόντους μπόνους που αποκτήθηκαν, μπορείτε να αγοράσετε τον εαυτό σας έναν προσαρμοσμένο τίτλο. Οι μόνοι περιορισμοί δεν είναι κανένα φάουλ ή προσβλητική γλώσσα, ή τα ονόματα των τάξεων των χρηστών. Οι πόντοι στη συνέχεια αφαιρούνται από την Τράπεζα Μπόνους σας και ο ειδικός τίτλος σας αλλάζει στον τίτλο της επιλογής σας.", + 'text_vip_status' => "Κατάσταση VIP", + 'text_vip_status_note' => "Με αρκετούς πόντους μπόνους που αποκτήθηκαν, μπορείτε να αγοράσετε τον εαυτό σας VIP κατάσταση για ένα μήνα. Οι πόντοι στη συνέχεια αφαιρούνται από την Τράπεζα Μπόνους σας και η κατάστασή σας αλλάζεται.", + 'text_bonus_gift' => "Δώστε Ένα Δώρο Κάρμα", + 'text_bonus_gift_note' => "Λοιπόν, ίσως να μην χρειάζεστε πίστωση μεταφόρτωσης, αλλά γνωρίζετε κάποιον που θα μπορούσε να χρησιμοποιήσει την ώθηση του Κάρμα! Τώρα είστε σε θέση να δώσετε τις πιστώσεις Κάρμα σας ως δώρο! Οι πόντοι στη συνέχεια αφαιρούνται από την Τράπεζα Μπόνους σας και προστίθενται στο λογαριασμό ενός χρήστη της επιλογής σας! Και λαμβάνουν ένα PM με όλες τις πληροφορίες καθώς και από το ποιοι προέρχονται...", + 'text_error' => "Σφάλμα", + 'text_ratio_too_high' => "Η αναλογία σας είναι υψηλή", + 'text_bonus_formula_one' => "The number of karma points gained per hour is given by the following formula

    
    
+whereΜε λίγα λόγια, μπορείτε να πάρετε περισσότερα μπόνους με την σπορά λιγότερο σπορά και μεγαλύτερα torrents.", + 'text_bonus_formula_wi' => "
  • Wi είναι το βάρος iτου, προεπιλογή είναι 1, μηδενικό μπόνους torrent είναι ", + 'text_user_with_ratio_above' => "Χρήστης με αναλογία παραπάνω ", + 'text_and_uploaded_amount_above' => " και μεταφορτώθηκε ποσό πάνω από ", + 'text_cannot_exchange_uploading' => " Ο GB δεν μπορεί να ανταλλάξει περισσότερα uploading credit.", + 'text_you_are_currently_getting' => "Αυτήν τη στιγμή παίρνετε ", + 'text_per_hour' => " ανά ώρα", + 'text_custom' => "Προσαρμοσμένο", + 'bonus_amount_not_allowed' => "Το ποσό μπόνους δεν επιτρέπεται! Μπορείτε να δίνετε μόνο από 25.0 έως 1000.0 πόντους κάθε φορά.", + 'text_system_charges_receiver' => "ΣΗΜΕΙΩΣΗ: Το σύστημα χρεώνει τον δέκτη δώρων ", + 'text_tax_bonus_point' => " πόντος μπόνους", + 'text_tax_plus' => " + ", + 'text_percent_of_transfered_amount' => "% του ποσού που μεταβιβάστηκε", + 'text_as_tax' => " ως φόρος. Για παράδειγμα, ο παραλήπτης παίρνει μόνο ", + 'text_tax_example_note' => " πόντους όταν τον στέλνετε 100 πόντους μπόνους ως δώρο.", + 'text_no_advertisements' => " Ημέρες Χωρίς Διαφημίσεις", + 'text_no_advertisements_note' => "Με αρκετούς πόντους μπόνους που αποκτήθηκαν, μπορείτε να αγοράσετε τον εαυτό σας λίγο χρόνο κατά τη διάρκεια του οποίου μπορείτε να επιλέξετε να μην δείτε διαφημίσεις σε αυτό το site. Οι πόντοι στη συνέχεια αφαιρούνται από την Τράπεζα Μπόνους σας και δεν βλέπετε διαφημίσεις για μια περίοδο. Ωστόσο, θα μπορούσατε πάντα να ενεργοποιήσετε ξανά τις διαφημίσεις στο User CP. ", + 'text_success_no_ad' => "Απολαύστε το χρόνο σας χωρίς διαφημίσεις!", + 'submit_class_above_no_ad' => "Απενεργοποίηση διαφημίσεων στο CP χρήστη", + 'submit_already_disabled' => "Διαφημίσεις Ήδη Απενεργοποιημένες", + 'text_click_on_ad' => "κάνοντας κλικ σε μια διαφήμιση (κάθε διαφήμιση μετράει μόνο μία φορά) = ", + 'text_promotion_link_clicked' => "ο σύνδεσμος προώθησης γίνεται κλικ (κάθε IP μετρά μόνο μία φορά) = ", + 'text_charity_giving' => "Φιλανθρωπική Χορήγηση", + 'text_charity_giving_note' => "Φιλανθρωπία πηγαίνει κατευθείαν σε όσους έχουν ανάγκη. Και εξαρτάται απολύτως από εσάς να αποφασίσετε ποιος θα ωφεληθεί από τη γενναιοδωρία σας.", + 'text_ratio_below' => "Δώστε σε εκείνους με αναλογία κάτω ", + 'text_and_downloaded_above' => " και κατέβασαν παραπάνω ", + 'text_select_receiver_ratio' => "Επιλέξτε το αναλογία των ανθρώπων στους οποίους θα θέλατε να πάει η φιλανθρωπία σας, και επιλέξτε πόσα σημεία θέλετε να στείλετε και κάντε κλικ στο Φιλανθρωπικό Δίνοντας!", + 'submit_charity_giving' => "Φιλανθρωπία Δώνοντας!", + 'text_message' => "Μήνυμα: ", + 'bonus_amount_not_allowed_two' => "Το ποσό μπόνους δεν επιτρέπεται! Μπορείτε να δίνετε μόνο από 1000.0 έως 50000.0 πόντους κάθε φορά.", + 'bonus_ratio_not_allowed' => "Η αναλογία μπόνους δεν επιτρέπεται! Μόνο χρήστες των οποίων η αναλογία κάτω από 0,8 χρειάζονται φιλανθρωπία.", + 'std_no_users_need_charity' => "Κανένας χρήστης δεν χρειάζεται φιλανθρωπία αυτή τη στιγμή.", + 'text_success_charity' => "Σας ευχαριστώ! Εκτιμάται η γενναιοδωρία σας.", + 'text_cancel_hr_title' => 'Ακύρωση H&R', + 'text_cancel_hr_label' => 'Τύπος σε αναγνωριστικό H&R:', + 'text_success_cancel_hr' => "Επιτυχής ακύρωση ενός H&R.", + 'text_success_buy_medal' => 'Η επιτυχία αγοράσει το μετάλλιο.', + 'text_attendance_card' => 'Αγοράστε την κάρτα παρουσίας', + 'text_attendance_card_note' => 'Μια μέρα για να συμπληρώσετε την κατανάλωση της συμμετοχής, να παρακολουθήσετε την ημερομηνία στόχου των ανταμοιβών μπόνους σύμφωνα με τον κανονικό υπολογισμό, δηλαδή, την ημερομηνία-στόχο προς τα εμπρός για τον υπολογισμό του αριθμού των συνεχών ημερών για την απόκτηση ανταμοιβών.', + 'text_success_buy_attendance_card' => 'Επιτυχία αγοράσει 1 κάρτα συμμετοχής.', + 'text_harem_addition_get' => 'Τρέχουσα προσθήκη harem κερδίζει %s μπόνους ανά ώρα', + 'reward_type' => 'Τύπος ανταμοιβής', + 'factor' => 'Παράγοντας', + 'got_bonus' => 'Έχεις μπόνους', + 'total' => 'Σύνολο', + 'reward_type_basic' => 'Βασική ανταμοιβή', + 'reward_type_harem_addition' => 'Προσθήκη λόχου', + 'bonus_base' => 'Βασικό μπόνους', + 'lock_text' => 'Το σύστημα σας περιορίζει σε ένα κλικ στο κουμπί ανταλλαγής μέσα σε %s δευτερόλεπτα!', + 'text_get_by_seeding_official' => 'Τα επίσημα torrents θα λάβουν την ακόλουθη επιπλέον αξία μπόνους ανά ώρα', + 'official_calculate_method' => 'Ο τύπος για τον υπολογισμό της επίσημης ανταμοιβής είναι το ίδιο με παραπάνω, αλλά μόνο για τον επίσημο τύπο, Δεν συνεκτίμηση για χαμηλό εισόδημα', + 'official_tag_bonus_additional_factor' => 'Η τελική ανταμοιβή είναι η υπολογιζόμενη ανταμοιβή επίσημου τύπου, πολλαπλασιαζόμενη με τον επίσημο παράγοντα τύπου, ο τρέχων επίσημος συντελεστής τύπου είναι: ', + 'reward_type_official_addition' => 'Επίσημη προσθήκη', + 'text_get_by_harem' => 'Η προσθήκη του harem θα δώσει την ακόλουθη επιπλέον αξία μπόνους ανά ώρα', + 'harem_additional_desc' => "Only direct harems will be considered for the harem. Each harem's bonus addition value can be viewed here", + 'harem_additional_note' => 'Σημείωση: Εάν δεν κάνετε το διαμοιρασμό μόνοι σας, αυτή η αξία μπόνους δεν θα προστεθεί στο λογαριασμό χρήστη', + 'harem_additional_factor' => 'Η ανταμοιβή που προκύπτει είναι το άθροισμα της ωριαίας πριμοδότησης όλων των υπολοίπων (ανεξάρτητα από την προσθήκη), πολλαπλασιασμένος με τον συντελεστή μπόνους harem, με την τρέχουσα αξία του ', + 'text_bonus_summary' => 'Συνολικό μπόνους που αποκτήθηκε ανά ώρα', + 'col_count' => 'Μετρήσεις', + 'col_size' => 'Μέγεθος', + 'col_a' => 'Μια Τιμή', + 'text_buy_tmp_invite' => '1 Προσωρινή Πρόσκληση', + 'text_buy_tmp_invite_note' => "Με αρκετούς πόντους μπόνους που αποκτήθηκαν, είστε σε θέση να τους ανταλλάξετε για μερικές προσωρινές προσκλήσεις, που ισχύουν για 7 ημέρες. Οι πόντοι στη συνέχεια αφαιρούνται από την Τράπεζα Μπόνους σας και οι προσωρινές προσκλήσεις προστίθενται στο ποσό των προσωρινών προσκλήσεων σας.", + 'text_success_tmp_invites' => "Congratulations! You have got yourself 1 new temporary invite!", + 'text_buy_rainbow_id' => "Αγορά Rainbow ID", + 'text_buy_rainbow_id_note' => 'Προσθέτει ένα shimmering εφέ που μοιάζει με ουράνιο τόξο στα ονόματα χρηστών, έγκυρο για 30 ημέρες και αθροιστικό με την πάροδο του χρόνου με επαναλαμβανόμενες αγορές.', + 'text_success_buy_rainbow_id' => "Συγχαρητήρια, το Rainbow ID προστέθηκε 30 ημέρες!", + 'text_buy_change_username_card' => "Αγοράστε αλλαγή κάρτας ονόματος χρήστη", + 'text_buy_change_username_card_note' => 'Αλλάξτε το όνομα χρήστη μια φορά και θα είναι έγκυρη για πάντα.', + 'text_success_buy_change_username_card' => "Συγχαρητήρια για την επιτυχημένη αγορά ενός αλλάξτε την κάρτα ονόματος χρήστη!", + 'text_change_username_card_already_has' => 'Έχουν ήδη αλλάξει την κάρτα ονόματος χρήστη', + 'text_rainbow_id_already_valid_forever' => 'Έχουν ήδη ένα μόνιμο αναγνωριστικό ουράνιο τόξο', +); + +?> diff --git a/lang/el/lang_myhr.php b/lang/el/lang_myhr.php new file mode 100644 index 00000000..06ccf866 --- /dev/null +++ b/lang/el/lang_myhr.php @@ -0,0 +1,14 @@ + 'H&R ID', + 'th_torrent_name' => 'Torrent', + 'th_uploaded' => 'Ανέβηκε', + 'th_downloaded' => 'Λήφθηκε', + 'th_share_ratio' => 'Κοινοποίηση αναλογίας', + 'th_seed_time_required' => 'Απαιτείται χρόνος σπόρου', + 'th_completed_at' => 'Ολοκληρώθηκε στις', + 'th_ttl' => 'Χρόνος επιθεώρησης που απομένει', + 'th_comment' => 'Σχόλιο', + 'action_remove' => 'Αφαίρεση', +]; diff --git a/lang/el/lang_news.php b/lang/el/lang_news.php new file mode 100644 index 00000000..985b347a --- /dev/null +++ b/lang/el/lang_news.php @@ -0,0 +1,21 @@ + "Διαγραφή νέου", + 'std_are_you_sure' => "Θέλετε πραγματικά να διαγράψετε ένα νέο στοιχείο? ", + 'std_here' => "εδώ", + 'std_if_sure' => " αν είστε σίγουροι.", + 'std_error' => "Σφάλμα", + 'std_news_body_empty' => "Το νέο σώμα δεν μπορεί να είναι άδειο!", + 'std_news_title_empty' => "Ο τίτλος ειδήσεων δεν μπορεί να είναι κενός!", + 'std_something_weird_happened' => "Κάτι περίεργο μόλις συνέβη.", + 'std_invalid_news_id' => "Δεν υπάρχουν νέα με ID ", + 'head_edit_site_news' => "Επεξεργασία Ειδήσεων Ιστοσελίδας", + 'text_edit_site_news' => "Επεξεργασία Ειδήσεων Ιστοσελίδας", + 'text_notify_users_of_this' => "Ειδοποιήστε τους χρήστες για αυτό.", + 'head_site_news' => "Ειδήσεις Ιστοσελίδας", + 'text_submit_news_item' => "Υποβολή νέου" +); + +?> diff --git a/lang/el/lang_offers.php b/lang/el/lang_offers.php new file mode 100644 index 00000000..36d3f081 --- /dev/null +++ b/lang/el/lang_offers.php @@ -0,0 +1,143 @@ + "Προσφέρεται από ", + 'text_inf' => "Inf.", + 'text_ratio' => "αναλογία:", + 'text_orphaned' => "(ορφανά)", + 'text_at' => " στις ", + 'text_edit' => "Επεξεργασία", + 'text_delete' => "Διαγραφή", + 'text_profile' => "Προφίλ", + 'text_pm' => "ΜΜ", + 'text_report' => "Αναφορά", + 'text_last_edited_by' => "Τελευταία Επεξεργασία από ", + 'text_edited_at' => " στις ", + 'head_offer_error' => "Σφάλμα Προσφοράς", + 'std_error' => "Σφάλμα!", + 'std_smell_rat' => "Μυρίζει έναν αρουραίο!", + 'head_offer' => "Προσφορά", + 'submit_search' => "Go!", + 'text_red_star_required' => "Τα πεδία με κόκκινο αστέρι (*) είναι υποχρεωτικά.", + 'text_offers_open_to_all' => "Προσφορές είναι ανοικτές σε όλους τους χρήστες... μια μεγάλη αύξηση αναλογίας!", + 'select_type_select' => "(Select)", + 'row_type' => "Τύπος", + 'row_title' => "Τίτλος", + 'row_post_or_photo' => "Αφίσα ή φωτογραφία", + 'text_link_to_picture' => "(Άμεση σύνδεση με την εικόνα. ΟΧΙ TAG ΣΗΜΕΙΩΣΗ! Θα εμφανιστεί στην περιγραφή)", + 'row_description' => "Περιγραφή", + 'submit_add_offer' => "Προσθήκη Προσφορά!", + 'col_type' => "Τύπος", + 'col_title' => "Τίτλος", + 'title_time_added' => "Ο Χρόνος Προστέθηκε", + 'col_offered_by' => "Added By", + 'submit_show_all' => "Show All", + 'std_must_enter_name' => "Πρέπει να εισάγετε ένα όνομα!", + 'std_must_select_category' => "Πρέπει να επιλέξετε μια κατηγορία για να βάλετε την προσφορά!", + 'std_must_enter_description' => "Πρέπει να εισάγετε μια περιγραφή!", + 'std_wrong_image_format' => "Η εικόνα ΠΡΕΠΕΙ να είναι σε μορφή jpg, gif ή png.", + 'head_success' => "Επιτυχία!", + 'head_error' => "Σφάλμα!", + 'std_offer_exists' => "Η προσφορά είναι έτοιμη!", + 'text_view_all_offers' => "Δείτε όλες τις προσφορές.", + 'head_offer_detail_for' => "Λεπτομέρειες προσφοράς για ", + 'text_offer_detail' => "Λεπτομέρειες Προσφοράς", + 'row_time_added' => "Ο Χρόνος Προστέθηκε", + 'row_status' => "Κατάσταση", + 'text_pending' => "Εκκρεμεί", + 'text_allowed' => "Επιτρέπεται", + 'text_denied' => "Απορρίφθηκε", + 'text_edit_offer' => "Επεξεργασία Προσφοράς", + 'text_delete_offer' => "Διαγραφή Προσφοράς", + 'report_offer' => "Προσφορά Αναφοράς", + 'row_allow' => "Αποδοχή", + 'submit_allow' => "Αποδοχή", + 'submit_let_votes_decide' => "Let votes decide", + 'row_vote' => "Ψηφοφορίες", + 'text_for' => "Για", + 'text_against' => "Εναντίον", + 'row_offer_allowed' => "Η Προσφορά Επιτρέπεται", + 'text_voter_receives_pm_note' => "Αν ψηφίσατε υπέρ αυτής της προσφοράς, θα είστε PMed όταν αναβληθεί!", + 'text_urge_upload_offer_note' => "Αυτή η προσφορά επιτρέπεται! Παρακαλώ ανεβάστε την το συντομότερο δυνατό.", + 'row_vote_results' => "Vote Results", + 'text_see_vote_detail' => "[Δείτε Λεπτομέρειες Ψηφοφορίας]", + 'row_report_offer' => "Προσφορά Αναφοράς", + 'text_for_breaking_rules' => " για την παραβίαση των κανόνων ", + 'submit_report_offer' => "Αναφορά Προσφορά", + 'text_add_comment' => "Προσθήκη Σχολίου", + 'text_no_comments' => "Δεν υπάρχουν σχόλια", + 'std_access_denied' => "Άρνηση πρόσβασης!", + 'std_mans_job' => "αυτή είναι η δουλειά ενός άνδρα!", + 'std_have_no_permission' => "Δεν έχετε άδεια", + 'std_sorry' => "Συγνώμη", + 'std_no_votes_yet' => "Δεν υπάρχουν ψήφοι ακόμα... ", + 'std_back_to_offer_detail' => "Πίσω στις λεπτομέρειες Προσφοράς", + 'std_cannot_edit_others_offer' => "Αυτή δεν είναι η προσφορά σας για επεξεργασία.", + 'head_edit_offer' => "Επεξεργασία Προσφοράς ", + 'text_edit_offer' => "Επεξεργασία Προσφοράς", + 'submit_edit_offer' => "Επεξεργασία Προσφοράς ", + 'head_offer_voters' => "Προσφορά Ψηφοφόρων", + 'text_vote_results_for' => "Αποτελέσματα Προσφοράς Ψηφοφορίας Για", + 'col_user' => "Χρήστης", + 'col_uploaded' => "Ανέβηκε", + 'col_downloaded' => "Λήφθηκε", + 'col_ratio' => "Αναλογία", + 'col_vote' => "Ψηφοφορίες", + 'std_already_voted' => "Έχετε ήδη ψηφίσει", + 'std_already_voted_note' => "

    Έχετε ήδη ψηφίσει, μέγιστο 1 ψήφος ανά προσφορά

    Επιστροφή στην ", + 'std_back_to_offer_detail' => "λεπτομέρειες προσφοράς

    ", + 'head_vote_for_offer' => "Ψηφίστε Για Προσφορά", + 'std_vote_accepted' => "Η ψήφος έγινε αποδεκτή", + 'std_vote_accepted_note' => "

    Η ψήφος σας έχει γίνει δεκτή

    ", + 'std_cannot_delete_others_offer' => "Αυτή δεν είναι η Προσφορά σας για διαγραφή!", + 'std_delete_offer' => "Διαγραφή Προσφοράς", + 'std_delete_offer_note' => "Πρόκειται να διαγράψετε αυτήν την προσφορά.", + 'head_offers' => "Προσφορές", + 'text_offers_section' => "Τομέας Προσφορών", + 'text_add_offer' => "Προσθήκη προσφοράς", + 'text_view_request' => "Προβολή Αιτημάτων", + 'select_show_all' => "(Εμφάνιση All)", + 'submit_view_only_selected' => "Προβολή μόνο επιλεγμένο", + 'text_search_offers' => "Αναζήτηση: ", + 'title_comment' => "Σχόλια", + 'col_vote_results' => "Ψηφοφορίες", + 'text_nothing_found' => "Τίποτα Δεν Βρέθηκε!", + 'text_yep' => "yep", + 'text_nah' => "nah", + 'title_show_vote_details' => "Εμφάνιση Λεπτομερειών Ψήφου ", + 'title_i_want_this' => " want this!", + 'title_do_not_want_it' => " don't like this", + 'row_action' => "Ενέργεια", + 'text_quick_comment' => "Γρήγορο Σχόλιο", + 'submit_add_comment' => "Add Comment", + 'text_blank' => " ", + 'col_act' => "Πράξη.", + 'title_delete' => "Διαγραφή", + 'title_edit' => "Επεξεργασία", + 'col_timeout' => "Χρονικό όριο", + 'row_info' => "Πληροφορίες", + 'text_reason_is' => "Αιτία: ", + 'submit_confirm' => "Επιβεβαίωση", + 'title_add_comments' => "Add comment", + 'text_at_time' => " στις ", + 'text_blank_two' => " ", + 'text_last_commented_by' => "Τελευταία σχολίασε από ", + 'title_has_new_comment' => "Has new comment", + 'title_no_new_comment' => "No new comment", + 'text_new' => "ΝΕΟ", + 'std_cannot_vote_youself' => "Δεν μπορείτε να ψηφίσετε τις δικές σας προσφορές.", + 'text_rules' => "Κανόνες: ", + 'text_rule_one_one' => "", + 'text_rule_one_two' => " ή παραπάνω μπορούν να ανεβάσουν τα torrents απευθείας χωρίς να περάσουν από την ενότητα προσφορών. ", + 'text_rule_one_three' => " ή παραπάνω μπορούν να προσθέσουν προσφορές.", + 'text_rule_two_one' => "Μια προσφορά εγκρίνεται όταν υποστηρίζονται οι ψήφοι γι' αυτήν ", + 'text_rule_two_two' => " περισσότερο από την αντίρρηση των ψήφων.", + 'text_rule_three_one' => "Οι προσφορές θα διαγραφούν εάν δεν εγκριθούν ", + 'text_rule_three_two' => " ώρες μετά την προσθήκη", + 'text_rule_four_one' => "Οι προσφορές θα διαγραφούν αν δεν μεταφορτωθούν ", + 'text_rule_four_two' => " ώρες μετά την έγκριση.", + 'text_rule_skip_offer' => "Όταν ο αριθμός των προσφορών που πέρασε ο χρήστης είναι μεγαλύτερος ή ίσος με %d, ο χρήστης μπορεί να φορτώσει torrents απευθείας χωρίς να περάσει από την ενότητα προσφορές.", +); + +?> diff --git a/lang/el/lang_ok.php b/lang/el/lang_ok.php new file mode 100644 index 00000000..8dd3a041 --- /dev/null +++ b/lang/el/lang_ok.php @@ -0,0 +1,24 @@ + "Εγγραφή χρήστη", + 'std_account_activated' => "Εγγραφή επιτυχής αλλά ο Λογαριασμός δεν ενεργοποιήθηκε!", + 'account_activated_note' => "Ο λογαριασμός σας δημιουργήθηκε με επιτυχία ωστόσο ο Διαχειριστής πρέπει να επικυρώσει νέα μέλη πριν ταξινομηθούν ως εγγεγραμμένα μέλη και να έχουν πρόσβαση στον ιστότοπο, σας ευχαριστώ για την κατανόησή σας.", + 'account_activated_note_two' => "Ο λογαριασμός σας δημιουργήθηκε με επιτυχία ωστόσο ο προσκεκλημένος σας πρέπει να επικυρώσει νέα μέλη πριν ταξινομηθούν ως εγγεγραμμένα μέλη και να έχουν πρόσβαση στην ιστοσελίδα, σας ευχαριστώ για την κατανόησή σας.", + 'std_signup_successful' => "Επιτυχής εγγραφή!", + 'std_confirmation_email_note' => "Ένα email επιβεβαίωσης έχει σταλεί στη διεύθυνση που καθορίσατε (" , + 'std_confirmation_email_note_end' => "). Πρέπει να διαβάσετε και να απαντήσετε σε αυτό το email πριν μπορέσετε να χρησιμοποιήσετε το λογαριασμό σας. Αν δεν το κάνετε αυτό, ο νέος λογαριασμός θα διαγραφεί αυτόματα μετά από λίγο.", + 'head_sysop_activation' => "Ενεργοποίηση λογαριασμού Sysop", + 'std_sysop_activation_note' => "

    Λογαριασμός Sysop ενεργοποιήθηκε επιτυχώς!

    \n", + 'std_auto_logged_in_note' => "

    Your account has been activated!\n You have been automatically logged in. You can now continue to the main page and start using your account.

    \n", + 'std_cookies_disabled_note' => "

    Your account has been activated! However, it appears that you could not be logged in automatically. Maybe you need to open a new window in your browser.
    Another possible reason is that you disabled cookies in your browser. You have to enable cookies to use your account. Please do that and then log in and try again.

    \n", + 'head_already_confirmed' => "Έχει ήδη επιβεβαιωθεί", + 'std_already_confirmed' => "

    Επιβεβαίωσε ήδη

    \n", + 'std_already_confirmed_note' => "

    Αυτός ο λογαριασμός χρήστη έχει ήδη επιβεβαιωθεί. Μπορείτε να προχωρήσετε σε σύνδεση με αυτόν.

    \n", + 'head_signup_confirmation' => "Επιβεβαίωση εγγραφής", + 'std_account_confirmed' => "

    Ο λογαριασμός επιβεβαιώθηκε επιτυχώς!

    \n", + 'std_read_rules_faq' => "

    Before you start using %s we urge you to read the RULES and the FAQ.

    \n" +); + +?> diff --git a/lang/el/lang_polloverview.php b/lang/el/lang_polloverview.php new file mode 100644 index 00000000..efc8fcb2 --- /dev/null +++ b/lang/el/lang_polloverview.php @@ -0,0 +1,21 @@ + "Σφάλμα", + 'head_poll_overview' => "Επισκόπηση Δημοσκοπήσεων", + 'text_polls_overview' => "Επισκόπηση Δημοσκοπήσεων", + 'col_id' => "ID", + 'col_added' => "Προστέθηκε", + 'col_question' => "Ερώτηση", + 'text_no_users_voted' => "Συγνώμη... Δεν υπάρχουν χρήστες που ψήφισαν!", + 'text_no_poll_id' => "Συγνώμη... Δεν υπάρχουν δημοσκοπήσεις με αυτό το ID!", + 'text_poll_question' => "Ερωτήσεις Δημοσκόπησης", + 'col_option_no' => "Αριθμός Επιλογής", + 'col_options' => "Επιλογές", + 'text_polls_user_overview' => "Επισκόπηση Χρήστη Ψηφοφοριών", + 'col_username' => "Όνομα Χρήστη", + 'col_selection' => "Επιλογή", +); + +?> diff --git a/lang/el/lang_polls.php b/lang/el/lang_polls.php new file mode 100644 index 00000000..feac1d3a --- /dev/null +++ b/lang/el/lang_polls.php @@ -0,0 +1,20 @@ + "Σφάλμα", + 'std_permission_denied' => "Άρνηση άδειας.", + 'std_delete_poll' => "Διαγραφή δημοσκόπησης", + 'std_delete_poll_confirmation' => "Θέλετε πραγματικά να διαγράψετε μια δημοσκόπηση? Κάντε κλικ\n", + 'std_here_if_sure' => "εδώ αν είστε σίγουροι.", + 'std_sorry' => "Sorry...", + 'std_no_polls' => "Δεν υπάρχουν δημοσκοπήσεις!", + 'head_previous_polls' => "Προηγούμενες δημοσκοπήσεις", + 'text_previous_polls' => "Προηγούμενες δημοσκοπήσεις", + 'text_ago' => " πριν", + 'text_edit' => "Επεξεργασία", + 'text_delete' => "Διαγραφή", + 'text_votes' => "Ψηφοφορίες: " +); + +?> \ No newline at end of file diff --git a/lang/el/lang_preview.php b/lang/el/lang_preview.php new file mode 100644 index 00000000..8fa236fc --- /dev/null +++ b/lang/el/lang_preview.php @@ -0,0 +1,8 @@ + "Προεπισκόπηση" +); + +?> \ No newline at end of file diff --git a/lang/el/lang_promotionlink.php b/lang/el/lang_promotionlink.php new file mode 100644 index 00000000..d8b09b5f --- /dev/null +++ b/lang/el/lang_promotionlink.php @@ -0,0 +1,29 @@ + "Σύνδεσμος Προώθησης", + 'text_promotion_link' => "Σύνδεσμος Προώθησης", + 'text_promotion_link_note_one' => "Αν σας αρέσει πραγματικά αυτή η ιστοσελίδα, γιατί να μην βοηθήσει αφήστε περισσότερους ανθρώπους να γνωρίζουν γι 'αυτό? Μπορείτε να το κάνετε αυτό με την εξάπλωση του συνδέσμου προώθησης σας. ", + 'text_promotion_link_note_two' => "Κάθε χρήστης έχει ένα μοναδικό σύνδεσμο προώθησης, ένα τυχαίο URL που παράγεται από το σύστημα για να τον αναγνωρίσει. Όταν κάποιος κάνει κλικ στο σύνδεσμο προώθησης σας, θα μεταφερθεί σε αυτό το site και το σύστημα θα σας ανταμείψει για να βοηθήσετε να διαδώσετε το URL.", + 'text_you_would_get' => "Θα πάρετε ", + 'text_bonus_points' => " πόντους μπόνους κάθε φορά που ο σύνδεσμος προώθησης σας πατιέται με μια μη καταγεγραμμένη IP. Μόνο ένα κλικ υπολογίζεται ", + 'text_seconds' => " δευτερόλεπτα.", + 'text_your_promotion_link_is' => "Ο σύνδεσμος προώθησης: ", + 'text_promotion_link_note_four' => "Μπορείτε να επιλέξετε ούτως ή άλλως να χρησιμοποιήσετε το σύνδεσμο προώθησης σας. Τα παρακάτω είναι μερικά παραδείγματα: ", + 'col_type' => "Τύπος", + 'col_code' => "Κωδικός", + 'col_result' => "Αποτέλεσμα", + 'col_note' => "Σημείωση", + 'row_xhtml' => "XHTML 1.0", + 'text_xhtml_note' => "Αν έχετε τον προσωπικό σας ιστότοπο, μπορείτε να χρησιμοποιήσετε τον κώδικα XHTML στη σελίδα σας.", + 'row_html' => "HTML 4. 01", + 'text_html_note' => "Αν έχετε την προσωπική σας ιστοσελίδα, μπορείτε να χρησιμοποιήσετε κώδικα HTML στη σελίδα σας.", + 'row_bbcode' => "BBCode", + 'text_bbcode_note' => "Τα περισσότερα λογισμικό φόρουμ internet (π.χ. vBulletin, Discuz!, PHPWind) υποστήριξη BBCode. Είναι μια καλή ιδέα να βάλετε το σύνδεσμο προώθησης σας στην υπογραφή σας.", + 'row_bbcode_userbar' => "Μπάρα χρήστη BBCode", + 'text_bbcode_userbar_note' => "Get your personal userbar. For userbar to work, you must NOT set your privacy level to 'strong' (at User CP).", + 'row_bbcode_userbar_alt' => "BBCode μπάρα χρήστη alt.", + 'text_bbcode_userbar_alt_note' => "Use this if the above one doesn't work. For userbar to work, you must NOT set your privacy level to 'strong' (at User CP)." +) +?> diff --git a/lang/el/lang_recover.php b/lang/el/lang_recover.php new file mode 100644 index 00000000..ed212676 --- /dev/null +++ b/lang/el/lang_recover.php @@ -0,0 +1,39 @@ + "Η Ανάκτηση Απέτυχε! (βλ. Below)", + 'std_missing_email_address' => "Πρέπει να εισάγετε μια διεύθυνση email!", + 'std_invalid_email_address' => "Μη έγκυρη διεύθυνση email!", + 'std_email_not_in_database' => "Η διεύθυνση ηλεκτρονικού ταχυδρομείου δεν βρέθηκε στη βάση δεδομένων.\n", + 'std_error' => "Σφάλμα", + 'std_database_error' => "Σφάλμα βάσης δεδομένων. Επικοινωνήστε με έναν διαχειριστή για αυτό.", + 'std_unable_updating_user_data' => "Δεν είναι δυνατή η ενημέρωση δεδομένων χρήστη. Επικοινωνήστε με το διαχειριστή για αυτό το σφάλμα.", + 'text_recover_user' => "Ανάκτηση χαμένου ονόματος χρήστη ή κωδικού πρόσβασης.", + 'text_use_form_below' => "Χρησιμοποιήστε την παρακάτω φόρμα για να επαναφέρετε τον κωδικό πρόσβασής σας και τα στοιχεία του λογαριασμού σας να σας αποστείλουν.", + 'text_reply_to_confirmation_email' => "(Θα πρέπει να απαντήσετε σε email επιβεβαίωσης.)", + 'text_note' => "Σημείωση: ", + 'text_ban_ip' => " αποτυχημένες προσπάθειες σε μια σειρά θα έχουν ως αποτέλεσμα την απαγόρευση ip!", + 'row_registered_email' => "Εγγεγραμμένο email: ", + 'submit_recover_it' => "Ανακτήστε Αυτό!", + 'text_you_have' => "Έχετε ", + 'text_remaining_tries' => " εναπομείναντες προσπάθειες.", + + 'mail_this_link' => "ΑΥΤΗ ΓΡΑΜΜΗ", + 'mail_here' => "ΕΔΩ", + + 'mail_title' => " επιβεβαίωση επαναφοράς κωδικού πρόσβασης", + 'mail_one' => "Hi,

    Someone, hopefully you, requested that the password for the account
    associated with this email address ", + 'mail_two' => " επαναφορά.

    Το αίτημα προέρχεται από ", + 'mail_three' => ".

    If you did not do this ignore this email. Please do not reply.

    Should you wish to confirm this request, please follow ", + 'mail_four' => "
    Αφού το κάνετε αυτό, ο κωδικός πρόσβασής σας θα επανέλθει και θα σας στείλει email.

    ------
    Δες,
    Η ομάδα %s.", + + 'mail_two_title' => " λεπτομέρειες λογαριασμού", + 'mail_two_one' => "Hi,

    As per your request we have generated a new password for your account.

    Here is the information we now have on file for this account:

    User name: ", + 'mail_two_two' => "
    Κωδικός: ", + 'mail_two_three' => "

    Μπορείτε να συνδεθείτε από ", + 'mail_two_four' => "

    You may change your password in User CP - Security Settings after logging in.
    ------
    Yours,
    The %s Team.", + 'text_select_lang' => "Επιλογή Γλώσσας Ιστοσελίδας: ", + 'std_user_account_unconfirmed' => "Ο λογαριασμός δεν έχει επαληθευτεί ακόμα. Εάν δεν λάβατε το email επιβεβαίωσης, προσπαθήστε να το επαναλάβετε .", +); +?> diff --git a/lang/el/lang_report.php b/lang/el/lang_report.php new file mode 100644 index 00000000..68a532b7 --- /dev/null +++ b/lang/el/lang_report.php @@ -0,0 +1,42 @@ + "Σφάλμα", + 'std_missing_reason' => "Λόγος Που Λείπει!", + 'std_message' => "Μήνυμα", + 'std_successfully_reported' => "Αναφέρθηκε επιτυχώς!", + 'std_already_reported_this' => "Το έχετε ήδη αναφέρει!", + 'std_sorry' => "Συγνώμη", + 'std_cannot_report_oneself' => "Δεν μπορείτε να αναφέρετε τον εαυτό σας!", + 'std_invalid_user_id' => "Μη Έγκυρο Id Χρήστη!", + 'std_cannot_report' => "Δεν μπορείτε να αναφέρετε ", + 'std_are_you_sure' => "Είσαι σίγουρος?", + 'text_are_you_sure_user' => "Είστε βέβαιοι ότι θα θέλατε να αναφέρετε αυτόν το χρήστη ", + 'text_to_staff' => " στο προσωπικό για παραβίαση των κανόνων?", + 'text_not_for_leechers' => "Παρακαλώ σημειώστε, αυτό είναι όχι για να χρησιμοποιηθεί για να αναφέρετε τους χρήστες σας, έχουμε δέσμες ενεργειών για να τους αντιμετωπίσουμε!", + 'text_reason_is' => "Λόγος (απαιτείται): ", + 'submit_confirm' => "Επιβεβαίωση", + 'text_reason_note' => " PLEASE Note!  Αν δεν υπάρχει λόγος θα λάβετε μια προειδοποίηση.", + 'std_invalid_torrent_id' => "Μη Έγκυρο Id Torrent!", + 'text_are_you_sure_torrent' => "Είστε βέβαιοι ότι θα θέλατε να αναφέρετε αυτό το torrent ", + 'std_invalid_post_id' => "Μη Έγκυρη Ταυτότητα Δημοσίευσης!", + 'text_are_you_sure_post' => "Είστε βέβαιοι ότι θα θέλατε να αναφέρετε τη δημοσίευση του φόρουμ (ID ", + 'text_of_topic' => " του θέματος ", + 'text_of_torrent' => " του torrent ", + 'text_of_offer' => " προσφοράς ", + 'text_of_request' => " της αίτησης ", + 'text_by' => ") από ", + 'std_invalid_comment_id' => "Μη Έγκυρο Id Σχολιού!", + 'std_orphaned_comment' => "Ορφανά σχόλιο. Παρακαλώ αναφέρετε αυτό στο διαχειριστή.", + 'text_are_you_sure_comment' => "Είστε βέβαιοι ότι θα θέλατε να αναφέρετε το σχόλιο (ID ", + 'std_invalid_offer_id' => "Μη έγκυρη ταυτότητα προσφοράς!", + 'text_are_you_sure_offer' => "Είστε βέβαιοι ότι θα θέλατε να αναφέρετε την ακόλουθη προσφορά ", + 'std_invalid_request_id' => "Μη Έγκυρο Id Αίτησης!", + 'std_are_you_sure_request' => "Είστε βέβαιοι ότι θα θέλατε να αναφέρετε το ακόλουθο αίτημα ", + 'std_invalid_action' => "Μη έγκυρη ενέργεια.", + 'std_invalid_subtitle_id' => "Μη Έγκυρο Id Υποτίτλου!", + 'text_are_you_sure_subtitle' => "Είστε βέβαιοι ότι θα θέλατε να αναφέρετε τον υπότιτλο ", +); + +?> diff --git a/lang/el/lang_reports.php b/lang/el/lang_reports.php new file mode 100644 index 00000000..52714a11 --- /dev/null +++ b/lang/el/lang_reports.php @@ -0,0 +1,41 @@ + "Oho!", + 'std_no_report' => "Καμία έκθεση.", + 'head_reports' => "Αναφορές", + 'text_reports' => "Αναφορές", + 'col_added' => "Προστέθηκε", + 'col_reporter' => "Δημοσιογράφος", + 'col_reporting' => "Αναφορά", + 'col_type' => "Τύπος", + 'col_reason' => "Λόγος", + 'col_dealt_with' => "Συμφωνία Με", + 'col_action' => "Πράξη.", + 'text_yes' => "Ναι", + 'text_no' => "Όχι", + 'text_torrent' => "Torrent", + 'text_torrent_does_not_exist' => "Το torrent δεν υπάρχει ή έχει διαγραφεί.", + 'text_user' => "Χρήστης", + 'text_user_does_not_exist' => "Ο χρήστης δεν υπάρχει ή έχει διαγραφεί.", + 'text_offer' => "Προσφορά", + 'text_offer_does_not_exist' => "Η προσφορά δεν υπάρχει ή έχει διαγραφεί.", + 'text_forum_post' => "Δημοσίευση Φόρουμ", + 'text_post_does_not_exist' => "Η δημοσίευση του φόρουμ δεν υπάρχει ή έχει διαγραφεί.", + 'text_post_id' => "Αναγνωριστικό Ανάρτησης ", + 'text_of_topic' => " του Θέματος ", + 'text_by' => " από ", + 'text_comment' => "Σχόλιο", + 'text_comment_does_not_exist' => "Το σχόλιο δεν υπάρχει ή έχει διαγραφεί.", + 'text_of_torrent' => " του torrent ", + 'text_of_offer' => " προσφοράς ", + 'text_comment_id' => "Id Σχόλιο ", + 'text_subtitle' => "Υπότιτλος", + 'text_subtitle_does_not_exist' => "Ο υπότιτλος δεν υπάρχει ή έχει διαγραφεί.", + 'text_for_torrent_id' => " για το ID torrent ", + 'submit_set_dealt' => "Ορισμός Προσφοράς", + 'submit_delete' => "Διαγραφή", +); + +?> diff --git a/lang/el/lang_rules.php b/lang/el/lang_rules.php new file mode 100644 index 00000000..a688d6fc --- /dev/null +++ b/lang/el/lang_rules.php @@ -0,0 +1,8 @@ + "Κανόνες" +); + +?> \ No newline at end of file diff --git a/lang/el/lang_sendmessage.php b/lang/el/lang_sendmessage.php new file mode 100644 index 00000000..eccade25 --- /dev/null +++ b/lang/el/lang_sendmessage.php @@ -0,0 +1,24 @@ + "Σφάλμα", + 'std_permission_denied' => "Άρνηση πρόσβασης", + 'head_send_message' => "Αποστολή μηνύματος", + 'text_mass_message' => "Μαζικό μήνυμα σε ", + 'text_users' => "χρήστες", + 'text_subject' => "Θέμα:", + 'text_comment' => "Σχόλιο:", + 'text_from' => "Από:", + 'text_take_snapshot' => "Λήψη στιγμιότυπου:", + 'submit_send_it' => "Στείλτε το!", + 'submit_preview' => "Προεπισκόπηση", + 'text_templates' => "Διαχείριση Προτύπων:", + 'submit_use' => "Χρήση", + 'std_no_user_id' => "Κανένας χρήστης με αυτό το ID.", + 'text_message_to' => "Μήνυμα προς ", + 'checkbox_delete_message_replying_to' => "Διαγραφή μηνύματος στο οποίο απαντάτε", + 'checkbox_save_message_to_sendbox' => "Αποθήκευση μηνύματος στο Sentbox" +); + +?> \ No newline at end of file diff --git a/lang/el/lang_settings.php b/lang/el/lang_settings.php new file mode 100644 index 00000000..15ea314b --- /dev/null +++ b/lang/el/lang_settings.php @@ -0,0 +1,821 @@ + "Ναι", + 'text_no' => "Όχι", + 'text_website_settings' => "Ρυθμίσεις Ιστοσελίδας", + 'text_configuration_file_saving_note' => "Πριν από την αποθήκευση των ρυθμίσεων, βεβαιωθείτε ότι έχετε σωστά ρυθμισμένα δικαιώματα πρόσβασης αρχείου και καταλόγου.", + 'head_save_main_settings' => "Αποθήκευση Κύριων Ρυθμίσεων", + 'std_message' => "Μήνυμα", + 'std_click' => "Click ", + 'std_here' => "εδώ", + 'std_to_go_back' => " να πάμε πίσω.", + 'head_save_basic_settings' => "Αποθήκευση Βασικών Ρυθμίσεων", + 'head_save_code_settings' => "Αποθήκευση Ρυθμίσεων Κώδικα", + 'head_save_bonus_settings' => "Αποθήκευση Ρυθμίσεων Μπόνους", + 'head_save_account_settings' => "Αποθήκευση Ρυθμίσεων Λογαριασμού", + 'head_save_torrent_settings' => "Αποθήκευση Ρυθμίσεων Torrent", + 'head_save_smtp_settings' => "Αποθήκευση Ρυθμίσεων Smtp", + 'head_save_security_settings' => "Αποθήκευση Ρυθμίσεων Ασφαλείας", + 'head_save_authority_settings' => "Αποθήκευση Ρυθμίσεων Αρχής", + 'head_save_tweak_settings' => "Αποθήκευση Ρυθμίσεων Tweak", + 'head_save_bot_settings' => "Αποθήκευση Ρυθμίσεων Bot", + 'head_bot_settings' => "Ρυθμίσεις Bot", + 'head_tweak_settings' => "Ρυθμίσεις Tweak", + 'row_save_user_location' => "Αποθήκευση Τοποθεσίας Χρήστη", + 'text_save_user_location_note' => "Προεπιλεγμένο 'Όχι'. Αποθηκεύστε την τελευταία τοποθεσία περιήγησης του χρήστη.", + 'row_log_user_ips' => "Καταγραφή IP χρήστη", + 'text_store_user_ips_note' => "Προεπιλογή 'ναι'. Καταγραφή διεύθυνσης IP όταν οι χρήστες έχουν διαφορετικό IP.", + 'row_kps_enabled' => "Ενεργοποίηση Του Karma Bonus Point System", + 'text_enabled' => "Ενεργοποιημένο", + 'text_disabled_but_save' => "Απενεργοποιημένα αλλά εξακολουθούν να αποθηκεύονται σημεία", + 'text_disabled_no_save' => "Απενεργοποιημένο", + 'text_kps_note' => "Προεπιλεγμένο 'ενεργοποιημένο'. Ενεργοποίηση του KPS ή απενεργοποίηση. Διατήρηση σημείων ή όχι.", + 'row_tracker_founded_date' => "Ημερομηνία Ιχνηλάτη Ιδρύθηκε", + 'text_tracker_founded_date_note' => "Η μορφή ώρας είναι ΕΕΕΕ-ΜΜ-ΗΗ, ορίστε την ημερομηνία ίδρυσης του ιχνηλάτη σας", + 'row_save_settings' => "Αποθήκευση ρυθμίσεων", + 'submit_save_settings' => "Αποθήκευση Ρυθμίσεων [ΜΟΝΟ PRESS ONLY ONCE]", + 'head_smtp_settings' => "Ρυθμίσεις SMTP", + 'row_mail_function_type' => "Τύπος της λειτουργίας PHP Mail", + 'head_security_settings' => "Ρυθμίσεις Ασφαλείας", + 'row_enable_ssl' => "Χρήση SSL (Ιστός)", + 'row_enable_ssl_tracker' => "Χρήση SSL (Tracker)", + 'text_optional' => "Προαιρετικό (επιλέξιμο από χρήστες)", + 'text_ssl_note' => "Προκαθορισμένο 'Όχι'. Η ενεργοποίηση SSL απαιτεί πρόσθετη ρύθμιση παραμέτρων για το διακομιστή HTTP και ένα πιστοποιητικό (είτε από μια αρχή πιστοποίησης είτε από αυτουπογραφή).", + 'row_enable_image_verification' => "Ενεργοποίηση Επαλήθευσης Εικόνας", + 'text_image_verification_note' => "Προεπιλεγμένο 'Όχι'. Απαιτείται από τους χρήστες να εισάγουν έναν κωδικό οπτικής επαλήθευσης για να εγγραφεί/συνδεθείτε/ανακτήση.", + 'row_allow_email_change' => "Επιτρέψτε στον χρήστη να αλλάξει το email", + 'text_email_change_note' => "Προεπιλεγμένο 'όχι'. Ορίστε σε 'όχι' για να απαγορεύσετε στους χρήστες να αλλάξουν τη διεύθυνση ηλεκτρονικού ταχυδρομείου του", + 'row_cheater_detection_level' => "Επίπεδο ανίχνευσης επευφημιών", + 'select_none' => "κανένα", + 'select_conservative' => "συντηρητικό", + 'select_normal' => "κανονικό", + 'select_strict' => "αυστηρή", + 'select_paranoid' => "παρανοϊκός", + 'text_cheater_detection_level_note' => "Προεπιλεγμένο 'κανονικό'. Ρυθμίστε το επίπεδο που ταιριάζει καλύτερα στον ιχνηλάτη σας. Αυστηρότερη, πιο αργή ταχύτητα ανακοίνωσης των peers. ", + 'text_never_suspect' => "Ποτέ μην υποψιάζεστε ", + 'text_or_above' => " ή παραπάνω, δηλαδή δεν γίνεται καμία ανίχνευση. Προεπιλογή ", + 'row_max_ips' => "Μέγ. IP", + 'text_max_ips_note' => "Απενεργοποίηση εγγραφής με την ίδια διεύθυνση IP.", + 'row_max_login_attemps' => "Μεγ. Προσπάθειες Σύνδεσης", + 'text_max_login_attemps_note' => "Αποκλεισμός διεύθυνσης IP που υπερβαίνει αυτό το όριο.", + 'head_authority_settings' => "Ρυθμίσεις Αρχής", + 'row_default_class' => "Default Class", + 'text_default_user_class' => "Προεπιλεγμένη Κλάση Χρήστη: ", + 'text_default' => " Προεπιλογή ", + 'text_default_class_note' => ". Τάξη κατά την εγγραφή", + 'row_staff_member' => "Μέλος Προσωπικού", + 'text_minimum_class' => "Ελάχιστη Κλάση: ", + 'text_staff_member_note' => ". Τάξεις που θεωρούνται μέλη του προσωπικού, π.χ. μπορούν να δουν το προσωπικό", + 'row_news_management' => "Διαχείριση Ειδήσεων", + 'text_news_management_note' => ". Προσθήκη νέου, επεξεργασία, διαγραφή ειδήσεων", + 'row_post_funbox_item' => "Δημοσίευση στοιχείου funbox", + 'text_post_funbox_item_note' => ". Δημοσιεύστε νέα στοιχεία funbox και επεξεργαστείτε τα στοιχεία funbox του ιδιοκτήτη", + 'row_funbox_management' => "Διαχείριση Funbox", + 'text_funbox_management_note' => ". Επεξεργασία, διαγραφή, απαγόρευση στοιχείων funbox κανενός", + 'row_shoutbox_management' => "Διαχείριση Shoutbox", + 'text_shoutbox_management_note' => ". Διαγραφή μηνυμάτων στο shoutbox και helpbox", + 'row_poll_management' => "Διαχείριση Δημοσκόπησης", + 'text_poll_management_note' => ". Προσθέστε νέα, επεξεργασία, διαγράψτε τις δημοσκοπήσεις", + 'row_apply_for_links' => "Αίτηση για Σύνδεσμοι", + 'text_apply_for_links_note' => ". Εφαρμογή για συνδέσμους στην κεντρική σελίδα", + 'row_link_management' => "Διαχείριση Συνδέσμων", + 'text_link_management_note' => ". Προσθέστε νέα, επεξεργασία, διαγράψτε συνδέσμους", + 'row_forum_post_management' => "Διαχείριση Δημοσιεύσεων Φόρουμ", + 'text_forum_post_management_note' => ". Επεξεργασία, διαγραφή, κίνηση, ραβδί, κλειδαριά θέσεις φόρουμ", + 'row_comment_management' => "Διαχείριση Σχολίων", + 'text_comment_management_note' => ". Επεξεργασία, διαγραφή σχολίων torrents, προσφορές", + 'row_forum_management' => "Διαχείριση Φόρουμ", + 'text_forum_management_note' => ". Προσθέστε νέα, επεξεργασία, διαγραφή, μετακίνηση φόρουμ", + 'row_view_userlist' => "Προβολή Λίστας Χρηστών", + 'text_view_userlist_note' => ". Προβολή, λίστα χρηστών αναζήτησης", + 'row_torrent_management' => "Διαχείριση Torrent", + 'text_torrent_management_note' => ". Επεξεργαστείτε torrents, εξαιρώντας τη ρύθμιση torrent κολλώδες ή σε προώθηση ή διαγραφή", + 'row_torrent_sticky' => "Κολλημένο Torrent", + 'text_torrent_sticky_note' => ". Καθορίστε τα torrents κολλώδη", + 'row_torrent_on_promotion' => "Torrent κατά την προώθηση", + 'text_torrent_promotion_note' => ". Ορίστε torrents στην προώθηση", + 'row_ask_for_reseed' => "Ερώτηση για reseed", + 'text_ask_for_reseed_note' => ". Ρωτήστε για reseed όταν torrents είναι νεκρός", + 'row_view_nfo' => "Προβολή NFO", + 'text_view_nfo_note' => ". Προβολή αρχείων NFO", + 'row_view_torrent_structure' => "Προβολή Δομής Torrent", + 'text_view_torrent_structure_note' => ". Δείτε τη δομή των αρχείων torrent", + 'row_send_invite' => "Αποστολή Πρόσκλησης", + 'text_send_invite_note' => ". Στείλτε πρόσκληση συνδρομής σε άλλους", + 'row_view_history' => "Προβολή Ιστορικού", + 'text_view_history_note' => ". Δείτε το σχόλιο του άλλου και το ιστορικό των δημοσιεύσεων", + 'row_view_topten' => "Προβολή Topten", + 'text_view_topten_note' => ". Προβολή Δέκα Κορυφαία", + 'row_view_general_log' => "Προβολή Γενικού Καταγραφής", + 'text_view_general_log_note' => ". Προβολή γενικού αρχείου καταγραφής, εξαιρουμένου του εμπιστευτικού αρχείου καταγραφής", + 'row_view_confidential_log' => "Προβολή Εμπιστευτικού Καταγραφής", + 'text_view_confidential_log_note' => ". Προβολή εμπιστευτικού αρχείου καταγραφής, π.χ. αλλαγές στη ρύθμιση τοποθεσίας", + 'row_view_user_confidential' => "Προβολή Εμπιστευτικού Προφίλ Χρήστη", + 'text_view_user_confidential_note' => ". Προβολή εμπιστευτικού προφίλ του χρήστη, π.χ. διεύθυνση IP, διεύθυνση ηλεκτρονικού ταχυδρομείου", + 'row_view_user_torrent' => "Προβολή Ιστορικού Torrent Του Χρήστη", + 'text_view_user_torrent_note' => ". Προβολή του ιστορικού torrent του χρήστη, π.χ. κατεβασμένα torrents.
    Έγκυρο μόνο όταν η ρύθμιση του χρήστη για το επίπεδο απορρήτου δεν είναι 'ισχυρή'", + 'row_general_profile_management' => "Διαχείριση Γενικών Προφίλ Του Χρήστη", + 'text_general_profile_management_note' => ". Αλλάξτε το προφίλ του χρήστη, εξαιρουμένων κρίσιμων π.χ. email, όνομα χρήστη, φορτωμένο και κατεβασμένο ποσό, μπόνους", + 'row_crucial_profile_management' => "Διαχείριση Κρίσιμων Προφίλ Χρήστη", + 'text_crucial_profile_management_note' => ". Αλλαγή του ζωτικού προφίλ του χρήστη, εξαιρουμένης της δωρεάς (μόνο ", + 'text_can_manage_donation' => " μπορεί να διαχειριστεί δωρεά).", + 'row_upload_subtitle' => "Μεταφόρτωση υπότιτλου", + 'text_upload_subtitle_note' => ". Ανεβάστε υπότιτλους για torrents", + 'row_delete_own_subtitle' => "Διαγραφή υπότιτλων", + 'text_delete_own_subtitle_note' => ". Διαγράψτε υπότιτλους που μεταφορτώθηκαν από τον εαυτό σας", + 'row_subtitle_management' => "Διαχείριση Υποτίτλων", + 'text_subtitle_management' => ". Διαγράψτε οποιονδήποτε υπότιτλο", + 'row_update_external_info' => "Ενημέρωση Εξωτερικών Πληροφοριών", + 'text_update_external_info_note' => ". Ενημέρωση ξεπερασμένης εξωτερικής εισόδου, π.χ. πληροφορίες IMDb", + 'row_view_anonymous' => "Προβολή Ανώνυμων", + 'text_view_anonymous_note' => ". Δείτε ποιος είναι ανώνυμος", + 'row_be_anonymous' => "Να Είναι Ανώνυμος", + 'text_be_anonymous_note' => ". Ανεβάστε torrents, υπότιτλους ανώνυμα", + 'row_add_offer' => "Προσθήκη Προσφοράς", + 'text_add_offer_note' => ". Προσθήκη προσφορών για μεταφόρτωση", + 'row_offer_management' => "Διαχείριση Προσφοράς", + 'text_offer_management_note' => ". Μέτρια, Επεξεργασία, Διαγραφή προσφοράς", + 'row_upload_torrent' => "Μεταφόρτωση Torrent", + 'text_upload_torrent_note' => ". Ανεβάστε torrent στην ενότητα Torrents", + 'row_upload_special_torrent' => "Φόρτωση Ειδικού Torrent", + 'text_upload_special_torrent_note' => ". Ανεβάστε torrent στην ειδική ενότητα", + 'row_view_special_torrent' => 'Προβολή Ειδικού Torrent', + 'text_view_special_torrent_note' => 'Προβολή torrent σε Ειδική ενότητα', + 'row_move_torrent' => "Μετακίνηση Torrent", + 'text_move_torrent_note' => ". Μετακινήστε torrent μεταξύ τμημάτων", + 'row_chronicle_management' => "Διαχείριση Χρονικών", + 'text_chronicle_management_note' => ". Προσθέστε, επεξεργασία, διαγράψτε το χρονοδιάγραμμα.", + 'row_view_invite' => "Προβολή Πρόσκλησης", + 'text_view_invite_note' => ". Δείτε το ιστορικό προσκλήσεων του χρήστη.", + 'row_buy_invites' => "Αγοράστε Προσκλήσεις", + 'text_buy_invites_note' => ". Αγοράστε προσκλήσεις στο κέντρο μπόνους.", + 'row_see_banned_torrents' => "Δείτε Τα Απαγορευμένα Torrents", + 'text_see_banned_torrents_note' => ". Δείτε και κατεβάστε απαγορευμένα torrents.", + 'row_vote_against_offers' => "Ψηφοφορία Κατά Προσφορών", + 'text_vote_against_offers_note' => ". Ψηφίστε κατά των προσφορών.", + 'row_allow_userbar' => "Επίτρεψε Τη Γραμμή Χρήστη", + 'text_allow_userbar_note' => ". Αποκτήστε τη γραμμή χρήστη του.", + 'head_basic_settings' => "Βασικές Ρυθμίσεις", + 'row_site_name' => "Όνομα Ιστοτόπου", + 'text_site_name_note' => "Όνομα Ιστοσελίδας.", + 'row_base_url' => "Βασικό URL", + 'text_it_should_be' => "Θα πρέπει να είναι: ", + 'text_base_url_note' => ". NO καταληκτική κάθετος (/) στο τέλος!", + 'row_announce_url' => "Url Ανακοίνωσης", + 'row_mysql_host' => "Διακομιστής MySQL", + 'text_mysql_host_note' => "Παρακαλώ εισάγετε MySQL host. Εάν η MySQL εκτελείται στον ίδιο κεντρικό υπολογιστή με τον διακομιστή HTTP, εισάγετε 'localhost'. Διαφορετικά, εισάγετε τη διεύθυνση IP του διακομιστή στον οποίο εκτελείται η MySQL.", + 'row_mysql_user' => "Χρήστης MySQL", + 'text_mysql_user_note' => "Παρακαλώ εισάγετε το όνομα χρήστη MySQL σας. Ο προεπιλεγμένος χρήστης είναι 'root'. Ωστόσο, για λόγους ασφαλείας, μπορεί να σκεφτείτε να δημιουργήσετε κάποιον άλλο χρήστη MySQL για αυτόν τον ιστότοπο", + 'row_mysql_password' => "Κωδικός Πρόσβασης MySQL", + 'text_mysql_password_note' => "For security reason, current MySQL password is not shown here. You need to enter your MySQL password every time you change the Basic Settings.", + 'row_mysql_database_name' => "Όνομα Βάσης Δεδομένων MySQL", + 'row_mysql_database_port' => "Θύρα Βάσης Δεδομένων MySQL", + 'text_mysql_database_name_note' => "Παρακαλώ εισάγετε το όνομα της βάσης δεδομένων του ανιχνευτή σας.", + 'text_mysql_database_port_note' => "Παρακαλώ εισάγετε τη θύρα βάσης δεδομένων του ιχνηλάτη σας.", + 'head_code_settings' => "Ρυθμίσεις Κώδικα", + 'row_main_version' => "Κύρια Έκδοση", + 'text_main_version_note' => "Η κύρια έκδοση κώδικα.", + 'row_sub_version' => "Υποέκδοση", + 'text_sub_version_note' => "Η υποέκδοση κώδικα", + 'row_release_date' => "Ημερομηνία κυκλοφορίας", + 'text_release_date_note' => "Η μορφή ώρας είναι YYYY-MM-DD. Ο κωδικός ημερομηνίας κυκλοφόρησε.", + 'row_authorize_to' => "Εξουσιοδότηση για", + 'text_authorize_to_note' => "Η ιστοσελίδα ή τα άτομα που ο κώδικας είναι εξουσιοδοτημένος.", + 'row_authorization_type' => "Τύπος Εξουσιοδότησης", + 'text_free' => "Δωρεάν", + 'text_commercial' => "Εμπορικό", + 'row_web_site' => "Web Site", + 'text_web_site_note' => "Η διεύθυνση URL του ιστότοπου ", + 'text_web_site_note_two' => ".", + 'row_email' => "E-mail", + 'text_email_note_one' => "Η διεύθυνση ηλεκτρονικού ταχυδρομείου του ", + 'text_email_note_two' => ".", + 'row_msn' => "MSN", + 'text_msn_note_one' => "Επικοινωνία με το MSN του ", + 'text_msn_note_two' => ".", + 'row_qq' => "QQ", + 'text_qq_note_one' => "Η επικοινωνία QQ του ", + 'text_qq_note_two' => ".", + 'row_telephone' => "Τηλέφωνο", + 'text_telephone_note_one' => "Επικοινωνία με το τηλέφωνο ", + 'text_telephone_note_two' => ".", + 'head_bonus_settings' => "Ρυθμίσεις Μπόνους", + 'text_bonus_by_seeding' => "Λάβετε μπόνους κάνοντας σπορά", + 'row_donor_gets_double' => "Ο Χορηγός Παίρνει Διπλό", + 'text_donor_gets' => "Ο δότης παίρνει πάντα ", + 'text_times_as_many' => " φορές περισσότερους πόντους μπόνους για το seeding. Προεπιλεγμένο '2'. Ορίστε το '0' για να αντιμετωπίσετε τους δότες ως κοινούς χρήστες.", + 'row_basic_seeding_bonus' => "Μπόνους Βασικού Διαχωρισμού", + 'text_user_would_get' => "Ο χρήστης θα πάρει ", + 'text_bonus_points' => " μπόνους πόντους για κάθε torrent που σπόρους, μέγιστα ", + 'text_torrents_default' => " torrents. Προεπιλογή '1', '7'. Ορίστε πόντους μπόνους σε '0' για να απενεργοποιήσετε τον κανόνα.", + 'row_seeding_formula' => "Τύπος Διαμοιρασμού", + 'text_bonus_formula_one' => "Ο αριθμός των βαθμών κάρμα που κερδίζονται ανά ώρα δίνεται από τον ακόλουθο τύπο", + 'text_where' => "όπου", + 'text_bonus_formula_two' => "A είναι μια ενδιάμεση μεταβλητή
  • Ti είναι το iτου χρόνου torrent (TA), i. . χρόνος που πέρασε από τότε που το torrent φορτώθηκε, σε εβδομάδες", + 'text_bonus_formula_three' => "T0 είναι μια παράμετρος. T0= ", + 'text_bonus_formula_four' => ". Προεπιλογή '4'", + 'text_bonus_formula_five' => "Si είναι το μέγεθος iτου torrent σε GB", + 'text_bonus_formula_six' => "Ni είναι ο αριθμός των τωρινών seeders του ith torrent
  • N0 είναι μια παράμετρος. N0= ", + 'text_bonus_formula_zero_bonus_factor' => "Wi είναι το βάρος iτου torrent. Η προεπιλογή είναι 1, το μηδέν torrent είναι ", + 'text_bonus_formula_seven' => ". Προεπιλογή '7'", + 'text_bonus_formula_eight' => "B είναι ο αριθμός των βαθμών κάρμα που αποκτήθηκαν με σπορά σε μια ώρα", + 'text_bonus_formula_nine' => "B0 είναι μια παράμετρος, η οποία τα πρότυπα για τα μέγιστα bonus points ανά ώρα που ένας χρήστης μπορεί να πάρει με σπορά. B0= ", + 'text_bonus_formula_ten' => ". Προεπιλογή '100'", + 'text_bonus_formula_eleven' => "L είναι μια παράμετρος. L= ", + 'text_bonus_formula_twelve' => ". Προεπιλογή '300'", + 'text_misc_ways_get_bonus' => "Διάφοροι τρόποι για να πάρετε μπόνους", + 'row_uploading_torrent' => "Μεταφόρτωση torrent", + 'text_uploading_torrent_note' => " πόντοι μπόνους για το ανέβασμα ενός νέου torrent. Προεπιλογή '15'.", + 'row_uploading_subtitle' => "Μεταφόρτωση υποτίτλων", + 'text_uploading_subtitle_note' => " πόντοι μπόνους για το ανέβασμα ενός νέου υπότιτλου. Προεπιλογή '5'.", + 'row_starting_topic' => "Αρχικό θέμα", + 'text_starting_topic_note' => " πόντους μπόνους για την έναρξη ενός νέου θέματος στα φόρουμ. Προεπιλογή '2'.", + 'row_making_post' => "Δημιουργία δημοσίευσης", + 'text_making_post_note' => " πόντους μπόνους για να κάνετε μια δημοσίευση στα φόρουμ. Προεπιλογή '1'.", + 'row_adding_comment' => "Προσθήκη σχολίου", + 'text_adding_comment_note' => " bonus points for adding a comment for torrents, offers . Προεπιλογή '1'.", + 'row_voting_on_poll' => "Ψηφοφορία κατά τη δημοσκόπηση", + 'text_voting_on_poll_note' => " πόντους μπόνους για την ψηφοφορία σε μια δημοσκόπηση. Προεπιλογή '1'.", + 'row_voting_on_offer' => "Ψηφοφορία επί της προσφοράς", + 'text_voting_on_offer_note' => " πόντους μπόνους για την ψηφοφορία σε μια προσφορά. Προεπιλογή '1'.", + 'row_voting_on_funbox' => "Ψηφοφορία για funbox", + 'text_voting_on_funbox_note' => " bonus points for vote on a funbox stuff. Προεπιλογή '1'.", + 'row_saying_thanks' => "Λέγοντας ευχαριστίες", + 'text_giver_and_receiver_get' => "Ευχαριστώ δωρητή και δέκτη θα πάρει αντίστοιχα ", + 'text_saying_thanks_and' => " και ", + 'text_saying_thanks_default' => " πόντους μπόνους. Προεπιλογή '0.5', '0'.", + 'row_funbox_stuff_reward' => "Ανταμοιβή Funbox stuff", + 'text_funbox_stuff_reward_note' => " πόντοι μπόνους για την απόσπαση funbox πράγματα που έχουν βαθμολογηθεί με 'αστεία'. Προεπιλογή '5'.", + 'text_things_cost_bonus' => "Πράγματα που κοστίζουν μπόνους", + 'row_one_gb_credit' => "1.0 GB πίστωση μεταφόρτωσης", + 'text_it_costs_user' => "Κοστίζει το χρήστη ", + 'text_one_gb_credit_note' => " πόντοι μπόνους για ανταλλαγή 1.0 GB ανεβάζοντας πίστωση. Προεπιλογή '300'.", + 'row_five_gb_credit' => "5.0 GB πίστωση μεταφόρτωσης", + 'text_five_gb_credit_note' => " πόντοι μπόνους για ανταλλαγή 5.0 GB ανεβάζοντας πίστωση. Προεπιλογή '800'.", + 'row_ten_gb_credit' => "10.0 GB πίστωση μεταφόρτωσης", + 'text_ten_gb_credit_note' => " πόντοι μπόνους για ανταλλαγή 10,0 GB ανεβάζοντας πίστωση. Προεπιλογή '1200'.", + 'row_ratio_limit' => "Όριο αναλογίας", + 'text_user_with_ratio' => "Χρήστης με αναλογία παραπάνω ", + 'text_uploaded_amount_above' => " και μεταφορτώθηκε ποσό πάνω από ", + 'text_ratio_limit_default' => " GB δεν μπορεί να ανταλλάξει για ανέβασμα πίστωσης. Προεπιλογή '6', '50'. Ρυθμίστε την αναλογία '0' για να απενεργοποιήσετε το όριο.", + 'row_buy_an_invite' => "Αγοράστε μια πρόσκληση", + 'text_buy_an_invite_note' => " πόντους μπόνους για να λάβετε μια πρόσκληση. Προεπιλεγμένη αναλογία '1000'.Set προς '0' για να απενεργοποιήσετε την αγορά.", + 'row_custom_title' => "Προσαρμοσμένος τίτλος", + 'text_custom_title_note' => " πόντους μπόνους για να προσαρμόσετε τον τίτλο του. Προεπιλογή '5000'.", + 'row_vip_status' => "Κατάσταση VIP", + 'text_vip_status_note' => " πόντοι μπόνους για να αγοράσετε VIP κατάσταση για ένα μήνα. Προεπιλογή '8000'.", + 'row_allow_giving_bonus_gift' => "Επιτρέψτε την παροχή δώρου μπόνους", + 'text_giving_bonus_gift_note' => "Επιτρέψτε στους χρήστες να δώσουν μπόνους δώρου μεταξύ τους. Προεπιλεγμένο 'ναι'.", + 'head_account_settings' => "Ρυθμίσεις Λογαριασμού", + 'row_never_delete' => "Ποτέ απενεργοποίηση", + 'text_delete_inactive_accounts' => "Απενεργοποίηση Ανενεργών Λογαριασμών Χρήστη", + 'text_never_delete' => " ή παραπάνω δεν θα απενεργοποιούνταν ποτέ. Προεπιλογή ", + 'row_never_delete_if_packed' => "Ποτέ μην απενεργοποιείτε εάν συσκευάσετε", + 'text_never_delete_if_packed' => " ή παραπάνω δεν θα απενεργοποιούνταν ποτέ αν συσκευάζονται. Προκαθορισμένο ", + 'row_delete_packed' => "Απενεργοποίηση συσκευασμένων λογαριασμών", + 'text_delete_packed_note_one' => "Οι συσκευασμένοι λογαριασμοί θα απενεργοποιηθούν εάν οι χρήστες δεν έχουν συνδεθεί για περισσότερο από ", + 'text_delete_packed_note_two' => " ημέρες στη σειρά. Προεπιλεγμένο '400', όρισε το '0' για να απενεργοποιήσεις τον κανόνα.", + 'row_delete_unpacked' => "Απενεργοποίηση αποσυμπιεσμένων λογαριασμών", + 'text_delete_unpacked_note_one' => "Οι αποσυμπιεσμένοι λογαριασμοί θα απενεργοποιηθούν εάν οι χρήστες δεν έχουν συνδεθεί περισσότερο από ", + 'text_delete_unpacked_note_two' => " ημέρες στη σειρά. Προεπιλεγμένο '150', όρισε το '0' για να απενεργοποιήσεις τον κανόνα.", + 'row_delete_no_transfer' => "Απενεργοποίηση λογαριασμών χωρίς δεδομένα μεταφοράς", + 'text_delete_transfer_note_one' => "Λογαριασμοί με μεταφορτωμένο και κατεβασμένο ποσό 0 θα διαγράφονταν εάν οι χρήστες δεν έχουν συνδεθεί για περισσότερο από ", + 'text_delete_transfer_note_two' => " ημέρες στη σειρά, ή οι χρήστες έχουν εγγραφεί για περισσότερο από ", + 'text_delete_transfer_note_three' => " days. Default '60', '0'.
    NOTE: Two rules work seperately. Setting one of them to '0' ONLY disables one rule.", + 'text_user_promotion_demotion' => "Προώθηση και Επίδειξη Χρηστών", + 'row_ban_peasant_one' => "Αποκλεισμός ", + 'row_ban_peasant_two' => "", + 'text_ban_peasant_note_one' => " would be bannedαπαγορευμένος if not promotedπροωθηθεί up within ", + 'text_ban_peasant_note_two' => " ημέρες. Προεπιλεγμένο '30', όρισε το '0' για να το απαγορεύσεις αμέσως.", + 'row_demoted_to_peasant_one' => "Demote σε ", + 'row_demoted_to_peasant_two' => "", + 'text_demoted_peasant_note_one' => "Οι χρήστες θα υποβιβαστούν σε ", + 'text_demoted_peasant_note_two' => " σε οποιαδήποτε από τις ακόλουθες προϋποθέσεις: ", + 'text_downloaded_amount_larger_than' => "Κατεβασμένο ποσό μεγαλύτερο από ", + 'text_and_ratio_below' => " GB και αναλογία κάτω ", + 'text_demote_peasant_default_one' => ". Προεπιλογή '50', '0.4'.", + 'text_demote_peasant_default_two' => ". Προεπιλογή '100', '0.5'.", + 'text_demote_peasant_default_three' => ". Προεπιλογή '200', '0. 6'.", + 'text_demote_peasant_default_four' => ". Προεπιλογή '400', '0. 7'.", + 'text_demote_peasant_default_five' => ". Προεπιλογή '800', '0.8'.", + 'text_demote_peasant_note' => "NOTE: DO NOT change to the ascendant order of downloaded amounts. Set downloaded amount to '0' to disable relevant rule.", + 'row_promote_to_one' => "Προώθηση σε ", + 'row_promote_to_two' => "", + 'text_member_longer_than' => "Χρήστες, οι οποίοι ήταν μέλος περισσότερο από ", + 'text_downloaded_more_than' => ", και κατέβασαν περισσότερα από ", + 'text_with_ratio_above' => "GB, με αναλογία άνω ", + 'text_seed_points_more_than' => 'εβδομάδα, σημεία σπόρου πάνω από', + 'text_be_promoted_to' => ", θα προωθούνταν σε ", + 'text_promote_to_default_one' => ". Προεπιλογή ", + 'text_promote_to_default_two' => ". Προεπιλογή ", + 'text_demote_with_ratio_below' => "Ωστόσο, οι χρήστες θα υποβιβαστούν εάν η αναλογία του πέσει κάτω από ", + 'head_torrent_settings' => "Ρυθμίσεις Torrent", + 'row_promotion_rules' => "Κανόνες Προώθησης", + 'text_promotion_rules_note' => "Ενεργοποιήστε μερικούς αυτόματους κανόνες προώθησης. Ugly code αυτή τη στιγμή. Χρειάζεστε αλλαγή αργότερα.", + 'row_random_promotion' => "Τυχαία Προώθηση", + 'text_random_promotion_note_one' => "Torrents προωθείται τυχαία από το σύστημα κατά τη μεταφόρτωση.", + 'text_halfleech_chance_becoming' => "% πιθανότητα να γίνει 50% Δέρμα. Προεπιλογή '5'.", + 'text_free_chance_becoming' => "% πιθανότητα να γίνει Free Leech. Προεπιλογή '2'.", + 'text_twoup_chance_becoming' => "% πιθανότητα να γίνει 2X Up. Προεπιλογή '2'.", + 'text_freetwoup_chance_becoming' => "% πιθανότητα να γίνει Free Leech και 2X up. Προεπιλογή '1'.", + 'text_twouphalfleech_chance_becoming' => "% πιθανότητα να γίνει 2x πάνω και 50% κάτω. Προεπιλογή '0'.", + 'text_random_promotion_note_two' => "Ορίστε τιμές σε '0' για να απενεργοποιήσετε τους κανόνες.", + 'row_large_torrent_promotion' => "Μεγάλη Προώθηση Torrent", + 'text_torrent_larger_than' => "Torrents μεγαλύτερο από ", + 'text_gb_promoted_to' => " Το GB θα προωθηθεί αυτόματα σε ", + 'text_by_system_upon_uploading' => " με σύστημα κατά τη μεταφόρτωση. ", + 'text_large_torrent_promotion_note' => "Προεπιλογή '20', 'free'. Ορίστε το μέγεθος του torrent σε '0' για να απενεργοποιήσετε τον κανόνα.", + 'row_promotion_timeout' => "Χρονικό Όριο Προώθησης", + 'text_promotion_timeout_note_one' => "Η προώθηση torrents θα λήξει μετά από κάποιο χρονικό διάστημα.", + 'text_halfleech_will_become' => "50% Leech θα γίνει ", + 'text_after' => " μετά ", + 'text_halfleech_timeout_default' => " ημέρες. Προκαθορισμένο 'κανονικό', '150'.", + 'text_free_will_become' => "Free Leech θα γίνει ", + 'text_free_timeout_default' => " ημέρες. Προεπιλεγμένο 'κανονικό', '60'.", + 'text_twoup_will_become' => "2X Up θα γίνει ", + 'text_twoup_timeout_default' => " ημέρες. Προεπιλεγμένο 'κανονικό', '60'.", + 'text_freetwoup_will_become' => "Free Leech and 2X up will become ", + 'text_freetwoup_timeout_default' => " ημέρες. Προεπιλεγμένο 'κανονικό', '30'.", + 'text_halfleechtwoup_will_become' => "50% Leech και 2X επάνω θα γίνει ", + 'text_halfleechtwoup_timeout_default' => " ημέρες. Προεπιλεγμένο 'κανονικό', '30'.", + 'text_normal_will_become' => "Κανονική θα γίνει ", + 'text_normal_timeout_default' => " ημέρες. Προεπιλεγμένα 'κανονικά', '0'.", + 'text_promotion_timeout_note_two' => "Ορίστε ημέρες σε '0' για να κρατήσετε την προώθηση για πάντα.", + 'row_auto_pick_hot' => "Αυτόματη Επιλογή Καυτού", + 'text_torrents_uploaded_within' => "Torrents μεταφορτώθηκαν εντός ", + 'text_days_with_more_than' => " ημέρες με περισσότερο από ", + 'text_be_picked_as_hot' => " Οι σπόροι θα επιλέγονται αυτόματα ως Hot.", + 'text_auto_pick_hot_default' => " Προεπιλογή '7', '10'. Ορίστε ημέρες σε '0' για να το απενεργοποιήσετε.", + 'row_uploader_get_double' => "Ο Αποστολέας Διπλασιάζει", + 'text_torrent_uploader_gets' => "Ο αποστολέας torrent παίρνει πάντα ", + 'text_times_uploading_credit' => " φορές όσο το ανέβασμα πίστωσης. ", + 'text_uploader_get_double_default' => "Προεπιλεγμένο '1'. Ρυθμίστε το '1' για να επεξεργαστείτε κανονικά το torrent uploader.", + 'row_delete_dead_torrents' => "Διαγραφή νεκρών torrent", + 'text_torrents_being_dead_for' => "Torrents που έχουν πεθάνει για ", + 'text_days_be_deleted' => " ημέρες σε μια σειρά θα διαγραφούν αυτόματα. Προκαθορισμένο '0'. Ορίστε το '0' απενεργοποιήστε τον κανόνα.", + 'row_delete_dead_torrents_note' => "WARNING: Μόλις διαγραφεί, τα torrent δεν είναι ανακτήσιμα. Θυμηθείτε να απενεργοποιήσετε αυτόν τον κανόνα όταν η ιστοσελίδα σας είναι κάτω για μεγάλο χρονικό διάστημα.", + 'head_main_settings' => "Κύριες Ρυθμίσεις", + 'row_site_online' => "Site online", + 'text_site_online_note' => "Default 'yes'. Want to turn off your site while performing updates or other types of maintenance? Please Note: Administrators will still be able to see the site.", + 'row_enable_invite_system' => "Ενεργοποίηση Συστήματος Πρόσκλησης", + 'text_invite_system_note' => "Προεπιλογή 'ναι'. Να επιτρέπονται εγγραφές μέσω του συστήματος πρόσκλησης.", + 'row_initial_uploading_amount' => "Ποσό Αρχικής Αποστολής", + 'text_initial_uploading_amount_note' => "Πόσες πιστώσεις ανεβάσματος (σε Byte, δηλαδή 1073741824 = 1GB) θα πρέπει κάθε χρήστης να δοθεί κατά την εγγραφή? Προεπιλογή '0'.", + 'row_initial_invites' => "Αρχικός αριθμός προσκλήσεων", + 'text_initial_invites_note' => "Πόσες προσκλήσεις πρέπει να δοθεί κάθε χρήστης κατά την εγγραφή? Προεπιλογή '0'.", + 'row_invite_timeout' => "Χρονικό Όριο Πρόσκλησης", + 'text_invite_timeout_note' => "Σε ημέρες. Διαγράψτε τον κωδικό πρόσκλησης μετά από X ημέρες που δεν ανταποκρίθηκαν στο αίτημα πρόσκλησης. Προεπιλεγμένο '7'.", + 'row_enable_registration_system' => "Ενεργοποίηση Συστήματος Εγγραφής", + 'row_allow_registrations' => "Επιτρέψτε τις ανοιχτές εγγραφές. Προκαθορισμένο 'ναι'.", + 'row_verification_type' => "Τύπος επαλήθευσης", + 'text_email' => "E-mail", + 'text_admin' => "Διαχειριστής", + 'text_automatically' => "Αυτόματα", + 'text_verification_type_note' => "EMAIL: Αποστολή email επιβεβαίωσης. ADMIN: Χειροκίνητη ενεργοποίηση. AUTOMATIC: Ενεργοποίηση χρήστη μετά την εγγραφή.", + 'row_enable_wait_system' => "Ενεργοποίηση Συστήματος Αναμονής", + 'text_wait_system_note' => "Ενεργοποίηση ή απενεργοποίηση συστήματος αναμονής (βλ. FAQ).", + 'row_enable_max_slots_system' => "Ενεργοποίηση Συστήματος Max SLots", + 'text_max_slots_system_note' => "Προκαθορισμένο 'Όχι'. Ενεργοποιήστε ή απενεργοποιήστε τις μέγιστες ταυτόχρονες λήψεις (Μέγιστες Υποδοχές AKA) (δείτε FAQ).", + 'row_show_polls' => "Εμφάνιση Δημοσκοπήσεων", + 'text_show_polls_note' => "Προεπιλογή 'ναι'. Εμφάνιση του συστήματος POLL στην κύρια σελίδα.", + 'row_show_stats' => "Εμφάνιση Στατιστικών", + 'text_show_stats_note' => "Προεπιλογή 'ναι'. Εμφάνιση του συστήματος STATS στην κύρια σελίδα.", + 'row_show_last_posts' => "Εμφάνιση Τελευταίων Αναρτήσεων του Φόρουμ", + 'text_show_last_posts_note' => "Προεπιλογή 'όχι'. Εμφάνιση Τελευταίων αναρτήσεων x Φόρουμ στην κύρια σελίδα.", + 'row_show_last_torrents' => "Εμφάνιση τελευταίων x Torrents", + 'text_show_last_torrents_note' => "Προεπιλεγμένο 'όχι'. Εμφάνιση τελευταίων x Torrents στην κύρια σελίδα.", + 'row_show_server_load' => "Εμφάνιση Φορτίου Διακομιστή", + 'text_show_server_load_note' => "Προεπιλογή 'ναι'. Εμφάνιση φόρτωσης διακομιστή στην κύρια σελίδα.", + 'row_show_forum_stats' => "Εμφάνιση στατιστικών φόρουμ", + 'text_show_forum_stats_note' => "Προεπιλογή 'ναι'. Εμφάνιση στατιστικών φόρουμ στη σελίδα του φόρουμ.", + 'row_show_hot' => "Εμφάνιση Καυτού", + 'text_show_hot_note' => "Προεπιλεγμένο 'ναι'. Εμφάνιση καυτών πόρων στην κύρια σελίδα. Οι καυτοί πόροι επιλέγονται αυτόματα από το σύστημα ή χειροκίνητα από τα μέλη του προσωπικού.", + 'row_show_classic' => "Εμφάνιση Κλασικού", + 'text_show_classic_note' => "Προεπιλεγμένο 'όχι'. Εμφάνιση κλασικών πόρων στην κύρια σελίδα. Μόνο οι καθορισμένοι ή παραπάνω συντονιστές μπορούν να επιλέξουν κλασικούς πόρους.", + 'row_enable_imdb_system' => "Ενεργοποίηση συστήματος IMDb", + 'text_imdb_system_note' => "Προεπιλογή 'ναι'. Ρύθμιση πληροφοριών IMDb σε όλο το σύστημα.", + 'row_enable_pt_gen_system' => 'Ενεργοποίηση συστήματος PT-Gen', + 'text_enable_pt_gen_system_note' => "Προεπιλεγμένη ρύθμιση πληροφοριών PT-Gen σε ολόκληρο το σύστημα", + 'row_pt_gen_api_point' => "PT-Gen api point", + 'text_pt_gen_api_point_note' => "Προεπιλογή '', όταν απαιτείται, αναφορά σε Documatation για να χτίσετε τον εαυτό σας", + 'row_enable_school_system' => "Ενεργοποίηση σχολικού συστήματος", + 'text_school_system_note' => "Default 'no'. DO NOT enable this unless you know what you are doing!", + 'row_restrict_email_domain' => "Περιορισμός Τομέα Email", + 'text_restrict_email_domain_note' => "Προεπιλεγμένο 'όχι'. Ορίστε το σε 'ναι' για να επιτρέψετε μόνο σε ορισμένους τομείς email να εγγραφούν. Δείτε εδώ.", + 'row_show_shoutbox' => "Εμφάνιση Shoutbox", + 'text_show_shoutbox_note' => "Προεπιλογή 'ναι'. Εμφάνιση shoutbox στην κύρια σελίδα.", + 'row_show_funbox' => "Show Funbox", + 'text_show_funbox_note' => "Προεπιλεγμένο 'όχι'. Εμφάνιση funbox στην κύρια σελίδα.", + 'row_enable_offer_section' => "Ενεργοποίηση Τομέα Προσφοράς", + 'text_offer_section_note' => "Προεπιλογή 'ναι'. Ενεργοποιήστε ή απενεργοποιήστε την ενότητα προσφορά.", + 'row_show_donation' => "Ενεργοποίηση Δωρεάς", + 'text_show_donation_note' => "Εμφάνιση δωρεάς και δωρεά πάνω δέκα.", + 'row_show_special_section' => "Ενεργοποίηση Ειδικής Ενότητας", + 'text_show_special_section_note' => "Default 'no'. DO NOT enable this unless you know what you are doing!", + 'row_weekend_free_uploading' => "Δωρεάν αποστολή το Σαββατοκύριακο", + 'text_weekend_free_uploading_note' => "Προεπιλεγμένο 'όχι'. Ρυθμίστε το σε 'ναι' για να επιτρέψετε σε όλους τους χρήστες να ανεβάζουν torrents το Σαββατοκύριακο (από Σάββατο 12:00 έως Κυριακή 23:59).", + 'row_enable_helpbox' => "Ενεργοποίηση Helpbox", + 'text_helpbox_note' => "Προεπιλεγμένο 'όχι'. Όρισε το 'όχι' για να απαγορεύσεις στους επισκέπτες να φωνάζουν μηνύματα.", + 'row_enable_bitbucket' => "Ενεργοποίηση Bitbucket", + 'text_bitbucket_note' => "Προεπιλεγμένο 'ναι'. Θέστε το σε 'όχι' για να απαγορεύσετε στους χρήστες να ανεβάσουν avatars στον ανιχνευτή.", + 'row_enable_small_description' => "Ενεργοποίηση Μικρής Απορόφησης", + 'text_small_description_note' => "Προεπιλογή 'ναι'. Εμφανίζεται κάτω από τον τίτλο του torrent στη σελίδα Torrents.", + 'row_ptshow_naming_style' => "PTShow στυλ ονομασίας", + 'text_ptshow_naming_style_note' => "Default 'no'. In format of [MM.DD.YY][Original Name][Chinese Name]. DO NOT enable this unless you know what you are doing!", + 'row_use_external_forum' => "Χρήση εξωτερικού φόρουμ", + 'text_use_external_forum_note' => "Προεπιλεγμένο 'όχι'. Ορίστε το 'ναι' για να χρησιμοποιήσετε εξωτερικό φόρουμ αντί για εσωτερικό.", + 'row_external_forum_url' => "Εξωτερική διεύθυνση URL φόρουμ", + 'text_external_forum_url_note' => "Θα πρέπει να είναι όπως http://www.c98.org", + 'row_torrents_category_mode' => "Τύπος κατηγορίας τμήματος Torrents", + 'text_torrents_category_mode_note' => "Αυτό αλλάζει τη λειτουργία κατηγορίας στη σελίδα Torrents.", + 'row_special_category_mode' => "Τύπος κατηγορίας ειδικής ενότητας", + 'text_special_category_mode_note' => "Αυτό αλλάζει τη λειτουργία κατηγορίας στην ειδική ενότητα.", + 'row_default_site_language' => "Προεπιλεγμένη Γλώσσα Ιστοσελίδας", + 'text_default_site_language_note' => "Αυτό αλλάζει την προεπιλεγμένη γλώσσα στη σελίδα σύνδεσης.", + 'row_default_stylesheet' => "Default Stylesheet", + 'text_default_stylesheet_note' => "Πρόσφατα εγγεγραμμένοι χρήστες θα χρησιμοποιούν αυτό το stylesheet.", + 'row_max_torrent_size' => "Μέγιστο Μέγεθος Torrent", + 'text_max_torrent_size_note' => " Σε bytes. Προεπιλογή 1048576 (δηλ. 1 MB)", + 'row_announce_interval' => "Διάστημα Ανακοίνωσης", + 'text_announce_interval_note_one' => "Σε δευτερόλεπτα. Το διάστημα ανακοίνωσης ο ιχνηλάτης ζητά από τους πελάτες BitTorrent να ενημερώσουν τις πληροφορίες. Ωστόσο, στην πράξη το διάστημα ανακοίνωσης μπορεί να είναι διαφορετικό δεδομένου ότι οι υπολογιστές-πελάτες BitTorrent θα μπορούσαν να αγνοήσουν αυτό το μήνυμα ή οι χρήστες μπορούν να επιλέξουν να συνδέσουν τον ιχνηλάτη χειροκίνητα.", + 'text_announce_default' => "Προεπιλογή: ", + 'text_announce_default_default' => "Προεπιλογή '1800', π.χ. 30 λεπτά", + 'text_for_torrents_older_than' => "Για torrent παλαιότερα από ", + 'text_days' => " ημέρες: ", + 'text_announce_two_default' => "Προεπιλογή '7', '2700' (δηλαδή 45 λεπτά). Ορίστε ημέρες σε '0' για να απενεργοποιήσετε τον κανόνα.", + 'text_announce_three_default' => "Προεπιλογή '30', '3600' (δηλαδή 60 λεπτά). Ορίστε ημέρες σε '0' για να απενεργοποιήσετε τον κανόνα.", + 'text_announce_interval_note_two' => "NOTE: Do NOT change the ascendant order of the times!
    Shorter interval means more accurate of peers' information-updating and HEAVIER tracker load.", + 'row_cleanup_interval' => "Διάστημα Αυτόματου Καθαρισμού", + 'text_cleanup_interval_note_one' => "Εκκαθάριση (προώθηση χρηστών, υποβολή, προσθήκη επιδόματος σποράς, κλπ.) κάθε XXX δευτερόλεπτα.", + 'text_priority_one' => "Προτεραιότητα 1: ", + 'text_priority_one_note' => "Ενημέρωση κατάστασης υπολογιστή, Υπολογίστε το μπόνους σποράς. Προεπιλογή '3600', δηλαδή 60 λεπτά.", + 'text_priority_two' => "Προτεραιότητα 2: ", + 'text_priority_two_note' => "Ορατότητα ενημέρωσης torrents. Προεπιλεγμένο '5400', δηλαδή 90 λεπτά.", + 'text_priority_three' => "Προτεραιότητα 3: ", + 'text_priority_three_note' => "Ενημέρωση αριθμού seeders, leechers, σχόλια για torrent; Ενημέρωση ανάρτησης / θέματος; Διαγραφή προσφορών που είναι χρονικές; Λήξη προώθησης torrent; Αυτόματη επιλογή θερμών torrents. Προεπιλογή '7200', δηλαδή 2 ώρες.", + 'text_priority_four' => "Προτεραιότητα 4: ", + 'text_priority_four_note' => "Διαγράψτε ανεπιβεβαίωτους λογαριασμούς, παλιές προσπάθειες σύνδεσης, κωδικοί πρόσκλησης και κώδικες καθεστώτος; Καθαρίστε τους λογαριασμούς χρηστών (διαγράψτε τους ανενεργούς, κάντε προώθηση του λογαριασμού και την υποβολή, απαγόρευση κλπ. ; Post μεταφορτωμένη εικόνα, Ενημέρωση συνολικού χρόνου σποράς και επαναχρησιμοποίησης των χρηστών. Προεπιλογή '86400', δηλαδή 24 ώρες.", + 'text_priority_five' => "Προτεραιότητα 5: ", + 'text_priority_five_note' => "Διαγραφή torrents που δεν υπάρχουν πια. Κλείδωμα πολύ παλιών θεμάτων φόρουμ. Διαγραφή πολύ παλιών στοιχείων αναφοράς. Προεπιλογή '1296000', δηλαδή 15 ημέρες.", + 'text_cleanup_interval_note_two' => "NOTE: Do NOT change the ascendant order of the times!", + 'row_signup_timeout' => "Χρονικό Όριο Εγγραφής", + 'text_signup_timeout_note' => "Σε δευτερόλεπτα. Διαγράψτε ανεπιβεβαίωτους χρήστες μετά από XXX δευτερόλεπτα. Προεπιλογή '259200', δηλαδή 3 ημέρες.", + 'row_min_offer_votes' => "Ελάχ. Ψήφοι Προσφοράς", + 'text_min_offer_votes_note' => "Η προσφορά εγκρίνεται όταν η υποστήριξη των ψήφων είναι XXX περισσότερο από την αντίρρηση των ψήφων. Προεπιλογή '15'.", + 'row_offer_vote_timeout' => "Χρονικό Όριο Προσφοράς Ψήφου", + 'text_offer_vote_timeout_note' => "Σε δευτερόλεπτα. Διαγράψτε προσφορές αν δεν ψηφίζονται μετά από XXX δευτερόλεπτα. Προεπιλογή '259200', δηλαδή 72 ώρες. Ορίστε το σε '0' για να απενεργοποιήσετε το χρονικό όριο.", + 'row_offer_upload_timeout' => "Χρονικό Όριο Αποστολής Προσφοράς", + 'text_offer_upload_timeout_note' => "Σε δευτερόλεπτα. Διαγράψτε προσφορές, αν δεν μεταφορτώνονται μετά την ψηφοφορία για XXX δευτερόλεπτα. Προεπιλογή '86400', δηλαδή 24 ώρες. Ορίστε το '0' για να απενεργοποιήσετε το χρονικό όριο.", + 'row_max_subtitle_size' => "Μέγιστο Μέγεθος Υποτίτλων", + 'text_max_subtitle_size_note' => "Σε bytes. Μέγιστο μέγεθος υποτίτλων επιτρέπεται να μεταφορτωθεί. Προκαθορισμένο 3145728, π.χ. 3 MB. Ορίστε το '0' για να απενεργοποιήσετε το όριο.", + 'row_posts_per_page' => "Προεπιλεγμένες δημοσιεύσεις ανά σελίδα", + 'text_posts_per_page_note' => "Αριθμός αναρτήσεων ανά σελίδα που εμφανίζονται στο θέμα ενός φόρουμ. Προεπιλεγμένο '10'.
    Σημειώστε ότι η προσωπική ρύθμιση του χρήστη θα παρακάμψει αυτή την επιλογή", + 'row_topics_per_page' => "Προεπιλεγμένα θέματα ανά σελίδα", + 'text_topics_per_page_note' => "Αριθμός θεμάτων ανά σελίδα που εμφανίζονται σε ένα φόρουμ. Προεπιλογή '20'.
    Σημειώστε ότι η προσωπική ρύθμιση του χρήστη θα παρακάμψει αυτό", + 'row_number_of_news' => "Αριθμός νέων", + 'text_number_of_news_note' => "Εμφάνιση XXX κομματιών πρόσφατων ειδήσεων στην κύρια σελίδα. Προεπιλογή '3'.", + 'row_torrent_dead_time' => "Μέγιστος Χρόνος Νεκράς Torrent", + 'text_torrent_dead_time_note' => "Σε δευτερόλεπτα. Mark torrent ως νεκρός μετά δεν υπάρχει σπόρος για XXX δευτερόλεπτα. Προεπιλογή '21600', δηλαδή 6 ώρες.", + 'row_max_users' => "Μέγιστος Αριθμός Χρηστών", + 'text_max_users' => "Κάθε φορά που συμπληρώνεται αυτό το όριο, η εγγραφή τόσο δωρεάν όσο και μέσω πρόσκλησης είναι απενεργοποιημένη.", + 'row_https_announce_url' => "Διεύθυνση Url Ανακοίνωσης HTTPS", + 'text_https_announce_url_note' => "Αφήστε το κενό αν χρησιμοποιείτε το ίδιο URL τόσο για HTTP όσο και για HTTPS. Θα πρέπει να είναι: ", + 'row_site_accountant_userid' => "Id Χρήστη Λογιστή Ιστοσελίδας", + 'text_site_accountant_userid_note' => "Σε αριθμούς, π.χ. '1'. Το ID του χρήστη στον οποίο οι δωρητές θα πρέπει να στέλνουν μήνυμα δωρεάς.", + 'row_alipay_account' => "Alipay Account", + 'text_alipal_account_note' => "Ο λογαριασμός Alipay που χρησιμοποιείτε για να λάβετε δωρεά, π.χ. 'yourname@gmail.com'. Αφήστε το κενό αν δεν έχετε λογαριασμό Alipay.", + 'row_paypal_account' => "Λογαριασμός PayPal", + 'text_paypal_account_note' => "Ο λογαριασμός PayPal που χρησιμοποιείτε για να λάβετε δωρεά, π.χ. 'yourname@gmail.com'. Αφήστε το κενό αν δεν έχετε λογαριασμό PayPal.", + 'row_site_email' => "Email Ιστοσελίδας", + 'text_site_email_note' => "Διεύθυνση ηλεκτρονικού ταχυδρομείου ιστοσελίδας", + 'row_report_email' => "Αναφορά Email", + 'text_report_email_note' => "Αναφορά διεύθυνσης email", + 'row_site_slogan' => "Ιστοσελίδα Σλόγκαν", + 'text_site_slogan_note' => "Ιστοσελίδα Σλόγκαν", + 'row_icp_license' => "Άδεια Icp", + 'text_icp_license_note' => "Αυτό είναι ένα καθεστώς αδειοδότησης για Κινεζικές ιστοσελίδες που χειρίζονται. Αφήστε το κενό αν δεν έχετε.", + 'row_torrent_directory' => "Κατάλογος Torrent", + 'text_torrent_directory' => "Προεπιλογή 'torrents'. NO καταπίνοντας κάθετο (/) στο τέλος!", + 'row_bitbucket_directory' => "Κατάλογος Bitbucket", + 'text_bitbucket_directory_note' => "Προεπιλεγμένο 'bitbucket'. NO καταπίνοντας κάθετο (/) στο τέλος!", + 'row_cache_directory' => "Κατάλογος Προσωρινής Αποθήκευσης", + 'text_cache_directory_note' => "Προεπιλεγμένη 'cache'. NO καταληκτική κάθετος (/) στο τέλος!", + 'row_torrent_name_prefix' => "Πρόθεμα Ονόματος Torrent", + 'text_torrent_name_prefix_note' => "Add prefix to the name of torrent file downloaded from this site. Default '[Nexus]'. No trailing dot (.) at the end!", + 'row_peering_time_calculation' => "Χρόνος Υπολογισμού Έναρξης Που Διαχωρίζει Τη Λέβητα", + 'text_peering_time_calculation_note' => "Απλά αφήστε το κενό. Είναι ρυθμισμένο για λόγους κληρονομιάς.", + 'row_new_subtitle_id' => "Νέο Id Υπότιτλου", + 'text_new_subtitle_id_note' => "Απλά κρατήστε το '0'. Είναι ρυθμισμένο για λόγους κληρονομιάς.", + 'head_website_settings' => "Ρυθμίσεις Ιστοσελίδας", + 'row_basic_settings' => "Βασικές Ρυθμίσεις", + 'submit_basic_settings' => "Βασικές Ρυθμίσεις", + 'text_basic_settings_note' => "Εγκαταστήστε τα πιο βασικά πράγματα, το όνομα της ιστοσελίδας.", + 'row_main_settings' => "Κύριες Ρυθμίσεις", + 'submit_main_settings' => "Κύριες Ρυθμίσεις", + 'text_main_settings_note' => "Εγκαταστήστε διάφορα πράγματα σχετικά με το site σας.", + 'row_smtp_settings' => "Ρυθμίσεις SMTP", + 'submit_smtp_settings' => "Ρυθμίσεις SMTP", + 'text_smtp_settings_note' => "Ρύθμιση διακομιστή email για SMTP.", + 'row_security_settings' => "Ρυθμίσεις Ασφαλείας", + 'submit_security_settings' => "Ρυθμίσεις Ασφαλείας", + 'text_security_settings_note' => "Ασφαλίστε τον ανιχνευτή σας.", + 'row_authority_settings' => "Ρυθμίσεις Αρχής", + 'submit_authority_settings' => "Ρυθμίσεις Αρχής", + 'text_authority_settings_note' => "Ελέγξτε τι μπορούν να κάνουν οι χρήστες κάθε κλάσης.", + 'row_tweak_settings' => "Ρυθμίσεις Tweak", + 'submit_tweak_settings' => "Ρυθμίσεις Tweak", + 'text_tweak_settings_note' => "TWEAK ιχνηλάτη σας.", + 'row_bonus_settings' => "Ρυθμίσεις Μπόνους", + 'submit_bonus_settings' => "Ρυθμίσεις Μπόνους", + 'text_bonus_settings_note' => "Ρυθμίστε τον τρόπο λήψης και χρήσης του μπόνους.", + 'row_account_settings' => "Ρυθμίσεις Λογαριασμού", + 'submit_account_settings' => "Ρυθμίσεις Λογαριασμού", + 'text_account_settings_settings' => "Ρυθμίσετε τις παραμέτρους όταν οι λογαριασμοί χρήστη προωθούνται, υποβιβάζονται ή διαγράφονται.", + 'row_torrents_settings' => "Ρυθμίσεις Torrent", + 'submit_torrents_settings' => "Ρυθμίσεις Torrent", + 'text_torrents_settings_note' => "Ρύθμιση προβολής torrent, επιλογής, κλπ.", + 'row_bots_settings' => "Ρυθμίσεις Bots", + 'submit_bots_settings' => "Ρυθμίσεις Bots", + 'text_bots_settings_note' => "Configure Bots. DO NOT touch this unless you know what you are doing!", + 'row_code_settings' => "Ρυθμίσεις Κώδικα", + 'submit_code_settings' => "Ρυθμίσεις Κώδικα", + 'text_code_settings_note' => "Configure Code Version. DO NOT touch this unless you know what you are doing.", + 'text_smtp_default' => "Προεπιλογή (Χρήση προεπιλεγμένης λειτουργίας PHP Mail)", + 'text_smtp_advanced' => "Προηγμένη εφαρμογή (Χρησιμοποιήστε την προεπιλεγμένη λειτουργία PHP Mail με κεφαλίδες EXTRA. Αυτό βοηθά στην αποφυγή φίλτρων spam)", + 'text_smtp_external' => "Εξωτερικά (Χρήση εξωτερικού SMTP διακομιστή)", + 'text_setting_for_advanced_type' => "Ρυθμίσεις για προχωρημένους τύπο", + 'row_smtp_host' => "Διακομιστής SMTP", + 'text_smtp_host_note' => "Default: 'localhost'", + 'row_smtp_port' => "Θύρα SMTP", + 'text_smtp_port_note' => "Προεπιλογή: 25", + 'row_smtp_sendmail_from' => "SMTP sendmail από", + 'text_smtp_sendmail_from_note' => "Προεπιλογή: ", + 'row_smtp_sendmail_path' => "Διαδρομή Sendmail", + 'text_smtp_sendmail_path_note' => "Παρακαλώ ρυθμίστε το sendmail_path σας με την επεξεργασία php.ini", + 'text_setting_for_external_type' => "Ρυθμίσεις για Εξωτερικό τύπο", + 'row_outgoing_mail_address' => "Διεύθυνση εξερχόμενης αλληλογραφίας (SMTP)", + 'row_outgoing_mail_port' => "Θύρα εξερχόμενης αλληλογραφίας (SMTP)", + 'row_outgoing_mail_encryption' => "Κρυπτογράφηση εξερχόμενων μηνυμάτων (SMTP)", + 'text_outgoing_mail_address_note' => "υπόδειξη: smtp.yourisp.com", + 'text_outgoing_mail_port_note' => "υπόδειξη: 25", + 'row_smtp_account_name' => "Όνομα Λογαριασμού", + 'text_smtp_account_name_note' => "hint: yourname@yourisp.com", + 'row_smtp_account_password' => "Κωδικός Πρόσβασης Λογαριασμού", + 'text_smtp_account_password_note' => "hint: your password goes here", + 'text_mail_test_note' => "Πώς μπορώ να δοκιμάσω php mail? Είναι απλό εύκολο: Κάντε κλικ ", + 'text_here' => "Εδώ", + 'std_error' => "Σφάλμα", + 'std_mysql_connect_error' => "Δεν είναι δυνατή η σύνδεση με MySQL. Παρακαλώ ελέγξτε τη ρύθμιση σας. ", + 'row_enable_location' => "Ενεργοποίηση τοποθεσίας", + 'text_enable_location_note' => "Προεπιλογή 'όχι'. Εμφάνιση γεωγραφικής θέσης του χρήστη με βάση την IP του. Θα πρέπει να κρατήσετε αυτό το απενεργοποιημένο εκτός αν έχετε εισάγει κάποια βάση δεδομένων IP.", + 'row_torrents_per_page' => "Torrents ανά σελίδα", + 'text_torrents_per_page_note' => "Αριθμός torrents ανά σελίδα που εμφανίζεται στη σελίδα torrents. Προεπιλογή '50'.
    Σημειώστε ότι η προσωπική ρύθμιση του χρήστη θα παρακάμψει αυτό", + 'row_title_keywords' => "Τίτλος Λέξεις-κλειδιά", + 'text_title_keywords_note' => "Εμφάνιση στον τίτλο εγγράφου. Αυτές οι λέξεις-κλειδιά βοηθούν τις μηχανές αναζήτησης να βρουν τον ιστότοπό σας. Διαχωρίστε αρκετές λέξεις-κλειδιά με το 'μ', π. χ. . 'BitTorrentśDownloadśMovie'. Αφήστε το κενό αν θέλετε να διατηρήσετε έναν καθαρό τίτλο.", + 'row_meta_keywords' => "Meta Keywords", + 'text_meta_keywords_note' => "Εμφάνιση στην κεφαλή εγγράφου. Καθορίζει λέξεις-κλειδιά για την περιγραφή του ιστοτόπου σας. Διαχωρίστε αρκετές λέξεις-κλειδιά με ',', π.χ. 'BitTorrent, Λήψη, Ταινία'.", + 'row_meta_description' => "Meta Περιγραφή", + 'text_meta_description_note' => "Εμφάνιση στην κεφαλή εγγράφου. Καθορίζει μια περιγραφή του ιστοτόπου σας.", + 'row_bonus_gift_tax' => "Φόρος δώρου μπόνους", + 'text_system_charges' => "Το σύστημα χρεώνει δέκτη μπόνους ", + 'text_bonus_points_plus' => " πόντοι μπόνους + ", + 'text_bonus_gift_tax_note' => "% του ποσού που μεταβιβάστηκε ως φόρος. Για παράδειγμα, εάν οι τιμές έχουν οριστεί σε '5', '10', ο δέκτης παίρνει μόνο 85 bonus πόντους όταν ο δότης στέλνει 100 bonus πόντους. Προεπιλογή '5', '10'.
    ΣΗΜΕΙΩΣΗ: Οι δύο κανόνες λειτουργούν ξεχωριστά. Πρέπει να ορίσετε και τις δύο τιμές στο '0' για να απενεργοποιήσετε τους φόρους.", + 'row_see_sql_debug' => "Εμφάνιση αποσφαλμάτωσης", + 'text_allow' => "Αποδοχή ", + 'text_see_sql_list' => " ή παραπάνω για να δείτε πληροφορίες αποσφαλμάτωσης (SQL query list στο κάτω μέρος της σελίδας και PHP report information). Προεπιλογή ", + 'text_smtp_none' => "Κανένας (επιλέγοντας αυτό θα απενεργοποιήσει πλήρως την αποστολή email)", + 'row_attachment_settings' => "Ρυθμίσεις Συνημμένου", + 'submit_attachment_settings' => "Ρυθμίσεις Συνημμένου", + 'text_attachment_settings_note' => "Ρύθμιση συνημμένων.", + 'head_attachment_settings' => "Ρυθμίσεις Συνημμένου", + 'row_enable_attachment' => "Ενεργοποίηση συνημμένου", + 'text_enable_attachment_note' => "Καθολική ρύθμιση συνημμένου. Όταν οριστεί σε 'όχι', κανείς δεν μπορεί να φορτώσει οποιοδήποτε συνημμένο.", + 'row_save_directory' => "Αποθήκευση καταλόγου", + 'row_http_directory' => "Διαδρομή HTTP για συνημμένα", + 'text_http_directory_note' => "It could be either relative path or absolute path. NO trailing slash (/) at the end! Default 'attachments'.", + 'row_attachment_authority' => "Αρχή επισύναψης", + 'text_can_upload_at_most' => " ή παραπάνω μπορούν να μεταφορτώσουν το πολύ ", + 'text_file_size_below' => " συνημμένα σε 24 ώρες των οποίων το μέγεθος δεν είναι μεγαλύτερο από ", + 'text_with_extension_name' => "KB και των οποίων η επέκταση ονόματος αρχείου είναι μεταξύ ", + 'text_authority_default_one_one' => ". Προεπιλογή ", + 'text_authority_default_one_two' => ", '5', '256', 'jpeg, jpg, png, gif'.", + 'text_authority_default_two_one' => ". Προεπιλογή ", + 'text_authority_default_two_two' => ", '10', '512', 'torrent, zip, rar, 7z, gzip, gz'.", + 'text_authority_default_three_one' => ". Προεπιλογή ", + 'text_authority_default_three_two' => ", '20', '1024', 'mp3, oga, ogg, flv'.", + 'text_authority_default_four_one' => ". Προεπιλογή ", + 'text_authority_default_four_two' => ", '500', '2048', ''.", + 'text_attachment_authority_note_two' => "NOTE: ", + 'text_attachment_authority_note_one' => "Καθορίστε την εξουσία του χρήστη να ανεβάζει συνημμένα με βάση την κλάση του.", + 'text_save_directory_note' => "Ο κατάλογος στον οποίο αποθηκεύετε τα συνημμένα. Παρακαλούμε βεβαιωθείτε ότι έχετε σωστά ρυθμισμένα δικαιώματα πρόσβασης στον κατάλογο (777). NO καταληκτική κάθετος (/) στο τέλος! Προεπιλογή './attachments'.", + 'row_save_directory_type' => "Αποθήκευση συνημμένων στο", + 'text_one_directory' => "Ένας κατάλογος για όλα τα αρχεία", + 'text_directories_by_monthes' => "Κατάλογοι με το όνομά τους από το ανέβασμα μηνών", + 'text_directories_by_days' => "Κατάλογοι που ονομάστηκαν μετά το ανέβασμα των ημερών", + 'text_save_directory_type_note' => "Η τροποποιημένη ρύθμιση δεν επηρεάζει τα συνημμένα που έχουν ήδη φορτωθεί. Προεπιλεγμένοι 'Κατάλογοι με το όνομα του μεταφορτωμένου μήνα'.", + 'row_image_thumbnails' => "Image thumbnail", + 'text_no_thumbnail' => "1. Δεν υπάρχει μικρογραφία. Αποθηκεύστε μόνο την αρχική εικόνα.", + 'text_create_thumbnail' => "2. Δημιουργήστε μικρογραφία αν η εικόνα είναι μεγάλη, και αποθηκεύστε τόσο τη μικρογραφία όσο και την αρχική εικόνα.", + 'text_resize_big_image' => "3. Αλλαγή μεγέθους εικόνας αν είναι μεγάλη και μόνο να αποθηκεύσετε τη μικρογραφία.", + 'text_image_thumbnail_note' => "Προεπιλογή '2'.", + 'row_thumbnail_quality' => "Ποιότητα μικρογραφιών", + 'text_thumbnail_quality_note' => "Ορίστε την ποιότητα της επισκόπησης. Η τιμή θα πρέπει να είναι ένας ακέραιος αριθμός μεταξύ 1 και 100. Ο μεγαλύτερος αριθμός, η υψηλότερη ποιότητα και το μεγαλύτερο μέγεθος αρχείου. Προκαθορισμένο '80'.", + 'row_thumbnail_size' => "Thumbnail size", + 'text_thumbnail_size_note' => "Πλάτος * ύψος, σε pixels. Δημιουργήστε μικρογραφίες ΜΟΝΟ για εικόνες των οποίων το πλάτος ή ύψος υπερβαίνει το όριο. Προκαθορισμένο '500', '500'.", + 'row_watermark' => "Θέση υδατογραφήματος", + 'text_no_watermark' => "Χωρίς υδατογράφημα", + 'text_left_top' => "#1", + 'text_top' => "#2", + 'text_right_top' => "#3", + 'text_left' => "#4", + 'text_center' => "#5", + 'text_right' => "#6", + 'text_left_bottom' => "#7", + 'text_bottom' => "#8", + 'text_right_bottom' => "#9", + 'text_random_position' => "Τυχαία θέση", + 'text_watermark_note' => "Προσθέστε υδατογράφημα στο αρχείο εικόνας (JPEG/PNG/GIF). Αντικαταστήστε το αρχείο watermark PNG 'pic/watermark.png' με το δικό σας. Ορίστε τη θέση όπου θα τοποθετηθεί το υδατογράφημα. GIF animation δεν υποστηρίζεται. Προκαθορισμένο 'no watermark'.", + 'row_image_size_for_watermark' => "Μέγεθος εικόνας για υδατογράφημα", + 'text_watermark_size_note' => "Πλάτος * ύψος, σε pixels. Προσθέστε υδατογράφημα ΜΟΝΟ σε εικόνες των οποίων το πλάτος και υπερβαίνει αυτό. Προκαθορισμένο '300', '300'.", + 'row_jpeg_quality_with_watermark' => "Ποιότητα JPEG με υδατογράφημα", + 'text_jpeg_watermark_quality_note' => "Η ποιότητα της εικόνας για το αρχείο JPEG μετά την προσθήκη υδατογραφήματος. Η τιμή θα πρέπει να είναι ένας ακέραιος αριθμός μεταξύ 1 και 100. Ο μεγαλύτερος αριθμός, η υψηλότερη ποιότητα και το μεγαλύτερο μέγεθος αρχείου. Προκαθορισμένο '85'.", + 'head_save_attachment_settings' => "Αποθήκευση ρυθμίσεων συνημμένου", + 'row_css_date' => "CSS date", + 'text_css_date' => "Η μορφή ώρας είναι YYYYMMDDhhmm, π.χ. «200911030110». Η αλλαγή αυτή βοηθά τους περιηγητές των χρηστών να ενημερώνουν την προσωρινή μνήμη CSS. Χρήσιμο όταν κάνετε κάποιες αλλαγές σε CSS αρχεία. Αφήστε το κενό αν δεν έχει νόημα σε εσάς. Προκαθορισμένο κενό.", + 'row_alternative_thumbnail_size' => "Εναλλακτικό Μέγεθος Μικρογραφιών", + 'text_alternative_thumbnail_size_note' => "Οι χρήστες θα μπορούσαν να επιλέξουν το εναλλακτικό μέγεθος για μικρογραφίες. Προεπιλογή '180', '135'.", + 'row_add_watermark_to_thumbnail' => "Προσθήκη υδατογραφήματος στη μικρογραφία", + 'text_watermark_to_thumbnail_note' => "Αν θα προσθέσετε υδατογράφημα στη μικρογραφία ή όχι. Η προεπιλεγμένη ρύθμιση 'όχι'. Η συνολική ρύθμιση υδατογραφήματος πρέπει να ενεργοποιηθεί για να λειτουργήσει αυτό.", + 'row_advertisement_settings' => "Ρυθμίσεις Διαφήμισης", + 'submit_advertisement_settings' => "Ρυθμίσεις Διαφήμισης", + 'text_advertisement_settings_note' => "Ρυθμίστε τις διαφημίσεις στο site σας.", + 'head_advertisement_settings' => "Ρυθμίσεις Διαφήμισης", + 'row_enable_advertisement' => "Ενεργοποίηση Διαφήμισης", + 'text_enable_advertisement_note' => "Καθολική ρύθμιση διαφήμισης.", + 'row_no_advertisement' => "Χωρίς Διαφημίσεις", + 'text_can_choose_no_advertisement' => " ή παραπάνω μπορούν να επιλέξουν να δουν καμία διαφήμιση στο User CP. Προεπιλογή ", + 'row_bonus_no_advertisement' => "Καμία Διαφήμιση Με Μπόνους", + 'text_no_advertisement_with_bonus' => " ή παραπάνω μπορούν να αγοράσουν κάποιο χρόνο χωρίς διαφημίσεις στο κέντρο μπόνους. Προεπιλογή ", + 'row_no_advertisement_bonus_price' => "Καμία Τιμή Μπόνους Διαφημίσεων", + 'text_bonus_points_to_buy' => " πόντοι μπόνους για αγορά ", + 'text_days_without_advertisements' => " ημέρες χωρίς διαφημίσεις. Προεπιλογή '10000', '15'.", + 'row_click_advertisement_bonus' => "Κάντε Κλικ Στο Μπόνους Διαφημίσεων", + 'text_points_clicking_on_advertisements' => " Το μπόνους δείχνει την πρώτη φορά που κάνει κλικ σε μια διαφήμιση. Ορίστε το '0' για να απενεργοποιήσετε τον κανόνα. Προεπιλεγμένο '0'.
    Note: μερικές εφαρμογές διαφήμισης (π.χ. Google Adsense) απαγορεύουν σε ιστότοπους συμπεριλαμβανομένων κινήτρων για να κάνετε κλικ σε διαφημίσεις.", + 'head_save_advertisement_settings' => "Αποθήκευση Ρυθμίσεων Διαφήμισης", + 'row_enable_tooltip' => "Ενεργοποίηση Tooltip", + 'text_enable_tooltip_note' => "Επιτρέψτε στους χρήστες να χρησιμοποιούν την υπόδειξη. Προκαθορισμένο 'ναι'.", + 'text_thirtypercentleech_chance_becoming' => "% πιθανότητα να γίνει 30% Δέρμα. Προεπιλογή '0'.", + 'text_thirtypercentleech_will_become' => "30% Leech θα γίνει ", + 'text_thirtypercentleech_timeout_default' => " ημέρες. Προεπιλεγμένο 'κανονικό', '30'.", + 'row_site_logo' => "Λογότυπο Ιστοσελίδας", + 'text_site_logo_note' => "Το αρχείο εικόνας του λογότυπου της σελίδας. Το συνιστώμενο μέγεθος εικόνας είναι 220 * 70. Αν είναι κενό, εμφανίζεται αντί αυτού το κείμενο. Προκαθορισμένο ''.", + 'row_promotion_link_click' => "Κλικ Συνδέσμου Προώθησης", + 'text_promotion_link_note_one' => " Πόντοι μπόνους αν ο σύνδεσμος προώθησης του γίνει κλικ με μια μη καταγεγραμμένη IP. Μόνο ένα κλικ μετράται ", + 'text_promotion_link_note_two' => " δευτερόλεπτα. Ορίστε σημεία σε '0' για να απενεργοποιήσετε τον κανόνα. Προκαθορισμένο '0', '600'.", + 'row_promotion_link_example_image' => "Εικόνα συνδέσμου προώθησης", + 'text_promotion_link_example_note' => "Η εικόνα στα παραδείγματα του συνδέσμου προώθησης . ΠΡΕΠΕΙ χρησιμοποιούν σχετική διαδρομή, π.χ. «pic/prolink.png».", + 'row_enable_nfo' => "Ενεργοποίηση NFO", + 'text_enable_nfo_note' => "Προεπιλογή 'ναι'. Ρύθμιση NFO σε ολόκληρο το σύστημα.", + 'row_web_analytics_code' => "Κώδικας ανάλυσης ιστού", + 'text_web_analytics_code_note' => "Εισάγετε κωδικό ανάλυσης ιστού από μια υπηρεσία τρίτων (π.χ. Google Analytics). Αφήστε τον κενό αν δεν υπάρχει.
    Σημείωση: Χρησιμοποιήστε μόνο κώδικα που είστε σίγουροι ότι είναι ασφαλής και αξιόπιστος.", + 'row_enable_email_notification' => "Ενεργοποίηση Ειδοποίησης Email", + 'text_email_notification_note' => "Επιτρέψτε στους χρήστες να λαμβάνουν ειδοποίηση μέσω ηλεκτρονικού ταχυδρομείου όταν παίρνει νέες μ.μ., σχόλιο, κλπ.", + 'text_users_get' => "Οι χρήστες θα λάβουν ", + 'text_invitations_default' => " προσκλήσεις την πρώτη φορά που προωθείται σε αυτήν την κλάση. Προεπιλογή ", + 'row_guest_visit_type' => "Επίσκεψη επισκέπτη", + 'text_guest_visit_type_normal' => 'Κανονικό', + 'text_guest_visit_type_static_page' => 'Εμφάνιση στατικής σελίδας', + 'text_guest_visit_type_custom_content' => 'Εμφάνιση προσαρμοσμένου περιεχομένου', + 'text_guest_visit_type_redirect' => 'Ανακατεύθυνση σε ένα URL', + 'row_guest_visit_value_static_page' => 'Συγκεκριμένη στατική σελίδα', + 'row_guest_visit_value_custom_content' => 'Προσαρμοσμένο περιεχόμενο', + 'row_guest_visit_value_redirect' => 'Συγκεκριμένο URL', + 'text_guest_visit_value_static_page' => 'Τοποθεσία Αρχείου:πόροι/στατικές-σελίδες/', + 'row_login_type' => 'Τύπος σύνδεσης', + 'text_login_type_normal' => 'Κανονικό', + 'text_login_type_secret' => 'Μυστικό', + 'text_login_type_warning' => "Μόνο ένα από τα τρία ισχύει", + 'row_login_secret' => 'Μυστικό σύνδεσης', + 'text_login_secret_current' => 'Τρέχον μυστικό', + 'text_login_url_with_secret' => 'Μυστικό URL σύνδεσης', + 'text_login_url_with_passkey' => 'Passkey login URL', + 'text_login_secret_regenerate_yes' => "Επαναδημιουργία (θα ενημερώσει το μυστικό και θα παρατείνει τη ζωή του μετά την αποθήκευση)", + 'text_login_secret_regenerate_no' => "Απομένουν (δεν αλλάζουν μυστικό και είναι ζωή μετά την αποθήκευση)", + 'text_login_secret_lifetime' => 'Προθεσμία', + 'text_login_secret_lifetime_unit' => 'λεπτό', + 'row_login_secret_lifetime' => 'Μυστική ζωή σύνδεσης', + 'text_login_secret_lifetime_deadline' => 'Τρέχουσα μυστική προθεσμία σύνδεσης', + 'row_enable_technical_info' => 'Ενεργοποίηση MediaInfo', + 'text_enable_technical_info' => "Προεπιλεγμένο 'Όχι'. Το MediaInfo προέρχεται από λογισμικό MediaInfo Προβολή κειμένου", + 'row_sticky_first_level_background_color' => 'Κολλημένο χρώμα πρώτου επιπέδου bg', + 'text_sticky_first_level_background_color_note' => 'Κολλημένο χρώμα πρώτου επιπέδου bg, δεν θα είναι κανένα αν δεν οριστεί.', + 'row_sticky_second_level_background_color' => 'Κολλημένο χρώμα δεύτερου επιπέδου bg', + 'text_sticky_second_level_background_color_note' => 'Κολλημένο χρώμα δευτέρου επιπέδου bg, δεν θα είναι κανένα αν δεν οριστεί.', + 'row_download_support_passkey' => 'Λήψη υποστήριξης από τον κωδικό πρόσβασης', + 'text_download_support_passkey_note' => 'Υποστήριξη κατεβάσετε αρχείο torrent από passkey ή όχι (απαιτούν επίσης το torrent id).', + 'row_torrent_hr' => 'Ε&Α', + 'text_torrent_hr_note' => '.Set torrent μπείτε στην επιθεώρηση H&R', + 'row_cancel_hr' => 'Ακύρωση H&R', + 'text_cancel_hr_note' => "πόντους μπόνους για να ακυρώσετε ένα H&R. Προεπιλογή »".\App\Models\BonusLogs::DEFAULT_BONUS_CANCEL_ONE_HIT_AND_RUN."'.", + 'text_attendance_get_bonus' => 'Συμμετοχή πάρει μπόνους', + 'text_attendance_initial_reward' => 'Αρχική ανταμοιβή', + 'text_attendance_initial_reward_input_label' => 'Πρώτη φορά θα πάρετε', + 'text_attendance_input_suffix' => 'μπόνους', + 'text_attendance_continuous_increment' => 'Συνεχής αύξηση', + 'text_attendance_continuous_increment_input_label' => 'Κάθε αύξηση συνεχούς παρουσίας', + 'text_attendance_reward_limit' => 'Όριο ανταμοιβής', + 'text_attendance_reward_limit_input_label' => 'Υψηλότερη ανταμοιβή θα πάρετε', + 'text_attendance_continuous' => 'Συνεχής', + 'text_attendance_continuous_days' => 'Συνεχείς ημέρες', + 'text_attendance_continuous_days_additional_reward' => 'Επιπλέον μπόνους', + 'text_attendance_continuous_days_action' => 'Ενέργεια', + 'text_attendance_continuous_unit' => 'ημέρες', + 'text_attendance_continuous_item_action_remove' => 'Αφαίρεση', + 'text_attendance_continuous_item_action_add' => 'Προσθήκη', + 'text_attendance_continuous_add_rules' => 'Παρακαλώ προσθέστε κανόνες από το χαμηλότερο στο υψηλότερο', + 'row_attendance_card' => 'Αγοράστε την κάρτα παρουσίας', + 'text_attendance_card_note' => "πόντους μπόνους για να αγοράσετε μια κάρτα συμμετοχής. Προεπιλογή'" . \App\Models\BonusLogs::DEFAULT_BONUS_BUY_ATTENDANCE_CARD . "'.", + 'row_site_language_enabled' => 'Γλώσσα ιστότοπου ενεργοποιημένη', + 'text_site_language_enabled_note' => 'Επιλέξτε τοποθεσία ενεργοποιημένη γλώσσα', + 'keep_at_least_one' => 'Διατήρηση τουλάχιστον ενός', + 'text_alias' => 'Class alias: ', + 'row_default_user_one' => 'Η προεπιλογή είναι', + 'row_default_user_two' => '', + 'row_show_top_uploader' => 'Εμφάνιση κορυφαίας μεταφόρτωσης (Torrent count)', + 'text_show_top_uploader_note' => "Προεπιλεγμένο 'Όχι'. Εμφάνιση κορυφαίου χρήστη upload (Torrent count) στην αρχική σελίδα.", + 'claim_label' => 'Απαίτηση torrent', + 'claim_enabled' => 'Ενεργοποιήθηκε η αξίωση', + 'claim_torrent_ttl' => 'Το Torrent μπορεί να διεκδικηθεί μετά από %s ημέρες απελευθέρωσης.', + 'claim_torrent_user_counts_up_limit' => 'Ένα Torrent μπορεί να διεκδικηθεί μέχρι και το %s των χρηστών.', + 'claim_user_torrent_counts_up_limit' => 'Ένας χρήστης μπορεί να διεκδικήσει έως και %s torrents.', + 'claim_remove_deduct_user_bonus' => "Το υποτιθέμενο torrent θα διαγραφεί και το %s του bonus του χρήστη θα αφαιρεθεί αν δεν πληρούν το πρότυπο (όχι τον πρώτο μήνα απαίτησης).", + 'claim_give_up_deduct_user_bonus' => 'Ο χρήστης εγκαταλείπει ενεργά το μπόνους έκπτωσης του χρήστη %s.', + 'claim_reach_standard' => 'Πρότυπο: Μηνιαίος χρόνος σποράς μεγαλύτερος από ή ίσος με %s ωρών, ή ανεβασμένος μεγαλύτερος ή ίσος με %s φορές το μέγεθός του.', + 'claim_bonus_multiplier' => 'Calculate %s times the normal bonus value of the attained seed bonus.', + 'row_misc_settings' => 'Διάφορες ρυθμίσεις', + 'submit_misc_settings' => 'Διάφορες ρυθμίσεις', + 'text_misc_settings_note' => 'Διάφορες ρυθμίσεις', + 'row_misc_donation_custom' => 'Προσαρμοσμένη δωρεά', + 'text_donation_custom_note' => 'Δωρεά προσαρμοσμένο περιεχόμενο σελίδας, εμφανίζεται πάνω από Alipay, PayPal. Υποστήριξη bbcode tag', + 'row_approval_status_icon_enabled' => 'Εμφάνιση εικονιδίου κατάστασης έγκρισης', + 'text_approval_status_icon_enabled_note' => "Αν θα εμφανίζεται το εικονίδιο κατάστασης έγκρισης στη λίστα torrent, προεπιλογή: 'Όχι'.", + 'row_approval_status_none_visible' => 'Ορατότητα μη αναθεωρημένων torrents', + 'text_approval_status_none_visible_note' => "Προεπιλογή: 'Ναι'. Αν αλλάξετε σε 'Όχι', αναγκάστε να εμφανίσετε το εικονίδιο κατάστασης έγκρισης όταν ο έλεγχος δεν είναι κατάσταση [allow].", + 'row_imdb_language' => 'Γλώσσα IMDB', + 'text_imdb_language_note' => 'Γλώσσες που χρησιμοποιούνται για την ανίχνευση δεδομένων IMDB.', + 'text_login_type_passkey' => 'κλειδί πρόσβασης', + 'row_harem_addition' => 'Προσθήκη λόχου', + 'text_user_would_get_by_harem' => 'Ο χρήστης θα λάβει την αξία μπόνους του άμεσου χαρεμ', + 'text_harem_addition_note' => 'φορές ως ανταμοιβή (παράγοντας, π.χ. συμπληρώστε το 0.01, εάν το χαρέμι παίρνει 100 μπόνους τότε ο χρήστης ανταμοιβής 100 * 0.01 = 1)', + 'row_offer_skip_approved_count' => 'Άμεση προσφορά αποστολής επιτρέπει την καταμέτρηση', + 'text_offer_skip_approved_count_note' => 'Όταν ο αριθμός της εγκεκριμένης προσφοράς είναι μεγαλύτερος ή ίσος με αυτήν την τιμή, μπορείτε να ανεβάσετε απευθείας χωρίς να υποβάλετε προσφορές.', + 'row_torrent_delete' => 'Διαγραφή torrent', + 'text_torrent_delete_note' => '. Διαγραφή torrent', + 'row_hundred_gb_credit' => "100.0 GB πίστωση μεταφόρτωσης", + 'text_hundred_gb_credit_note' => " πόντοι μπόνους για ανταλλαγή 100.0 GB ανεβάζοντας πίστωση. Προεπιλογή '10000'.", + 'row_ten_gb_download_credit' => "10.0 GB λήψη πίστωσης", + 'text_ten_gb_download_credit_note' => " πόντοι μπόνους για ανταλλαγή 10,0 GB λήψη πίστωσης. Προεπιλογή '1000'.", + 'row_hundred_gb_download_credit' => "100.0 GB λήψη πίστωσης", + 'text_hundred_gb_download_credit_note' => " πόντοι μπόνους για ανταλλαγή 100.0 GB λήψη πίστωσης. Προεπιλογή '8000'.", + 'row_official_addition' => 'Επίσημη προσθήκη', + 'text_user_would_get_by_official' => 'Ο χρήστης θα λάβει την κανονική αξία μπόνους του επίσημου torrent', + 'text_addition_addition_note' => 'φορές ως ανταμοιβή (παράγοντας, π.χ. συμπληρώστε το 0.01, εάν οι επίσημοι torrens λαμβάνουν 100 μπόνους τότε ο χρήστης ανταμοιβής 100 * 0.01 = 1)', + 'zero_bonus_factor_default' => '. Η προεπιλογή είναι: 0.2', + 'row_official_tag' => 'Επίσημη ετικέτα', + 'text_official_tag_note' => '. Torrents με αυτή την ετικέτα είναι επίσημα torrents', + 'row_zero_bonus_tag' => 'Zero bonus tag', + 'text_zero_bonus_tag_note' => '. Torrents με αυτή την ετικέτα είναι μηδέν torrent μπόνους', + 'row_upload_deny_approval_deny_count' => 'Άρνηση μεταφόρτωσης αριθμού έγκρισης', + 'text_upload_deny_approval_deny_count_note' => "Όταν ο αριθμός έγκρισης torrents δεν είναι μεγαλύτερος ή ίσος με αυτήν την τιμή, δεν επιτρέπεται η δημοσίευση. Ορισμός σε '0' για να μην χρησιμοποιηθεί αυτός ο κανόνας", + 'row_nfo_view_style_default' => 'Προεπιλογή στυλ εμφάνισης NFO', + 'row_destroy_disabled' => 'Διαγραφή λογαριασμού εντελώς', + 'text_destroy_disabled_note_one' => 'Απενεργοποιημένοι λογαριασμοί εάν είναι συνεχώς', + 'text_destroy_disabled_note_two' => "Οι ημέρες χωρίς σύνδεση, θα διαγραφούν φυσικά από τη βάση δεδομένων εντελώς. Προεπιλογή '500', παρακαλώ ορίστε μια τιμή μεγαλύτερη από οποιοδήποτε από τα παραπάνω για να απενεργοποιηθεί. Ορίστε σε '0' για να απενεργοποιήσετε αυτόν τον κανόνα." , + 'row_enable_global_search_system' => 'Ενεργοποίηση καθολικής αναζήτησης', + 'text_global_search_system_note' => "Προεπιλογή: 'Ναι'. Αν ενεργοποιηθεί, όταν υπάρχουν πολλαπλές ενότητες, η γενική πύλη αναζήτησης εμφανίζεται στην κάτω δεξιά γωνία του κύριου μενού.", + 'row_protected_forum' => 'Φόρουμ Προστασίας Απορρήτου', + 'text_protected_forum' => 'Οι ταυτότητες των φόρουμ που επιτρέπουν την προστασία της ιδιωτικής ζωής , τοποθετημένες με κόμμα (π.χ. 1,2,3)', + 'forum_format_error' => 'Η μορφή των φόρουμ είναι λάθος, παρακαλώ ελέγξτε το ξανά!', + 'row_buy_an_tmp_invite' => 'Αγοράστε μια προσωρινή πρόσκληση', + 'text_buy_an_tmp_invite_note' => " πόντους μπόνους για να πάρετε μια προσωρινή πρόσκληση. Προεπιλεγμένη αναλογία '500'.Set προς '0' για να απενεργοποιήσετε την αγορά.", + 'row_buy_rainbow_id' => 'Αγορά Rainbow ID', + 'text_buy_rainbow_id_note' => " πόντους μπόνους για να πάρετε ένα ID ουράνιου τόξου, ισχύει για 30 ημέρες. Προεπιλογή '5,000'.", + 'row_buy_change_username_card' => 'Αγοράστε Αλλαγή κάρτας ονόματος χρήστη', + 'text_buy_change_username_card_note' => " πόντους μπόνους για να πάρετε μια Αλλαγή κάρτα ονόματος χρήστη, έγκυρη για πάντα. Προεπιλογή '100,000'.", + 'row_initial_tmp_invites' => "Αρχικός αριθμός προσωρινών προσκλήσεων", + 'text_initial_tmp_invites_note' => "Πόσες πρόσκαιρες προσκλήσεις πρέπει να δοθεί σε κάθε χρήστη κατά την εγγραφή? Προεπιλογή '0'.", + 'row_tax_factor' => 'Φορολογικός συντελεστής για πληρωμένα torrent', + 'text_tax_factor_note' => 'Εάν η τιμή είναι 100, αυτός ο παράγοντας είναι 0,1 και τα πραγματικά έσοδα του uploader είναι 100 - 100 x 0. = 90, σημειώστε ότι δεν πρέπει να είναι μεγαλύτερη από 1 ή μικρότερη από 0.', + 'row_max_price' => 'Μέγιστο τέλος για καταβληθέντα torrent', + 'text_max_price_note' => 'προεπιλογή: 1,000,000, που έχει οριστεί σε 0 χωρίς όριο', + 'row_paid_torrent_enabled' => 'Αν θα ενεργοποιούνται τα πληρωμένα torrents', + 'text_paid_torrent_enabled_note' => 'Όταν είναι ενεργοποιημένο, οι χρήστες με άδεια μπορούν να ορίσουν ένα συγκεκριμένο ποσό μπόνους για να χρεωθούν σε χρήστες που κατεβάζουν τα torrents όταν αποστέλλονται, προεπιλογή: όχι', + 'row_use_challenge_response_authentication' => 'Ταυτοποίηση Προκλήσης-Απάντησης', + 'text_use_challenge_response_authentication_note' => 'Αν ενεργοποιηθεί, δεν θα μεταδοθούν κωδικοί πρόσβασης μέσω καρφιτσώματος κατά τη σύνδεση, συνιστάται. Οι μελλοντικές εκδόσεις θα καταργήσουν αυτή τη ρύθμιση και θα ενεργοποιήσουν αυτήν τη λειτουργία.' , + 'row_complain_enabled' => 'Αν θα ενεργοποιήσετε τις καταγγελίες', + 'row_complain_enabled_note' => 'προεπιλογή: "ναι"', +); + +?> diff --git a/lang/el/lang_shoutbox.php b/lang/el/lang_shoutbox.php new file mode 100644 index 00000000..ac131d51 --- /dev/null +++ b/lang/el/lang_shoutbox.php @@ -0,0 +1,16 @@ + "del", + 'std_access_denied' => "Άρνηση Πρόσβασης.", + 'std_access_denied_note' => "Οι επισκέπτες δεν επιτρέπεται να δουν αυτή τη σελίδα.", + 'text_to_guest' => " to Guest", + 'text_guest' => "Guest", + 'text_ago' => " πριν", + 'text_helpbox_disabled' => "Το Helpbox είναι απενεργοποιημένο. Πώς η κόλαση θα φτάσετε εδώ?", + 'text_no_permission_to_shoutbox' => "Δεν έχετε άδεια να στείλετε μηνύματα στο shoutbox. Πως θα φτάσετε εδώ?", + "speaking_too_often" => "Μιλώντας πολύ συχνά!", +); + +?> diff --git a/lang/el/lang_signup.php b/lang/el/lang_signup.php new file mode 100644 index 00000000..15f251b8 --- /dev/null +++ b/lang/el/lang_signup.php @@ -0,0 +1,35 @@ + "Εγγραφή", + 'text_cookies_note' => "Σημείωση: Χρειάζεστε cookies ενεργοποιημένα για να εγγραφείτε ή να συνδεθείτε.", + 'row_desired_username' => "Επιθυμητό όνομα χρήστη", + 'text_allowed_characters' => "Επιτρεπόμενοι χαρακτήρες: (a-z), (A-Z), (0-9), Το μέγιστο είναι 12 χαρακτήρες", + 'row_pick_a_password' => "Επιλέξτε έναν κωδικό πρόσβασης", + 'text_minimum_six_characters' => "Ελάχιστο είναι 6 χαρακτήρες", + 'row_enter_password_again' => "Εισάγετε ξανά τον κωδικό", + 'row_question' => "Ερώτηση", + 'row_enter_hint_answer' => "Εισάγετε την απάντηση υποδείξεων", + 'text_hint_note' => "Αυτή η απάντηση θα χρησιμοποιηθεί για να επαναφέρετε τον κωδικό πρόσβασής σας σε περίπτωση που τον ξεχάσετε.
    Το ελάχιστο είναι 6 χαρακτήρες.", + 'row_email_address' => "Διεύθυνση ηλεκτρονικού ταχυδρομείου", + 'text_email_note' => "θα μπορούσατε να εγγραφείτε μόνο με email από αυτούς τους τομείς: ", + 'row_country' => "Χώρα", + 'row_gender' => "Φύλο", + 'radio_male' => "Άντρας ", + 'radio_female' => "Γυναίκα ", + 'row_verification' => "Επαλήθευση", + 'checkbox_read_rules' => "Έχω διαβάσει την ιστοσελίδα κανόνες σελίδα.", + 'checkbox_read_faq' => "Συμφωνώ να διαβάσω τις FAQ πριν κάνω ερωτήσεις.", + 'checkbox_age' => "Είμαι τουλάχιστον 13 ετών.", + 'text_all_fields_required' => "Όλα τα Πεδία είναι απαραίτητα! ", + 'submit_sign_up' => "Εγγραφείτε up! (PRESS ONLY ONCE)", + 'select_none_selected' => "Κανένα επιλεγμένο", + 'text_select_lang' => "Επιλογή Γλώσσας Ιστοσελίδας: ", + 'row_school' => "Σχολείο", + 'head_invite_signup' => "Πρόσκληση Εγγραφής", + 'std_uninvited' => "Λανθασμένος κωδικός πρόσκλησης. ", + 'std_error' => "Σφάλμα", +); + +?> diff --git a/lang/el/lang_special.php b/lang/el/lang_special.php new file mode 100644 index 00000000..090f6f8f --- /dev/null +++ b/lang/el/lang_special.php @@ -0,0 +1,7 @@ + "Sorry...", + 'std_permission_denied_only' => "Άρνηση άδειας. Μόνο ", + 'std_or_above_can_view' => " ή πιο πάνω θα μπορούσε να δει την Ειδική ενότητα.

    Παρακαλώ δείτε τις Συχνές Ερωτήσεις για περισσότερες πληροφορίες σχετικά με τις διαφορετικές κατηγορίες χρηστών και τι μπορούν να κάνουν.

    Το Προσωπικό %s
    ", +]; diff --git a/lang/el/lang_staff.php b/lang/el/lang_staff.php new file mode 100644 index 00000000..87ef892e --- /dev/null +++ b/lang/el/lang_staff.php @@ -0,0 +1,36 @@ + "Προσωπικό", + 'text_staff' => "Προσωπικό", + 'text_firstline_support' => "Πρώτη Γραμμή Υποστήριξης", + 'text_firstline_support_note' => "Γενικά ερωτήματα υποστήριξης θα πρέπει κατά προτίμηση να απευθύνονται σε αυτούς τους χρήστες. Σημειώστε ότι είναι εθελοντές, δίνοντας το χρόνο και την προσπάθειά τους να σας βοηθήσουν.", + 'text_movie_critics' => "Επικριτές", + 'text_movie_critics_note' => "Οι επικριτές είναι υπεύθυνοι για την επιλογή καλών πραγμάτων, τη συγγραφή κριτικών, την ανταμοιβή των σχολίων των χρηστών για τις ταινίες, τη μουσική κλπ, γενικά δημιουργώντας μια καλύτερη ατμόσφαιρα για συζήτηση.", + 'text_general_staff' => "Γενικό Προσωπικό", + 'text_general_staff_note' => "All software support questions and those already answered in the FAQ will be ignored.

    Send message to Staff, click here", + 'text_username' => "Όνομα Χρήστη", + 'text_online_or_offline' => "Σε Σύνδεση/Χωρίς Σύνδεση", + 'text_country' => "Χώρα", + 'text_contact' => "Επικοινωνία", + 'text_language' => "Γλώσσα", + 'text_support_for' => "Υποστήριξη για", + 'text_responsible_for' => "Υπεύθυνος", + 'text_duties' => "Καθήκοντα Προσωπικού", + 'title_online' => "Συνδεδεμένος", + 'title_offline' => "Αποσυνδεδεμένος", + 'title_send_pm' => "Αποστολή PM", + 'text_vip' => "VIP", + 'text_vip_note' => "Το καθεστώς VIP χορηγείται μόνο σε εκείνους που έχουν συνεισφέρει ειδικά στην %s, π.χ. πρώην μέλη του προσωπικού.", + 'text_reason' => "Λόγος", + 'text_apply_for_it' => "Αίτηση για ένταξη", + 'text_forum_moderators' => "Συντονιστές Φόρουμ", + 'text_forum_moderators_note' => "Οι συντονιστές του φόρουμ είναι υπεύθυνοι για την καθημερινή διαχείριση των φόρουμ.", + 'text_forums' => "Φόρουμ", + 'std_sorry' => "Sorry...", + 'std_permission_denied_only' => "Άρνηση άδειας. Μόνο ", + 'std_or_above_can_view' => " ή πιο πάνω θα μπορούσε να δει το προσωπικό.

    Παρακαλώ δείτε τις Συχνές Ερωτήσεις για περισσότερες πληροφορίες σχετικά με τις διαφορετικές κατηγορίες χρηστών και τι μπορούν να κάνουν.

    Το Προσωπικό %s
    ", +); + +?> diff --git a/lang/el/lang_staffbox.php b/lang/el/lang_staffbox.php new file mode 100644 index 00000000..e00a3b13 --- /dev/null +++ b/lang/el/lang_staffbox.php @@ -0,0 +1,34 @@ + "Μ.Μ. Του Προσωπικού", + 'text_staff_pm' => "Μ.Μ. Του Προσωπικού", + 'std_sorry' => "Συγνώμη", + 'std_no_messages_yet' => "Κανένα μήνυμα ακόμα!", + 'col_subject' => "Θέμα", + 'col_sender' => "Αποστολέας", + 'col_added' => "Προστέθηκε", + 'col_answered' => "Απαντήθηκε", + 'col_action' => "Πράξη.", + 'text_yes' => "Ναι", + 'text_no' => "Όχι", + 'submit_set_answered' => "Ορισμός Απαντήθηκε", + 'submit_delete' => "Διαγραφή", + 'text_system' => "Σύστημα", + 'head_view_staff_pm' => "Προβολή Μ.Μ. Προσωπικού", + 'col_from' => "Από", + 'col_date' => "Ημερομηνία", + 'col_answered_by' => "Απαντήθηκε από", + 'text_reply' => "Απάντηση", + 'text_mark_answered' => "Σημείωση Απαντήσεων", + 'text_delete' => "Διαγραφή", + 'std_error' => "Σφάλμα", + 'std_no_user_id' => "Κανένας χρήστης με αυτό το ID.", + 'head_answer_to_staff_pm' => "Απάντηση σε προσωπικό PM", + 'text_answering_to' => "Απάντηση σε ", + 'text_sent_by' => " στάλθηκε από ", + 'std_body_is_empty' => "Παρακαλώ εισάγετε κάτι!", +); + +?> diff --git a/lang/el/lang_subtitles.php b/lang/el/lang_subtitles.php new file mode 100644 index 00000000..72e3ea32 --- /dev/null +++ b/lang/el/lang_subtitles.php @@ -0,0 +1,64 @@ + "Σφάλμα!", + 'std_must_login_to_upload' => "Πρέπει να συνδεθείτε για να ανεβάσετε υπότιτλους", + 'head_subtitles' => "Υπότιτλοι", + 'std_nothing_received' => "Upload failed!

    Nothing received! The selected file may have been too large.", + 'std_subs_too_big' => "Upload failed!

    Subs is too big!", + 'std_wrong_subs_format' => "Upload failed!

    I am not allowed to save the file you send me :|", + 'std_file_already_exists' => "Η μεταφόρτωση απέτυχε!

    Υπάρχει ήδη ένα αρχείο ", + 'std_missing_torrent_id' => "Upload failed!

    missing torrent ID !", + 'std_invalid_torrent_id' => "Upload failed!

    it seems not a valid torrent ID !", + 'std_no_permission_uploading_others' => "Η μεταφόρτωση απέτυχε!

    Δεν φαίνεται το ID torrent σας, οι χρήστες της τάξης σας δεν μπορούν να ανεβάσουν subs στα torrent των άλλων!", + 'std_file_same_name_exists' => "Το αρχείο με αυτό το όνομα υπάρχει ήδη ", + 'std_must_choose_language' => "Η μεταφόρτωση απέτυχε!

    Παρακαλώ επιλέξτε μια γλώσσα για τον υπότιτλο!", + 'std_failed_moving_file' => "Αποτυχία μετακίνησης μεταφορτωμένου αρχείου. Πρέπει να επικοινωνήσετε με έναν διαχειριστή για αυτό το σφάλμα.", + 'std_this_file' => "Αυτό το αρχείο: ", + 'std_is_invalid' => " δεν είναι έγκυρη στο φάκελο.", + 'text_upload_subtitles' => "Ανεβάστε υπότιτλους - συνολικά ανεβασμένα ", + 'text_rules' => "Κανόνες:", + 'text_rule_one' => "1.Παρακαλούμε ανεβάστε μόνο αρχεία με αγγλικά ονόματα!", + 'text_rule_two' => "2.Οι υπότιτλοι ΠΡΕΠΕΙ ΝΑ ΣΤΟ SYNC με αυτό που λέτε ότι είναι για. Αν δεν είναι ένα χάσιμο χώρου.", + 'text_rule_three' => "3.Ο προσδιορισμός γλώσσας δεν είναι πραγματικά απαραίτητος στον τίτλο καθώς υπάρχει η εθνική σημαία, but if you feel the need: write the language at the end , e. . CHS.", + 'text_rule_four' => "4.If ανεβάζετε υπότιτλους για ένα πακέτο σεζόν, zip/rar τους όλα μαζί.", + 'text_rule_five' => "5.If ανεβάζετε τους υπότιτλους Vobsub (idx+sub), zip/rar πριν από την αποστολή.", + 'text_rule_six' => "6.If ανεβάζετε ένα σωστό ή εκ νέου συγχρονισμένο υπότιτλο, προσάρτηση [proper] ή [resynced] μετά το όνομα του υπότιτλου.", + 'text_red_star_required' => "

    Τα πεδία που σημειώνονται με κόκκινο αστέρι (*) απαιτούνται.

    \n", + 'text_uploading_subtitles_for_torrent' => "Μεταφόρτωση υποτίτλων για torrent: ", + 'row_file' => "Αρχείο", + 'text_maximum_file_size' => "Μέγιστο μέγεθος αρχείου: ", + 'row_torrent_id' => "Id Torrent", + 'text_torrent_id_note' => "(Ο αριθμός στη γραμμή διευθύνσεων όταν μεταβείτε στη σελίδα λεπτομερειών του torrent.
    π.χ.  http://%s/details.php?id=16  ο αριθμός 16 είναι το αναγνωριστικό torrent)", + 'row_title' => "Τίτλος", + 'text_title_note' => "(Προαιρετικά, λήφθηκε από το όνομα αρχείου εάν δεν καθοριστεί.)", + 'row_language' => "Γλώσσα", + 'select_choose_one' => "(επιλέξτε ένα)", + 'row_show_uploader' => "Εμφάνιση Αποστολέα", + 'hide_uploader_note' => "Να μην εμφανίζεται το όνομα χρήστη μου στο πεδίο 'Upped By'.", + 'submit_upload_file' => "Μεταφόρτωση αρχείου ", + 'submit_reset' => "Reset", + 'text_sorry' => "Συγνώμη", + 'text_nothing_here' => "Συγνώμη, τίποτα εδώ pal :( ", + 'submit_search' => "Αναζήτηση", + 'text_prev' => "Προηγ.", + 'text_next' => "Επόμενο", + 'col_lang' => "Lang.", + 'col_title' => "Τίτλος", + 'title_date_added' => "Time Added", + 'title_size' => "Μέγεθος", + 'col_hits' => "Εμφανίσεις", + 'col_upped_by' => "Ανανεώθηκε από", + 'text_delete' => "[Delete]", + 'text_anonymous' => "ανώνυμος", + 'std_delete_subtitle' => "Διαγραφή υπότιτλου", + 'std_delete_subtitle_note' => "Πρόκειται να διαγράψετε αυτόν τον υπότιτλο.", + 'text_reason_is' => "Αιτία: ", + 'submit_confirm' => "Επιβεβαίωση", + 'col_report' => "Αναφορά", + 'title_report_subtitle' => "Αναφέρετε αυτόν τον υπότιτλο", + 'select_all_languages' => "(όλες οι γλώσσες)", +); + +?> diff --git a/lang/el/lang_tags.php b/lang/el/lang_tags.php new file mode 100644 index 00000000..f44442ec --- /dev/null +++ b/lang/el/lang_tags.php @@ -0,0 +1,152 @@ + "Σύνταξη:", + 'text_example' => "Παράδειγμα:", + 'text_result' => "Αποτέλεσμα:", + 'text_remarks' => "Παρατηρήσεις:", + 'head_tags' => "Ετικέτες", + 'text_tags' => "Ετικέτες", + 'text_bb_tags_note' => "Το φόρουμ %s υποστηρίζει μια σειρά από ΒΒ ετικέτες που μπορείτε να ενσωματώσετε για να τροποποιήσετε τον τρόπο εμφάνισης των δημοσιεύσεών σας.", + 'submit_test_this_code' => "Test this code!", + 'text_bold' => "Bold", + 'text_bold_description' => "Κάνει το εσώκλειστο κείμενο έντονο.", + 'text_bold_syntax' => "[b]Κείμενο[/b]", + 'text_bold_example' => "[b]This is bold text.[/b]", + 'text_italic' => "Italic", + 'text_italic_description' => "Κάνει το εσώκλειστο κείμενο πλάγιο.", + 'text_italic_syntax' => "[i]Κείμενο[/i]", + 'text_italic_example' => "[i]This is italic text.[/i]", + 'text_underline' => "Υπογράμμιση", + 'text_underline_description' => "Υπογραμμίζει το εσώκλειστο κείμενο.", + 'text_underline_syntax' => "[u]Κείμενο[/u]", + 'text_underline_example' => "[u]Αυτό είναι υπογραμμισμένο κείμενο.[/u]", + 'text_color_one' => "Χρώμα (alt. 1)", + 'text_color_one_description' => "Αλλάζει το χρώμα του εσωκλεισμένου κειμένου.", + 'text_color_one_syntax' => "[color=Χρώμα]Κείμενο[/color]", + 'text_color_one_example' => "[color=blue]This is blue text.[/color]", + 'text_color_one_remarks' => "Εάν χρησιμοποιείτε τα βασικά χρώματα (κόκκινο, πράσινο, μπλε, κίτρινο, ροζ κλπ) θα πρέπει να είστε ασφαλείς.", + 'text_color_two' => "Χρώμα (alt. 2)", + 'text_color_two_description' => "Αλλάζει το χρώμα του εσωκλεισμένου κειμένου.", + 'text_color_two_syntax' => "[color=#RGB]Κείμενο[/color]", + 'text_color_two_example' => "[color=#0000ff]This is blue text.[/color]", + 'text_color_two_remarks' => "RGB πρέπει να είναι ένας εξαψήφιος δεκαεξαδικός αριθμός.", + 'text_size' => "Μέγεθος", + 'text_size_description' => "Ορίζει το μέγεθος του εσωκλεισμένου κειμένου.", + 'text_size_syntax' => "[size=n]text[/size]", + 'text_size_example' => "[size=4]Αυτό είναι το μέγεθος 4.[/size]", + 'text_size_remarks' => "n πρέπει να είναι ακέραιος αριθμός στην περιοχή 1 (μικρότερο) έως 7 (μεγαλύτερο). Το προεπιλεγμένο μέγεθος είναι 2.", + 'text_font' => "Font", + 'text_font_description' => "Ορίζει την όψη τύπου (γραμματοσειρά) για το εσώκλειστο κείμενο.", + 'text_font_syntax' => "[font=Font]Text[/font]", + 'text_font_example' => "[font=Impact]Hello world![/font]", + 'text_font_remarks' => "Μπορείτε να καθορίσετε εναλλακτικές γραμματοσειρές με το διαχωρισμό τους με κόμμα.", + 'text_hyperlink_one' => "Υπερσύνδεσμος (alt. 1)", + 'text_hyperlink_one_description' => "Εισάγει έναν υπερσύνδεσμο.", + 'text_hyperlink_one_syntax' => "[url]URL[/url]", + 'text_hyperlink_one_example' => "[url]http://%s[/url]", + 'text_hyperlink_one_remarks' => "Αυτή η ετικέτα είναι περιττή. Όλα τα URL είναι αυτόματα υπερ-συνδεδεμένα.", + 'text_hyperlink_two' => "Υπερσύνδεσμος (alt. 2)", + 'text_hyperlink_two_description' => "Εισάγει έναν υπερσύνδεσμο.", + 'text_hyperlink_two_syntax' => "[url=URL]κείμενο συνδέσμου[/url]", + 'text_hyperlink_two_example' => "[url=http://%s]%s[/url]", + 'text_hyperlink_two_remarks' => "Δεν χρειάζεται να χρησιμοποιήσετε αυτήν την ετικέτα εκτός αν θέλετε να ορίσετε το κείμενο συνδέσμου, όλες οι διευθύνσεις URL είναι αυτόματα υπερ-συνδεδεμένες.", + 'text_image_one' => "Εικόνα (alt. 1)", + 'text_image_one_description' => "Εισάγει μια εικόνα.", + 'text_image_one_syntax' => "[img=URL]", + 'text_image_one_example' => "[img=http://%s/pic/nexus.png]", + 'text_image_one_remarks' => "The URL must end with .gif, .jpg, .jpeg or .png.", + 'text_image_two' => "Εικόνα (alt. 2)", + 'text_image_two_description' => "Εισάγει μια εικόνα.", + 'text_image_two_syntax' => "[img]URL[/img]", + 'text_image_two_example' => "[img]http://%s/pic/nexus.png[/img]", + 'text_image_two_remarks' => "The URL must end with .gif, .jpg, .jpeg or .png.", + 'text_quote_one' => "Παράθεση (alt. 1)", + 'text_quote_one_description' => "Εισάγει ένα απόσπασμα.", + 'text_quote_one_syntax' => "[quote]κείμενο σε παράθεση[/quote]", + 'text_quote_one_example' => "[quote]I love %s.[/quote]", + 'text_quote_two' => "Παράθεση (alt. 2)", + 'text_quote_two_description' => "Εισάγει ένα απόσπασμα.", + 'text_quote_two_syntax' => "[απόσπασμα =Συγγραφέας]κείμενο παράθεσης[/quote]", + 'text_quote_two_example' => "[απόσπασμα =%s]Λατρεύω %s.[/quote]", + 'text_list' => "Λίστα", + 'text_description' => "Εισάγει ένα στοιχείο λίστας.", + 'text_list_syntax' => "[*]Κείμενο", + 'text_list_example' => "[*] Αυτό είναι το στοιχείο 1\n[*] Αυτό είναι το στοιχείο 2", + 'text_preformat' => "Προμορφοποίηση", + 'text_preformat_description' => "Προμορφοποιημένο κείμενο (μονογραφία). Δεν αναδιπλώνεται αυτόματα.", + 'text_preformat_syntax' => "[pre]Κείμενο[/pre]", + 'text_preformat_example' => "[pre]Αυτό είναι προδιαμορφωμένο κείμενο.[/pre]", + 'text_code' => "Κωδικός", + 'text_code_description' => "Εμφάνιση κειμένου σε διακοσμημένη μορφή.", + 'text_code_syntax' => "[code]Κείμενο[/code]", + 'text_code_example' => "[code]This is code[/code]", + 'text_you' => "[you]", + 'text_you_description' => "Εμφάνιση του ονόματος χρήστη όλων όσων βλέπουν αυτό", + 'text_you_syntax' => "[you]", + 'text_you_example' => "I know you are reading this, [you]", + 'text_you_remarks' => "Χρήσιμο για την κατασκευή κόλπα", + 'text_site' => "[site]", + 'text_site_description' => "Εμφανίζει το όνομα της ιστοσελίδας", + 'text_site_syntax' => "[site]", + 'text_site_example' => "You are visiting [site] now", + 'text_siteurl' => "[siteurl]", + 'text_siteurl_description' => "Εμφάνιση της διεύθυνσης URL αυτού του ιστότοπου", + 'text_siteurl_syntax' => "[siteurl]", + 'text_siteurl_example' => "The url of [site] is [siteurl]", + 'text_flash' => "Φλας (alt. 1)", + 'text_flash_description' => "Εισαγωγή φλας σε ιστοσελίδες με καθορισμένο πλάτος και ύψος", + 'text_flash_syntax' => "[flash,width,height]Flash URL[/flash]", + 'text_flash_example' => "[flash,500,300]http://%s/flash.demo.swf[/flash]", + 'text_flash_two' => "Φλας (εναλλακτικό 2)", + 'text_flash_two_description' => "Εισαγωγή φλας σε ιστοσελίδες στο προεπιλεγμένο πλάτος και ύψος (500 * 300)", + 'text_flash_two_syntax' => "[flash]Flash URL[/flash]", + 'text_flash_two_example' => "[flash]http://%s/flash.demo.swf[/flash]", + 'text_flv_one' => "Flash βίντεο (alt.1)", + 'text_flv_one_description' => "Εισαγωγή flash βίντεο σε ιστοσελίδες με καθορισμένο πλάτος και ύψος", + 'text_flv_one_syntax' => "[flv,width,height]Flash βίντεο URL[/flv]", + 'text_flv_one_example' => "[flv,320,240]http://%s/flash.video.demo.flv[/flv]", + 'text_flv_two' => "Flash βίντεο (alt.2)", + 'text_flv_two_description' => "Εισαγωγή flash βίντεο σε ιστοσελίδες με προεπιλεγμένο πλάτος και ύψος (320 * 240)", + 'text_flv_two_syntax' => "[flv]Flash URL βίντεο[/flv]", + 'text_flv_two_example' => "[flv]http://%s/flash.video.demo.flv[/flv]", + 'text_youtube' => "YouTube", + 'text_youtube_description' => "Εισαγωγή online βίντεο YouTube σε ιστοσελίδες", + 'text_youtube_syntax' => "[youtube,width,height]Video URL στο YouTube[/youtube]", + 'text_youtube_example' => "[youtube,560,315]https://www.youtube.com/watch?v=DWDL3VTCcg&ab_channel=ESPNMMA[/youtube]", + 'text_youku' => "YouKu", + 'text_youku_description' => "Εισαγωγή online βίντεο YouKu σε ιστοσελίδες", + 'text_youku_syntax' => "[youku]βίντεο URL στο YouKu[/youku]", + 'text_youku_example' => "[youku]http://player.youku.com/player.php/sid/XMzM1MDExODg=/v.swf[/youku]", + 'text_tudou' => "TuDou", + 'text_tudou_description' => "Εισαγωγή online βίντεο TuDou σε ιστοσελίδες", + 'text_tudou_syntax' => "[tudou]Βίντεο URL στο TuDou[/tudou]", + 'text_tudou_example' => "[tudou]http://www.tudou.com/v/1jaI4LNa7sk[/tudou]", + 'text_ninety_eight_image' => "Εικόνα CC98", + 'text_ninety_eight_image_description' => "Η εικόνα που φιλοξενείται στο φόρουμ CC98", + 'text_ninety_eight_image_syntax' => " [98img=[auto number]]image file[/98img]", + 'text_ninety_eight_image_example' => "[98img=150]uploadfile/2008/10/30/2362924185.png[/98img]", + 'text_ninety_eight_image_remarks' => "Το CC98 είναι ένα φόρουμ στο Πανεπιστήμιο Zhejiang", + 'text_spoiler' => 'Spoiler', + 'text_spoiler_description' => 'Εισαγωγή επεκτάσιμου/πτυσσόμενου περιεχομένου στη σελίδα', + 'text_spoiler_syntax' => '[spoiler=title]Αυτό είναι το διπλωμένο περιεχόμενο[/spoiler]', + 'text_spoiler_example' => '[spoiler=Τι συνέβη στο τελικό τέλος του ήρωα?]Ο ήρωας πέθανε τελευταίο![/spoiler]', + + 'text_left' => 'Text align left', + 'text_left_description' => 'Εισαγωγή περιεχομένου με αριστερή αιτιολόγηση στη σελίδα', + 'text_left_syntax' => '[left]Αυτό είναι το αριστερό-ευθυγραμμισμένο περιεχόμενο[/left]', + 'text_left_example' => '[left]Αυτό είναι το αριστερό-ευθυγραμμισμένο περιεχόμενο[/left]', + + 'text_center' => 'Κέντρο στοίχισης κειμένου', + 'text_center_description' => 'Εισαγάγετε περιεχόμενο αιτιολογημένο από κέντρο στη σελίδα', + 'text_center_syntax' => '[center]Αυτό είναι το κεντρο-ευθυγραμμισμένο περιεχόμενο[/center]', + 'text_center_example' => '[center]Αυτό είναι το κεντρο-ευθυγραμμισμένο περιεχόμενο[/center]', + + 'text_right' => 'Στοίχιση κειμένου δεξιά', + 'text_right_description' => 'Εισαγωγή περιεχομένου που δικαιολογείται από τα δεξιά στη σελίδα', + 'text_right_syntax' => '[right]Αυτό είναι το δεξιό-ευθυγραμμισμένο περιεχόμενο[/right]', + 'text_right_example' => '[right]Αυτό είναι το δεξιό-ευθυγραμμισμένο περιεχόμενο[/right]', +); + +?> diff --git a/lang/el/lang_takeconfirm.php b/lang/el/lang_takeconfirm.php new file mode 100644 index 00000000..4a3c2b0c --- /dev/null +++ b/lang/el/lang_takeconfirm.php @@ -0,0 +1,14 @@ + "Sorry...", + 'std_no_buddy_to_confirm' => "Δεν υπάρχει φίλος προς επιβεβαίωση. :(

    Παρακαλώ κάντε κλικ ", + 'std_here_to_go_back' => "here to go back.", + 'mail_title' => " Ο Λογαριασμός Επιβεβαιώθηκε", + 'mail_here' => "ΕΔΩ", + 'mail_content_1' => "Hello,

    Your account has been confirmed. You can now visit ", + 'mail_content_2' => "

    and use your login information to login in. We hope you'll read the FAQ's and Rules before you start sharing files.

    Good luck and have fun on ".$SITENAME."!

    If you do not know the person who has invited you, please report this email to ".$REPORTMAIL."
    ------
    Δες,Η ".$SITENAME." Ομάδα." +); + +?> diff --git a/lang/el/lang_takecontact.php b/lang/el/lang_takecontact.php new file mode 100644 index 00000000..afc8877b --- /dev/null +++ b/lang/el/lang_takecontact.php @@ -0,0 +1,17 @@ + "Σφάλμα", + 'std_method' => "Μέθοδος", + 'std_please_enter_something' => "Παρακαλώ εισάγετε κάτι!", + 'std_please_define_subject' => "Πρέπει να ορίσετε το θέμα!", + 'std_message_flooding' => "Δεν επιτρέπονται πλημμύρες μηνυμάτων. Παρακαλώ περιμένετε ", + 'std_second' => " δευτερόλεπτο", + 'std_s' => "ίνα", + 'std_before_sending_pm' => " πριν από την αποστολή PM στο STAFF.", + 'std_succeeded' => "Επιτυχής", + 'std_message_succesfully_sent' => "Το μήνυμα στάλθηκε επιτυχώς!" +); + +?> \ No newline at end of file diff --git a/lang/el/lang_takeedit.php b/lang/el/lang_takeedit.php new file mode 100644 index 00000000..50a5dd17 --- /dev/null +++ b/lang/el/lang_takeedit.php @@ -0,0 +1,12 @@ + "Η επεξεργασία απέτυχε!", + 'std_missing_form_data' => "λείπουν δεδομένα φόρμας", + 'std_not_owner' => "Δεν είστε ο ιδιοκτήτης! Πώς συνέβη αυτό?", + 'std_nfo_too_big' => "NFO είναι πολύ μεγάλο! Μέγιστο 65.535 bytes.", + 'std_cannot_move_torrent' => "Δεν έχετε άδεια να μετακινήσετε torrent σε άλλη ενότητα. BTW, πώς θα φτάσετε εδώ?" +); + +?> \ No newline at end of file diff --git a/lang/el/lang_takeflush.php b/lang/el/lang_takeflush.php new file mode 100644 index 00000000..ff6eebbe --- /dev/null +++ b/lang/el/lang_takeflush.php @@ -0,0 +1,11 @@ + "Απέτυχε", + 'std_success' => "Επιτυχία", + 'std_ghost_torrents_cleaned' => "torrents φάντασμα καθαρίστηκαν με επιτυχία.", + 'std_cannot_flush_others' => "Μπορείτε μόνο να καθαρίσετε τα δικά σας torrent φάντασμα" +); + +?> \ No newline at end of file diff --git a/lang/el/lang_takeinvite.php b/lang/el/lang_takeinvite.php new file mode 100644 index 00000000..b8b2e924 --- /dev/null +++ b/lang/el/lang_takeinvite.php @@ -0,0 +1,29 @@ + "Η πρόσκληση απέτυχε!", + 'std_username_too_long' => "Λυπούμαστε, το όνομα χρήστη είναι πολύ μεγάλο (έως 12 χαρακτήρες)", + 'std_must_enter_email' => "Πρέπει να εισάγετε μια διεύθυνση email!", + 'std_invalid_email_address' => "Μη έγκυρη διεύθυνση email!", + 'std_must_enter_personal_message' => "Παρακαλώ προσθέστε ένα προσωπικό μήνυμα.", + 'std_email_address' => "Η διεύθυνση ηλεκτρονικού ταχυδρομείου ", + 'std_is_in_use' => " είναι ήδη σε χρήση.", + 'mail_here' => "ΕΔΩ", + 'mail_tilte' => " Πρόσκληση", + 'mail_one' => "Hi,

    You have been invited to join the %s community by ", + 'mail_two' => ".
    This is a private community which has very knowledgeable members.
    If you are interested in joining the community please read over
    the rules and confirm the invite.

    If you want to accept this invitation, you'll need to click this link:", + 'mail_three' => "Θα χρειαστεί να αποδεχτείτε την πρόσκληση μέσα ", + 'mail_four' => " ημέρες, ή αλλιώς ο σύνδεσμος θα γίνει ανενεργός.
    Εμείς σε %s ελπίζουμε ότι θα δεχτούμε την πρόσκληση και θα ενταχθούμε στη μεγάλη μας κοινότητα!

    Προσωπικό μήνυμα από ", + 'mail_five' => ":", + 'mail_six' => "Εάν δεν γνωρίζετε το άτομο που σας έχει προσκαλέσει, παρακαλώ προωθήστε αυτό το email στο %s

    ------
    Δες,
    Η ομάδα %s.", + 'std_error' => "Σφάλμα", + 'std_invite_denied' => "Οι χρήστες της τάξης σας δεν επιτρέπεται να στείλουν πρόσκληση. Πώς μπορείτε να φτάσετε εδώ?", + 'std_email_address_banned' => "Αυτή η διεύθυνση ηλεκτρονικού ταχυδρομείου έχει αποκλειστεί!", + 'std_wrong_email_address_domains' => "Αυτή η διεύθυνση ηλεκτρονικού ταχυδρομείου δεν επιτρέπεται! Θα μπορούσατε να στείλετε πρόσκληση μόνο σε αυτούς τους τομείς: ", + 'std_no_invite' => "Δεν έχετε καμία πρόσκληση. Πώς μπορείτε να πάρετε εδώ?", + 'std_invitation_already_sent_to' => "Η πρόσκληση απέτυχε! Η διεύθυνση ηλεκτρονικού ταχυδρομείου ", + 'std_await_user_registeration' => " έχει ήδη λάβει μια πρόσκληση. Παρακαλώ περιμένετε να εγγραφεί ο χρήστης.", +); + +?> diff --git a/lang/el/lang_takelogin.php b/lang/el/lang_takelogin.php new file mode 100644 index 00000000..2fdb2ca2 --- /dev/null +++ b/lang/el/lang_takelogin.php @@ -0,0 +1,13 @@ + "Σφάλμα: Λάθος όνομα χρήστη ή κωδικός!

    Μην θυμάστε τον κωδικό πρόσβασής σας? Ανάκτηση τον κωδικό πρόσβασής σας!", + 'std_login_fail' => "Η σύνδεση απέτυχε!", + 'std_account_disabled' => "Αυτός ο λογαριασμός έχει απενεργοποιηθεί.", + 'std_user_account_unconfirmed' => "Ο λογαριασμός δεν έχει επαληθευτεί ακόμα. Εάν δεν λάβατε το email επιβεβαίωσης, προσπαθήστε να το επαναλάβετε .", + 'std_require_two_step_code' => 'Απαιτείται κωδικός ταυτοποίησης δύο σταδίων.', + 'std_invalid_two_step_code' => 'Μη έγκυρος κωδικός ταυτοποίησης δύο βημάτων.', +); + +?> diff --git a/lang/el/lang_takemessage.php b/lang/el/lang_takemessage.php new file mode 100644 index 00000000..88f19957 --- /dev/null +++ b/lang/el/lang_takemessage.php @@ -0,0 +1,29 @@ + "Σφάλμα", + 'std_permission_denied' => "Άρνηση Άδειας!", + 'std_please_enter_something' => "Παρακαλώ εισάγετε κάτι!", + 'std_message_flooding_denied' => "Δεν επιτρέπονται πλημμύρες μηνυμάτων. Παρακαλώ περιμένετε ", + 'std_before_sending_pm' => " δευτερόλεπτο(α) πριν από την αποστολή PM.", + 'std_invalid_id' => "Invalid ID", + 'std_user_not_exist' => "Κανένας χρήστης με αυτό το ID", + 'std_refused' => "Άρνηση", + 'std_account_parked' => "Αυτός ο λογαριασμός είναι σταθμευμένος.", + 'std_user_blocks_your_pms' => "Αυτός ο χρήστης έχει αποκλείσει PMs από εσάς.", + 'std_user_accepts_friends_pms' => "Αυτός ο χρήστης δέχεται μόνο PMs από χρήστες στη λίστα φίλων του.", + 'std_user_blocks_all_pms' => "Αυτός ο χρήστης δεν δέχεται PMs.", + 'std_succeeded' => "Επιτυχής", + 'std_messages_out_of' => " μηνύματα εκτός ", + 'std_were' => " ήταν", + 'std_message_was' => "Το μήνυμα ήταν", + 'std_successfully_sent' => " στάλθηκε με επιτυχία!", + 'std_s_were' => "s were", + 'std_was' => " ήταν", + 'std_updated' => " ενημερώθηκαν!", + 'std_no_permission_forwarding' => "Δεν έχετε άδεια να προωθήσετε αυτό το μήνυμα.", + 'std_must_enter_username' => "Πρέπει να εισάγετε το όνομα χρήστη στο οποίο θέλετε να προωθήσετε το μήνυμα." +); + +?> diff --git a/lang/el/lang_takereseed.php b/lang/el/lang_takereseed.php new file mode 100644 index 00000000..849660e0 --- /dev/null +++ b/lang/el/lang_takereseed.php @@ -0,0 +1,12 @@ + "Αίτημα Ανησυχίας!", + 'std_it_worked' => "Λειτουργεί! Ένα μήνυμα αποστέλλεται σε χρήστες που έχουν άρπαξε αυτό το torrent.", + 'std_error' => "Σφάλμα", + 'std_torrent_not_dead' => "Το χείμαρρο δεν είναι νεκρό.", + 'std_reseed_sent_recently' => "Κάποιος ζήτησε ήδη την επανάληψη αυτού του torrent τα τελευταία 15 λεπτά. Παρακαλώ περιμένετε υπομονετικά για τους χρήστες να επανέλθουν.", +); + +?> diff --git a/lang/el/lang_takesignup.php b/lang/el/lang_takesignup.php new file mode 100644 index 00000000..0b94bf5d --- /dev/null +++ b/lang/el/lang_takesignup.php @@ -0,0 +1,41 @@ + "Η Εγγραφή Απέτυχε! (Βλ. Below)", + 'std_invalid_email_address' => "Μη έγκυρη διεύθυνση email!", + 'std_email_address_banned' => "Αυτή η διεύθυνση ηλεκτρονικού ταχυδρομείου έχει αποκλειστεί!", + 'std_wrong_email_address_domains' => "Αυτή η διεύθυνση ηλεκτρονικού ταχυδρομείου δεν επιτρέπεται! Μπορείτε να εγγραφείτε μόνο με email από αυτούς τους τομείς: ", + 'std_invalid_gender' => "Μη Έγκυρο Φύλο!", + 'std_blank_field' => "Μην αφήνετε κενά πεδία.", + 'std_hintanswer_too_short' => "Λυπούμαστε, η Hintanswer είναι πολύ σύντομη (το ελάχιστο είναι 6 χαρακτήρες)", + 'std_username_too_long' => "Συγνώμη, το όνομα χρήστη είναι πολύ μεγάλο (μέγιστο είναι 12 χαρακτήρες)", + 'std_passwords_unmatched' => "Οι κωδικοί πρόσβασης δεν ταιριάζουν! Musthave typoed. Δοκιμάστε ξανά.", + 'std_password_too_short' => "Λυπούμαστε, ο κωδικός πρόσβασης είναι πολύ μικρός (το ελάχιστο είναι 6 χαρακτήρες)", + 'std_password_too_long' => "Λυπούμαστε, ο κωδικός είναι πολύ μεγάλος (μέγιστο είναι 40 χαρακτήρες)", + 'std_password_equals_username' => "Συγγνώμη, ο κωδικός πρόσβασης δεν μπορεί να είναι ίδιος με το όνομα χρήστη.", + 'std_wrong_email_address_format' => "Αυτό δεν μοιάζει με μια έγκυρη διεύθυνση email.", + 'std_invalid_username' => "Μη έγκυρο όνομα χρήστη.", + 'std_unqualified' => "Λυπάμαι, δεν έχετε τα προσόντα να γίνετε μέλος αυτής της ιστοσελίδας.", + 'std_email_address' => "Η διεύθυνση ηλεκτρονικού ταχυδρομείου ", + 'std_in_use' => " είναι ήδη σε χρήση.", + 'std_username_exists' => "Το όνομα χρήστη υπάρχει ήδη!", + 'std_database_in_distress' => "Λυπούμαστε, σφάλμα mysql. Επικοινωνήστε με το διαχειριστή για αυτό το σφάλμα.", + 'std_almost_signup' => "Σχεδόν τελειώστε την εγγραφή!", + 'std_please_click' => "Παρακαλώ κάντε κλικ ", + 'std_here' => "εδώ", + 'std_to_finish_signup' => " για να ολοκληρώσετε την εγγραφή, ευχαριστίες!", + 'msg_subject' => "Καλώς ήλθατε στο ", + 'msg_congratulations' => "Συγχαρητήρια ", + 'msg_you_are_a_member' => ",\n\nYou are now a member of %s,\nWe would like to take this opportunity to say hello and welcome to %s!\n\nPlease be sure to read the [url=rules.php][b]Rules[/b][/url] and the [url=faq.php][b]Faq[/b][/url].\n And be sure to stop by the [url=forums.php][b]Forums[/b][/url]: and say Hello!\n\nEnjoy your Stay.\nThe Staff of %s ", + 'mail_this_link' => "ΑΥΤΗ ΓΡΑΜΜΗ", + 'mail_here' => "ΕΔΩ", + 'mail_title' => " Επιβεβαίωση Εγγραφής Χρήστη", + 'mail_one' => "Hi ", + 'mail_two' => ",

    Έχετε ζητήσει ένα νέο λογαριασμό χρήστη στο %s και έχετε ορίσει
    αυτή τη διεύθυνση ", + 'mail_three' => " as user contact.

    If you did not do this, please ignore this email. The person who entered your
    email address had the IP address ", + 'mail_four' => ". Παρακαλώ μην απαντήσετε.

    Για να επιβεβαιώσετε την εγγραφή χρήστη σας, πρέπει να ακολουθήσετε ", + 'mail_four_1' => "

    Αν ο παραπάνω σύνδεσμος έχει χαλάσει ή έχει λήξει, προσπαθήστε να στείλετε ξανά ένα νέο email επιβεβαίωσης από ", + 'mail_five' => "

    After you do this, you will be able to use your new account. If you fail to
    do this, your account will be deleted within 24 hours. We urge you to read
    the RULES and FAQ before you start using %s.

    Please Note: If you did not register for %s, please report this email to %s

    ------
    Yours,
    The %s Team.", +); +?> diff --git a/lang/el/lang_takeupload.php b/lang/el/lang_takeupload.php new file mode 100644 index 00000000..fca047d6 --- /dev/null +++ b/lang/el/lang_takeupload.php @@ -0,0 +1,31 @@ + "Η μεταφόρτωση απέτυχε!", + 'std_missing_form_data' => "λείπουν δεδομένα φόρμας", + 'std_empty_filename' => "Κενό όνομα αρχείου!", + 'std_zero_byte_nfo' => "0-byte NFO", + 'std_nfo_too_big' => "NFO είναι πολύ μεγάλο! Μέγιστο 65.535 bytes.", + 'std_nfo_upload_failed' => "Αποτυχία μεταφόρτωσης NFO", + 'std_blank_description' => "Πρέπει να εισάγετε μια περιγραφή!", + 'std_category_unselected' => "Πρέπει να επιλέξετε μια κατηγορία για να τοποθετήσετε το torrent στο!", + 'std_invalid_filename' => "Μη έγκυρο όνομα αρχείου!", + 'std_filename_not_torrent' => "Μη έγκυρο όνομα αρχείου (όχι ένα .torrent).", + 'std_empty_file' => "Κενό αρχείο!", + 'std_not_bencoded_file' => "Τι η κόλαση έχετε μεταφορτώσει? Αυτό δεν είναι ένα καλοκωδικοποιημένο αρχείο!", + 'std_not_a_dictionary' => "όχι λεξικό", + 'std_dictionary_is_missing_key' => "το λεξικό λείπει κλειδί(ά)", + 'std_invalid_entry_in_dictionary' => "μη έγκυρη καταχώρηση στο λεξικό", + 'std_invalid_dictionary_entry_type' => "μη έγκυρος τύπος καταχώρησης λεξικού", + 'std_invalid_pieces' => "άκυρα κομμάτια", + 'std_missing_length_and_files' => "λείπουν τόσο μήκος όσο και αρχεία", + 'std_filename_errors' => "σφάλμα ονόματος αρχείου", + 'std_uploaded_not_offered' => "είστε εξουσιοδοτημένοι μόνο να ανεβάσετε το torrent που προσφέρατε, παρακαλώ πηγαίνετε πίσω και επιλέξτε ένα από το 'Η προσφορά σας'!", + 'std_unauthorized_upload_freely' => "δεν είστε εξουσιοδοτημένοι να ανεβάσετε το torrent ελεύθερα!", + 'std_torrent_existed' => "Το torrent μεταφορτώθηκε ήδη!", + 'std_torrent_file_too_big' => "Το αρχείο torrent είναι πολύ μεγάλο! Μέγιστο ", + 'std_remake_torrent_note' => " bytes. Παρακαλούμε κάντε ξανά το αρχείο torrent με μεγαλύτερο μέγεθος κομματιού ή χωρίστε το περιεχόμενο σε πολλά torrents.", +); + +?> diff --git a/lang/el/lang_topten.php b/lang/el/lang_topten.php new file mode 100644 index 00000000..f2e44622 --- /dev/null +++ b/lang/el/lang_topten.php @@ -0,0 +1,116 @@ + "Σφάλμα!", + 'std_sorry' => "Sorry...", + 'std_permission_denied_only' => "Άρνηση άδειας. Μόνο ", + 'std_or_above_can_view' => " ή πιο πάνω θα μπορούσε να προβάλει το Top 10.

    "."FAQ για περισσότερες πληροφορίες σχετικά με διαφορετικές κατηγορίες χρηστών και τι μπορούν να κάνουν.

    Το προσωπικό %s
    ", + 'col_rank' => "Κατάταξη", + 'col_user' => "Χρήστης", + 'col_donated' => "Δωρεά", + 'col_ul_speed' => "Ταχύτητα UL", + 'col_downloaded' => "Λήφθηκε", + 'col_dl_speed' => "Ταχύτητα DL", + 'col_ratio' => "Αναλογία", + 'col_joined' => "Έγινε", + 'col_name' => "Όνομα", + 'title_sna' => "Αριθμός αρπαγών", + 'col_data' => "Δεδομένα", + 'title_se' => "Αριθμός των Seeders", + 'col_le' => "Αριθμός των ληπτών", + 'col_to' => "Προς.", + 'col_country' => "Χώρα", + 'col_username' => "Όνομα Χρήστη", + 'col_upload_rate' => "Ποσοστό ανεβάσματος", + 'col_download_rate' => "Λήψη ποσοστού", + 'text_users' => "Χρήστες", + 'text_torrents' => "Torrents" , + 'text_countries' => "Χώρες", + 'text_peers' => "Υπολογιστές", + 'text_community' => "Κοινότητα", + 'text_search' => "Αναζήτηση", + 'text_other' => "Άλλο", + 'text_this_page_last_updated' => "Τελευταία ενημέρωση σελίδας ", + 'text_started_recording_date' => "Ξεκίνησε την εγγραφή στατιστικών του λογαριασμού xfer στο ", + 'text_update_interval' => ", και οι στατιστικές ενημερώνονται κάθε 60 λεπτά", + 'text_uploaders' => "Φορτωτές", + 'text_downloaders' => "Λήψεις", + 'text_fastest_uploaders' => "Γρηγορότεροι Αποστολέςcomment", + 'text_fastest_up_note' => "(μέσος όρος, περιλαμβάνει ανενεργό χρόνο, με ελάχιστο 50 GB ανέβασμα)", + 'text_fastest_note' => "(μέσος όρος, περιλαμβάνει ανενεργό χρόνο)", + 'text_fastest_downloaders' => "Γρηγορότεροι Λήπτες", + 'text_best_sharers' => "Οι Καλύτεροι Μετοχές", + 'text_sharers_note' => "(με ελάχιστη λήψη 50 GB)", + 'text_worst_sharers' => "Χειρότεροι Μετοχές", + 'text_most_active_torrents' => "Πιο Ενεργά Torrents", + 'text_most_snatched_torrents' => "Πιο Άρπαξαν Torrents" , + 'text_most_data_transferred_torrents' => "Περισσότερα Δεδομένα Που Μεταφέρθηκαν Torrents", + 'text_best_seeded_torrents' => "Βέλτιστα Χωρητικά ", + 'text_best_seeded_torrents_note' => "(με τουλάχιστον 5 σπόρους)", + 'text_worst_seeded_torrents' => "Χειρότερα Χωρισμένα Torrents", + 'text_worst_seeded_torrents_note' => "(με τουλάχιστον 1 χειριστή, εξαιρουμένων των ακάλυπτων torrents)", + + 'text_most_donated_USD' => "Δωρητές σε δολάριο ΗΠΑ", + 'text_most_donated_CNY' => "Χορηγοί σε κινεζικά γιουάν", + 'col_donated_usd' => "Δωρεά($)", + 'col_donated_cny' => "Δωρεά(€)", + + 'text_most_supplied' => " Μεγαλύτερος Προμηθευτής Πόρων(Μην συμπεριλάβετε διαγραμμένα torrents)", + 'text_most_snatched' => " Μεγαλύτερος Πόρος Snatcher(Μην συμπεριλάβετε διαγραμμένα torrents)", + 'col_torrent_uploaded' => "# Ανανεώθηκε", + 'col_torrent_downloaded' => "# Άρπαξε", + + 'text_most_topic' => " Ξεκινώντας Θέμα Φόρουμ (Μην συμπεριλάβετε διαγραμμένα θέματα)", + 'text_most_post' => " Αφίσες του φόρουμ (δεν περιλαμβάνονται διαγραμμένες αναρτήσεις)", + 'col_topics' => "Θέματα", + 'col_posts' => "Αναρτήσεις", + + + 'text_biggest_topics' => "Μεγαλύτερα θέματα (Δεν υπολογίζονται τα Προνόμια στα Φόρουμ)", + 'col_subject' => "Θέμα", + + 'col_number' => "Αριθμός", + 'text_most_browser' => "Browsers", + 'text_most_client' => "Πελάτες Torrent (Τελευταίος ένας που έχει πρόσβαση στον ιχνηλάτη)", + + 'col_comments' => "Σχόλια", + 'text_most_commenter' => "Torrent Commenter (Μην συμπεριλάβετε διαγραμμένα σχόλια)", + + 'col_reviews' => "Κριτικές", + 'text_most_reviewer' => "Επιθεωρητής Κινηματογράφου (Μην συμπεριλάβετε διαγραμμένες κριτικές)", + + 'col_location' => "Τοποθεσία", + 'text_most_locations' => "Ομότιμες Τοποθεσίες", + + 'col_keyword' => "Λέξεις-κλειδιά", + 'col_times' => "Φορές", + 'col_datetime' => "Ώρα", + 'text_latest_search' => "Τελευταίες Αναζητήσεις", + 'text_current_month_search' => "Αναζητήσεις αυτού του μήνα", + 'text_last_month_search' => "Αναζητήσεις του περασμένου μήνα", + 'text_current_year_search' => "Αναζητήσεις για αυτό το έτος", + + 'text_most_bonuses' => "Μπόνους", + 'col_bonus' => "Μπόνους", + 'text_countries_users' => "Χρήστες", + 'col_users' => "Χρήστες", + 'text_countries_uploaded' => "Συνολικό Ανέβασμα", + 'col_uploaded' => "Ανέβηκε", + 'text_countries_per_user' => "Μέσος όρος Συνολικού Ανέβασμα ανά χρήστη (με ελάχιστο 1TB ανέβασμα και 100 χρήστες)", + 'col_average' => "Μέσος", + 'text_countries_ratio' => "Αναλογία (με ελάχιστη αποστολή 1TB, λήψη 1TB και 100 χρήστες)", + 'text_ago' => " πριν", + 'text_inf' => "Inf.", + 'head_top_ten' => "Πάνω 10", + 'text_most_stylesheet' => "Stylesheets", + 'text_most_language' => "Γλώσσες Χρήστη", + 'text_top' => "Πάνω ", + 'text_one_hundred' => "Πάνω 100", + 'text_top_250' => "Κορυφή 250", + 'col_clicks' => "Κλικ", + 'text_most_clicks' => "Ιδιοκτήτες Συνδέσμων Προώθησης", + 'text_charity_giver' => "Φιλανθρωπικά Γίγαντες" +); + +?> diff --git a/lang/el/lang_torrents.php b/lang/el/lang_torrents.php new file mode 100644 index 00000000..8a10e8bb --- /dev/null +++ b/lang/el/lang_torrents.php @@ -0,0 +1,69 @@ + "Αποτελέσματα αναζήτησης για ", + 'text_search_box' => "Πλαίσιο Αναζήτησης", + 'text_category' => "Κατηγορία:", + 'text_source' => "Πηγή:", + 'text_codec' => "Κωδικοποιητής:", + 'text_standard' => "Πρότυπο:", + 'text_processing' => "Επεξεργασία:", + 'text_show_dead_active' => "Εμφάνιση Νεκρ/Ενεργό?", + 'select_including_dead' => "συμπεριλαμβανομένων των νεκρών", + 'select_active' => "ενεργό", + 'select_dead' => "νεκρός", + 'text_show_special_torrents' => "Εμφάνιση Προώθησης?", + 'select_all' => "όλα", + 'select_normal' => "κανονικό", + 'select_free' => "δωρεάν", + 'select_two_times_up' => "2x πάνω", + 'select_free_two_times_up' => "δωρεάν και 2x επάνω", + 'select_half_down' => "50% κάτω", + 'text_search' => "Αναζήτηση λέξη-κλειδί:", + 'submit_go' => "Go!", + 'std_search_results_for' => "Αποτελέσματα αναζήτησης για \"", + 'std_try_again' => "Τίποτα δεν βρέθηκε! Δοκιμάστε ξανά με μια εκλεπτυσμένη συμβολοσειρά αναζήτησης.\n", + 'std_nothing_found' => "Τίποτα δεν βρέθηκε!", + 'std_no_active_torrents' => "Δεν Υπάρχουν Torrents :(\n", + 'input_check_all' => "Επιλογή Όλων", + 'input_uncheck_all' => "Αποεπιλογή Όλων", + 'text_download_client' => "Επιτρεπόμενη Λήψη Πελάτη", + 'select_title' => "Τίτλος", + 'select_description' => "Περιγραφή", + 'select_small_description' => "Μικρή Περιγραφή", + 'select_uploader' => "Μεταφόρτωση", + 'select_imdb_url' => "IMDb URL", + 'select_and' => "ΚΑΙ", + 'select_or' => "Ή", + 'select_exact' => "Ακριβής", + 'select_parsed' => "Parsed", + 'text_in' => " σε ", + 'text_with' => " με ", + 'text_mode' => " λειτουργία αντιστοίχισης", + 'text_show_bookmarked' => "Εμφάνιση Σελιδοδεικτών?", + 'select_bookmarked' => "Σελιδοδείκτης", + 'select_bookmarked_exclude' => "Χωρίς Σελιδοδείκτη", + 'text_s_bookmarked_torrent' => "'s Σελιδοδείκτης Torrents", + 'text_s_not_bookmarked_torrent' => "'s ΔΕΝ Σελιδοδείκτη Torrent", + 'head_torrents' => "Torrents", + 'head_special' => "Ειδικό", + 'text_movies_and_tvs' => "Ταινίες & Τηλεοράσεις:", + 'text_games_and_appz' => "Παιχνίδια & Εφαρμογή:", + 'text_others' => "Άλλοι:", + 'text_medium' => "Μέσο:", + 'text_team' => "Ομάδα:", + 'text_audio_codec' => "Κωδικοποιητής Ήχου:", + 'text_video' => "Βίντεο:", + 'text_tv' => "TV:", + 'text_music' => "Μουσική:", + 'text_software' => "Λογισμικό:", + 'text_approval_status' => 'Κατάσταση έγκρισης:', + 'size_range' => 'Size range(GB):', + 'leechers_range' => 'Leechers range:', + 'seeders_range' => 'Εύρος σπόρων:', + 'times_completed_range' => 'Χρόνος ολοκλήρωσης εύρος:', + 'added_range' => 'Εύρος προσθήκης:', +); + +?> diff --git a/lang/el/lang_upload.php b/lang/el/lang_upload.php new file mode 100644 index 00000000..a1631878 --- /dev/null +++ b/lang/el/lang_upload.php @@ -0,0 +1,46 @@ + "Ανέβασμα", + 'std_sorry' => "Sorry...", + 'std_unauthorized_to_upload' => "Δεν είστε εξουσιοδοτημένοι να ανεβάσετε torrents. Διαβάστε (Inbox)", + 'std_please_offer' => "Δεν είστε εξουσιοδοτημένοι να ανεβάσετε torrents. (Δείτε το Uploading στις Συχνές Ερωτήσεις.

    Αν νομίζετε ότι έχετε τα προσόντα για μεταφόρτωση δικαιωμάτων, παρακαλούμε να προτείνετε την προσφορά σας εδώ
    ", + 'text_red_star_required' => "Τα πεδία με κόκκινο αστέρι (*) είναι υποχρεωτικά.", + 'text_tracker_url' => "Το URL ανακοίνωσης του ιχνηλάτη είναι", + 'row_torrent_file' => "Αρχείο torrent ", + 'row_torrent_name' => "Torrent όνομα", + 'text_torrent_name_note' => "(Taken from filename if not specied. Παρακαλούμε χρησιμοποιήστε περιγραφικά ονόματα. π.χ. Blade Runner 1982 Final Cut 720p HDDVD DTS x264-ESiR)\n", + 'row_small_description' => "Small description", + 'text_small_description_note' => "(Αυτό εμφανίζεται στη σελίδα torrents κάτω από το όνομα torrent. π.χ. 720p @ 4615 kbps - DTS 5.1 @ 1536 kbps)\n", + 'row_nfo_file' => "Αρχείο NFO ", + 'text_only_viewed_by' => "(Μπορεί να προβληθεί μόνο από ", + 'text_or_above' => " or Above.
    insert only file ending with .nfo)\n", + 'row_description' => "Περιγραφή", + 'select_choose_one' => "επιλέξτε ένα", + 'row_type' => "Τύπος", + 'row_quality' => "Ποιότητα", + 'text_source' => "Πηγή:", + 'text_codec' => "Κωδικοποιητής:", + 'text_standard' => "Πρότυπο:", + 'text_processing' => "Επεξεργασία:", + 'row_your_offer' => "Η προσφορά σας", + 'text_please_select_offer' => "   If you are uploading one of your offers please select it here so the voters will be notified.", + 'row_show_uploader' => "Εμφάνιση Αποστολέα", + 'checkbox_hide_uploader_note' => "Να μην εμφανίζεται το όνομα χρήστη μου στο πεδίο 'Ανέβασμα By'.", + 'text_read_rules' => "Διάβασα τους κανόνες πριν από αυτή την αποστολή.", + 'submit_upload' => "Ανέβασμα", + 'text_to_browse_section' => "Ανεβάστε στην ενότητα Torrents ", + 'text_to_special_section' => "ή ενότητα Special ", + 'text_type_note' => "   Επιλέξτε μόνο ένα από τα δύο", + 'text_medium' => "Μέσο:", + 'text_team' => "Ομάδα:", + 'text_audio_codec' => "Κωδικοποιητής Ήχου:", + 'row_content' => "Περιεχόμενο", + 'text_chinese_title' => "Κινέζικο Όνομα:", + 'text_english_title' => "Αγγλικό Όνομα:", + 'text_titles_note' => "(Εάν δεν υπάρχει Αγγλικό όνομα, χρησιμοποιήστε pinyin ή αφήστε το κενό)", + 'fill_quality' => 'Ποιότητα γεμίσματος', +); + +?> diff --git a/lang/el/lang_uploaders.php b/lang/el/lang_uploaders.php new file mode 100644 index 00000000..9abf51d2 --- /dev/null +++ b/lang/el/lang_uploaders.php @@ -0,0 +1,22 @@ + "Δεν βρέθηκαν μεταφορτωτές!", + 'head_uploaders' => "Φορτωτές", + 'text_uploaders' => "Φορτωτές", + 'col_username' => "Όνομα Χρήστη", + 'col_torrents_size' => "Μέγεθος Torrents", + 'col_torrents_num' => "Torrents Num", + 'col_last_upload_time' => "Τελευταία Ενημέρωση", + 'col_last_upload' => "Τελευταία Ανανεωμένο Torrent", + 'text_not_available' => "Δ/Υ", + 'submit_go' => "Μετάβαση", + 'text_select_month' => "Επιλογή μήνα: ", + 'text_order_by' => "Ταξινόμηση Κατά", + 'text_username' => "Όνομα Χρήστη", + 'text_torrent_size' => "Μέγεθος Torrent", + 'text_torrent_num' => "Αριθμός Torrent", +); + +?> diff --git a/lang/el/lang_usercp.php b/lang/el/lang_usercp.php new file mode 100644 index 00000000..a43e6219 --- /dev/null +++ b/lang/el/lang_usercp.php @@ -0,0 +1,261 @@ + "Sorry...", + 'text_user_cp_home' => "Αρχική Σελίδα Χρήστη Cp", + 'text_personal_settings' => "Προσωπικές Ρυθμίσεις", + 'text_tracker_settings' => "Ρυθμίσεις Ανιχνευτή", + 'text_forum_settings' => "Ρυθμίσεις Φόρουμ", + 'text_security_settings' => "Ρυθμίσεις Ασφαλείας", + 'row_save_settings' => "Αποθήκευση Ρυθμίσεων", + 'submit_save_settings' => "Αποθηκεύστε Ρυθμίσεις! (PRESS ΜΟΝΟ ONCE)", + 'std_error' => "Σφάλμα", + 'head_control_panel' => "Πίνακας Ελέγχου ", + 'head_personal_settings' => " - Προσωπικές Ρυθμίσεις", + 'std_invalid_action' => "Μη Έγκυρη Ενέργεια", + 'text_saved' => "Αποθηκεύτηκε!", + 'row_account_parked' => "Account parked", + 'checkbox_pack_my_account' => "Θα είμαι μακριά για πολύ καιρό.", + 'text_account_pack_note' => "Note:You can park your account to prevent it from being deleted because of inactivity if you go away on for example a vacation. When the account has been parked limits are put on the account, for example you cannot use the tracker and browse some of the pages.", + 'row_pms' => "PMs", + 'row_recommended_movies' => "Προτεινόμενοι Πόροι", + 'checkbox_show_hot' => "Εμφάνιση HOT στην αρχική σελίδα", + 'checkbox_show_classic' => "Εμφάνιση CLASSIC στην αρχική σελίδα", + 'text_accept_pms' => "Αποδοχή PMs από ", + 'radio_all_except_blocks' => "Όλα (εκτός από μπλοκ)", + 'radio_friends_only' => "Μόνο φίλοι", + 'radio_staff_only' => "Προσωπικό μόνο", + 'checkbox_delete_pms' => "Διαγράψτε PMs στο απάντηση", + 'checkbox_save_pms' => "Αποθήκευση PMs σε Sentbox", + 'checkbox_pm_on_comments' => "Notify me when someone comments on my torrents", + 'row_gender' => "Φύλο", + 'radio_not_available' => "Δ/Υ", + 'radio_male' => "Άντρας", + 'radio_female' => "Γυναίκα", + 'row_country' => "Χώρα", + 'row_download_speed' => "Λήψη Ταχύτητας ", + 'row_upload_speed' => "Ταχύτητα Αποστολής ", + 'row_bt_client' => "Πελάτης BT ", + 'row_avatar_url' => "Avatar URL", + 'select_choose_avatar' => "Επιλέξτε ένα avatar", + 'select_nothing' => "Τίποτα", + 'text_avatar_note' => "Το πλάτος θα πρέπει να είναι 150 pixel (θα αλλάξει μέγεθος εάν είναι απαραίτητο). ", + 'text_bitbucket_note' => "Αν χρειάζεστε έναν οικοδεσπότη για την εικόνα, δοκιμάστε το bitbucket.", + 'row_info' => "Πληροφορίες", + 'text_info_note' => "Εμφανίζεται στη δημόσια σελίδα σας. Μπορεί να περιέχει BB codes.", + 'head_tracker_settings' => " - Ρυθμίσεις Εντοπισμού", + 'row_email_notification' => "Αποστολή ειδοποίησης ", + 'checkbox_notification_received_pm' => "Ειδοποιήστε με όταν έχω λάβει ένα PM.", + 'checkbox_notification_default_categories' => "Ειδοποιήστε με όταν ανεβάζει ένα torrent σε μία από τις προεπιλεγμένες κατηγορίες περιήγησής μου.\n", + 'row_browse_default_categories' => "Προεπιλεγμένες κατηγορίες
    ", + 'row_stylesheet' => "Stylesheet", + 'row_site_language' => "Γλώσσα Ιστοσελίδας", + 'row_torrent_page' => "Torrents per σελίδα", + 'text_zero_equals_default' => "(0=χρήση προεπιλεγμένης ρύθμισης, max=100)", + 'head_forum_settings' => " - Ρυθμίσεις Φόρουμ", + 'row_topics_per_page' => "Θέματα per page", + 'row_posts_per_page' => "Αναρτήσεις per σελίδα", + 'row_view_avatars' => "View avatars", + 'checkbox_low_bandwidth_note' => "(Οι χρήστες του εύρους ζώνης μπορεί να θέλουν να το απενεργοποιήσουν)", + 'row_view_signatures' => "Προβολή Υπογραφών", + 'row_forum_signature' => "Υπογραφή Φόρουμ", + 'head_security_settings' => " - Ρυθμίσεις Ασφαλείας", + 'row_security_check' => "Security Check", + 'text_security_check_note' => "Note: In order to change your security settings, you must enter your current password!", + 'std_enter_old_password' => "Παρακαλώ εισάγετε τον κωδικό σας πρώτα!", + 'std_wrong_password_note' => "Έχετε εισαγάγει λάθος κωδικό!", + 'std_password_equals_username' => "Συγγνώμη, ο κωδικός πρόσβασης δεν μπορεί να είναι ίδιος με το όνομα χρήστη", + 'std_password_too_long' => "Λυπούμαστε, ο κωδικός είναι πολύ μεγάλος (μέγιστο είναι 40 χαρακτήρες)", + 'std_password_too_short' => "Λυπούμαστε, ο κωδικός πρόσβασης είναι πολύ μικρός (το ελάχιστο είναι 6 χαρακτήρες)", + 'std_passwords_unmatched' => "Οι κωδικοί πρόσβασης δεν ταιριάζουν. Δοκιμάστε ξανά.", + 'std_email_address_banned' => "Αυτή η διεύθυνση ηλεκτρονικού ταχυδρομείου έχει αποκλειστεί!", + 'std_wrong_email_address_domains' => "Αυτή η διεύθυνση ηλεκτρονικού ταχυδρομείου δεν επιτρέπεται! Μπορείτε να χρησιμοποιήσετε μόνο email από αυτούς τους τομείς: ", + 'std_wrong_email_address_format' => "Αυτό δεν μοιάζει με μια έγκυρη διεύθυνση email.", + 'std_email_in_use' => "Η διεύθυνση ηλεκτρονικού ταχυδρομείου χρησιμοποιείται ήδη", + 'std_confirmation_email_sent' => " (Το email επιβεβαίωσης έχει σταλεί!)", + 'std_passkey_reset' => " (Το κλειδί πρόσβασης έχει ενημερωθεί!)", + 'std_password_changed' => " (Ο κωδικός πρόσβασης έχει αλλάξει!)", + 'std_privacy_level_updated' => " (Το επίπεδο απορρήτου σας έχει ενημερωθεί!)", + 'row_reset_passkey' => "Reset passkey", + 'checkbox_reset_my_passkey' => "Θέλω να επαναφέρω το συνθηματικό μου.", + 'text_reset_passkey_note' => "Σημείωση: Για να επαναφέρετε το τρέχον κλειδί πρόσβασης, πρέπει να ανακτηθεί ξανά οποιοσδήποτε σύνδεσμος λήψης torrent (όπως η λίστα rss) για να κατεβάσετε το αρχείο torrent.", + 'row_reset_authkey' => "Επαναφορά authkey ", + 'checkbox_reset_my_authkey' => "Θέλω να επαναφέρω το authkey μου.", + 'text_reset_authkey_note' => "Σημείωση: Για να επαναφέρετε το τρέχον πλήκτρο authkey, οποιαδήποτε ενεργά torrents πρέπει να κατέβει ξανά για να συνεχίσει τη λήψη/σπορά.", + 'row_email_address' => "Email address", + 'text_email_address_note' => "Note: In order to change your email address, you will receive another confirmation email to your new address.", + 'row_change_password' => "Αλλαγή κωδικού πρόσβασης ", + 'row_type_password_again' => "Πληκτρολογήστε ξανά τον κωδικό ", + 'row_privacy_level' => "Privacy level", + 'radio_normal' => "Κανονικό", + 'radio_low' => "Χαμηλή (διεύθυνση email θα εμφανιστεί)", + 'radio_strong' => "Ισχυρή (δεν θα γίνουν διαθέσιμες οι πληροφορίες)", + 'head_home' => " - Αρχική Σελίδα", + 'row_join_date' => "Join date", + 'row_avatar' => "Άβαταρ", + 'row_passkey' => "Συνθηματικό", + 'row_invitations' => "Προσκλήσεις", + 'link_send_invitation' => "Go to Invitation System", + 'row_karma_points' => "Karma Σημεία", + 'link_use_karma_points' => "Χρήση Karma Σημεία", + 'row_ratings_submitted' => "Ratings submitted", + 'row_written_comments' => "Γράφτηκε σχόλια", + 'link_view_comments' => "Προβολή Σχόλια", + 'row_forum_posts' => "Forum Αναρτήσεις", + 'link_view_posts' => "Προβολή Αναρτήσεων", + 'text_posts_per_day' => " δημοσιεύσεις ανά ημέρα ", + 'text_of_total_posts' => " των συνολικών δημοσιεύσεων φόρουμ", + 'text_recently_read_topics' => "Πρόσφατα Διαβάστε Θέματα", + 'col_topic_title' => "Τίτλος Θέματος", + 'col_replies' => "Απαντήσεις", + 'col_topic_starter' => "Θέμα Εκκίνηση", + 'col_views' => "Προβολές", + 'col_last_post' => "Τελευταία Δημοσίευση", + 'text_by' => "by ", + 'select_none_selected' => "Κανένα επιλεγμένο", + 'text_ago' => " πριν", + 'mail_here' => "ΕΔΩ", + 'mail_change_email_one' => "Ζητήσατε το προφίλ χρήστη σας (όνομα χρήστη ", + 'mail_change_email_two' => ") στο %s πρέπει να ενημερωθεί με αυτή τη διεύθυνση ηλεκτρονικού ταχυδρομείου ", + 'mail_change_email_three' => " ως επαφή με τον χρήστη.", + 'mail_change_email_four' => "Αν δεν το κάνατε αυτό, παρακαλούμε αγνοήστε αυτό το email. Το άτομο που εισήγαγε τη διεύθυνση email σας είχε τη διεύθυνση IP ", + 'mail_change_email_five' => ". Παρακαλώ μην απαντήσετε.", + 'mail_change_email_six' => "To complete the update of your user profile, please click ", + 'mail_change_email_six_1' => " to confirm", + 'mail_change_email_seven' => "Η νέα διεύθυνση email σας θα εμφανιστεί στο προφίλ σας αφού το κάνετε αυτό. Διαφορετικά, το προφίλ σας θα παραμείνει αμετάβλητο.", + 'mail_change_email_eight' => "
    Yours,", + 'mail_change_email_nine' => "Η Ομάδα %s.", + 'mail_profile_change_confirmation' => " επιβεβαίωση αλλαγής προφίλ", + 'text_go_back' => "πήγαινε πίσω", + 'text_category' => "Κατηγορία", + 'text_source' => "Πηγή", + 'text_codec' => "Κωδικοποιητής", + 'text_standard' => "Τυπικό", + 'text_processing' => "Επεξεργασία", + 'text_show_dead_active' => "Εμφάνιση Νεκρ/Ενεργό?", + 'select_including_dead' => "συμπεριλαμβανομένων των νεκρών", + 'select_active' => "ενεργό", + 'select_dead' => "νεκρός", + 'text_show_special_torrents' => "Εμφάνιση Προώθησης?", + 'select_all' => "όλα", + 'select_normal' => "κανονικό", + 'select_free' => "δωρεάν", + 'select_two_times_up' => "2x πάνω", + 'select_free_two_times_up' => "δωρεάν και 2x επάνω", + 'text_show_bookmarked' => "Εμφάνιση Σελιδοδεικτών?", + 'select_bookmarked' => "Σελιδοδείκτης", + 'select_bookmarked_exclude' => "Χωρίς Σελιδοδείκτη", + 'select_with' => "με", + 'select_without' => "χωρίς", + 'text_review' => " κριτική", + 'row_pm_boxes' => "Κιβώτια Pm", + 'text_show' => "Εμφάνιση ", + 'text_pms_per_page' => " pms ανά σελίδα (max=100)", + 'row_shoutbox' => "Shoutbox", + 'text_show_last' => "Εμφάνιση τελευταίου ", + 'text_messages_at_shoutbox' => " μηνύματα στο shoutbox (0=χρήση προεπιλεγμένης ρύθμισης, min=10, max=500)", + 'text_refresh_shoutbox_every' => "Ανανέωση shoutbox κάθε ", + 'text_seconds' => " δευτερόλεπτα (0=χρήση προεπιλεγμένης ρύθμισης, min=10, max=3600)", + 'text_hide_helpbox_messages' => "Απόκρυψη μηνυμάτων από το helpbox", + 'row_torrent_detail' => "Σελίδα Λεπτομερειών Torrent", + 'text_show_description' => "Εμφάνιση Περιγραφής", + 'text_show_nfo' => "Εμφάνιση NFO", + 'text_show_imdb_info' => "Εμφάνιση Πληροφοριών IMDb", + 'text_show_douban_info' => "Πληροφορίες Shou Douban", + 'text_show_lastfm_info' => "Show Last.fm Information", + 'text_show_reviews' => "Εμφάνιση κριτικών", + 'text_show_comments' => "Εμφάνιση σχολίων", + 'row_browse_page' => "Σελίδα Torrents", + 'text_browse_setting_warning' => "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Η ενεργοποίηση πολλών λειτουργιών μπορεί να επιβραδύνει την ταχύτητα περιήγησης.", + 'text_torrents_per_page' => " torrents ανά σελίδα ", + 'text_tooltip_type' => "Τύπος συμβόλου στο torrent", + 'text_last_review' => "Τελευταία αξιολόγηση", + 'text_minor_imdb_info' => "Μικρές Πληροφορίες IMDb (Τίτλος + Έτος + Βαθμολογία IMDb + Χώρα + Είδος + Διευθυντής + Κύριο Πρωτάθλημα + Tagline)", + 'text_median_imdb_info' => "Μέσες Πληροφορίες IMDb (Τίτλος + Έτος + Βαθμολογία IMDb + Χρόνος Εκτέλεσης + Χώρα + Γλώσσα + Διευθυντής + Είδος + Κύριο Παρτίδα + Οικόπεδο στα Αγγλικά)", + 'text_douban_info' => "Πληροφορίες Douban (Τίτλος + Έτος + Βαθμολογία Douban + Γλώσσα + Διευθυντής + Περιφέρεια + Κύριο Πρωτάθλημα + Διάγραμμα Σχεδίου στα Κινέζικα)", + 'text_off' => "Ανενεργό", + 'text_show_lastfm_tooltip' => "Εμφάνιση πληροφοριών Last.fm στην υπόδειξη", + 'row_time_type' => "Τύπος Ώρας", + 'text_time_added' => "Ο Χρόνος Προστέθηκε", + 'text_time_elapsed' => "Χρόνος Elasped", + 'text_append_words_to_torrents' => "Ειδικά torrents", + 'text_append_sticky' => "Add sticky icon \"sticky\" to torrents sticked at top", + 'text_append_new' => "Προσάρτηση 'Νέα' στα νέα torrents", + 'text_append_picked' => "Προσάρτηση λέξεων, π.χ. 'Κλασικό', σε torrents που επιλέγονται από κριτικούς", + 'text_show_action_icons' => "Εμφάνιση εικονιδίων ενεργειών", + 'text_show_nfo_icon' => "Εικονίδιο NFO", + 'text_show_download_icon' => "Λήψη εικονιδίου", + 'text_show_edit_icon' => "Επεξεργασία εικονιδίου", + 'text_if_owner' => " (εάν ο ιδιοκτήτης των torrents)", + 'text_show_bookmark_icon' => "Εικονίδιο σελιδοδεικτών", + 'text_comments_reviews' => "Σχόλια", + 'text_show_comment_number' => "Show number of comments ", + 'text_last_comment_on_tooltip' => " last comment on tooltip", + 'text_show_review_number' => "Show number of reviews ", + 'row_school' => "Σχολείο", + 'row_discuss' => "Συζητήσεις", + 'row_funbox' => "Funbox", + 'text_show_funbox' => "Εμφάνιση funbox στην αρχική σελίδα", + 'text_send' => "Αποστολή", + 'text_use' => "Χρήση", + 'text_view' => "Προβολή", + 'row_ip_location' => "Τοποθεσία", + 'text_translation_note' => "Η γλώσσα σας δεν είναι στη λίστα? Δείτε τι μπορείτε να κάνετε ", + 'text_translation_link' => "ΒΟΗΘΕΙΑ ΤΗΣ ΜΕΤΑΦΡΑΣΗΣ", + 'text_movies_and_tvs' => "Ταινίες & Τηλεοράσεις:", + 'text_games_and_appz' => "Παιχνίδια & Εφαρμογή:", + 'text_others' => "Άλλοι:", + 'text_at_browse_page' => "Τομή torrents", + 'text_at_special_page' => "Ειδική ενότητα", + 'text_additional_selection' => "Πρόσθετες επιλογές", + 'text_stylesheet_note' => "Περισσότερα stylesheets? Θέλετε να σχεδιάσετε τη δική σας? ", + 'text_stylesheet_link' => "ΚΑΤΗΓΟΡΙΑ ΕΔΩ", + 'row_font_size' => "Font Size", + 'select_small' => "Μικρό", + 'select_large' => "Μεγάλο", + 'text_medium' => "Μεσαίο", + 'text_torrents_on_promotion' => "Torrents κατά την προώθηση: ", + 'text_highlight' => "Επισήμανση", + 'text_append_words' => "Προσθήκη λέξεων, π.χ. '2X Δωρεάν'", + 'text_append_icon' => "Προσάρτηση εικονιδίου, π.χ. \"free\"", + 'text_no_mark' => "Ανενεργό", + 'text_signature_note' => "Μπορεί να περιέχει BB codes. Το μέγιστο μέγεθος εικόνας είναι 500 * 200 και μόνο η πρώτη εικόνα θα εμφανιστεί.", + 'row_click_on_topic' => "Κάντε κλικ στο θέμα", + 'text_go_to_first_page' => "μεταβείτε στην πρώτη σελίδα", + 'text_go_to_last_page' => "μεταβείτε στην τελευταία σελίδα", + 'select_half_down' => "50% κάτω", + 'row_category_icons' => "Εικονίδια Κατηγοριών", + 'text_team' => "Ομάδα", + 'text_audio_codec' => "Κωδικοποιητής Ήχου", + 'text_sub_category' => "Υποκατηγορίες", + 'select_medium' => "Μεσαίο", + 'row_tooltip_last_post' => "Εμφάνιση υποδείξεων της τελευταίας δημοσίευσης", + 'checkbox_last_post_note' => "(Αν σας ενοχλήσει, απενεργοποιήστε τη)", + 'row_network_bandwidth' => "Εύρος Ζώνης Δικτύου", + 'text_downstream_rate' => "Ρυθμός Μετάδοσης", + 'text_upstream_rate' => "Συντελεστής Ανάντη", + 'text_isp' => "ISP", + 'text_show_title' => "Εμφάνιση τίτλου", + 'text_show_small_description' => "Μικρή περιγραφή", + 'row_show_advertisements' => "Εμφάνιση Διαφημίσεων", + 'text_can_turn_off_advertisement' => " ή πάνω μπορεί να επιλέξει να μην δει καμία διαφήμιση", + 'text_buy_no_advertisement' => " ή παραπάνω μπορούν να χρησιμοποιήσουν μπόνους για να αγοράσουν κάποιο χρόνο χωρίς διαφημίσεις σε ", + 'text_bonus_center' => " κέντρο μπόνους", + 'text_show_advertisement_note' => "Θα ήθελα να δω τις διαφημίσεις", + 'row_promotion_link' => "Σύνδεσμος Προώθησης", + 'text_update_promotion_link' => "Ενημέρωση Συνδέσμου Προώθησης", + 'text_read_more' => "Διαβάστε Περισσότερα", + 'row_two_step_secret' => 'Ταυτοποίηση δύο βημάτων', + 'text_two_step_secret_bind_by_qrdoe_note' => 'Μπορείτε να χρησιμοποιήσετε το Google Authenticator ή Authy για να σαρώσετε τον κωδικό QR στα αριστερά

    Αν ο κωδικός QR στα αριστερά δεν φορτώσει με επιτυχία, μπορείτε να προσπαθήσετε να ανοίξετε αυτόν τον σύνδεσμο για να φορτώσετε: ', + 'text_two_step_secret_bind_manually_note' => 'Ή πληκτρολογήστε χειροκίνητα το ακόλουθο κλειδί στην APP: ', + 'text_two_step_secret_bind_complete_note' => 'Εισάγετε κωδικό για να ολοκληρώσετε τον έλεγχο ταυτότητας δύο βημάτων', + 'text_two_step_secret_unbind_note' => 'Εισάγετε κωδικό για ακύρωση ελέγχου ταυτότητας δύο βημάτων', + 'row_passkey_login_url' => 'Passkey login URL', + 'row_seed_box' => 'Πλαίσιο Σπόρου', + 'add_seed_box_btn' => 'Εγγραφή', + 'checkbox_pm_on_topic_reply' => 'Ειδοποιήστε με όταν υπάρχουν νέες απαντήσεις στις δημοσιεύσεις του φόρουμ', + 'checkbox_pm_on_hr_reached' => 'Να ειδοποιούμαι όταν ο στόχος H&R φτάσει στο στόχο', +); + +?> diff --git a/lang/el/lang_userdetails.php b/lang/el/lang_userdetails.php new file mode 100644 index 00000000..fbb3ca80 --- /dev/null +++ b/lang/el/lang_userdetails.php @@ -0,0 +1,160 @@ + "Σφάλμα", + 'std_no_such_user' => "Κανένας χρήστης με αυτό το ID!", + 'head_details_for' => "Λεπτομέρειες για ", + 'text_account_disabled_note' => "Αυτός ο λογαριασμός έχει απενεργοποιηθεί!", + 'text_remove_from_friends' => "αφαίρεση από φίλους", + 'text_remove_from_blocks' => "αφαίρεση από κύβους", + 'text_add_to_friends' => "προσθήκη σε φίλους", + 'text_add_to_blocks' => "προσθήκη σε μπλοκ", + 'text_flush_ghost_torrents' => "Για να ξεπλύνετε τα torrents φαντασμάτων σας κάντε κλικ ", + 'text_here' => "εδώ", + 'row_invitation' => "Προσκλήσεις", + 'text_no_invitation' => "Δεν Υπάρχουν Προσκλήσεις", + 'link_send_invitation' => "Αποστολή Πρόσκλησης ", + 'row_invited_by' => "Προσκλήθηκε Από", + 'row_join_date' => "Join date", + 'row_last_seen' => "Last seen", + 'row_last_seen_location' => "Τελευταίο seen(τοποθεσία)", + 'row_email' => "E-mail", + 'row_users_ips' => "IP Χρήστη", + 'row_ip_history' => "Ιστορικό IP", + 'text_user_earlier_used' => "Αυτός ο χρήστης έχει χρησιμοποιηθεί νωρίτερα ", + 'text_different_ips' => " διαφορετική διεύθυνση IP", + 'row_ip_address' => "Διεύθυνση IP", + 'row_bt_client' => "Πελάτης BT", + 'row_uploaded' => "Ανέβηκε", + 'row_downloaded' => "Λήφθηκε", + 'row_share_ratio' => "Αναλογία Κοινοποίησης", + 'row_real_uploaded' => "Πραγματικό Ανέβασμα", + 'row_real_downloaded' => "Πραγματική Λήψη", + 'row_real_share_ratio' => "Πραγματική Αναλογία Μετοχών", + 'row_real_ps' => "Πραγματική μεταφορτώθηκε/Πραγματική λήψη (για λόγους εγγραφής μόνο, όχι για υπολογισμό ποσοστού κοινής χρήσης)", + 'row_internet_speed' => "Εύρος Ζώνης Δικτύου", + 'row_gender' => "Φύλο", + 'row_donated' => "Δωρεά", + 'row_avatar' => "Άβαταρ", + 'row_class' => "Κλάση", + 'row_torrent_comment' => "Torrent σχόλια", + 'link_view_comments' => "Προβολή Σχόλια", + 'row_forum_posts' => "Forum posts", + 'link_view_posts' => "Προβολή Αναρτήσεων", + 'row_karma_points' => "Πόντοι Κάρμα", + 'row_uploaded_torrents' => "Ανέβηκε Torrents", + 'text_show_or_hide' => "[Εμφάνιση/Απόκρυψη]", + 'row_current_seeding' => "Τρέχουσα Διαφορά", + 'row_current_leeching' => "Τρέχουσα Βλάβη", + 'row_completed_torrents' => "Ολοκληρωμένα Torrents", + 'row_incomplete_torrents' => "Ελλιπή Torrents", + 'text_public_access_denied' => "Συγγνώμη, η δημόσια πρόσβαση απορρίφθηκε από ", + 'text_user_wants_privacy' => ". Αυτός (She) θέλει να προστατεύσει τις προσωπικές λεπτομέρειες.", + 'text_edit_user' => "Επεξεργασία Χρήστη", + 'row_title' => "Τίτλος", + 'row_privacy_level' => "Επίπεδο Απορρήτου", + 'radio_low' => "Χαμηλή", + 'radio_normal' => "Κανονικό", + 'radio_strong' => "Ισχυρός", + 'row_avatar_url' => "Avatar URL", + 'row_signature' => "Υπογραφή", + 'row_donor_status' => "Donor Status", + 'row_donor' => "Χορηγός", + 'radio_yes' => "Ναι", + 'radio_no' => "Όχι", + 'row_support' => "Υποστήριξη", + 'row_support_language' => "Γλώσσα Υποστήριξης", + 'row_support_for' => "Υποστήριξη για", + 'row_comment' => "Σχόλιο", + 'row_seeding_karma' => "Μπόνους", + 'row_warning_system' => "Προειδοποίηση System

    (συμπεριφορά)", + 'text_not_warned' => "Δεν προειδοποιήθηκε.", + 'text_arbitrary_duration' => "(αυθαίρετη διάρκεια)", + 'text_until' => "Μέχρι ", + 'text_to_go' => " να πάω", + 'text_warn_for' => "Προειδοποίηση για ", + 'text_week' => "Εβδομάδα", + 'text_weeks' => "Εβδομάδες", + 'text_unlimited' => "Απεριόριστο", + 'text_reason_of_warning' => "Λόγος προειδοποίησης", + 'text_times_warned' => "Φορές Προειδοποίησης", + 'text_last_warning' => "Τελευταία Προειδοποίηση", + 'text_not_warned_note' => "Αυτός ο χρήστης δεν έχει προειδοποιηθεί ακόμα", + 'row_auto_warning' => "Αυτόματη Προειδοποίηση", + 'text_low_ratio' => "Χαμηλή Αναλογία", + 'text_leech_warned' => "Η Βδέλλα Προειδοποίηθηκε!", + 'text_for_unlimited_time' => "Για άπειρο χρόνο...", + 'row_movie_picker' => "Επιλογέας", + 'row_enabled' => "Ενεργοποιημένο", + 'row_forum_post_possible' => "Post Forum είναι δυνατόν?", + 'row_upload_possible' => "Δυνατότητα μεταφόρτωσης?", + 'row_download_possible' => "Δυνατότητα λήψης?", + 'row_change_username' => "Αλλαγή Ονόματος Χρήστη", + 'row_change_email' => "Αλλαγή E-mail", + 'row_change_password' => "Αλλαγή Κωδικού Πρόσβασης", + 'row_repeat_password' => "Επανάληψη Κωδικού Πρόσβασης", + 'row_amount_uploaded' => "Ποσό Μεταφορτώθηκε", + 'row_amount_downloaded' => "Ληφθέν Ποσό", + 'row_passkey' => "Συνθηματικό", + 'checkbox_reset_passkey' => " Reset passkey", + 'submit_okay' => "Εντάξει", + 'text_delete_user' => "Διαγραφή Χρήστη", + 'submit_delete' => "Διαγραφή", + 'text_ago' => " πριν", + 'title_show_or_hide' => "Εμφάνιση/Απόκρυψη", + 'title_download' => "Λήψη: ", + 'title_upload' => "Αποστολή: ", + 'title_male' => "Άντρας", + 'title_female' => "Γυναίκα", + 'title_not_available' => "Δ/Υ", + 'title_send_pm' => "Αποστολή PM", + 'title_report_user' => "Report User", + 'text_free' => "Δωρεάν", + 'text_two_times_up' => "2X", + 'text_free_two_times_up' => "2X Δωρεάν", + 'text_half_down' => "50%", + 'text_by' => "από ", + 'text_by_system' => "από το σύστημα", + 'text_transaction_memo' => "Μνήμη Συναλλαγής:", + 'row_pick_for' => "Επιλογή..", + 'row_staff_duties' => "Λόγος Duties/VIP Προσωπικού", + 'row_transfer' => "Μεταφορές", + 'row_sltime' => "Χρόνος Torrenting", + 'text_seeding_leeching_time_ratio' => "Αναλογία Χρόνου", + 'text_seeding_time' => "Χρόνος Διαμοιρασμού", + 'text_leeching_time' => "Χρόνος Επαναλήψεων", + 'text_since' => "Από: ", + 'row_compatibility' => "Γεύση Συμβατότητα", + 'text_unknown' => "Άγνωστο", + 'text_super' => "Σούπερ", + 'text_very_high' => "Πολύ Υψηλή", + 'text_high' => "Υψηλή", + 'text_medium' => "Μεσαίο", + 'text_low' => "Χαμηλή", + 'text_very_low' => "Πολύ Χαμηλή", + 'row_invites' => "Προσκληθέντα", + 'js_delete_user_note' => "Μπορείτε τώρα να διαγράψετε αυτόν τον λογαριασμό χρηστών, να είστε πολύ σίγουροι.", + 'std_sorry' => "Συγνώμη", + 'std_user_not_confirmed' => "Ο χρήστης δεν έχει επιβεβαιωθεί ακόμα!", + 'text_not_available' => "Δ/Υ", + 'row_vip_by_bonus' => "VIP με μπόνους", + 'text_vip_by_bonus_note' => "Αν η κατάσταση VIP αποκτάται με τη χρήση μπόνους", + 'row_vip_until' => "VIP μέχρι", + 'text_vip_until_note' => "Η μορφή ώρας είναι YYYY-MM-DD hh:mm:ss. Ο χρόνος μέχρι το πότε η κατάσταση VIP είναι έγκυρη. Για να λειτουργήσει αυτό, το \"VIP by bonus\" πρέπει να οριστεί σε \"ναι\".", + 'row_show_ad' => "Show Ad", + 'row_no_ad_until' => "Χωρίς Διαφημίσεις Μέχρι", + 'text_no_ad_until_note' => "Η μορφή ώρας είναι YYYY-MM-DD hh:mm:ss. Ο χρόνος μέχρι το πότε ο χρήστης μπορεί να απενεργοποιήσει τις διαφημίσεις.", + 'disable_user_migrated' => 'Ενεργοποιήστε ή απενεργοποιήστε τη χρήση, παρακαλώ μεταβείτε στο νέο σύστημα διαχείρισης.', + 'text_user_id'=> "Id Χρήστη", + 'row_medal' => 'Μετάλλιο', + 'row_donoruntil' => 'Δωρεά μέχρι', + 'text_donoruntil_note' => "Η μορφή ώρας είναι ΕΕΕΕ-ΜΜ-ΗΗ ω:λλ:ελ. Αφήστε το κενό μόνιμα.", + 'change_field_value_migrated' => 'Τροποποίηση παρακαλώ μεταβείτε στο %s.', + 'sure_to_remove_leech_warn' => 'Are you sure to remove this leech warn ?', + 'row_user_props' => 'Βοηθήματα', + 'meta_key_change_username_username' => 'Νέο όνομα χρήστη', + 'consume' => 'Χρήση', + 'text_bonus_table' => 'Bonus per hour', +); +?> diff --git a/lang/el/lang_userhistory.php b/lang/el/lang_userhistory.php new file mode 100644 index 00000000..a796d1b5 --- /dev/null +++ b/lang/el/lang_userhistory.php @@ -0,0 +1,26 @@ + "Σφάλμα", + 'std_permission_denied' => "Άρνηση πρόσβασης", + 'std_no_posts_found' => "Δεν βρέθηκαν αναρτήσεις", + 'head_posts_history' => "Ιστορικό αναρτήσεων", + 'text_posts_history_for' => "Ιστορικό ανάρτησης για ", + 'text_forum' => "Φόρουμ: ", + 'text_topic' => "Topic: ", + 'text_post' => "Ανάρτηση: ", + 'text_new' => "ΝΕΟ!", + 'text_last_edited' => "Τελευταία επεξεργασία από ", + 'text_at' => " στις ", + 'std_no_comments_found' => "Δεν βρέθηκαν σχόλια", + 'head_comments_history' => "Ιστορικό σχολίων", + 'text_comments_history_for' => "Ιστορικό σχολίων για ", + 'text_torrent' => "Torrent: ", + 'text_comment' => "Σχόλιο: ", + 'std_history_error' => "Σφάλμα Ιστορικού", + 'std_unkown_action' => "Άγνωστη ενέργεια", + 'std_invalid_or_no_query' => "Μη έγκυρο ή κανένα ερώτημα." +); + +?> diff --git a/lang/el/lang_users.php b/lang/el/lang_users.php new file mode 100644 index 00000000..90432f0f --- /dev/null +++ b/lang/el/lang_users.php @@ -0,0 +1,20 @@ + "Χρήστες", + 'text_users' => "

    Χρήστες

    ", + 'text_search' => "Αναζήτηση:", + 'select_any_class' => "(οποιαδήποτε κατηγορία)", + 'submit_okay' => "Εντάξει", + 'text_prev' => "Προηγ.", + 'text_next' => "Επόμενο", + 'col_user_name' => "Όνομα χρήστη", + 'col_registered' => "Εγγεγραμμένος", + 'col_last_access' => "Τελευταία πρόσβαση", + 'col_class' => "Κλάση", + 'col_country' => "Χώρα", + 'select_any_country'=> "(οποιαδήποτε χώρα)", +); + +?> diff --git a/lang/el/lang_viewfilelist.php b/lang/el/lang_viewfilelist.php new file mode 100644 index 00000000..21b0525b --- /dev/null +++ b/lang/el/lang_viewfilelist.php @@ -0,0 +1,8 @@ + "Διαδρομή", +); + +?> \ No newline at end of file diff --git a/lang/el/lang_viewnfo.php b/lang/el/lang_viewnfo.php new file mode 100644 index 00000000..ae411c38 --- /dev/null +++ b/lang/el/lang_viewnfo.php @@ -0,0 +1,13 @@ + "Puke", + 'head_view_nfo' => "Προβολή Αρχείου Nfo", + 'text_nfo_for' => "NFO για", + 'title_dos_vy' => "", + 'text_dos_vy' => "DOS-vy", + 'title_windows_vy' => "Latin-1: Inget socker tack!", + 'text_windows_vy' => "Παράθυρα vy" +); +?> \ No newline at end of file diff --git a/lang/el/lang_viewpeerlist.php b/lang/el/lang_viewpeerlist.php new file mode 100644 index 00000000..89e69fcc --- /dev/null +++ b/lang/el/lang_viewpeerlist.php @@ -0,0 +1,28 @@ + "Χρήστης", + 'col_location' => "Τοποθεσία", + 'col_connectable' => "Συνδεδεμένο", + 'col_uploaded' => "Ανέβηκε", + 'col_rate' => "Βαθμολογήστε", + 'col_av_rate' => "Av. Ποσοστό", + 'col_downloaded' => "Λήφθηκε", + 'col_ratio' => "Αναλογία", + 'col_complete' => "Complete", + 'col_connected' => "Συνδεδεμένο", + 'col_idle' => "Αδρανής", + 'col_client' => "Πελάτης", + 'text_anonymous' => "Ανώνυμος", + 'text_unknown' => "(άγνωστο)", + 'text_seeders' => "Σπόροι", + 'text_leechers' => "Leechers", + 'row_seeders' => "Σπόροι", + 'row_leechers' => "Leechers", + 'text_yes' => "Ναι", + 'text_no' => "Όχι", + 'text_inf' => "Inf." +); + +?> diff --git a/lang/el/lang_viewrequests.php b/lang/el/lang_viewrequests.php new file mode 100644 index 00000000..91718edb --- /dev/null +++ b/lang/el/lang_viewrequests.php @@ -0,0 +1,65 @@ + 'Αιτήματα', + 'request' => 'Αίτημα', + 'add_request' => 'Προσθήκη αιτήματος', + 'request_name' => 'Όνομα αιτήματος', + 'view_request_all' => 'Προβολή όλων', + 'view_request_resolved' => 'Προβολή επιλύθηκε', + 'view_request_unresolved' => 'Προβολή ανεπίλυτων', + 'view_request_resolving' => 'Προβολή επίλυσης', + 'view_request_my' => 'Προβολή Μου', + 'thead_name' => 'Όνομα', + 'thead_price_newest' => 'Νεότερη προσφορά', + 'thead_price_original' => 'Αρχική προσφορά', + 'thead_comment_count' => 'Πλήθος σχολίων', + 'thead_on_request_count' => 'Καταμέτρηση τροφοδοσίας', + 'thead_request_user' => 'Χρήστης', + 'thead_created_at' => 'Ώρα', + 'thead_status' => 'Κατάσταση', + 'request_status_resolved' => 'Αίτηση επιτυχής', + 'request_status_resolving' => 'Αίτηση', + 'action_search' => 'Αναζήτηση', + 'basic_info' => 'Βασικές πληροφορίες', + 'created_at' => 'Δημιουργήθηκε στις', + 'reward' => 'Ανταμοιβή', + 'newest_bidding' => 'Νεώτερη Προσφορά', + 'original_bidding' => 'Αρχική προσφορά', + 'on_request' => 'Προμήθεια', + 'recycle' => 'Ανακύκλωση', + 'recycle_title' => 'Ανακύκλωση δίνει πίσω μόνο 80% bouns', + 'add_reward' => 'Προσθήκη resard', + 'add_reward_desc' => 'Προσθήκη ανταμοιβής θα αφαιρέσει 25 bouns ως χρέωση υπηρεσίας', + 'no_request_yet' => 'Δεν υπάρχει ακόμα', + 'btn_select_text' => 'Χρήση επιλεγμένου πόρου για αίτηση', + 'request_already_resolved' => 'Αυτό το requst επιλύθηκε', + 'add_request_desc' => 'Η ανταμοιβή δεν μπορεί να είναι μικρότερη από 100 bouns, και θα αφαιρέσει 100 bouns ως χρέωση υπηρεσίας για κάθε αίτημα', + 'description_required' => 'Απαιτείται περιγραφή!', + 'name_required' => 'Απαιτείται όνομα!', + 'amount_required' => 'Απαιτείται ανταμοιβή!', + 'amount_must_be_numeric' => 'Το ποσό πρέπει να είναι αριθμητικό!', + 'add_request_amount_minimum' => 'Η ανταμοιβή δεν μπορεί να είναι μικρότερη από 100 bouns!', + 'add_request_amount_maximum' => 'Η ανταμοιβή δεν μπορεί περισσότερο από 10000 bouns!', + 'bouns_not_enough' => 'Τα γεράκια σας δεν είναι αρκετά!!!', + 'add_request_success' => 'Προσθήκη αιτήματος επιτυχής', + 'request_id_must_be_numeric' => 'Το αναγνωριστικό αιτήματος πρέπει να είναι αριθμητικό', + 'request_deleted' => 'Το αίτημα διαγράφηκε!', + 'edit_request_success' => 'Επιτυχής επεξεργασία αιτήματος', + 'do_request' => 'Θέλω αίτημα', + 'type_in_torrent_id' => 'Τύπος στο ID torrent', + 'delete_request_success' => 'Επιτυχής διαγραφή αιτήματος', + 'torrent_is_picked_for_request' => 'Το αίτημά σας πήρε προμήθεια', + 'confirm_request_success' => 'Επιβεβαίωση επιτυχίας', + 'message_required' => 'Το μήνυμα απαιτείται!', + 'request_created_at' => 'Δημιουργήθηκε στις', + 'request_get_new_reply' => 'Το αίτημά σας λαμβάνει νέα απάντηση', + 'request_comment_get_new_reply' => 'Το σχόλιό σας παίρνει νέα απάντηση', + 'torrent_not_release_yet' => 'Αυτό το torrent δεν έχει κυκλοφορήσει ακόμα', + 'supply_already_exists' => 'Αυτή η προμήθεια υπάρχει ήδη!', + 'message_please_confirm_supply' => 'Κάποιος παρέχει το αίτημά σας, παρακαλώ επιβεβαιώστε το εγκαίρως', + 'please_confirm_supply' => 'Παρακαλώ επιβεβαιώστε την προμήθεια εγκαίρως', + 'supply_success' => 'Αίτηση επιτυχής', + 'add_reward_amount_minimum' => 'Προσθέστε ποσό ανταμοιβής δεν μπορεί λιγότερο από 100 μπόνους!', + 'add_reward_amount_maximum' => 'Προσθέστε ποσό ανταμοιβής δεν μπορεί να υπερβαίνει 5000 μπόνους!', + 'add_reward_success' => 'Επιτυχής προσθήκη ανταμοιβής', +]; \ No newline at end of file diff --git a/lang/el/lang_viewsnatches.php b/lang/el/lang_viewsnatches.php new file mode 100644 index 00000000..996bcc0c --- /dev/null +++ b/lang/el/lang_viewsnatches.php @@ -0,0 +1,33 @@ + "Λεπτομέρειες Άρθρωσης", + 'text_snatch_detail_for' => "Λεπτομέρειες αρπαγής για ", + 'text_users_top_finished_recently' => "Οι χρήστες στην κορυφή ολοκλήρωσαν τη λήψη πιο πρόσφατα", + 'col_username' => "Όνομα Χρήστη", + 'col_uploaded' => "Ανέβηκε", + 'col_downloaded' => "Λήφθηκε", + 'col_se_time' => "Se. Ώρα", + 'col_le_time' => "Le. Χρόνος", + 'col_ratio' => "Αναλογία", + 'col_when_completed' => "Ολοκληρώθηκε Στις", + 'col_last_action' => "Τελευταία Ενέργεια", + 'col_seeding' => "Διαμοιρασμός", + 'col_pm_user' => "Χρήστης ΜΜ", + 'col_report_user' => "Αναφορά Χρήστη", + 'col_on_or_off' => "Ενεργοποίηση/Απενεργοποίηση", + 'text_global' => "Καθολικό", + 'text_torrent' => "Torrent", + 'text_yes' => "Ναι", + 'text_no'=> "Όχι", + 'title_report' => "Αναφορά", + 'col_ip' => "IP", + 'text_per_second' => "/δ", + 'text_anonymous' => "ανώνυμος", + 'text_inf' => "Inf.", + 'std_sorry' => "Συγνώμη", + 'std_no_snatched_users' => "Κανένας χρήστης δεν έχει άρπαξε αυτό το torrent ακόμα.", +); + +?> diff --git a/lang/es/lang_complains.php b/lang/es/lang_complains.php index df68af73..4f0fc5af 100644 --- a/lang/es/lang_complains.php +++ b/lang/es/lang_complains.php @@ -29,4 +29,5 @@ $lang_complains = [ 'text_view_band_log' => 'Ver registro de bloqueo', 'reply_notify_subject' => 'Queja respondida', 'reply_notify_body' => 'Tienes una respuesta a tu reclamo en el sitio %s, haz clic aquí para verla.', + 'complain_not_enabled' => 'Queja no habilitada', ]; diff --git a/lang/es/lang_settings.php b/lang/es/lang_settings.php index f870c6a3..6180c8c4 100644 --- a/lang/es/lang_settings.php +++ b/lang/es/lang_settings.php @@ -814,6 +814,8 @@ $lang_settings = array 'text_paid_torrent_enabled_note' => 'Cuando está habilitado, los usuarios con permiso pueden establecer una cierta cantidad de bonus para ser cobrados a los usuarios que descargan los torrents cuando son enviados, por defecto: no', 'row_use_challenge_response_authentication' => 'Autenticación de respuesta al desafío', 'text_use_challenge_response_authentication_note' => 'Si está habilitado, no se transmitirán contraseñas de texto plano al iniciar sesión, recomendado. Las futuras versiones eliminarán esta configuración y habilitarán esta función.' , + 'row_complain_enabled' => 'Activar quejas', + 'row_complain_enabled_note' => 'por defecto: "sí"', ); ?> diff --git a/lang/fi/lang_complains.php b/lang/fi/lang_complains.php index d1bcd186..83c1b765 100644 --- a/lang/fi/lang_complains.php +++ b/lang/fi/lang_complains.php @@ -29,4 +29,5 @@ $lang_complains = [ 'text_view_band_log' => 'Näytä porttikielto loki', 'reply_notify_subject' => 'Vastattu valitus', 'reply_notify_body' => 'Sinulla on vastaus valitukseen sivustolla %s, klikkaa tästä nähdäksesi sen.', + 'complain_not_enabled' => 'Valitus ei ole käytössä', ]; diff --git a/lang/fi/lang_settings.php b/lang/fi/lang_settings.php index 40dca50d..882a8b26 100644 --- a/lang/fi/lang_settings.php +++ b/lang/fi/lang_settings.php @@ -814,6 +814,8 @@ $lang_settings = array 'text_paid_torrent_enabled_note' => 'Kun käytössä, käyttäjät joilla on lupa voi asettaa tietyn määrän bonus veloitetaan käyttäjiltä, jotka lataavat torrentteja kun ne lähetetään, oletus: ei', 'row_use_challenge_response_authentication' => 'Haaste-Vastaus Todennus', 'text_use_challenge_response_authentication_note' => 'Jos käytössä, plaintext-salasanoja ei lähetetä kirjautumisen yhteydessä, suositellaan. Tulevat julkaisut poistavat tämän määrityksen ja ottavat käyttöön tämän ominaisuuden.' , + 'row_complain_enabled' => 'Otetaanko valitukset käyttöön', + 'row_complain_enabled_note' => 'oletus: "kyllä"', ); ?> diff --git a/lang/fr/lang_complains.php b/lang/fr/lang_complains.php index 297870f1..454929a4 100644 --- a/lang/fr/lang_complains.php +++ b/lang/fr/lang_complains.php @@ -29,4 +29,5 @@ $lang_complains = [ 'text_view_band_log' => 'Voir le journal des bannissements', 'reply_notify_subject' => 'Plainte répondue', 'reply_notify_body' => 'Vous avez une réponse à votre plainte sur le site %s, cliquez ici pour la voir.', + 'complain_not_enabled' => 'La plainte n\'est pas activée', ]; diff --git a/lang/fr/lang_settings.php b/lang/fr/lang_settings.php index f06085c6..d830ace2 100644 --- a/lang/fr/lang_settings.php +++ b/lang/fr/lang_settings.php @@ -814,6 +814,8 @@ $lang_settings = array 'text_paid_torrent_enabled_note' => 'Lorsque cette option est activée, les utilisateurs ayant la permission peuvent définir un certain montant de bonus à facturer aux utilisateurs qui téléchargent les torrents lorsqu\'ils sont envoyés, par défaut: non', 'row_use_challenge_response_authentication' => 'Authentification Challenge-Response', 'text_use_challenge_response_authentication_note' => 'Si activé, aucun mot de passe en texte brut ne sera transmis lors de la connexion, recommandé. Les prochaines versions supprimeront cette configuration et activeront cette fonctionnalité.' , + 'row_complain_enabled' => 'Activer ou non les plaintes', + 'row_complain_enabled_note' => 'par défaut: "oui"', ); ?> diff --git a/lang/it/lang_aboutnexus.php b/lang/it/lang_aboutnexus.php new file mode 100644 index 00000000..96f7f887 --- /dev/null +++ b/lang/it/lang_aboutnexus.php @@ -0,0 +1,38 @@ + "Versione", + 'text_version_note' => "Questo tracker %s è alimentato da %s. Di seguito sono riportati i dettagli della versione.", + 'text_main_version' => "Versione Principale", + 'text_sub_version' => "Sub Versione", + 'text_release_date' => "Data Di Rilascio", + 'text_authorize_to' => "Autorizzato a", + 'text_authorization_type' => "Tipo Di Autorizzazione", + 'text_commercial' => "Commerciale", + 'text_free' => "Gratis", + 'text_nexus' => "Informazioni ", + 'text_nexus_note' => " è iniziato da un gruppo di ragazzi nella Zhejiang University, Cina che si chiamano 'Nexus Team'. È dedicato a sostituire il progetto TBSource e presentare una soluzione completa per creare una comunità di condivisione delle risorse con i membri del credito, ordine e conoscenza.

    +La prima fase di %s forchette da TBSource. Offriamo un ampio set di funzionalità che non esiste in o di gran lunga superiore al codice originale TBSource con un'efficienza del codice notevolmente migliorata. Oltre a TBSource, prendiamo in prestito alcune idee o codice da altri tracker privati, ad esempio Bit-HDTV, What.cd, SceneTorrents.", + 'text_authorization' => "Informazioni Sull'Autorizzazione", + 'text_authorization_note' => "Se ti piace utilizzare %s per alimentare il tuo tracker, non esitare a contattarci.", + 'text_translation' => "Informazioni Sulla Traduzione", + 'text_translation_note' => " supporta l'interruttore di lingua dell'utente del sito. La lingua principale è l'inglese.

    Se la tua lingua non è (ancora) disponibile e sei interessato a tradurla, leggi la traduzione HOWTO e contattaci. Accogliamo sempre nuove traduzioni. Inoltre, le traduzioni disponibili possono sempre utilizzare una mano d'aiuto, specialmente quelle contrassegnate come obsolete, incomplete o bisognose di nuovi traduttori.", + 'text_flag' => "Bandiera", + 'text_language' => "Lingua", + 'text_state' => "Stato", + 'text_stylesheet' => "Informazioni Su Stylesheet", + 'text_stylesheet_note' => "Il layout di %s è completamente CSS-based progettato, che consente la massima personalizzazione dell'interfaccia utente e rende l'aggiunta di nuovi fogli di stile facile.

    Di seguito è riportato un elenco di fogli di stile attualmente disponibili in questo tracker %s. Se si desidera più fogli di stile o sentire come progettare il proprio uno, contattaci.", + 'text_name' => "Nome", + 'text_designer' => "Designer", + 'text_comment' => "Commento", + 'text_contact' => "Contatto ", + 'text_contact_note' => "Vuoi unirti a noi? Ottieni suggerimenti o trova bug? Parla di business? Contattaci in uno dei modi seguenti.", + 'text_web_site' => "Web Site", + 'text_email' => "Email", + 'text_msn' => "MSN", + 'text_qq' => "QQ", + 'text_telephone' => "Tele.", +); + +?> diff --git a/lang/it/lang_admanage.php b/lang/it/lang_admanage.php new file mode 100644 index 00000000..ac6eb090 --- /dev/null +++ b/lang/it/lang_admanage.php @@ -0,0 +1,103 @@ + "Gestione Degli Annunci", + 'text_ad_management' => "Gestione Degli Annunci", + 'text_add_ad' => "Aggiungi Annuncio", + 'text_header' => "Intestazione", + 'text_footer' => "Footer", + 'text_below_navigation' => "Sotto La Navigazione", + 'text_below_searchbox' => "Sotto La SearchBox", + 'text_torrent_detail' => "Dettagli Torrent", + 'text_comment_page' => "Pagina Dei Commenti", + 'text_inter_overforums' => "Inter Overforums", + 'text_forum_post_page' => "Pagina Post Del Forum", + 'text_popup' => "Popup", + 'text_no_ads_yet' => "Ancora nessuna pubblicità!", + 'col_enabled' => "Abilitato", + 'col_name' => "Nome", + 'col_position' => "Posizione", + 'col_order' => "Ordine", + 'col_type' => "Metodo", + 'col_start_time' => "Ora Di Inizio", + 'col_end_time' => "Ora Di Fine", + 'col_action' => "Azione", + 'text_yes' => "Sì", + 'text_no' => "No", + 'text_bbcodes' => "Codici BB", + 'text_xhtml' => "XHTML", + 'text_text' => "Testo", + 'text_image' => "Immagine", + 'text_flash' => "Flash", + 'text_delete' => "Elimina", + 'text_edit' => "Modifica", + 'js_sure_to_delete_ad' => "Sei sicuro di voler eliminare questo annuncio?", + 'std_error' => "Errore", + 'std_invalid_id' => "Invalid ID", + 'std_invalid_position' => "Posizione non valida", + 'head_add_ad' => "Aggiungi Annuncio", + 'head_edit_ad' => "Modifica Annuncio", + 'text_note' => "Nota", + 'text_ad_detail' => "Dettaglio Annuncio", + 'row_name' => "Nome", + 'row_start_time' => "Ora Di Inizio", + 'row_end_time' => "Ora Di Fine", + 'row_enabled' => "Abilitato", + 'row_order' => "Ordine", + 'row_type' => "Metodo Visualizzazione", + 'row_image_url' => "Url Immagine", + 'row_image_link' => "Ad Link", + 'row_image_width' => "Larghezza Immagine", + 'row_image_height' => "Altezza Immagine", + 'row_image_tooltip' => "Suggerimento Collegamento", + 'row_text_content' => "Contenuto Testo", + 'row_text_link' => "Ad Link", + 'row_text_size' => "Dimensione Testo", + 'row_bbcodes_code' => "Codici BB", + 'row_xhtml_code' => "Codice XHTML", + 'row_flash_url' => "Url Flash", + 'row_flash_width' => "Flash Width", + 'row_flash_height' => "Altezza Flash", + 'submit_submit' => "Sumbit", + 'text_ad' => "Pubblicità", + 'text_header_note' => "Mostra nell'angolo in alto a destra di ogni pagina. Consigliato di usare l'immagine o il flash di dimensione entro 580 * 90. Verrà mostrato solo un annuncio. ", + 'text_footer_note' => "Mostra in fondo a ogni pagina. La dimensione consigliata è 728 * 160. Verrà mostrato solo un annuncio. ", + 'text_below_navigation_note' => "Mostra proprio sotto la barra di navigazione in ogni pagina. La dimensione consigliata è 728 * 90. Verrà mostrato solo un annuncio. ", + 'text_below_searchbox_note' => "Mostra sotto la casella di ricerca nella pagina dei torrent. La dimensione consigliata è di 728 * 90. Verrà mostrato solo un annuncio. ", + 'text_torrent_detail_note' => "Mostra nella descrizione del torrent nella pagina di dettaglio del torrent. La dimensione consigliata è 600 * 160. Verrà mostrato solo un annuncio. ", + 'text_comment_page_note' => "Mostra tra i commenti sulla pagina di dettaglio del torrent o sulla pagina di dettaglio dell'offerta. La dimensione consigliata è 600 * 160. Diversi annunci verranno mostrati insieme. ", + 'text_inter_overforums_note' => "Mostra tra i forum nella home page del forum. La dimensione consigliata è di 728 * 90. Diversi annunci saranno mostrati insieme.", + 'text_forum_post_page_note' => "Mostra tra i post del forum sulla pagina di dettaglio dell'argomento del forum. La dimensione consigliata è 600 * 160. Diversi annunci saranno mostrati insieme.", + 'text_popup_note' => "Popup su ogni pagina. Molto disturbante, uso con cautela. La dimensione consigliata è 468 * 90", + 'text_name_note' => "Solo un nome per chiamare l'annuncio.", + 'text_start_time_note' => "Nel formato di YYYY-MM-DD hh:mm:ss, es. '2007-12-24 21:00:00'. Il tempo da quando l'annuncio diventa disponibile.", + 'text_end_time_note' => "In formato AAAA-MM-GG hh:mm:ss, es. '2008-01-24 21:00:00'. Il tempo fino a quando l'annuncio è disponibile.", + 'text_order_note' => "La priorità degli annunci. Il valore '0' ottiene la massima priorità.
    Quando più pubblicità sono disponibili per una posizione, quella con la massima priorità mostrerà se la posizione permette solo una pubblicità, e quelli con priorità più elevate saranno mostrati in alto se la posizione consente diversi annunci. Quando più annunci disponibili hanno lo stesso valore di priorità, quello aggiunto più di recente ha la massima priorità. ", + 'text_enabled_note' => "Verranno mostrati solo gli annunci abilitati. ", + 'text_type_note' => "Scegli il metodo di visualizzazione degli annunci. ", + 'text_image_url_note' => "L'URL del file immagine.
    Entrambi i percorsi relativi (es. 'pic/ad.jpg') o il percorso assoluto (es. 'https://nexusphp.org/ad.jpg') sono Okay. ", + 'text_image_link_note' => "Il link dell'annuncio, ad esempio 'https://nexusphp.org/ad.html'. ", + 'text_image_width_note' => "In pixel. La larghezza alla quale viene mostrata l'immagine. ", + 'text_image_height_note' => "In pixel. L'altezza a cui viene mostrata l'immagine. ", + 'text_image_tooltip_note' => "Il testo mostrato sul suggerimento del collegamento. ", + 'text_text_content_note' => "Il contenuto del testo pubblicitario. ", + 'text_text_link_note' => "Il link dell'annuncio, ad esempio 'https://nexusphp.org/ad.html'. ", + 'text_text_size_note' => "La dimensione del carattere della pubblicità di testo. Potrebbe essere in pt, px o em, ad esempio '30pt'. Se nessuno è definito, '30pt' è ipotizzato.", + 'text_bbcodes_code_note' => "Che cos'è i codici BBB? Vedi ", + 'text_here' => "qui", + 'text_xhmtl_code_note' => "Si dovrebbe evitare di usare XHTML non solo perché codice XHTML errato potrebbe facilmente dissimulare l'intera pagina, ma anche perché è INSECURE. Se necessario, assicurati che il codice XHTML sia sicuro e corretto.
    NOTA: Si prega di seguire le specifiche transitorie XHTML 1.0, non HTML 4.01.", + 'text_flash_url_note' => "L'URL del file Flash.
    Entrambi i percorsi relativi (es. 'pic/flash.demo.swf') o il percorso assoluto (es. 'https://nexusphp.org/flash.demo.swf') sono Okay.", + 'text_flash_width_note' => "In pixel. La larghezza alla quale viene mostrato il Flash. ", + 'text_flash_height_note' => "In pixel. L'altezza alla quale viene mostrato il Flash. ", + 'std_missing_form_data' => "Dati del modulo mancanti.", + 'std_invalid_type' => "Metodo di visualizzazione non valido.", + 'std_success' => "Successo", + 'std_edit_success' => "L'annuncio è modificato. ", + 'std_add_success' => "L'annuncio è aggiunto. ", + 'text_unlimited' => "illimitato", + 'std_go_back' => "Torna alla lista degli annunci", + 'col_clicks' => "Clic" +); + +?> diff --git a/lang/it/lang_adredir.php b/lang/it/lang_adredir.php new file mode 100644 index 00000000..b907537d --- /dev/null +++ b/lang/it/lang_adredir.php @@ -0,0 +1,11 @@ + "Errore", + 'std_ad_system_disabled' => "Sistema annunci disabilitato.", + 'std_invalid_ad_id' => "Invalid ad id", + 'std_no_redirect_url' => "Nessun URL di reindirizzamento." +); + +?> diff --git a/lang/it/lang_attachment.php b/lang/it/lang_attachment.php new file mode 100644 index 00000000..b726dc56 --- /dev/null +++ b/lang/it/lang_attachment.php @@ -0,0 +1,20 @@ + "Fallito! Niente ricevuto!", + 'text_file_number_limit_reached' => "Fallito! Non è possibile caricare più file per il momento. Si prega di attendere un po '.", + 'text_file_size_too_big' => "Fallito! La dimensione del file è troppo grande.", + 'text_file_extension_not_allowed' => "Fallito! L'estensione del file non è consentita.", + 'text_invalid_image_file' => "Fallito! File immagine non valido.", + 'text_cannot_move_file' => "Fallito! Impossibile spostare il file caricato.", + 'submit_upload' => "Carica", + 'text_left' => "Oggi Rimanente: ", + 'text_of' => " di ", + 'text_size_limit' => "Dimensione: ", + 'text_file_extensions' => "Estensioni Del File: ", + 'text_mouse_over_here' => "mouse qui", + 'text_small_thumbnail' => "miniatura piccola", +); + +?> diff --git a/lang/it/lang_attendance.php b/lang/it/lang_attendance.php new file mode 100644 index 00000000..b11adf9d --- /dev/null +++ b/lang/it/lang_attendance.php @@ -0,0 +1,16 @@ + "Partecipazione", + 'success' => "Successo", + 'attend_info' => "Hai già partecipato a %u giorni, Continuo %u giorni, questa volta otterrai %u bonus.", + 'initial' => "Prima partecipazione ottenere bonus %u.", + 'steps' => "Ogni partecipazione continua ottiene bonus %u , a meno che non raggiunga il massimo %u", + 'continuous' => "Partecipa %u giorno continuo, otterrà %u rimbalzi aggiuntivi.", + 'sorry' => "Spiacenti", + 'already_attended' => "Hai già partecipato, nessun aggiornamento, per favore.", + 'retroactive_event_text' => 'Re', + 'retroactive_confirm_tip' => 'Conferma di partecipare: ', + 'retroactive_description' => 'Clicca sul punto sullo sfondo bianco per partecipare. Al momento hai una carta di partecipazione %d.', +); diff --git a/lang/it/lang_bitbucket-upload.php b/lang/it/lang_bitbucket-upload.php new file mode 100644 index 00000000..3888285a --- /dev/null +++ b/lang/it/lang_bitbucket-upload.php @@ -0,0 +1,36 @@ + "Caricamento fallito", + 'std_nothing_received' => "Niente ricevuto!", + 'std_file_too_large' => "Siamo spiacenti, questo file è troppo grande per il bit-bucket.", + 'std_bad_file_name' => "Nome file errato.", + 'std_file_with_the_name' => "Siamo spiacenti, un file con il nome ", + 'std_already_exists' => " esiste già nel bucket.", + 'std_error' => "Errore", + 'std_invalid_image_format' => "Estensione non valida: gif, jpg o solo png!", + 'std_image_processing_failed' => "Elaborazione immagine non riuscita", + 'std_sorry_the_uploaded' => "Siamo spiacenti, il caricato ", + 'std_failed_processing' => " elaborazione fallita. Prova a salvare l'immagine in un editor grafico. Grazie.", + 'std_success' => "Successo", + 'std_use_following_url' => "Utilizzare il seguente URL per accedere al file: ", + 'std_upload_another_file' => "Carica un altro file", + 'std_image' => "Immagine ", + 'std_need_not_rescaling' => "non richiede il riscalamento", + 'std_rescaled_from' => " riscalato da ", + 'std_to' => " a ", + 'std_profile_updated' => "
    Nota: il tuo profilo è stato aggiornato!", + 'head_avatar_upload' => "Caricamento AVATAR", + 'text_avatar_upload' => "Caricamento AVATAR", + 'text_upload_directory_unwritable' => "ATTENZIONE: la directory di caricamento non è scrivibile. Si prega di contattare l'amministratore per questo problema!", + 'text_disclaimer' => "Disclaimer
    Non caricare immagini non autorizzate o illegali.
    Le immagini caricate dovrebbero essere considerate \"di pubblico dominio\". Quindi non caricare le immagini che non vorresti che uno straniero abbia accesso.
    Le immagini caricate verranno ridimensionate mantenendo le proporzioni se l'altezza supera ", + 'text_disclaimer_two' => " pixel o larghezza superiore ", + 'text_disclaimer_three' => " pixel
    La dimensione massima del file è ", + 'text_disclaimer_four' => " bytes.", + 'row_file' => "File", + 'checkbox_avatar_shared' => "Altri utenti possono usare il mio avatar (è scegliibile in usercp).", + 'submit_upload' => "Carica", +); + +?> diff --git a/lang/it/lang_catmanage.php b/lang/it/lang_catmanage.php new file mode 100644 index 00000000..4ddcaf33 --- /dev/null +++ b/lang/it/lang_catmanage.php @@ -0,0 +1,86 @@ + "Gestione Categoria", + 'text_category_management' => "Gestione Categoria", + 'text_manage' => "Gestisci", + 'text_searchbox' => "SearchBox", + 'text_category_icons' => "Pacchetto icone categoria", + 'text_second_icons' => "Seconda icone", + 'text_categories' => "Categorie", + 'text_sources' => "Sorgenti", + 'text_media' => "Media", + 'text_codecs' => "Codec", + 'text_standards' => "Norme", + 'text_processings' => "Trasformazione", + 'text_teams' => "Team", + 'text_audio_codecs' => "Codec Audio", + 'std_error' => "Errore", + 'std_invalid_type' => "Invalid type.", + 'text_add' => "Aggiungi", + 'text_no_record_yet' => "Ancora nessun record!", + 'col_id' => "ID", + 'col_name' => "Nome", + 'col_order' => "Ordine", + 'col_action' => "Azione", + 'text_delete' => "Elimina", + 'text_edit' => "Modifica", + 'js_sure_to_delete_this' => "Sei sicuro di voler eliminare questo?", + 'col_sub_category' => "Sottocategoria", + 'text_per_row' => "Oggetti/Riga", + 'text_padding' => "Padding", + 'text_enabled' => "Abilitato", + 'text_disabled' => "Disabilitato", + 'col_folder' => "Cartella Pacchetto Icone", + 'text_multi_language' => "Multi-lang.", + 'text_second_icon' => "Seconda Icona", + 'text_css_file' => "File CSS", + 'text_none' => "nessuno", + 'text_css_file_note' => "File CSS per questo pacchetto di icone. Inserisci il percorso completo, ad esempio 'styles/scenetorrents.css'. Lascialo vuoto se non lo è.
    Caratteri consentiti: [a-z] (in minuscolo), [0-9], [_./].", + 'text_designer' => "Designer", + 'text_comment' => "Commento", + 'text_yes' => "Sì", + 'text_no' => "No", + 'col_image' => "Immagine", + 'text_class_name' => "attributo classe", + 'col_mode' => "Modalità", + 'std_invalid_id' => "Invalid id", + 'submit_submit' => "Invia", + 'text_subcategory_name_note' => "Non usare il nome lungo. Raccomanda meno di 10 lettere.", + 'text_order_note' => "Ascendente, cioè '0' viene per primo.", + 'row_searchbox_name' => "Nome SearchBox", + 'text_searchbox_name_note' => "Caratteri consentiti: [a-z] (in minuscolo), [0-9], [_./].", + 'row_show_sub_category' => "Mostra sottocategoria", + 'text_show_sub_category_note' => "Controlla le sottocategorie che vuoi abilitare.", + 'row_items_per_row' => "Oggetti per riga", + 'text_items_per_row_note' => "Imposta quanti elementi devono mostrare in una riga nella casella di ricerca, ad esempio '8'.", + 'row_padding_between_items' => "Distanza tra gli elementi", + 'text_padding_between_items_note' => "In pixel. Lo spazio di riempimento horizionale tra gli elementi nella casella di ricerca, ad esempio '3'.", + 'text_category_icon_name_note' => "Caratteri consentiti: [a-z] (in minuscolo), [0-9], [_./].", + 'text_folder_note' => "Il nome della cartella del pacchetto di icone. Caratteri consentiti: [a-z] (in minuscolo), [0-9], [_. ].
    DEVE aggiungere una barra finale (/) alla fine, ad esempio 'mycaticon/'", + 'text_multi_language_note' => "Indica se usare icone di categoria diverse per lingue diverse. Se impostato a 'sì', inserisci diversi pacchetti di icone in diverse cartelle denominate 'en', 'chs', ecc.", + 'text_second_icon_note' => "Indica se usare le seconde icone per informazioni aggiuntive. Se impostato a 'sì', inserisci le seconde icone in una cartella chiamata 'addizionale' insieme alle normali icone.", + 'text_designer_note' => "La persona che ha progettato il pacchetto di icone.", + 'text_comment_note' => "Infomazione sul pacchetto delle icone.", + 'text_icon_directory_note' => "È necessario mettere le icone nella directory giusta per far funzionare queste impostazioni. Inserisci le normali icone in 'pic/category/searchbox_name/icon_pack_folder[language_short_name/]' e le seconde icone in 'pic/category/searchbox_name/icon_pack_folder[language_short_name/]additional/'.
    Non lo capisce? Vedi se i seguenti esempi potrebbero aiutare:
    • Quando
      • searchbox_name='nhd'
      • icon_pack_folder='scenetorrents/'
      • multi-lang='sì'
      • second_icon='no'
      dovresti inserire un normale file icona inglese per i film (e. . 'movies.png') in 'pic/category/nhd/scenetorrents/en/' .
    • Quando
      • searchbox_name='chd'
      • icon_pack_folder='nanosofts/'
      • multi-lang='no'
      • second_icon='sì'
      dovresti inserire un normale file icona per i film (e. . movies.png) in 'pic/category/chd/nanosofts/' e un file icona aggiuntivo (ad esempio 'bdh264.png') in 'pic/category/chd/nanosofts/additional/'.
    ", + 'text_second_icon_name_note' => "Non usare il nome lungo. Raccomanda meno di 10 lettere.", + 'text_image_note' => "Il nome del file immagine. Caratteri consentiti: [a-z] (in minuscolo), [0-9], [_./].", + 'row_selections' => "Selezioni", + 'text_selections_note' => "Se una selezione non è definita, tutte le opzioni della selezione sono consentite per la regola. Almeno una selezione deve essere definita.", + 'row_category_name' => "Nome categoria", + 'text_category_name_note' => "Non usare il nome lungo. Raccomanda meno di 10 lettere.", + 'row_mode' => "Modalità", + 'text_class_name_note' => "Il valore dell'attributo 'classe' dell'immagine. Lascialo vuoto se non lo è. Caratteri consentiti: [a-z] (in minuscolo), [0-9], [_]e la prima lettera deve essere in [a-z].", + 'std_missing_form_data' => "Dati del modulo mancanti.", + 'std_invalid_character_in_filename' => "Carattere non valido nel nome del file ", + 'std_must_define_one_selection' => "Devi definire almeno una selezione!", + 'std_invalid_mode_id' => "ID modalità non valida.", + 'row_enable_custom_field' => 'Abilita campo personalizzato', + 'row_custom_field_display_name' => 'Nome visualizzazione campo personalizzato', + 'row_custom_field_display' => 'Visualizzazione campo personalizzato', + 'row_custom_field_display_help' => "Usa 'etichetta specifica' per rappresentare l'etichetta e il valore del campo personalizzato, come il nome di un campo personalizzato è 'artista',
    allora è l'etichetta:<%artist.label%>,è il valore:<%artist.value%>", + 'row_searchbox_extras' => 'Extras', +); + +?> diff --git a/lang/it/lang_cheaterbox.php b/lang/it/lang_cheaterbox.php new file mode 100644 index 00000000..edaf61f2 --- /dev/null +++ b/lang/it/lang_cheaterbox.php @@ -0,0 +1,28 @@ + "Oho!", + 'std_no_suspect_detected' => "Nessun sospetto ancora rilevato.", + 'head_cheaterbox' => "Cheaterbox", + 'text_cheaterbox' => "Cheaterbox BETA", + 'col_added' => "Aggiunto", + 'col_suspect' => "Sospettato", + 'col_hit' => "Colpisci", + 'col_torrent' => "Torrent", + 'col_ul' => "UL", + 'col_dl' => "DL", + 'col_ann_time' => "Ann. Tempo", + 'col_seeders' => "Seminatrici", + 'col_leechers' => "Leechers", + 'col_comment' => "Commento", + 'col_dealt_with' => "Distribuisci Con", + 'col_action' => "Atto", + 'text_torrent_does_not_exist' => "Il torrent non esiste o è eliminato", + 'text_yes' => "Sì", + 'text_no' => "No", + 'submit_set_dealt' => "Imposta Dealt", + 'submit_delete' => "Elimina" +); + +?> diff --git a/lang/it/lang_checkuser.php b/lang/it/lang_checkuser.php new file mode 100644 index 00000000..597712a9 --- /dev/null +++ b/lang/it/lang_checkuser.php @@ -0,0 +1,17 @@ + "Errore", + 'std_no_user_id' => "Nessun utente con questo ID!", + 'std_no_permission' => "Non hai i permessi", + 'head_detail_for' => "Dettagli per ", + 'text_account_disabled' => "

    Questo account è stato disabilitato!

    ", + 'row_join_date' => "Unisciti data", + 'row_gender' => "Sesso", + 'row_email' => "E-Mail", + 'row_ip' => "IP", + 'submit_confirm_this_user' => "Conferma questo utente " +); + +?> diff --git a/lang/it/lang_comment.php b/lang/it/lang_comment.php new file mode 100644 index 00000000..6f5c1bf3 --- /dev/null +++ b/lang/it/lang_comment.php @@ -0,0 +1,51 @@ + "Errore", + 'std_comment_flooding_denied' => "Commento alluvione non ammesso. Attendere prego ", + 'std_before_posting_another' => " secondi prima di pubblicare un altro commento.", + 'std_no_torrent_id' => "Nessun torrent con questo ID.", + 'std_no_comment_id' => "Nessun commento con questo ID", + 'std_comment_body_empty' => "Il corpo del commento non può essere vuoto!", + 'head_add_comment_to' => "Aggiungi un commento a ", + 'text_add_comment_to' => "Aggiungi un commento a ", + 'submit_okay' => "Ok", + 'text_comments_in_reverse_order' => "Osservazioni più recenti, in ordine inverso\n", + 'std_invalid_id' => "Invalid ID.", + 'std_permission_denied' => "Permesso negato.", + 'head_edit_comment_to' => "Modifica commento in ", + 'text_edit_comment_to' => "Modifica commento in ", + 'std_delete_comment' => "Elimina commento", + 'std_delete_comment_note' => "Stai per eliminare un commento. Clicca\n", + 'std_here_if_sure' => ">qui se sei sicuro.", + 'head_original_comment' => "Commento originale", + 'text_original_content_of_comment' => "Contenuto originale del commento ", + 'std_unknown_action' => "Azione sconosciuta.", + 'std_no_review_id' => "Nessuna recensione con questo ID", + 'std_review_body_empty' => "Il corpo della recensione non può essere vuoto!", + 'text_reviews_in_reverse_order' => "

    Recensioni più recenti, in ordine inverso

    \n", + 'head_edit_review_to' => "Modifica la recensione in ", + 'text_edit_review_to' => "Modifica la recensione in ", + 'std_delete_review' => "Elimina recensione", + 'std_delete_review_note' => "Stai per eliminare una recensione. Clicca\n", + 'head_original_review' => "Revisione iniziale", + 'text_original_content_of_review' => "Contenuto originale della revisione ", + 'std_unknown_action' => "Azione sconosciuta.", + 'row_user_comment' => "Utente Commento", + 'row_editor_notes' => "Note Dell' Editor", + 'row_bouns_change' => "Cambio Bonus", + 'text_bouns_change_notes' => " da 0 a 1000, sulla base della qualità della revisione (oltre 1000 saranno trattati come 1000 e altri non nella gamma saranno trattati come 0)", + 'std_review_no_external_info' => "Impossibile contrassegnare i commenti senza informazioni esterne!", + 'std_review_unmark' => "Deseleziona Revisione", + 'std_unmark_review_note' => "Stai per deselezionare una recensione. Clicca\n", + 'row_original_torrent' => "Torrent Originale", + 'text_no_exists' => "Non Esiste Di Più!", + 'text_torrent_id' => " Id Torrent: ", + 'text_back' => "indietro", + 'text_body' => "Corpo", + 'text_compose' => "Componi", + 'text_edit' => "Modifica", +); + +?> diff --git a/lang/it/lang_complains.php b/lang/it/lang_complains.php new file mode 100644 index 00000000..499ff0a6 --- /dev/null +++ b/lang/it/lang_complains.php @@ -0,0 +1,33 @@ + 'Problema dell\'account di reclamo', + 'text_new_complain' => 'Nuovo reclamo', + 'text_new_email' => 'Email Account:', + 'text_new_body' => 'Dettaglio Rifiutato:', + 'text_new_body_placeholder' => "Describe issue here:\nRelated proof is applicable: Images are shown in form of [img=URL]", + 'text_new_submit' => 'Invia', + 'text_new_failure' => 'Email errata o reclamo vuoto inserito.', + 'text_created_title' => 'Lamenta creato', + 'text_created_note' => 'Si prega di segnalibro questa pagina in modo da poter controllare i suoi aggiornamenti più tardi. NON RIPRISTINARE QUESTO URL A ANYBODY! Altrimenti il tuo reclamo non verrebbe affrontato.', + 'text_search_account' => 'Cerca account con questa email', + 'text_reply' => 'Rispondi', + 'text_replies' => 'Messaggio di follow-up', + 'text_complainer' => 'Rifiutante', + 'text_added' => 'Tempo aggiunto', + 'text_no_replies' => 'Nessun messaggio ora', + 'text_closed' => 'Il reclamo è stato risposto e bloccato per nuove risposte.', + 'text_answer_it' => 'CHIUDI', + 'text_unanswer_it' => 'REOPEN', + 'th_complain_at' => 'Lamenta a', + 'th_complain_account' => 'Conto di reclamo', + 'th_action_view' => 'Visualizza', + 'pending_complaints' => 'Reclami pendenti', + 'no_pending_complaints' => 'Nessun reclamo pendente', + 'complaints_processed' => 'Reclami elaborati', + 'no_complaints_have_been_processed' => 'Non sono stati trattati reclami', + 'text_view_band_log' => 'Visualizza registro ban', + 'reply_notify_subject' => 'Reclamo ha risposto', + 'reply_notify_body' => 'Hai una risposta al tuo reclamo sul sito %s, clicca qui per vederlo.', + 'complain_not_enabled' => 'Reclamo non abilitato', +]; diff --git a/lang/it/lang_confirm_resend.php b/lang/it/lang_confirm_resend.php new file mode 100644 index 00000000..2b9a19fb --- /dev/null +++ b/lang/it/lang_confirm_resend.php @@ -0,0 +1,37 @@ + "Invia email di conferma non riuscita", + 'std_fields_blank' => "Non lasciare nessun campo vuoto.", + 'std_invalid_email_address' => "Indirizzo email non valido!", + 'std_email_not_found' => "L'indirizzo email non è stato trovato nel database.\n", + 'std_user_already_confirm' => "L'utente che utilizza questo indirizzo email è già confermato.\n", + 'std_passwords_unmatched' => "Le password non corrispondono! Deve aver battuto. Riprova.", + 'std_password_too_short' => "Siamo spiacenti, la password è troppo corta (min è 6 caratteri)", + 'std_password_too_long' => "Siamo spiacenti, la password è troppo lunga (max 40 caratteri)", + 'std_password_equals_username' => "Siamo spiacenti, la password non può essere la stessa del nome utente.", + 'std_error' => "Errore", + 'std_database_error' => "Errore nel database. Contatta un amministratore per questo.", + 'text_resend_confirmation_mail_note' => "

    Invia di nuovo una mail di conferma

    Usa il modulo qui sotto per inviare nuovamente la tua email di conferma.

    Devi essere registrato entro 1 giorno e non confermato,
    altrimenti il tuo account in sospeso potrebbe essere eliminato e dovresti registrarti di nuovo.

    Nota: %s tentativi falliti di riga comporteranno il divieto del tuo ip!

    ", + 'row_registered_email' => "Email registrata: ", + 'row_new_password' => "Nuova password: ", + 'text_password_note' => "Minimo è di 6 caratteri", + 'row_enter_password_again' => "Inserire nuovamente la password: ", + 'submit_send_it' => "Mandatelo!", + 'text_you_have' => "Hai ", + 'text_remaining_tries' => " tentativi rimanenti.", + + 'mail_title' => " Conferma Registrazione Utente (Ri-Invia)", + 'mail_this_link' => "QUESTO LINK", + 'mail_here' => "QUI", + 'mail_one' => "Hi ", + 'mail_two' => ",

    Hai richiesto una nuova email di conferma su %s e hai
    specificato questo indirizzo ", + 'mail_three' => " come contatto utente.

    Se non lo hai fatto, ignora questa email. La persona che ha inserito il tuo indirizzo email
    aveva l'indirizzo IP ", + 'mail_four' => ". Si prega di non rispondere.

    Per confermare la registrazione dell'utente, è necessario seguire ", + 'mail_four_1' => "

    Se il link qui sopra è rotto o scaduto, prova a inviare nuovamente una nuova email di conferma da ", + 'mail_five' => "

    After you do this, you will be able to use your new account. If you fail to
    do this, your account will be deleted within 24 hours. We urge you to read
    the RULES and FAQ before you start using %s.

    Please Note: If you did not register for %s, please report this email to %s

    ------
    Yours,
    The %s Team.", + 'text_select_lang' => "Seleziona Lingua Del Sito: ", + 'std_need_admin_verification' => "L'account necessita di verifica manuale da parte degli amministratori." +); +?> diff --git a/lang/it/lang_contactstaff.php b/lang/it/lang_contactstaff.php new file mode 100644 index 00000000..4f4661d2 --- /dev/null +++ b/lang/it/lang_contactstaff.php @@ -0,0 +1,12 @@ + "Contatta Lo Staff", + 'text_message_to_staff' => "Invia un messaggio allo staff", + 'row_subject' => "Oggetto", + 'row_body' => "Corpo", + 'submit_send_it' => "Invia It!" +); + +?> \ No newline at end of file diff --git a/lang/it/lang_delete.php b/lang/it/lang_delete.php new file mode 100644 index 00000000..2c85ac11 --- /dev/null +++ b/lang/it/lang_delete.php @@ -0,0 +1,17 @@ + "Eliminazione fallita!", + 'std_missing_form_date' => "dati del modulo mancanti", + 'std_not_owner' => "Non sei il proprietario! Come è successo?", + 'std_invalid_reason' => "Motivo non valido ", + 'std_describe_violated_rule' => "Per favore, descrivi la regola violata.", + 'std_enter_reason' => "Inserisci il motivo per eliminare questo torrent.", + 'head_torrent_deleted' => "Torrent eliminato!", + 'text_go_back' => "Torna a dove sei venuto", + 'text_back_to_index' => "Torna all'indice", + 'text_torrent_deleted' => "Torrent eliminato!" +); + +?> diff --git a/lang/it/lang_deletedisabled.php b/lang/it/lang_deletedisabled.php new file mode 100644 index 00000000..759081d2 --- /dev/null +++ b/lang/it/lang_deletedisabled.php @@ -0,0 +1,12 @@ + "Elimina Disabilitato", + 'text_delete_diasabled' => "Elimina Disabilitato", + 'submit_delete_all_disabled_users' => "Elimina tutti gli utenti disabilitati", + 'text_delete_disabled_note' => "Se clicchi sul pulsante seguente, tutti gli utenti disabilitati del tuo sito saranno DELETATI. MAI clicca sul pulsante a meno che tu non sia MOLTO SURO.", + 'text_users_are_disabled' => " gli utenti sono eliminati." +); + +?> diff --git a/lang/it/lang_deletemessage.php b/lang/it/lang_deletemessage.php new file mode 100644 index 00000000..6ccbbac5 --- /dev/null +++ b/lang/it/lang_deletemessage.php @@ -0,0 +1,12 @@ + "ID messaggio errato", + 'std_not_suggested' => "Non lo farei se fossi in lei...", + 'std_not_in_inbox' => "Il messaggio non è nella tua casella di posta.", + 'std_not_in_sentbox' => "Il messaggio non è nella tua casella Sente.", + 'std_unknown_pm_type' => "Tipo di PM sconosciuto." +); + +?> \ No newline at end of file diff --git a/lang/it/lang_details.php b/lang/it/lang_details.php new file mode 100644 index 00000000..1ffcadf4 --- /dev/null +++ b/lang/it/lang_details.php @@ -0,0 +1,247 @@ + "Errore", + 'std_no_torrent_id' => "Nessun torrent con questo ID", + 'head_details_for_torrent' => "Dettagli per torrent ", + 'text_successfully_uploaded' => "Caricato con successo!", + 'text_redownload_torrent_note' => "Dovresti riscaricare il torrent e iniziare a seminare adesso.", + 'text_successfully_edited' => "Modificato con successo!", + 'text_go_back' => "Torna a ", + 'text_whence_you_came' => "da dove sei venuto", + 'text_rating_added' => "Valutazione aggiunta!", + 'text_thanks_added' => "Il tuo ringraziamento aggiunto!", + 'text_free' => "Gratis", + 'text_two_times_up' => "2X", + 'text_free_two_times_up' => "2X Gratis", + 'text_half_down' => "50%", + 'row_download' => "Scarica", + 'text_downloading_not_allowed' => "Non sei autorizzato a scaricare.", + 'row_small_description' => "Descrizione Piccola", + 'row_info_hash' => "Informazioni hash", + 'row_description' => "Descrizione", + 'text_nfo' => "NFO", + 'text_view_nfo' => "[Tutti I Modi]", + 'row_imdb_url' => "URL IMDb", + 'row_subtitles' => "Sottotitoli", + 'text_no_subtitles' => "Nessun sottotitolo disponibile per questo torrent", + 'submit_upload_subtitles' => "Carica Sottotitolo!", + 'row_info' => " Informazioni", + 'text_imdb' => "IMDb", + 'text_lastfm' => "Last.fm", + 'text_douban' => "Douban", + 'text_not_ready' => " informazioni non pronte, clicca ", + 'text_here_to_retrieve' => "here to retrive from ", + 'text_someone_has_requested' => "Qualcuno ha richiesto di recuperare informazioni da ", + 'text_please_be_patient' => " secondi fa, sii paziente, per favore.", + 'text_information' => "Informazioni:", + 'text_title' => " Titolo: ", + 'text_title_chinese' => "Titolo cinese: ", + 'text_also_known_as' => " Conosciuto anche: ", + 'text_year' => " Anno: ", + 'text_runtime' => " Durata: ", + 'text_mins' => " min", + 'text_votes' => " Votazioni: ", + 'text_rating' => " Valutazione: ", + 'text_language' => " Lingua: ", + 'text_country' => " Paese: ", + 'text_all_genres' => " Tutti I Generi: ", + 'text_tagline' => " Tagline: ", + 'text_director' => " Direttore: ", + 'text_written_by' => " Scritto Da: ", + 'text_performed_by' => " Eseguito Da: ", + 'text_offcial_site' => " Sito Offcial ", + 'text_imdb_link' => " Collegamento IMDB: ", + 'text_produced_by' => " Prodotto Da: ", + 'text_music' => " Musica: ", + 'text_plot_outline' => " Contorno Traccia:", + 'text_cast' => " Cast:", + 'text_as' => " come ", + 'text_recommended_comment' => " Commento Consigliato:", + 'text_information_updated_at' => "

    NOTA: Questa infomazione è aggiornata a ", + 'text_might_be_outdated' => " e potrebbe essere obsoleto ora, fare clic ", + 'text_here_to_update' => "qui per aggiornare informazioni obsolete", + 'text_network_error' => "Attenzione! La condizione di rete non consente di recuperare l'infomazione da IMDb al volo", + 'text_avprogress' => "Progresso Medio: ", + 'row_type' => "Tipo", + 'text_none_selected' => "(nessuno selezionato)", + 'text_source' => "Fonte:", + 'text_codec' => "Codec:", + 'text_stardard' => "Standard:", + 'text_processing' => "Elaborazione:", + 'row_quality' => "Qualità", + 'col_type' => "Tipo", + 'col_name' => "Nome", + 'col_quality' => "Qualità", + 'title_size' => "Dimensione", + 'title_time_added' => "Tempo Aggiunto", + 'title_seeders' => "Seminatrici", + 'title_leechers' => "Leechers", + 'col_special' => "Promozione?", + 'text_normal' => "normale", + 'row_other_copies' => "Altre Copie", + 'row_last_seeder' => "Ultima Azione: ", + 'text_ago' => " fa", + 'text_size' => "Dimensione: ", + 'text_none_yet' => "nessuno ancora (ha bisogno di almeno %s voti e ha ottenuto ", + 'text_only' => "solo ", + 'text_none' => "nessuno", + 'text_no_votes_yet' => "Ancora nessun voto", + 'text_invalid' => "non valido?", + 'text_out_of_five_with' => " su 5 con ", + 'text_votes_total' => " voto(i) totale", + 'text_login_to_vote' => "Accedi a per votarlo", + 'select_add_rating' => "(aggiungere valutazione)", + 'submit_vote' => "Vota!", + 'text_rating' => "Valutazione: ", + 'row_time' => "Tempo", + 'row_hot_meter' => "Caldo Meter", + 'text_views' => "Viste: ", + 'text_hits' => "Visite: ", + 'text_snatched' => "Trascinato: ", + 'text_view_snatches' => " x
    volta(e)", + 'text_average_speed' => "Velocità Media: ", + 'text_total_speed' => "Velocità Totale: ", + 'text_health_note' => "(Si tratta di medie nel tempo quindi non sono così accurati)", + 'text_traffic' => "Traffico: ", + 'text_no_traffic' => "Nessun traffico per il momento", + 'text_status' => "Stato: ", + 'text_dead' => "morto", + 'row_health' => "Salute", + 'text_anonymous' => "Anonimo", + 'text_edit_torrent' => "Modifica", + 'text_edit_and_delete_torrent' => "Modifica/Elimina", + 'title_edit_torrent' => "Fare clic su per Modifica o Elimina questo torrent ", + 'row_upped_by' => "Caricato da", + 'text_click' => "Click ", + 'text_num_files' => "Num file: ", + 'text_see_full_list' => "[Visualizza elenco completo]", + 'text_files' => " file", + 'row_file_list' => "Elenco file", + 'text_hide_list' => "[Nascondi elenco]", + 'row_action' => "Azione", + 'text_download_torrent' => "Scarica torrent", + 'text_download_paid_torrent' => "Scarica torrent(annunciare detrae bonus: %s)", + 'text_download_bought_torrent' => "Scarica torrent(bought)", + 'title_download_torrent' => "Scarica torrent", + 'text_ask_for_reseed' => "Chiedi un reseed", + 'title_ask_for_reseed' => "Ask snatched users for reseeding when there 's no seeder", + 'text_report_torrent' => "Segnala torrent", + 'title_report_torrent' => "Segnala torrent per violando le regole ", + 'text_here' => "qui", + 'row_peers' => "Peers", + 'text_seeders' => " Seeder", + 'text_leechers' => " Leecher", + 'text_peers_total' => " Peer(s) totale", + 'row_seeders' => "Seminatrici", + 'row_leechers' => "Leechers", + 'submit_say_thanks' => "Dite Grazie!", + 'submit_you_said_thanks' => "Sei Ha detto Grazie!", + 'text_no_thanks_added' => "nessun ringraziamento ancora aggiunto", + 'row_thanks_by' => "Grazie di", + 'row_torrent_info' => "Torrent Info", + 'text_torrent_structure' => "Struttura: ", + 'text_torrent_info_note' => "[Visualizza Struttura]", + 'head_comments_for_torrent' => "Osservazioni per il torrent ", + 'text_comments_for' => "Osservazioni per ", + 'text_snatch_detail_for' => "Snac Dettagli per ", + 'text_users_top_finished_recently' => "Gli utenti in alto finito il download più recentemente", + 'col_username' => "Username", + 'col_uploaded' => "Caricato", + 'col_downloaded' => "Scaricato", + 'col_when_completed' => "Quando Completato", + 'col_last_action' => "Ultima Azione", + 'col_seeding' => "Semina", + 'col_pm_user' => "Utente PM", + 'col_report_user' => "Report Utente", + 'col_on_or_off' => "On/Off", + 'text_global' => "Globale", + 'text_torrent' => "Torrent", + 'text_yes' => "Sì", + 'text_no'=> "No", + 'text_add_a_comment' => "Aggiungi Commento", + 'text_no_comments_yet' => "Ancora nessun commento", + 'text_quick_comment' => "Commento Rapido", + 'submit_add_comment' => "Aggiungi Commento", + 'title_pm' => "Invia PM", + 'title_report' => "Segnala", + 'title_online' => "Online", + 'title_offline' => "Offline", + 'select_kewl' => "Kewl!", + 'select_pretty_good' => "Carino buono", + 'select_decent' => "Decente", + 'select_pretty_bad' => "Pretty bad", + 'select_sucks' => "Succhi!", + 'text_lastfm_not_ready' => "Informazioni di Last.fm non pronte, clicca ", + 'text_biography' => "Biografia", + 'text_tags' => "Tag:", + 'text_similiar_artists' => "Artisti Similiari:", + 'text_may_also_like' => "Può Anche Preferire:", + 'text_top_albums' => "Album Superiori:", + 'text_listener' => " Ascoltatore", + 'text_scrobbled' => " Riproduzioni", + 'text_album' => " Album", + 'text_album_name' => "Nome: ", + 'text_track_number_info' => "Tracce: ", + 'text_release_date' => "Data Di Rilascio: ", + 'text_label' => "Etichetta: ", + 'text_track_list' => "Elenco Traccia: ", + 'text_track_number' => "#   ", + 'text_track_name' => "Nome Traccia", + 'text_track_duration' => "Durata", + 'text_track_listener' => "Ascoltatore", + 'text_ratings_legend' => "Legenda: ", + 'text_points' => " punti", + 'text_totalvotes' => " voti", + 'text_author' => "Autore: ", + 'text_from' => "da", + 'h1_user_reviews' => "Recensioni Degli Utenti Selezionati", + 'h1_critic_reviews' => "Recensioni Della Critica Del Film", + 'h1_user_comments' => "Commenti Utente", + 'text_local_link' => "Link Locale", + 'text_at' => " a ", + 'row_basic_info' => "Informazioni Di Base", + 'text_site_rating' => " Valutazione", + 'text_blank' => " ", + 'text_creator' => "Creatore: ", + 'submit_search_at_shooter' => "Cerca nel Cecchino", + 'submit_search_at_opensubtitles' => "Cerca in Opensubtitles", + 'title_show_or_hide' => "Mostra o Nascondi", + 'title_bookmark' => "Segnalibro", + 'text_album_information' => "Informazioni Sull'Album: ", + 'text_about_album' => "Informazioni su questo album: ", + 'text_artist' => " Artista", + 'text_artist_name' => "Artista: ", + 'text_medium' => "Medio:", + 'text_team' => "Squadra", + 'text_audio_codec' => "Codec Audio:", + 'text_delete' => "Elimina", + 'text_other_copies' => " Altre Copie", + 'row_uploader_bandwidth' => "Caricare
    Larghezza Banda", + 'text_and_more' => " e altro ancora (grazie da ", + 'text_users_in_total' => " utenti in totale)", + 'torrent_dl_url' => "Url Del Torrent", + 'torrent_dl_url_notice' => "Puoi copiarlo nel tuo client BT. Valido solo oggi.", + 'torrent_dl_url_text' => "Click destro per visualizzare.", + 'span_description_have_given' =>'Hai dato la magia del valore', + 'text_no_magic_added' => "Nessun valore magico del premio", + 'magic_value_number' => "Numero Il valore del punto magico è stato presentato", + 'magic_value_award' => "Valore magico dei premi", + 'magic_newest_record' =>'Qui solo l\'ultimo record. ', + 'magic_sum_user_give_number' => 'Numero Membro ha dato il premio magico totalmente', + 'magic_show_all_description' => 'Visualizza i dettagli di un singolo', + 'magic_haveGotBonus' => 'Editore ora è stato ottenuto Numero Bonus di premio.', + 'magic_have_no_enough_bonus_value' => 'sono necessari altri punti', + 'claim_already' => 'Richiesto', + 'claim_now' => 'Claim', + 'claim_info' => 'Già richiesto da %s utenti, %s posto rimanente.', + 'claim_detail' => 'Dettaglio sinistro', + 'claim_label' => 'Richiedi torrent', + 'claim_confirm' => 'Sei sicuro di voler richiedere questo torrent?', + 'action_approval' => 'Omologazione', + 'row_tags' => 'Etichette', + 'torrent_existed' => 'Torrent già caricato!', +); + +?> diff --git a/lang/it/lang_docleanup.php b/lang/it/lang_docleanup.php new file mode 100644 index 00000000..c1b66129 --- /dev/null +++ b/lang/it/lang_docleanup.php @@ -0,0 +1,9 @@ + 'Ripulisci Pulizia', + 'running' => 'pulizia in corso...attendere prego', + 'force' => 'Se hai bisogno di forzare una pulizia completa, cliccaqui', + 'time_consumed' => 'Tempo consumato:%f sec', + 'done' => 'Fatto', +]; diff --git a/lang/it/lang_donate.php b/lang/it/lang_donate.php new file mode 100644 index 00000000..40e3ecda --- /dev/null +++ b/lang/it/lang_donate.php @@ -0,0 +1,31 @@ + "Spiacenti", + 'std_do_not_accept_donation' => "Non accettiamo donazioni al momento.", + 'std_success' => "Successo", + 'std_donation_success_note_one' => "Grazie per la tua donazione! La tua transazione è stata completata. Per favore clicca ", + 'std_here' => "qui", + 'std_donation_success_note_two' => " per inviarci le informazioni della transazione in modo da poter accreditare il tuo conto!", + 'head_donation' => "Donazione", + 'text_donate' => "Dona", + 'std_error' => "Errore", + 'std_no_donation_account_available' => "Nessun account di donazione è stato definito. Si prega di segnalarlo allo staff.", + 'text_donation_note' => "Grazie per il vostro interesse a donare. Tutto ciò che si potrebbe donare sarebbe grato ricevuto non importa quanto piccolo.", + 'text_donate_with_paypal' => "Dona con PayPal", + 'text_donate_paypal_note' => "1. Seleziona l'importo della donazione.
    2. Fai clic sul pulsante PayPal.
    3. Termina il pagamento su PayPal.", + 'text_select_donation_amount' => "Si prega di selezionare un importo donazione: ", + 'select_choose_donation_amount' => "---Scegli Importo Donazione---", + 'select_other_donation_amount' => "Altro Importo Donazione", + 'text_usd_mark' => "$", + 'text_donation' => " Donazione", + 'text_donate_with_alipay' => "Dona con Alipay", + 'text_donate_alipay_note_one' => "1. Clicca il pulsante Alipay.
    2. Scegli 'paga per estraneo'.
    3. Inserisci il nostro account su Alipay ", + 'text_donate_alipay_note_two' => " e paga ad esso.
    4. Continuate finché non avete finito.", + 'text_after_donation_note_one' => "Dopo aver donato, assicurati di ", + 'text_send_us' => "Inviaci", + 'text_after_donation_note_two' => " le informazioni di transazione così possiamo accreditare il tuo conto!", +); + +?> diff --git a/lang/it/lang_download.php b/lang/it/lang_download.php new file mode 100644 index 00000000..9f8fedb0 --- /dev/null +++ b/lang/it/lang_download.php @@ -0,0 +1,5 @@ + "Scarica Avviso", + 'text_client_banned_notice' => "Client banned notice", + 'text_client_banned_note' => "Ciao!
    Il tracker ha rilevato che hai usato un client bannato BitTorrent nell'ultima connessione. Si prega di leggere il seguente avviso.", + 'text_low_ratio_notice' => "Avviso rapporto basso", + 'text_low_ratio_note_one' => "ATTENZIONE: Il tuo rapporto è basso! Devi migliorarlo all'interno ", + 'text_low_ratio_note_two' => ", oppure perderai il tuo abbonamento qui. Se non hai idea di cosa sia il tuo rapporto, leggi attentamente il seguente avviso.", + 'text_first_time_download_notice' => "Prima notifica download", + 'text_first_time_download_note' => "Ciao!
    Probabilmente è la tua prima volta scaricare un torrent dal nostro tracker.
    Probabilmente ci sono alcune cose che dovresti sapere prima di continuare. Cercherò di fare questo breve :)", + 'text_this_is_private_tracker' => "Questo è un Tracker Privato con requisito di rapporto", + 'text_private_tracker_note_one' => "Questo è un tracker privato, il che significa che ci riserviamo il tracker per l'utilizzo esclusivo dei nostri membri registrati. ", + 'text_learn_more' => "Scopri di più sul tracker privato a ", + 'text_nexuswiki' => "NexusWiki", + 'text_private_tracker_note_two' => "DEVE mantenere un minimo di upload-to-download rapporto , o perdere il tuo abbonamento qui. ", + 'text_see_ratio' => "Vedi requisito rapporto in ", + 'text_private_tracker_note_three' => "Il tuo rapporto attuale è sempre mostrato proprio sotto il menu di navigazione del sito. Tieni d'occhio la pagina.", + 'text_private_tracker_note_four' => "Come mantenere un buon rapporto?
    Beh, il modo migliore è quello di lasciare sempre il tuo client BitTorrent in esecuzione e continuare a seminare i torrent che hai scaricato fino a quando non elimini i file.", + 'text_use_allowed_clients' => "Utilizza solo client BitTorrent consentiti", + 'text_allowed_clients_note_one' => "Beh, ci sono diversi client BitTorrent là fuori. Tuttavia, SOLO accettiamo alcuni di loro. Altri (ad esempio qbittorrentEE, Thunder) sono bannati qui e non potrebbero connettere il nostro tracker. ", + 'text_allowed_clients_note_two' => "Puoi trovare un elenco completo dei client consentiti nel ", + 'text_allowed_clients_note_three' => ". Se non si è sicuri di quale scegliere, considerare i seguenti due clienti consigliati: ", + 'title_download' => "Scarica ", + 'text_for' => "Per ", + 'text_for_more_information_read' => "Per ulteriori informazioni, fare riferimento alla ", + 'text_rules' => "Regole", + 'text_and' => " e ", + 'text_faq' => "FAQ", + 'text_let_me_download' => "Io migliorerò il mio rapporto. ", + 'text_notice_not_show_again' => "Non mostrare più questa nota. ", + 'text_notice_always_show' => "Questa nota mostrerà sempre fino a quando non avrai migliorato il tuo rapporto. ", + 'submit_download_the_torrent' => "Scarica Il Torrent", +); + +?> diff --git a/lang/it/lang_edit.php b/lang/it/lang_edit.php new file mode 100644 index 00000000..fdb66a34 --- /dev/null +++ b/lang/it/lang_edit.php @@ -0,0 +1,74 @@ + "Modifica torrent - ", + 'text_cannot_edit_torrent' => "Impossibile modificare questo torrent", + 'text_cannot_edit_torrent_note' => "Non sei il proprietario giusto, o non sei registrato in correttamente.\n", + 'row_torrent_name' => "Nome del torrent", + 'row_small_description' => "Descrizione piccola", + 'row_nfo_file' => "File NFO", + 'radio_keep_current' => "Mantieni Corrente", + 'radio_update' => "Aggiorna", + 'radio_remove' => "Rimuovi", + 'row_description' => "Descrizione", + 'row_type' => "Tipo", + 'text_source' => "Fonte:", + 'select_choose_one' => "sceglierne uno", + 'text_codec' => "Codec:", + 'text_standard' => "Standard:", + 'text_processing' => "Elaborazione:", + 'row_quality' => "Qualità", + 'text_quality_note' => "Scegli solo per il video ", + 'row_visible' => "Visibile", + 'checkbox_visible' => "Visibile nella pagina principale", + 'text_visible_note' => "Nota che il torrent diventerà automaticamente visibile quando c'è un seme, e diventerà automaticamente invisibile (morto) quando non c'è stato alcun cercatore per un po'. Utilizzare questo interruttore per velocizzare il processo manualmente. Si noti anche che i torrent invisibili (morti) possono ancora essere visualizzati o cercati, non è solo il predefinito.", + 'row_anonymous_uploader' => "Anonimo", + 'checkbox_anonymous_note' => "Seleziona questa casella per nascondere il caricatore del torrent", + 'row_special_torrent' => "Promozione", + 'select_use_global_setting' => "usa impostazione globale", + 'select_forever' => "per sempre", + 'select_until' => "fino a", + 'text_keep_current' => "mantieni corrente", + 'text_ie_for' => "per ", + 'text_promotion_until_note' => "(Il formato ora è AAAA-MM-GG hh:mm:ss)", + 'select_normal' => "normale", + 'select_free' => "gratis", + 'select_two_times_up' => "2x su", + 'select_free_two_times_up' => "libero e 2x su", + 'select_half_down' => "50% in calo", + 'select_choose_torrent_state' => "Imposta torrent sulla promozione", + 'row_torrent_position' => "Torrent Postion", + 'row_recommended_movie' => "Raccomandato Film", + 'select_choose_recommended_movie' => "Scegli se il poster di un torrent del film sarà mostrato sulla pagina principale", + 'select_hot' => "caldo", + 'select_classic' => "classico", + 'select_recommended' => "consigliato", + 'select_sticky' => "appiccicoso", + 'select_choose_if_sticky' => "Scegli se il torrent sarà appiccicoso sulla pagina dei torrent", + 'row_banned' => "Bannato", + 'checkbox_banned' => "Bannato", + 'submit_edit_it' => "Modifica it!", + 'submit_revert_changes' => "Ripristina modifiche", + 'text_delete_torrent' => "Elimina torrent - Motivo:", + 'radio_dead' => "Morto", + 'text_dead_note' => " 0 semi + 0 leecher = 0 peers totale", + 'radio_dupe' => "Dupe", + 'radio_nuked' => "Nucleato", + 'radio_rules' => "Regole", + 'text_req' => "(req)", + 'radio_other' => "Altro", + 'submit_delete_it' => "Elimina it!", + 'text_move_to_browse' => "Sposta nella sezione Torrent come ", + 'text_move_to_special' => "Sposta nella sezione Special come ", + 'text_medium' => "Medio:", + 'row_pick' => "Scegli", + 'row_check' => "Controlla", + 'text_team' => "Gruppo", + 'text_audio_codec' => "Codec Audio", + 'row_content' => "Contenuto", + 'ban_reason_label' => 'Motivo', + 'fill_quality' => 'Qualità di riempimento', +); + +?> diff --git a/lang/it/lang_faq.php b/lang/it/lang_faq.php new file mode 100644 index 00000000..074e2988 --- /dev/null +++ b/lang/it/lang_faq.php @@ -0,0 +1,12 @@ + "FAQ", + 'text_welcome_to' => "Benvenuto in ", + 'text_welcome_content_one' => "L'obiettivo è quello di fornire la roba assolutamente di alta qualità. Pertanto, solo gli utenti appositamente autorizzati hanno il permesso di caricare torrent. Se hai accesso a cose di 0 giorni non esitare a contattare noi!

    Questo è un tracker privato e devi registrarti prima di poter accedere completamente al sito.", + 'text_welcome_content_two' =>" Prima di fare qualsiasi cosa qui in %s, ti consigliamo di leggere le regole ! Ci sono solo poche regole da rispettare, ma noi le applichiamo!

    Prima di andare oltre, dovresti leggere il contratto %s .", + 'text_contents' => "Contenuti", +); + +?> diff --git a/lang/it/lang_fastdelete.php b/lang/it/lang_fastdelete.php new file mode 100644 index 00000000..559511cb --- /dev/null +++ b/lang/it/lang_fastdelete.php @@ -0,0 +1,13 @@ + "Eliminazione fallita!", + 'std_missing_form_data' => "dati del modulo mancanti", + 'text_no_permission' => "Non sei autorizzato a eliminare questo torrent, solo moderatori o superiori possono farlo. Si prega di contattarne uno se questo è il tuo torrent e si desidera eliminarlo.\n", + 'std_delete_torrent' => "Elimina torrent", + 'std_delete_torrent_note' => "Controllo Sanità: Stai per eliminare un torrent. Clicca", + 'std_here_if_sure' => " qui se siete sicuri." +); + +?> diff --git a/lang/it/lang_fields.php b/lang/it/lang_fields.php new file mode 100644 index 00000000..4b8f25a6 --- /dev/null +++ b/lang/it/lang_fields.php @@ -0,0 +1,31 @@ + 'Gestione campo personalizzato', + 'text_manage' => 'Gestisci', + 'text_add' => 'Aggiungi', + 'text_field' => 'Campo', + 'text_delete' => 'Elimina', + 'text_edit' => 'Modifica', + 'col_id' => 'ID', + 'col_name' => 'Nome', + 'col_name_help' => 'Permetti solo cifre, alfabeto, sottolineatura', + 'col_label' => 'Visualizza etichetta', + 'col_type' => 'Tipo', + 'col_required' => 'Richiesto', + 'col_help' => 'Testo di aiuto', + 'col_options' => 'Opzioni', + 'col_options_help' => 'Richiesto quando il tipo è radio, casella di controllo, seleziona. Una riga, una opzione, formato: valore testo di visualizzazione', + 'col_action' => 'Azione', + 'col_is_single_row' => 'Visualizza su una singola riga', + 'js_sure_to_delete_this' => 'Sicuro di eliminare?', + 'submit_submit' => 'Invia', + 'field_type_text' => 'Testo breve', + 'field_type_textarea' => 'Testo lungo', + 'field_type_radio' => 'Selezione singola orizzontale', + 'field_type_checkbox' => 'Selezione multipla orizzontale', + 'field_type_select' => 'Selezione singola verticale', + 'field_type_image' => 'Immagine', + 'col_display' => 'Visualizzazione personalizzata', + +]; diff --git a/lang/it/lang_forummanage.php b/lang/it/lang_forummanage.php new file mode 100644 index 00000000..5b7eaf3f --- /dev/null +++ b/lang/it/lang_forummanage.php @@ -0,0 +1,38 @@ + "Gestione Forum", + 'text_forum_management' => "Gestione Forum", + 'text_edit_forum' => "Modifica Forum", + 'row_forum_name' => "Nome del forum", + 'row_forum_description' => "Descrizione del forum", + 'row_overforum' => "Overforum", + 'row_moderator' => "Moderatore", + 'text_moderator_note' => "Max 3 moderatori. Separarli da ','.", + 'row_minimum_read_permission' => "Permesso di lettura minimo", + 'row_minimum_write_permission' => "Permesso di scrittura minimo", + 'row_minimum_create_topic_permission' => "Autorizzazione minima per creare topic", + 'row_forum_order' => "Ordine forum", + 'text_forum_order_note' => "Ordina per numero ascendente. Cioè, 0 mostra in alto", + 'submit_edit_forum' => "Modifica forum", + 'text_no_records_found' => "Siamo spiacenti, nessun record è stato trovato!", + 'text_add_forum' => "Aggiungi Forum", + 'text_make_new_forum' => "Crea un nuovo forum", + 'submit_overforum_management' => "Gestione Overforum", + 'submit_add_forum' => "Aggiungi Forum", + 'col_name' => "Nome", + 'col_overforum' => "Overforum", + 'col_read' => "Leggi", + 'col_write' => "Scrivi", + 'col_create_topic' => "Crea Topic", + 'col_moderator' => "Moderatore", + 'col_modify' => "Modifica", + 'text_not_available' => "N/A", + 'text_edit' => "Modifica", + 'text_delete' => "Elimina", + 'js_sure_to_delete_forum' => "Sei sicuro di voler eliminare questo forum?", + 'submit_make_forum' => "Crea Forum" +); + +?> diff --git a/lang/it/lang_forums.php b/lang/it/lang_forums.php new file mode 100644 index 00000000..ed4679df --- /dev/null +++ b/lang/it/lang_forums.php @@ -0,0 +1,204 @@ + "Non c'è nessun utente attivo nel forum ora.", + 'text_stats' => "Statistiche", + 'text_our_members_have' => "I nostri membri hanno fatto ", + 'text_posts_in_topics' => " post in ", + 'text_in_topics' => " argomenti. ", + 'text_there' => "Là ", + 'text_online_user' => " utente online", + 'text_in_forum_now' => " nel forum ora. ", + 'std_no_post_found' => "Nessun post trovato", + 'text_quick_jump' => "Salto rapido: ", + 'submit_go' => "Go!", + 'std_bad_forum_id' => "Id forum errato", + 'text_new_topic_in' => "Nuovo topic in", + 'text_forum' => "forum", + 'std_forum_error' => "Errore del forum", + 'std_topic_not_found' => "Topic non trovato.", + 'text_reply_to_topic' => "Rispondi all'argomento: ", + 'text_compose' => "Componi", + 'std_error' => "Errore", + 'std_no_post_id' => "Nessun post con questo ID", + 'submit_submit' => "Invia", + 'submit_preview' => "Anteprima", + 'text_tags' => "Etichette", + 'text_smilies' => "Smilie", + 'text_ten_last_posts' => "10 ultimi post, in ordine inverso", + 'text_by' => "di ", + 'text_at' => "a ", + 'head_edit_forum' => "Modifica forum", + 'text_edit_forum' => "Modifica Forum", + 'row_forum_name' => "Nome Forum", + 'row_description' => "Descrizione", + 'row_permission' => "Permesso", + 'text_minimum' => "Minimo ", + 'select_minimum_class_view' => "Classe richiesta per visualizzare
     Minimo", + 'select_minimum_class_post' => "Classe richiesta per Post
     Minimo", + 'select_minimum_class_topic' => "Classe richiesta per creare argomenti", + 'std_no_forum_id' => "ID Forum non trovato.", + 'std_must_specify_forum_name' => "È necessario specificare un nome per il forum.", + 'std_must_provide_forum_description' => "Devi fornire una descrizione per il forum.", + 'head_delete_forum' => "Elimina forum", + 'text_warning' => "** ATTENZIONE! **", + 'text_deleting_forum_id' => "Eliminazione ID forum ", + 'text_will_also_delete' => " cancellerà anche ", + 'text_posts_in' => "post in ", + 'text_topics' => " argomenti. ", + 'text_accept' => "ACCETTA", + 'text_cancel' => "ANNULLA", + 'std_unauthorised_performing_action' => "Non sei autorizzato a eseguire questa azione!", + 'head_new_topic' => "Nuovo argomento", + 'std_must_enter_subject' => "Devi inserire un oggetto.", + 'std_subject_limited' => "Oggetto limitato. Si prega di accorciare l'oggetto", + 'std_bad_topic_id' => "Id argomento errato", + 'std_sorry' => "Sorry...", + 'std_unauthorized_to_post' => "You are not authorized to Post. Read (Inbox)", + 'std_permission_denied' => "Permesso negato.", + 'std_no_body_text' => "Nessun corpo di testo.", + 'std_post_flooding' => "Post alluvione non consentito. Attendere prego ", + 'std_seconds_before_making' => " secondi prima di fare un altro post.", + 'std_no_topic_id_returned' => "Nessun ID topic restituito", + 'std_topic_locked' => "Questo topic è bloccato.", + 'std_post_id_not_available' => "ID post n/a", + 'std_unpermitted_viewing_topic' => "Non ti è permesso visualizzare questo argomento.", + 'text_prev' => "Precedente", + 'text_next' => "Successivo", + 'head_view_topic' => "Visualizza argomento", + 'text_forums' => " Forum", + 'text_ago' => " fa", + 'text_quote' => "Preventivo", + 'text_last_edited_by' => "Ultima modifica da ", + 'text_last_edit_at' => " a ", + 'text_posts' => "Post: ", + 'text_ul' => "UL: ", + 'text_dl' => "DL: ", + 'text_ratio' => "Rapporto: ", + 'text_class' => "Classe:", + 'text_back_to_top' => "Torna all'inizio", + 'title_sticky' => "Appiccicoso", + 'submit_sticky' => "Appiccicoso", + 'submit_unsticky' => "Unsticky", + 'submit_unlock' => "Sblocca Topic", + 'submit_lock' => "Blocca Topic", + 'submit_delete_topic' => "Elimina Topic", + 'text_rename_topic' => "Rinomina topic:", + 'submit_okay' => "Ok", + 'text_move_thread_to' => "Sposta questa discussione in:", + 'submit_move' => "Sposta", + 'text_topic_locked_new_denied' => "

    Questo topic è bloccato; nessun nuovo post è permesso.

    ", + 'text_unpermitted_posting_here' => "

    Non ti è consentito pubblicare in questo forum.

    ", + 'head_post_reply' => "Risposta post", + 'std_forum_not_found' => "Forum non trovato.", + 'std_cannot_get_posts_count' => "Impossibile ottenere il numero di post.", + 'std_delete_topic' => "Elimina argomento", + 'std_delete_topic_note' => "Sanity check: Stai per eliminare un argomento. Clicca ", + 'std_here_if_sure' => "qui se siete sicuri.", + 'std_no_topic_for_post' => "Nessun topic associato a questo post ID", + 'std_denied' => "Negato!", + 'std_body_empty' => "Il corpo non può essere vuoto!", + 'std_subject_empty' => "L'oggetto non può essere vuoto!", + 'std_success' => "Successo", + 'std_post_edited_successfully' => "Post modificato con successo.", + 'text_edit_post' => "Modifica Post", + 'std_how_could_this_happen' => "come potrebbe accadere?!", + 'std_post_not_found' => "Post non trovato", + 'std_cannot_delete_post' => "Impossibile eliminare il post; è il primo post dell'argomento. Dovresti ", + 'std_delete_topic_instead' => "eliminare invece l'argomento.", + 'std_delete_post' => "Elimina post", + 'std_delete_post_note' => "Sanity check: Stai per eliminare un post. Clicca ", + 'std_must_enter_new_title' => "Devi inserire un nuovo titolo!", + 'std_not_permitted' => "Non consentito", + 'std_sql_error' => "Errore SQL", + 'head_forum' => "Forum", + 'col_topic' => "Argomento", + 'col_replies' => "Risposte", + 'col_views' => "Viste", + 'col_author' => "Autore", + 'col_last_post' => "Ultimo post", + 'text_no_topics_found' => "Nessun argomento trovato", + 'text_new_posts' => "Nuovi post", + 'text_locked_topic' => "Argomento bloccato", + 'text_unpermitted_starting_new_topics' => "Non ti è permesso avviare nuovi argomenti in questo forum.", + 'submit_view_unread' => "Visualizza non letto", + 'submit_new_topic' => "Nuovo argomento ", + 'text_topics_with_unread_posts' => "Argomenti con post non letti", + 'col_forum' => "Forum", + 'text_more_than' => "Più di ", + 'text_items_found_displaying_first' => " elementi trovati, mostrando prima ", + 'text_catch_up' => "Recuperare il tempo", + 'text_nothing_found' => "Niente trovato", + 'head_forum_search' => "Ricerca Forum", + 'col_post' => "Post", + 'col_posted_by' => "Pubblicato da", + 'text_found' => "Trovato ", + 'text_num_posts' => " post", + 'text_search_on_forum' => "Cerca nei Forum", + 'text_by_keyword' => "per parola chiave", + 'head_forums' => "Forum", + 'col_forums' => "Forum", + 'col_topics' => "Argomenti", + 'col_posts' => "Post", + 'std_bad_forum_last_post' => "Ultimo post del forum errato", + 'text_in' => "in ", + 'text_edit' => "Modifica", + 'text_delete' => "Elimina", + 'std_unknown_action' => "Azione sconosciuta", + 'text_search' => "Cerca", + 'text_view_unread' => "Visualizza non letto", + 'text_forum_manager' => "Gestore forum", + 'title_reply_with_quote' => "Rispondi con Preventivo", + 'title_reply_directly' => "Rispondi direttamente a questo post", + 'title_delete_post' => "Elimina Post", + 'title_edit_post' => "Modifica Post", + 'text_quick_reply' => "Risposta Rapida", + 'submit_add_reply' => "Aggiungi Rispondi", + 'text_add_reply' => "Aggiungi Risposta", + 'title_online' => "Online", + 'title_offline' => "Offline", + 'title_send_message_to' => "Invia messaggio a ", + 'title_report_this_post' => "Segnala questo post", + 'title_new_topic' => "Nuovo Topic", + 'col_moderator' => "Moderatore", + 'text_apply_now' => "N/A", + 'text_locked' => "Bloccato", + 'text_number' => "#", + 'text_lou' => "", + 'there_is' => "", + 'hits_on_this_topic' => " viste su questo thread", + 'title_read' => "Leggi", + 'title_unread' => "Non Letta", + 'title_locked' => "Bloccato", + 'title_locked_new' => "Bloccato & non letto", + 'text_highlight_topic' => "Colore argomento in ", + 'select_color' => "Nessuno", + 'submit_change' => "Go!", + 'head_view_unread' => "Visualizza Non Letta", + 'text_today' => "Oggi: ", + 'text_new_post' => " post", + 'text_posts_today' => " oggi.", + 'text_at_time' => " a ", + 'text_blank' => " ", + 'text_last_posted_by' => "Ultimo pubblicato da ", + 'text_fast_search' => "Ricerca Rapida: ", + 'text_go' => "Go!", + 'submit_show_more' => "Mostra Altro", + 'text_view_all_posts' => "Vedi tutti i post", + 'text_view_this_author_only' => "Visualizza solo questo autore", + 'title_jump_to_unread' => "Vai ai post non letti", + 'text_new' => "nuovo", + 'title_order_topic_desc' => "Ordina per tempo argomento discendente", + 'title_order_topic_asc' => "Ordine per argomento tempo ascendente", + 'title_order_post_asc' => "Ordine per ultimo post tempo ascendente", + 'title_order_post_desc' => "Ordina per ultimo tempo post discendente", + 'text_order' => "Ordina Per", + 'text_topic_desc' => "Tempo Topic Discendente", + 'text_topic_asc' => "Tempo Argomento Ascendente", + 'text_post_asc' => "Ultimo Tempo Di Post Ascendente", + 'text_post_desc' => "Ultimo Tempo Di Post Discendente", + 'text_post_protected' => "[size=3][b]--Privacy protection è abilitata in questo forum---[/b]\nSolo topic poster,mods,admins e l'autore della risposta può leggere il contenuto.[/size]", +); + +?> diff --git a/lang/it/lang_friends.php b/lang/it/lang_friends.php new file mode 100644 index 00000000..e01e8bc9 --- /dev/null +++ b/lang/it/lang_friends.php @@ -0,0 +1,38 @@ + "Errore", + 'std_invalid_id' => "Invalid ID ", + 'std_access_denied' => "Accesso negato.", + 'std_no_user_id' => "Nessun utente con ID ", + 'std_unknown_type' => "Tipo sconosciuto ", + 'std_user_id' => "Id Utente ", + 'std_already_in' => " è già nel tuo ", + 'std_list' => " elenco.", + 'std_delete' => "Elimina ", + 'std_delete_note' => "Vuoi davvero eliminare un ", + 'std_click' => "? Click \n", + 'std_here_if_sure' => "qui se sei sicuro.", + 'std_no_friend_found' => "Nessun amico trovato con ID ", + 'std_no_block_found' => "Nessun blocco trovato con ID ", + 'head_personal_lists_for' => "Elenco personale per ", + 'text_personallist' => "PERSONALISTA", + 'text_friendlist' => "FRIENDLIST", + 'text_friends_empty' => "Nessun amico ancora", + 'text_neighbors_empty' => "Nessun vicino ancora", + 'text_last_seen_on' => "Ultima visita il ", + 'text_ago' => " fa", + 'text_remove_from_friends' => "Rimuovi dagli amici", + 'text_send_pm' => "Invia PM", + 'text_added_you_to_friendslist' => "Ti è stato aggiunto al friendslist", + 'text_add_to_friends' => "Aggiungi agli amici", + 'text_blocklist_empty' => "La tua lista utente bloccata è vuota", + 'text_blocked_users' => "Utenti Bloccati", + 'text_find_user' => "Trova utenti/sfoglia elenco utenti", + 'text_neighbors' => "Vicini", + 'text_friend' => "amico", + 'text_block' => "blocco", +); + +?> diff --git a/lang/it/lang_fun.php b/lang/it/lang_fun.php new file mode 100644 index 00000000..f329b11d --- /dev/null +++ b/lang/it/lang_fun.php @@ -0,0 +1,44 @@ + "Eliminare Elemento Divertente?", + 'text_please_click' => "Vuoi davvero eliminare un oggetto divertente? Clicca\n", + 'text_here_if_sure' => "qui se siete sicuri.", + 'std_error' => "Errore", + 'std_invalid_id' => "ID articolo divertente non valido", + 'std_permission_denied' => "Permesso negato!", + 'text_fun_title' => "Fun Titolo", + 'text_body' => "Corpo", + 'submit_okay' => "Ok", + 'head_new_fun' => "Nuovo Roba Divertente", + 'text_submit_new_fun' => "Invia nuove cose divertenti", + 'text_new_compose' => "Nuova Composizione", + 'head_fun' => "Divertimento", + 'text_on' => " il ", + 'text_blank' => " ", + 'text_ago' => " fa", + 'text_posted_by' => " Pubblicato da ", + 'text_not_funny' => "Noioso", + 'text_funny' => "Divertente", + 'text_very_funny' => "Sidesplitting", + 'head_edit_fun' => "Modifica Divertimento", + 'text_edit_fun' => "Modifica Divertimento", + 'std_body_is_empty' => "Il corpo non può essere vuoto!", + 'std_title_is_empty' => "Il titolo non può essere vuoto!", + 'std_fun_added_successfully' => "Elemento divertente aggiunto con successo.", + 'std_error_happened' => "È successo qualcosa di strano.", + 'std_the_newest_fun_item' => "L'ultimo articolo divertente ", + 'std_posted_on' => " è stato pubblicato il ", + 'std_need_to_wait' => ". Attendere fino a 24 ore di età.", + 'std_are_you_sure' => "Sei sicuro?", + 'std_only_against_rule' => "Sei sicuro di voler bandire questo articolo divertente? Nota che dovresti farlo solo se l'oggetto divertente è contrario alle regole. BTW, potrebbe interessarti anche dare all'utente un piccolo avvertimento.", + 'std_reason_required' => "Motivo (richiesto): ", + 'std_reason_is_empty' => "Devi dare la ragione!", + 'std_success' => "Successo", + 'std_fun_item_banned' => "L'oggetto divertente è bandito con successo.", + 'std_already_vote' => "Hai già votato!", + 'std_cannot_give_bonus' => "Il sistema non può dare bonus al divertente poster oggetto. Si prega di segnalare questo all'amministratore.", +); + +?> diff --git a/lang/it/lang_functions.php b/lang/it/lang_functions.php new file mode 100644 index 00000000..af0c4035 --- /dev/null +++ b/lang/it/lang_functions.php @@ -0,0 +1,344 @@ + "Accesso Negato!", + 'std_fake_account' => "Veniamo a credere che stai usando un account falso, quindi abbiamo registrato questa azione!", + 'std_permission_denied' => "Permesso negato!", + 'std_permission_denied_only' => "Permesso negato. Solo ", + 'std_or_above_can_view' => " o superiore potrebbe visualizzare.

    Si prega di vedere il "."FAQ per maggiori informazioni sulle diverse classi di utenti e su cosa possono fare.

    %s Staff
    ", + 'std_target_not_exists' => 'Target not exists', + 'std_already_logged_in' => "Hai già effettuato l'accesso!", + 'text_page_last_updated' => "Ultimo aggiornamento di questa pagina ", + 'text_browser_cookies_note' => "Se abiliti i cookie e non sei ancora in grado di accedere, forse è successo qualcosa per causare un problema con il tuo cookie di accesso. Ti consigliamo di eliminare i tuoi cookie e di riprovare. Per eliminare i cookie in Internet Explorer, vai su Strumenti > Opzioni Internet... e fai clic sul pulsante Elimina cookie. Si noti che questo eliminerà tutti i cookie memorizzati sul vostro sistema per altri siti pure.", + 'std_error' => "Errore", + 'text_unable_to_send_mail' => "Impossibile inviare la posta. Si prega di contattare un amministratore per questo errore.", + 'std_success' => "Successo", + 'std_confirmation_email_sent' => "Un'email di conferma è stata inviata a ", + 'std_please_wait' => "Consenti qualche minuto per l'arrivo della posta.", + 'std_account_details_sent' => "I nuovi dettagli dell'account sono stati inviati a ", + 'std_locked' => " Bloccato! (il numero massimo di falliti ", + 'std_attempts_reached' => " tentativi raggiunti durante la reautenticazione)", + 'std_your_ip_banned' => "Veniamo a credere che stai cercando di imbrogliare il nostro sistema, quindi abbiamo bannato il tuo ip!", + 'std_login_failed' => "Accesso fallito!", + 'std_login_failed_note' => "Errore: Nome utente o password non corretti! Oppure non sei ancora confermato

    Non ricordarti la tua password? Recover la tua password!", + 'std_failed' => "Fallito", + 'std_oops' => "Oops!", + 'std_sorry' => "Spiacenti", + 'std_invite_system_disabled' => "Il sistema di invito è attualmente disabilitato...", + 'std_open_registration_disabled' => "La registrazione aperta è attualmente disabilitata. Solo inviti. Se siete fortunati potreste avere un amico che vuole invitarvi :) Vogliamo solo vedere quanti truffatori cominceranno a rispettare i loro account dopo che si rendono conto che non possono solo tornare e ottenere un altro :). Tenete a mente questo, se siete già un membro e invitate un cheater conosciuto, e lo sapevi in primo luogo, sia la tua che la persona che hai invitato sono disabili. Dovrai venire a parlare con noi per ottenere il tuo account rienstated. Se vuoi un invito e conosci qualcuno che ne ha uno tocca a loro darti un invito.", + 'std_account_limit_reached' => "Il limite attuale dell'account utente è stato raggiunto. Gli account inattivi sono potati per tutto il tempo, si prega di ricontrollare più tardi...", + 'std_the_ip' => "Il IP ", + 'std_used_many_times' => " è già in uso su troppi account.... Non sono più ammessi account %s.", + 'std_invalid_image_code' => "Codice immagine non valido!
    Non tornare indietro, Il codice immagine è stato cancellato!

    Clicca ", + 'std_here_to_request_new' => "qui per richiedere un nuovo codice immagine.", + 'std_action' => 'Azione', + 'std_report' => 'Segnala', + 'std_desc' => 'Descrizione', + 'std_comment' => 'Commento', + 'std_quick_comment' => 'Commento rapido', + 'std_click_here_to_goback' => 'Clicca qui per fare goback', + 'std_you_will_get' => 'Otterrai', + 'std_by' => 'Da', + 'row_security_image' => "Immagine Di Sicurezza:", + 'row_security_code' => "Codice Di Sicurezza:", + 'text_slots' => "Slot:", + 'text_unlimited' => "Illimitato", + 'std_server_load_very_high' => "Il carico del server è molto alto al momento. Riprovare, attendere prego...", + 'std_too_many_users' => "Troppi utenti. Premi il pulsante Aggiorna nel tuo browser per riprovare.", + 'text_unauthorized_ip' => "

    403 Proibito

    Indirizzo IP non autorizzato.", + 'text_home' => "Home", + 'text_forums' => "Forum", + 'text_torrents' => "Torrent", + 'text_offers' => "Offerte", + 'text_request' => "Richieste", + 'text_upload' => "Carica", + 'text_subtitles' => "Sottotitoli", + 'text_user_cp' => "CP Utente", + 'text_top_ten' => "Top 10", + 'text_log' => "LOG", + 'text_rules' => "Regole", + 'text_faq' => "FAQ", + 'text_staff' => "Personale", + 'std_site_down_for_maintenance' => "Il sito è giù per la manutenzione, si prega di ricontro... grazie", + 'text_click_view_full_image' => "Fare clic su questa barra per visualizzare l'immagine completa.", + 'text_image_resized' => "Questa immagine è stata ridimensionata. Fare clic su questa barra per visualizzare l'immagine completa.", + 'text_click_view_small_image' => "Fare clic su questa barra per visualizzare l'immagine piccola.", + 'text_login' => "Accedi", + 'text_signup' => "Registrati", + 'text_inf' => "Inf.", + 'title_donor' => "donatore", + 'title_warned' => "avvertito", + 'title_inbox_new_messages' => "casella di posta (nuovi messaggi ", + 'title_inbox_no_new_messages' => "casella di posta (no nuovi messaggi ", + 'text_yes' => "Sì", + 'text_no' => "No", + 'text_unknown' => "Sconosciuto", + 'text_welcome_back' => "Benvenuto", + 'text_staff_panel' => "Pannello Personale", + 'text_site_settings' => "Impostazioni Sito", + 'text_logout' => "logout", + 'text_bonus' => "Bonus ", + 'text_use' => "Usa", + 'text_ratio' => "Rapporto:", + 'text_uploaded' => "Caricato:", + 'text_downloaded' => "Scaricato:", + 'text_active_torrents' => "Attivo:", + 'title_torrents_seeding' => "Torrent Seeding", + 'title_torrents_leeching' => "Torrent Leeching", + 'text_connectable' => "Connettibile: ", + 'text_the_time_is_now' => "Tempo: ", + 'text_message_new' => " Nuovo", + 'title_sentbox' => "sentbox", + 'title_inbox' => "casella", + 'title_buddylist' => "Buddilista", + 'text_you_have' => "Hai ", + 'text_new_message' => " nuovo messaggio", + 'text_s' => "s", + 'text_click_here_to_read' => "! Clicca qui per leggere.", + 'text_your_friends' => "Il tuo amico", + 'text_awaiting_confirmation' => " in attesa di conferma da te!", + 'text_website_offline_warning' => "ATTENZIONE: Il sito è attualmente offline! Clicca qui per modificare le impostazioni.", + 'text_there_is' => "Là", + 'text_new_report' => " nuovo rapporto", + 'text_new_staff_message' => " nuovo messaggio dello staff", + 'text_search' => "Cerca", + 'text_profile' => "Profilo", + 'text_chat' => "Chat", + 'text_dox' => "DOX", + 'text_links' => "Collegamenti", + 'text_username' => "Utente: ", + 'text_password' => "Password, ", + 'submit_log_in' => "Log in!", + 'text_register' => "Registrati", + 'text_rules_link' => "Regole", + 'text_faq_link' => "FAQ", + 'text_useragreement' => "Contratto", + 'text_prev' => "Precedente", + 'text_next' => "Successivo", + 'text_by' => " di ", + 'text_orphaned' => "(orfano)", + 'text_at' => " a ", + 'text_edit' => "Modifica", + 'text_delete' => "Elimina", + 'text_view_original' => "Visualizza originale", + 'text_last_edited_by' => "Ultima modifica da ", + 'text_edited_at' => " a ", + 'col_type' => "Tipo", + 'col_name' => "Nome", + 'col_dl' => "DL", + 'col_wait' => "Attendere", + 'col_edit' => "Modifica", + 'col_visible' => "Visibile", + 'title_number_of_comments' => "Numero di Commenti", + 'title_time_added' => "Tempo Aggiunto", + 'title_size' => "Dimensione", + 'title_number_of_seeders' => "Numero di Seeders", + 'title_number_of_leechers' => "Numero di Leechers", + 'title_number_of_snatched' => "Numero di Strappato", + 'col_uploader' => "Uploader", + 'col_action' => "Atto", + 'text_normal' => "Normale", + 'text_free' => "Gratis", + 'text_two_times_up' => "2X", + 'text_free_two_times_up' => "2X Gratis", + 'text_half_down' => "50%", + 'text_half_down_two_up' => "2X 50", + 'text_new_uppercase' => "NUOVO", + 'text_sticky' => "Appiccicoso", + 'title_download_torrent' => "Scarica Torrent", + 'text_h' => " h", + 'text_none' => "Nessuno", + 'text_anonymous' => "Anonimo", + 'text_promoted_torrents_note' => "Those highlighted are:   Free | 2x up | 2x up and free | 50% down | 2x up and 50% down | 30% down torrents
    Leeching them is the best way to fix your ratio!", + 'std_file' => "File ", + 'std_does_not_exist' => " non esiste", + 'std_access_permission_note' => "!
    Prima dell'avvio della configurazione, assicurati di aver configurato correttamente i permessi di accesso a file e directory. Vedi sotto.

    chmod -R 777 config (cartella di configurazione).", + 'std_cannot_read_file' => "Impossibile leggere il file ", + 'std_cannot_serialize_file' => "Impossibile serializzare il file ", + 'std_cannot_open_file' => "Impossibile aprire il file ", + 'std_to_save_info' => " per salvare informazioni", + 'text_cannot_save_info_in' => "Impossibile salvare le informazioni nel file (errore nella serializzazione) ", + 'std_your_account_parked' => "Il tuo account è parcheggiato.", + 'title_online' => "Online", + 'title_offline' => "Offline", + 'title_send_message_to' => "Invia messaggio a ", + 'title_report_this_comment' => "Segnala questo commento", + 'text_bookmarks' => "Segnalibri", + 'title_bookmark_torrent' => "Segnalibro", + 'title_delbookmark_torrent' => "Rimuovi Segnalibro", + 'text_mark' => "Segna", + 'text_unmark' => "Unmark", + 'text_award' => "Bonus Premio: ", + 'text_additional_notes' => "Note Aggiuntive: ", + 'title_view_reviews' => "Clicca per vedere  recensioni", + 'title_has_new_comment' => "Ha nuovo commento", + 'title_no_new_comment' => "Nessun commento nuovo ", + 'row_external_info' => "Informazioni Esterne ", + 'row_imdb_url' => "IMDb URL", + 'text_imdb_url_note' => "(URL preso da IMDb. e.g. per film The Dark Knight l'URL è https://www.imdb.com/title/tt0468569/)", + 'text_artist' => " Artista: ", + 'text_album' => "Album: ", + 'title_get_rss' => "Ottieni RSS", + 'text_hot' => "Caldo", + 'text_classic' => "Classico", + 'text_recommended' => "Buono", + 'title_view_nfo' => "Visualizza file NFO ", + 'title_edit_torrent' => "Modifica o elimina torrent", + 'title_time_alive' => "Tempo Vivo", + 'title_add_comments' => "Aggiungi commento", + 'text_at_time' => " a ", + 'text_blank' => " ", + 'text_ago' => " fa", + 'text_last_commented_by' => "Ultimo commento di ", + 'text_imdb' => "IMDb", + 'text_votes' => " voti", + 'text_country' => "Paese", + 'text_genres' => "Genres", + 'text_director' => "Direttore", + 'text_starring' => "Stellato", + 'text_runtime' => "Runtime", + 'text_language' => "Lingua", + 'text_douban' => "Douban", + 'text_region' => "Regione", + 'text_creator' => "Creatore", + 'text_awaiting_five_votes' => "in attesa di 5 voti", + 'text_invite' => "Invita ", + 'text_send' => "Invia", + 'text_tracks' => "Tracce", + 'text_label' => "Etichetta", + 'text_tags' => "Etichette", + 'text_user_ip' => "Utente IP", + 'text_location_main' => "Posizione Principale", + 'text_location_sub' => "Posizione Sub", + 'text_ip_range' => "IP Range", + 'text_min' => " min", + 'text_music' => "Musica", + 'text_special' => "Speciale", + 'title_reply_with_quote' => "Preventivo", + 'title_add_reply' => "Aggiungi Rispondi", + 'title_delete' => "Elimina", + 'title_edit' => "Modifica", + 'title_reportbox' => "reportbox", + 'title_staffbox' => "staffbox", + 'title_sticky' => "Appiccicoso", + 'text_new_news' => " importanti notizie non lette", + 'std_no_user_named' => "Non c'è nessun utente chiamato ", + 'text_banned' => "Bannato", + 'text_are' => " sono ", + 'text_is' => " è ", + 'select_choose_one' => "sceglierne uno", + 'text_space' => " ", + 'text_day' => "g ", + 'text_new_suspected_cheater' => " nuovo tifo sospetto", + 'title_cheaterbox' => "cheaterbox", + 'text_will_end_in' => " terminerà tra ", + 'text_alt_pageup_shortcut' => "Alt+Pageup", + 'text_alt_pagedown_shortcut' => "Alt+Pagedown", + 'text_shift_pageup_shortcut' => "Maiusc+Pageup", + 'text_shift_pagedown_shortcut' => "Maiusc+Pagedown", + 'text_quote' => "Preventivo", + 'text_code' => "CODICE", + 'std_invalid_id' => "ID non valido! Per motivi di sicurezza, abbiamo registrato questa azione.", + 'text_smilies' => "Smilie", + 'col_type_something' => "Type...", + 'col_to_make_a' => "Per fare...", + 'text_year' => " anno", + 'text_month' => " mese", + 'text_day' => " giorno", + 'text_hour' => " ora", + 'text_min' => " min", + 'select_color' => "Colore", + 'select_font' => "Font", + 'select_size' => "Dimensione", + 'text_subject' => "Oggetto:", + 'text_more_smilies' => "Altre Faccine", + 'js_prompt_enter_url' => "Devi inserire un URL", + 'js_prompt_enter_title' => "Devi inserire un titolo", + 'js_prompt_error' => "Errore!", + 'js_prompt_enter_item' =>"Inserire l'elemento dell'elenco. Per la fine dell'elenco, premere 'annulla' o lasciare vuoto il campo successivo ", + 'js_prompt_enter_image_url' => "È necessario inserire un URL immagine completa", + 'js_prompt_enter_email' => "Devi inserire un'e-mail", + 'text_new' => "Nuovo", + 'text_reply' => "Rispondi", + 'submit_submit' => "Invia", + 'submit_preview' => "Anteprima", + 'row_subject' => "Oggetto", + 'row_body' => "Corpo", + 'text_peasant' => "Peasant", + 'text_user' => "Utente", + 'text_power_user' => "Power User", + 'text_elite_user' => "Utente Elite", + 'text_crazy_user' => "Utente Pazzo", + 'text_insane_user' => "Utente Insano", + 'text_veteran_user' => "Utente Veterano", + 'text_extreme_user' => "Utente Estremo", + 'text_ultimate_user' => "Utente Finale", + 'text_nexus_master' => "Nexus Master", + 'text_vip' => "VIP", + 'text_uploader' => "Uploader", + 'text_retiree' => "Ritirata", + 'text_forum_moderator' => "Moderatore Forum", + 'text_moderators' => "Moderatore", + 'text_administrators' => "Amministratore", + 'text_sysops' => "SysOp", + 'text_staff_leader' => "Capo Personale", + 'text_short_year'=> "Y", + 'text_short_month' => "MON", + 'text_short_day' => "D", + 'text_short_hour' => "H", + 'text_short_min' => "M", + 'submit_edit' => "Modifica", + 'text_banned_client_warning' => "Stai usando un client BitTorrent bannato l'ultima volta che stai connettendo il tracker! Clicca qui.", + 'text_please_improve_ratio_within' => "Si prega di migliorare il rapporto all'interno ", + 'text_or_you_will_be_banned' =>", o il tuo account sarà bandito! Clicca qui.", + 'text_size' => "Dimensione", + 'text_downloads' => "Download", + 'text_attachment_key' => "Allegato per la chiave ", + 'text_not_found' => " non trovato", + 'text_thirty_percent_down' => "30%", + 'text_please_download_something_within' => "Scarica qualcosa all'interno ", + 'text_inactive_account_be_deleted' => ". I conti inattivi (senza alcun importo di trasferimento) verranno eliminati.", + 'text_attendance' => '[Partecipante ottenere bonus]', + 'text_attended' => '[Attend got: %u, card: %d]', + 'row_pt_gen_douban_url' => "PT-Gen douban link", + 'text_pt_gen_douban_url_note' => "(URL preso da douban. e.g. for movie Transformers l'URL è https://movie.douban.com/subject/1794171//)", + 'row_pt_gen_imdb_url' => "PT-Gen imdb link", + 'text_pt_gen_imdb_url_note' => "(URL preso da imdb. e.g. for movie Transformers l'URL è https://www.imdb.com/title/tt0418279/)", + 'row_pt_gen_bangumi_url' => "PT-Gen bangumi link", + 'text_pt_gen_bangumi_url_note' => "(URL preso da bangumi. e.g. for animation Cowboy Bebop l'URL è https://bangumi.tv/subject/253/)", + 'imdb_cache_dir_can_not_create' => 'imdb cache dir non può creare', + 'imdb_cache_dir_is_not_writeable' => 'la cartella della cache imdb non è scrivibile', + 'imdb_photo_dir_can_not_create' => 'imdb dir foto non può creare', + 'imdb_photo_dir_is_not_writeable' => 'imdb photo dir non è scrivibile', + 'text_tag_no_release_to_any_other' => 'Nessun rilascio per nessun altro', + 'text_tag_first_release' => 'Prima uscita', + 'text_tag_official' => 'Ufficiale', + 'text_tag_diy' => 'Fai', + 'text_tag_mother_language' => 'Lingua madre', + 'text_tag_mother_language_subtitle' => 'Sottotitolo lingua madre', + 'text_tag_hdr' => 'HDR', + 'text_required' => 'Richiesto', + 'text_invalid' => 'Non Valido', + 'text_technical_info' => 'MediaInfo', + 'text_technical_info_help_text' => 'MediaInfo proviene dal software MediaInfo,open file, language select english, click the view menu > text > right click in the box > select all > copy > past in this box.', + 'text_management_system' => 'Gestione', + 'text_seed_points' => 'Punti di seme', + 'spoiler_expand_collapse' => 'Fare clic per espandere/comprimere', + 'spoiler_default_title' => 'Comprimi contenuto', + 'menu_claim' => 'Claim: ', + 'text_complains' => 'Là %s %u in attesa di reclamo%s.', + 'text_contactstaff' => 'Personale di contatto', + 'full_site_promotion_in_effect' => 'Sito completo [%s] in effetto!', + 'full_site_promotion_time_range' => 'Intervallo di tempo: %s ~ %s', + 'text_torrent_to_approval' => 'Là %s%u torrent%s non approvazione.', + 'std_confirm_remove' => 'Sei sicuro di volerlo eliminare?', + 'select_an_user_class' => 'Seleziona una classe utente', + 'input_check_all' => "Seleziona Tutto", + 'input_uncheck_all' => "Deseleziona Tutto", + 'select_at_least_one_record' => 'Seleziona almeno un record!', + 'text_seed_box_record_to_approval' => 'Là %s%u non approvazione seed box record%s.', + 'approval_deny_reach_upper_limit' => 'Il numero di torrent la cui approvazione corrente è stata negata: %s ha raggiunto il limite superiore e non è consentito il caricamento.', +); + +?> diff --git a/lang/it/lang_getrss.php b/lang/it/lang_getrss.php new file mode 100644 index 00000000..d32bbdad --- /dev/null +++ b/lang/it/lang_getrss.php @@ -0,0 +1,51 @@ + "Feed RSS", + 'head_rss_feeds' => "Feed RSS", + 'std_error' => "Errore", + 'std_no_row' => "Devi selezionare le righe!", + 'std_done' => "Fatto!", + 'std_use_following_url' => "Utilizzare il seguente URL nel vostro lettore RSS, ad esempio Google Reader: ", + 'std_utorrent_feed_url' => "Utilizzare il seguente URL nei client BitTorrent che supportano RSS Feed, ad esempio uTorrent: ", + 'row_categories_to_retrieve' => "Categorie da recuperare", + 'row_feed_type' => "Tipo di feed", + 'text_web_link' => "Link Web", + 'text_download_link' => "Scarica Collegamento", + 'row_rows_per_page' => "Righe Per Pagina", + 'submit_generatte_rss_link' => "Genera collegamento RSS", + 'text_category' => "Categoria", + 'text_source' => "Fonte", + 'text_codec' => "Codec", + 'text_standard' => "Standard", + 'text_processing' => "Elaborazione", + 'text_medium' => "Medio", + 'text_team' => "Squadra", + 'text_audio_codec' => "Codec Audio", + 'row_item_title_type' => "Formato visualizzazione titolo", + 'text_item_category' => "[Category] + ", + 'text_item_title' => "Titolo + ", + 'text_item_small_description' => "[Descrizione Piccola] + ", + 'text_item_size' => "[Size] + ", + 'text_item_uploader' => "[Uploader]", + 'row_show_bookmarked' => "Mostra Segnalibri", + 'text_all' => "tutti", + 'text_only_bookmarked' => "solo segnalibri", + 'text_show_bookmarked_note' => "Ony per i client BitTorrent", + 'row_keyword' => "Keyword", + 'text_with' => "con", + 'select_and' => "E", + 'select_or' => "O", + 'select_exact' => "Esatto", + 'text_mode' => "modalità corrispondente ", + 'text_keyword_note' => "Ony iscriversi a elementi con queste parole chiave nei titoli.", + 'row_sticky' => 'Appiccicoso', + 'row_paid' => 'Magic verrà detratto per il download', + 'row_paid_help' => 'Nota: Questo non è un tipo di promozione Libero/50%, quando il caricatore imposta il torrent da pagare, il download richiederà un bonus detrarre', + 'paid_no' => 'Gratis', + 'paid_yes' => 'Pagato', + 'paid_all' => 'Tutti', +); + +?> diff --git a/lang/it/lang_getusertorrentlistajax.php b/lang/it/lang_getusertorrentlistajax.php new file mode 100644 index 00000000..8c17433b --- /dev/null +++ b/lang/it/lang_getusertorrentlistajax.php @@ -0,0 +1,23 @@ + "Tipo", + 'col_name' => "Nome", + 'title_size' => "Dimensione", + 'title_seeders' => "Seminatrici", + 'title_leechers' => "Leechers", + 'col_uploaded' => "Ul.", + 'col_downloaded' => "Dl.", + 'col_ratio' => "Rapporto", + 'col_anonymous' => "Anonym.", + 'col_time_completed' => "Sna. at", + 'col_se_time' => "Se. Tempo", + 'col_le_time' => "Le. Tempo", + 'text_record' => " registra", + 'text_no_record' => "Nessun record.", + 'text_total_size' => " Dimensione totale: ", + 'col_added' => "Aggiunto", + 'col_client' => 'Client', +); +?> diff --git a/lang/it/lang_increment-bulk.php b/lang/it/lang_increment-bulk.php new file mode 100644 index 00000000..023698b4 --- /dev/null +++ b/lang/it/lang_increment-bulk.php @@ -0,0 +1,27 @@ + 'Aggiunta batch bonus/attendance card/invito/caricato/invito temporaneo', + 'sent_success' => ' è stato aggiunto e il messaggio di informazione è stato inviato', + 'types' => [ + 'seedbonus' => 'bonus', + 'attendance_card' => 'tessera di partecipazione', + 'invites' => 'invito', + 'uploaded' => 'carica', + 'tmp_invites' => 'invito temporaneo', + ], + 'labels' => [ + 'type' => 'Tipo', + 'amount' => 'Importo', + 'duration' => 'Durata', + 'duration_help' => 'Richiesto solo se il tipo è [Invito temporaneo], in giorni', + 'user_class' => 'Classe utente', + 'roles' => 'Ruoli', + 'msg_subject' => 'oggetto del messaggio', + 'msg_body' => 'contenuto del messaggio', + 'operator' => 'Operatore', + ], +); + +?> diff --git a/lang/it/lang_index.php b/lang/it/lang_index.php new file mode 100644 index 00000000..8c25b6ab --- /dev/null +++ b/lang/it/lang_index.php @@ -0,0 +1,111 @@ + "Nessun sondaggio", + 'std_error' => "Errore", + 'std_duplicate_votes_denied' => "Nessun voto duplicato permesso!", + 'std_vote_not_counted' => "Si è verificato un errore. Il tuo voto non è stato contato.", + 'std_option_unselected' => "Seleziona un'opzione.", + 'text_news_page' => "Nuovo", + 'text_recent_news' => "Notizie recenti", + 'text_e' => "Modifica", + 'text_d' => "Elimina", + 'text_hotmovies' => "Caldo", + 'text_classicmovies' => "Classico", + 'text_free' => "Gratis", + 'text_two_times_up' => "2X", + 'text_free_two_times_up' => "2X Gratis", + 'text_shoutbox' => "Shoutbox", + 'text_message' => "Messaggio: ", + 'sumbit_shout' => "grida", + 'submit_clear' => "cancella", + 'text_last_five_posts' => "Ultimi 5 Post Del Forum", + 'col_topic_title' => "Titolo Dell'Argomento", + 'col_view' => "Viste", + 'col_author' => "Autore", + 'col_posted_at' => "Pubblicato Il", + 'text_in' => "in ", + 'std_no_torrent_found' => "Nessun torrent trovato", + 'text_last_five_torrent' => "Ultimi 5 Torrent Uploads", + 'col_name' => "Nome", + 'col_seeder' => "Seeder", + 'col_leecher' => "Leecher", + 'text_polls' => "Sondaggi ", + 'text_new' => "Nuovo", + 'text_edit' => "Modifica", + 'text_delete' => "Elimina", + 'text_votes' => "Votazioni:", + 'radio_blank_vote' => "Voto in bianco (alias \"Voglio solo vedere i risultati!\")", + 'submit_vote' => "Vota!", + 'text_previous_polls' => "Sondaggi precedenti", + 'text_tracker_statistics' => "Statistiche Del Tracker", + 'row_registered_users' => "Utenti Registrati / Limite", + 'row_unconfirmed_users' => "Utenti non confermati", + 'row_vips' => "VIPs", + 'row_donors' => "Donors", + 'row_warned_users' => "Utenti Avvisati", + 'row_banned_users' => "Utenti Bannati", + 'row_male_users' => "Utenti Maschili", + 'row_female_users' => "Utenti Femmina", + 'row_torrents' => "Torrent", + 'row_dead_torrents' => "Torrent Morti", + 'row_seeders' => "Seeding Peers", + 'row_leechers' => "Leeching Peers", + 'row_peers' => "Peers", + 'row_seeder_leecher_ratio' => "Rapporto semina / sanguinamento", + 'row_total_size_of_torrents' => "Dimensione totale dei torrent", + 'row_total_uploaded' => "Totale Caricato", + 'row_total_downloaded' => "Totale Scaricato", + 'row_total_data' => "Dati Totali", + 'text_no_users_day' => "Non ci sono stati utenti attivi nelle ultime 24 ore.", + 'text_no_active_users_now' => "Non c'è nessun utente attivo ora.", + 'text_no_user_torrenting' => "Non c'è nessun utente che semina o sanguisuga. :(", + 'text_tracker_load' => "Carico Tracker", + 'text_our_tracker_load' => "Carico Peers Tracker: ", + 'text_global_server_load' => "Caricamento Globale Del Server: ", + 'text_whats_going_on' => "Cosa sta succedendo?", + 'text_members_have_visited' => " i membri hanno visitato nelle ultime 24 ore e benvenuto al nostro membro più recente, ", + 'text_users_browsing_now' => " gli utenti stanno navigando il sito negli ultimi 15 minuti. ", + 'text_peers_active_now' => " gli utenti stanno seminando o sanguinando. ", + 'text_disclaimer' => "Disclaimer", + 'text_disclaimer_content' => "Nessuno dei file mostrati qui è effettivamente ospitato su questo server. Il tracker gestisce solo le connessioni, non ha alcuna conoscenza del contenuto dei file che vengono distribuiti. I link sono forniti esclusivamente dagli utenti di questo sito. L'amministratore di questo sito %s non può essere ritenuto responsabile di ciò che i suoi utenti pubblicano, o di qualsiasi altra azione dei suoi utenti. Non puoi utilizzare questo sito %s per distribuire o scaricare materiale quando non hai i diritti legali per farlo. È vostra responsabilità rispettare questi termini.", + 'text_browser_note' => "Questo sito è visualizzato al meglio con \"Googleo\"Firefox\" e con risoluzione superiore a 1024*768. Clienti BitTorrent consigliati: \"qBittorrent\"o\"Transmission\"", + 'title_show_or_hide' => "Mostra/Nascondi", + 'text_links' => "Collegamenti", + 'text_manage_links' => "Gestisci Collegamenti", + 'text_author' => "Autore:", + 'text_datetime' => "Tempo:", + 'p_critic_reviews' => "Recensioni Della Critica Del Film", + 'p_user_reviews' => "Recensioni Degli Utenti Selezionati", + 'head_home' => "Home", + 'sumbit_to_guest' => "ad ospite", + 'text_apply_for_link' => "Applica per i link", + 'text_ago' => " fa", + 'text_auto_refresh_after' => "aggiornamento automatico dopo ", + 'text_seconds' => " secondi", + 'text_funbox' => "Funbox", + 'text_more_fun' => "Altro", + 'text_new_fun' => "Nuovo", + 'text_ban' => "Banna", + 'submit_fun' => "Divertimento", + 'submit_dull' => "Dull", + 'text_out_of' => " fuori da ", + 'text_people_found_it' => " la gente l'ha trovata divertente. ", + 'text_your_opinion' => "Cosa ne pensate? ", + 'text_vote_accepted' => "Grazie! Il tuo voto è accettato.", + 'row_users_active_today' => "Utenti Attivi Oggi", + 'row_users_active_this_week' => "Utenti Attivi Questa Settimana", + 'row_active_browsing_users' => "Utenti Di Navigazione Attiva", + 'row_tracker_active_users' => "Tracker Utenti Attivi", + 'text_detail' => "Dettaglio", + 'top_uploader_title' => 'Top Uploader(conteggio torrent)', + 'col_counts' => 'Conteggi', + 'col_ranking' => 'Classifica', + 'top_uploader_toggle_time_range_tab' => 'Fare clic per attivare o disattivare l\'intervallo di tempo', + 'top_uploader_toggle_time_range_recently' => 'Ultimi 30 giorni', + 'top_uploader_toggle_time_range_all' => 'Tutto il tempo', + 'clear_shout_box' => 'Svuota casella di grido', + 'sure_to_clear_shout_box' => 'Sei sicuro di voler cancellare la casella di grido?', +); + +?> diff --git a/lang/it/lang_invite.php b/lang/it/lang_invite.php new file mode 100644 index 00000000..5db81b4a --- /dev/null +++ b/lang/it/lang_invite.php @@ -0,0 +1,70 @@ + "Spiacenti", + 'std_permission_denied' => "Permesso Negato!", + 'head_invites' => "Inviti", + 'std_no_invites_left' => "Non hai altri inviti. :(

    Clicca per favore ", + 'here_to_go_back' => "qui per tornare indietro.", + 'text_invite_code_sent' => "Il codice di invito è stato inviato!
    ", + 'text_invite_someone' => "Invita qualcuno a unirsi ", + 'text_s' => "s", + 'text_invitation' => " invito", + 'text_left' => " sinistra", + 'text_email_address' => "Indirizzo Email", + 'text_email_address_note' => "L'indirizzo email deve essere valido. L'invito riceverà un'email sul tuo invito.", + 'text_message' => "Messaggio", + 'submit_invite' => "Invita", + 'text_invite_status' => "Stato attuale degli inviti", + 'text_no_invites' => "Ancora nessun invito.", + 'text_username' => "Username", + 'text_email' => "Email", + 'text_uploaded' => "Caricato", + 'text_downloaded' => "Scaricato", + 'text_ratio' => "Rapporto", + 'text_status' => "Stato", + 'text_confirm' => "Conferma", + 'text_confirmed' => "Confermato", + 'text_pending' => "In Attesa", + 'submit_confirm_users' => "Conferma Utenti", + 'sumbit_invite_someone' => "Invita Qualcuno", + 'text_sent_invites_status' => "Stato attuale degli inviti inviati", + 'text_no_invitation_sent' => "Nessun invito inviato al momento.", + 'text_hash' => "Hash", + 'text_send_date' => "Data Di Invio", + 'text_hash_status' => 'Hash valid', + 'text_invitee_user' => 'Utente invitato', + + 'text_invitation_body' => " +Ciao Buddy, + +Ti invito ad unirti all' %s che è una comunità privata che ha la migliore +e la cosa più abbondante. Se siete interessati a unirvi a noi si prega di leggere sopra +le regole e confermare l'invito. Infine, assicurati di mantenere un buon rapporto e +caricare solo contenuti che seguono le regole del sito. + +Benvenuti a bordo! :) +Migliori Saluti, +", + 'text_invite_system' => "'s Invita System", + 'std_only' => "Solo ", + 'std_or_above_can_invite' => " o superiore può inviare l'invito.", + 'text_email_restriction_note' => "È possibile inviare un invito solo a e-mail da questi domini: ", + 'harem_addition' => 'Aggiunta di harem', + 'signup_link_help' => 'Click destro per copiare', + 'signup_link' => 'Link di iscrizione', + 'text_seed_torrent_count' => 'Conti di seme', + 'text_seed_torrent_size' => 'Dimensione semina', + 'text_seed_torrent_bonus_per_hour' => 'Bonus semina all\'ora', + 'text_seed_torrent_bonus_per_hour_help' => 'Cioè, seed point, non considerare donazioni, torrenti ufficiali, harem e qualsiasi altra aggiunta', + 'text_seed_torrent_last_announce_at' => 'Ultima ora di annuncio', + 'text_enabled' => 'Abilitato', + 'text_tmp_status' => 'Stato dell\'invito temporaneo', + 'text_expired_at' => 'Scaduto il', + 'text_permanent' => 'Usare l\'invito permanente', + 'text_consume_invite' => 'Usare l\'invito', + 'text_temporary_left' => '%s invito temporaneo', +); + +?> diff --git a/lang/it/lang_iphistory.php b/lang/it/lang_iphistory.php new file mode 100644 index 00000000..2dd950ec --- /dev/null +++ b/lang/it/lang_iphistory.php @@ -0,0 +1,16 @@ + "Errore", + 'std_invalid_id' => "Invalid ID", + 'text_user_not_found' => "Utente non trovato", + 'head_ip_history_log_for' => "Registro di cronologia IP per ", + 'text_historical_ip_by' => "Indirizzi IP storici utilizzati da ", + 'col_last_access' => "Ultimo accesso", + 'col_ip' => "IP", + 'col_hostname' => "Hostname", + 'text_not_available' => "N/A", + 'text_duplicate' => "Dupe", +); +?> diff --git a/lang/it/lang_ipsearch.php b/lang/it/lang_ipsearch.php new file mode 100644 index 00000000..f8afa4ee --- /dev/null +++ b/lang/it/lang_ipsearch.php @@ -0,0 +1,24 @@ + "Errore", + 'std_invalid_ip' => "IP Non Valido.", + 'std_invalid_subnet_mask' => "Maschera subnet non valida.", + 'head_search_ip_history' => "Cerca nella cronologia IP", + 'text_search_ip_history' => "Cerca nella cronologia IP", + 'row_ip' => "IP", + 'row_subnet_mask' => "Maschera Di Sottorete", + 'submit_search' => "Cerca", + 'text_no_users_found' => "Nessun utente trovato", + 'text_users_used_the_ip' => " gli utenti hanno utilizzato l'IP: ", + 'col_username' => "Username", + 'col_last_ip' => "Ultimo Ip", + 'col_last_access' => "Ultimo accesso", + 'col_ip_num' => "IP Nums", + 'col_last_access_on' => "Ultimo accesso a questo IP", + 'col_added' => "Aggiunto", + 'col_invited_by' => "Invitato da", + 'text_not_available' => "N/A", +); +?> diff --git a/lang/it/lang_linksmanage.php b/lang/it/lang_linksmanage.php new file mode 100644 index 00000000..1106c8de --- /dev/null +++ b/lang/it/lang_linksmanage.php @@ -0,0 +1,51 @@ + "Applica per i link", + 'text_apply_for_links' => "Applica per i link", + 'text_rules' => "Regole per lo scambio di link:", + 'text_rule_one' => "1.Please fare il nostro link %s sul tuo sito prima di chiederci di fare lo stesso.", + 'text_rule_two' => "2.Your site MUST NOT be involed in any illegal things. The administrators of this site %s take absolutely no responsibily for anything of your site.", + 'text_rule_three' => "3.All i link che facciamo qui al nostro sito %s sono solo di testo.", + 'text_rule_four' => "4.Your sito dovrebbe avere almeno 200 utenti registrati o 50 persone visitanti al giorno.", + 'text_rule_five' => "5. Ci riserviamo i diritti di MODIFY O DELETE QUALSIASI LINKS sul nostro sito %s senza notifica.", + 'text_rule_six' => "6.If conforme alle regole di cui sopra, sentitevi liberi di applicare per i link del vostro sito a %s. Tuttavia, non diamo alcuna garanzia di accettare tutte le domande.", + 'text_red_star_required' => "I campi contrassegnati con una stella rossa (*) sono obbligatori.", + 'text_site_name' => "Nome Sito", + 'text_url' => "URL", + 'text_title' => "Titolo", + 'text_title_note' => "Il titolo è usato per mostrare il suggerimento ad un link. es. NexusPHP", + 'text_administrator' => "Amministratore", + 'text_administrator_note' => "Abbiamo richiesto l'amministratore NOME VERO.", + 'text_email' => "Email", + 'text_reason' => "Motivo", + 'submit_okay' => "Ok", + 'submit_reset' => "Reset", + 'std_error' => "Errore", + 'std_no_sitename' => "Il nome del sito non può essere vuoto.", + 'std_no_url' => "L'URL non può essere vuoto.", + 'std_no_admin' => "L'amministratore non può essere vuoto. Dobbiamo conoscere il nome dell'amministratore", + 'std_no_email' => "L'email non può essere vuota.", + 'std_invalid_email' => "L'indirizzo email non è valido", + 'std_no_reason' => "Il motivo non può essere vuoto. Avanti, ti preghiamo di fornirci i motivi per collegare il tuo sito.", + 'std_reason_too_short' => "La ragione è troppo breve. Avanti, per favore, dica qualcosa di più.", + 'std_success' => "Successo", + 'std_success_note' => "La tua applicazione è stata inviata correttamente. Si prega di attendere la nostra risposta.", + 'text_sitename_note' => "Il nome del tuo sito, ad esempio NexusPHP", + 'text_url_note' => "es. https://nexusphp.org", + 'text_email_note' => "L'indirizzo email del contatto dell'amministratore", + 'std_missing_form_data' => "Dati del modulo mancanti.", + 'std_unable_creating_new_link' => "Impossibile creare un nuovo collegamento.", + 'std_links_manage' => "Gestisci Collegamenti", + 'text_add_link' => "Aggiungi Collegamento", + 'text_manage_links' => "Gestisci Collegamenti", + 'text_modify' => "Modifica", + 'text_edit' => "Modifica", + 'text_delete' => "Elimina", + 'text_no_links_found' => "Siamo spiacenti, nessun link è stato trovato!", + 'text_edit_link' => "Modifica Link", + 'js_sure_to_delete_link' => "Sei sicuro di voler eliminare questo link?", +); + +?> diff --git a/lang/it/lang_log.php b/lang/it/lang_log.php new file mode 100644 index 00000000..4b10f189 --- /dev/null +++ b/lang/it/lang_log.php @@ -0,0 +1,67 @@ + "Sorry...", + 'std_permission_denied_only' => "Permesso negato. Solo ", + 'std_or_above_can_view' => " o superiore potrebbe visualizzare il LOG.

    Per favore consulta le FAQ per maggiori informazioni sulle diverse classi di utenti e su cosa possono fare.

    Lo Staff %s
    ", + 'head_site_log' => "Registro Giornaliero", + 'text_search_log' => "Cerca Registro Giornaliero", + 'submit_search' => "Cerca", + 'text_log_empty' => "Log è vuoto
    ", + 'title_time_added' => "Tempo", + 'col_date' => "Data", + 'col_event' => "Evento", + 'time_zone_note' => "

    Times sono in GMT +8:00.

    ", + 'text_daily_log' => "Registro Giornaliero", + 'text_chronicle' => "Cronaca", + 'text_code_update' => "Aggiornamento Codice", + 'text_funbox' => " Funbox ", + 'text_news' => "  News  ", + 'text_poll' => "  Sondaggio  ", + 'std_error' => "Errore", + 'std_invalid_action' => "Azione Non Valida", + 'head_chronicle' => "Cronaca", + 'text_search_chronicle' => "Cerca Cronaca", + 'text_chronicle_empty'=> "Chronicle è vuoto
    ", + 'col_modify' => "Modifica", + 'text_edit' => "Modifica", + 'text_delete' => "Elimina", + 'submit_add' => "Aggiungi", + 'text_add_chronicle' => "Aggiungi Evento Cronaca", + 'std_permission_denied' => "Indietro! Non hai il permesso di farlo.", + 'submit_okay' => "Ok", + 'text_edit_chronicle' => "Modifica Evento Cronaca", + 'head_code_update' => "Aggiornamento Codice", + 'text_search_code_update' => "Cerca Evento Code-Update", + 'text_add_code_update' => "Aggiungi Evento Code-Update", + 'text_edit_codeupdate' => "Modifica L'Evento Di Code-Update", + 'text_codeupdate_empty' => "Code-Update è vuoto
    ", + 'head_funbox' => "Log Funbox", + 'head_news' => "Notizie", + 'text_search_news' => "Cerca News", + 'text_news_empty' => "News è vuota
    ", + 'col_title' => "Titolo", + 'col_body' => "Corpo", + 'col_user' => 'Utente', + 'std_delete_poll' => "Elimina sondaggio", + 'std_delete_poll_confirmation' => "Vuoi davvero eliminare un sondaggio? Clicca ", + 'std_here_if_sure' => "qui se sei sicuro.", + 'std_sorry' => "Sorry...", + 'std_no_polls' => "Non ci sono sondaggi!", + 'head_previous_polls' => "Sondaggi precedenti", + 'text_previous_polls' => "Sondaggi precedenti", + 'text_ago' => " fa", + 'text_votes' => "Votazioni: ", + 'text_in' => "in ", + 'text_funbox_empty' => "Funbox è vuoto
    ", + 'text_search_funbox' => "Cerca funbox", + 'text_title' => "titolo", + 'text_body' => "corpo", + 'text_both' => "entrambi", + 'text_all' => "tutti", + 'text_normal' => "normale", + 'text_mod' => "mod", +); + +?> diff --git a/lang/it/lang_login.php b/lang/it/lang_login.php new file mode 100644 index 00000000..358ab1ab --- /dev/null +++ b/lang/it/lang_login.php @@ -0,0 +1,40 @@ + "Non hai effettuato l'accesso!", + 'p_error' => "Errore:", + 'p_after_logged_in' => "La pagina che hai cercato di visualizzare può essere utilizzata solo quando sei connesso.", + 'p_need_cookies_enables' => "Nota: È necessario abilitare i cookie per accedere o cambiare lingua.", + 'p_fail_ban' => "login falliti in una riga comporteranno il divieto del tuo ip!", + 'p_you_have' => "Hai", + 'p_remaining_tries' => "tentativi rimanenti.", + 'p_no_account_signup' => "Non hai un account? Registrati adesso!", + 'p_forget_pass_recover' => "Dimentica la password? Recupera la tua password via email", + 'p_account_banned' => "Account bandito? visualizza il motivo suuser ban log", + 'p_resend_confirm' => "Non hai ricevuto email di conferma o il link di conferma è rotto? Invia di nuovo email di conferma", + 'rowhead_username' => "Utente:", + 'rowhead_password' => "Password,", + 'button_login' => "Accedi!", + 'button_reset' => "Reset", + 'text_auto_logout' => "Auto Logout:", + 'text_restrict_ip' => "Limita IP:", + 'text_ssl' => "SSL (HTTPS):", + 'checkbox_auto_logout' => " Mi disconnetti dopo 15 minuti", + 'checkbox_restrict_ip' => " Limita la sessione al mio IP", + 'checkbox_ssl' => " Sfoglia il sito web con crittografia SSL (browser web)", + 'checkbox_ssl_tracker' => " Connetti tracker con crittografia SSL (client BitTorrent)", + 'text_advanced_options' => "Opzioni Avanzate:", + 'text_helpbox' => "Helpbox", + 'text_helpbox_note' => "Hai problemi nella registrazione o nel login? Lascia un messaggio qui", + 'text_message' => "Messaggio: ", + 'sumbit_shout' => "grida", + 'submit_clear' => "cancella", + 'text_select_lang' => "Seleziona Lingua Del Sito: ", + 'head_login' => "Accedi", + 'rowhead_two_step_code' => 'Autenticazione A Due Fattori', + 'two_step_code_tooltip' => 'Se abilitato deve essere compilato', + 'text_complain' => 'Canale Di Reclamo', +); + +?> diff --git a/lang/it/lang_mailtest.php b/lang/it/lang_mailtest.php new file mode 100644 index 00000000..4b6763ee --- /dev/null +++ b/lang/it/lang_mailtest.php @@ -0,0 +1,18 @@ + "Test Posta", + 'text_mail_test' => "Test Posta", + 'row_enter_email' => "Inserisci email", + 'text_enter_email_note' => "Inserisci un indirizzo email per inviare una mail di prova, ad esempio tuonome@gmail.com", + 'submit_send_it' => "Mandatelo!", + 'text_smtp_testing_mail' => " SMTP Testing Mail", + 'std_error' => "Errore", + 'std_invalid_email_address' => "Indirizzo email non valido!", + 'mail_test_mail_content' => "Ciao, Se vedi questo messaggio, la tua funzione SMTP funziona bene. Buona giornata.", + 'std_success' => "Successo", + 'std_success_note' => "Nessun errore trovato. Tuttavia ciò non significa che la posta sia arrivata al 100%. Per favore controlla la posta." +); + +?> diff --git a/lang/it/lang_makepoll.php b/lang/it/lang_makepoll.php new file mode 100644 index 00000000..58f1daba --- /dev/null +++ b/lang/it/lang_makepoll.php @@ -0,0 +1,24 @@ + "Errore", + 'std_no_poll_id' => "Nessun sondaggio trovato con questo ID", + 'std_missing_form_data' => "Dati del modulo mancante!", + 'head_edit_poll' => "Modifica Sondaggio", + 'text_edit_poll' => "Modifica Sondaggio", + 'head_new_poll' => "Nuovo Sondaggio", + 'text_day' => " giorno", + 'text_hour' => " ora", + 'text_current_poll' => "Nota: Il sondaggio corrente ", + 'text_is_only' => " è solo ", + 'text_old' => " vecchio.", + 'text_make_poll' => "Fai sondaggio", + 'text_question' => "Domanda", + 'text_option' => "Opzione ", + 'submit_edit_poll' => "Modifica Sondaggio", + 'submit_create_poll' => "Crea Sondaggio", + 'text_required' => " obbligatorio" +); + +?> diff --git a/lang/it/lang_messages.php b/lang/it/lang_messages.php new file mode 100644 index 00000000..437a7b92 --- /dev/null +++ b/lang/it/lang_messages.php @@ -0,0 +1,81 @@ + "Errore", + 'std_invalid_mailbox' => "Mailbox Non Valida", + 'text_inbox' => "Posta", + 'text_sentbox' => "Sentbox", + 'text_sender' => "Mittente", + 'text_receiver' => "Ricevitore", + 'col_status' => "Stato", + 'col_subject' => "Oggetto", + 'col_date' => "Data", + 'col_act' => "Atto", + 'text_no_messages' => "Nessun Messaggio.", + 'text_remove_from_friends' => "[rimuovi dagli amici]", + 'text_add_to_friends' => "[aggiungi agli amici]", + 'submit_move_to' => "Sposta a", + 'text_or' => " o ", + 'submit_delete' => "Elimina", + 'text_unread_messages' => " Messaggi Non Letti.", + 'text_read_messages' => " Leggi Messaggi.", + 'text_mailbox_manager' => "Mailbox Manager", + 'std_no_permission' => "Non hai i permessi per visualizzare questo messaggio.", + 'text_to' => "A", + 'text_from' => "Da", + 'text_new' => "(Nuovo)", + 'text_reply' => "Rispondi", + 'text_delete' => "Elimina", + 'text_forward_pm' => "Inoltra PM", + 'std_cannot_move_messages' => "I messaggi non possono essere spostati! ", + 'std_cannot_delete_messages' => "I messaggi non possono essere eliminati! ", + 'std_no_action' => "Nessuna azione", + 'std_no_permission_forwarding' => "Non hai i permessi per inoltrare questo messaggio.", + 'row_to' => "A: ", + 'row_original_receiver' => "Ricevitore Orignale ", + 'row_original_sender' => "Orignal Mittente:", + 'row_subject' => "Oggetto:", + 'row_message' => "Messaggio:", + 'checkbox_save_message' => "Salva Messaggio ", + 'submit_forward' => "Avanti", + 'std_no_such_user' => "Siamo spiacenti, non c'è nessun utente con questo nome utente.", + 'std_rufused' => "Rifiutato", + 'std_user_blocks_your_pms' => "Questo utente ha bloccato i PM da te.", + 'std_user_accepts_friends_pms' => "Questo utente accetta i PM solo dagli utenti nella sua lista di amici.", + 'std_user_blocks_all_pms' => "Questo utente non accetta PM.", + 'std_success' => "Successo", + 'std_pm_forwarded' => "PM inoltrato", + 'head_editing_mailboxes' => "Modifica Mailbox", + 'text_editing_mailboxes' => "Modifica Mailbox", + 'text_add_mailboxes' => "Aggiungi Cassette Postali", + 'text_extra_mailboxes_note' => "È possibile aggiungere caselle di posta aggiuntive. Non è necessario utilizzare tutte le caselle di input.", + 'submit_add' => "Aggiungi", + 'text_edit_mailboxes' => "Modifica Mailbox", + 'text_edit_mailboxes_note' => "È possibile modificare i nomi o eliminare il nome per eliminare questa directory virtuale.
    Si prega di notare che tutti i messaggi in questa directory saranno persi se si elimina questa directory. ", + 'text_no_mailboxes_to_edit' => "Non ci sono caselle di posta da modificare.", + 'submit_edit' => "Modifica", + 'std_no_message_id' => "Nessun messaggio con questo ID.", + 'std_could_not_delete_message' => "Impossibile eliminare il messaggio.", + 'text_jump_to' => " a ", + 'select_inbox' => "Posta", + 'select_sentbox' => "Sentbox", + 'submit_go' => "Vai", + 'input_check_all' => "Seleziona Tutto", + 'input_uncheck_all' => "Deseleziona Tutto", + 'title_unread' => "Non Letta", + 'title_read' => "Leggi", + 'text_system' => "Sistema", + 'text_no_subject' => "Nessun Oggetto", + 'col_search_message' => "Cerca Messaggio", + 'text_search' => "Cerca: ", + 'text_in' => "in", + 'select_title' => "titolo", + 'select_body' => "corpo", + 'select_both' => "entrambi", + 'submit_mark_as_read' => "Segna come letto", + 'std_cannot_mark_messages' => "Impossibile contrassegnare il messaggio come letto.", + 'std_no_message_selected' => "Nessun messaggio selezionato." +); + +?> diff --git a/lang/it/lang_moforums.php b/lang/it/lang_moforums.php new file mode 100644 index 00000000..a8fd7de8 --- /dev/null +++ b/lang/it/lang_moforums.php @@ -0,0 +1,26 @@ + "Gestione Overforum", + 'text_forum_management' => "Gestione Forum", + 'text_overforum_management' => "Gestione Overforum", + 'col_name' => "Nome", + 'col_viewed_by' => "Visualizzato Da", + 'col_modify' => "Modifica", + 'text_edit' => "Modifica", + 'text_delete' => "Elimina", + 'js_sure_to_delete_overforum' => "Sei sicuro di voler eliminare questo overforum?", + 'text_no_records_found' => "Siamo spiacenti, nessun record è stato trovato!", + 'text_new_overforum' => "Nuovo Overforum", + 'text_overforum_name' => "Nome del overforum", + 'text_overforum_description' => "Descrizione overforum", + 'text_minimum_view_permission' => "Permesso di visualizzazione minimo", + 'text_overforum_order' => "Ordine overforum", + 'text_overforum_order_note' => "Ordina per numero ascendente. Cioè, 0 mostra in alto", + 'submit_make_overforum' => "Rendi Overforum", + 'text_edit_overforum' => "Modifica Overforum", + 'submit_edit_overforum' => "Modifica Overforum" +); + +?> diff --git a/lang/it/lang_moresmilies.php b/lang/it/lang_moresmilies.php new file mode 100644 index 00000000..89fac508 --- /dev/null +++ b/lang/it/lang_moresmilies.php @@ -0,0 +1,9 @@ + "Smilie Più Cliccabili", + 'text_close' => "Chiudi", +); + +?> diff --git a/lang/it/lang_mybonus.php b/lang/it/lang_mybonus.php new file mode 100644 index 00000000..5c84c719 --- /dev/null +++ b/lang/it/lang_mybonus.php @@ -0,0 +1,173 @@ + "Spiacenti!", + 'std_karma_system_disabled' => "Il sistema di punti bonus Karma è attualmente disabilitato. ", + 'std_points_active' => "Tuttavia i tuoi punti sono ancora attivi.", + 'text_success_upload' => "Congratulazioni! Hai appena aumentato il tuo importo caricato!", + 'text_success_download' => "Congratulazioni! Hai appena aumentato il tuo importo scaricato!", + 'text_success_invites' => "Congratulazioni! Ti sei ricevuto un nuovo invito 1!", + 'text_success_vip' => "Congratulazioni! Ti sei ritrovato ", + 'text_success_vip_two' => " stato per un mese!", + 'text_no_permission' => "ERRORE! Non hai il permesso.", + 'text_success_custom_title' => "Congradazioni! Ora sei conosciuto come %s!", + 'text_success_gift' => " Hai diffuso bene il Karma .", + 'head_karma_page' => "'s Karma Bonus Page", + 'text_karma_system' => " Sistema Punti Bonus Karma", + 'text_exchange_your_karma' => "Scambia i tuoi Punti Bonus Karma (attualmente ", + 'text_for_goodies' => " ) per le buone!", + 'text_no_buttons_note' => "Se il pulsante è disabilitato, non hai guadagnato abbastanza punti bonus per scambiare. ", + 'col_option' => "Opzione", + 'col_description' => "Descrizione", + 'col_points' => "Punti", + 'col_trade' => "Scambi", + 'text_username' => "Utente: ", + 'text_to_be_given' => "da fornire: ", + 'text_karma_points' => " Punti karma!", + 'text_enter_titile' => "Inserisci il titolo speciale che vorresti avere ", + 'text_click_exchange' => " clicca su Scambio! ", + 'text_enter_receiver_name' => "Inserisci il nome utente della persona a cui vuoi inviare karma, e selezionare quanti punti si desidera inviare e fare clic su Karma Gift!", + 'text_min' => "min.", + 'text_max' => "max", + 'submit_karma_gift' => "Karma Gift!", + 'text_plus_only' => "+ solo!", + 'submit_exchange' => "Scambia!", + 'text_unavailable' => "Attualmente non disponibile!", + 'text_more_points_needed' => "altri punti necessari", + 'text_what_is_karma' => "Che diavolo sono questi Punti Bonus Karma e come posso ottenerli?", + 'text_get_by_seeding' => "Si ottengono i seguenti punti karma all'ora da seme:", + 'text_for_seeding_torrent' => " per ogni torrent che si sta seminando (massimo di ", + 'text_torrent' => " torrent", + 'text_donors_always_get' => "I donatori ottengono sempre ", + 'text_times_of_bonus' => "x punti bonus.", + 'text_other_things_get_bonus' => "Altre cose che ti otterranno punti karma:", + 'text_point' => " punto", + 'text_upload_torrent' => "caricamento di un nuovo torrent = ", + 'text_upload_subtitle' => "caricamento di un sottotitolo = ", + 'text_start_topic' => "avvio di un argomento = ", + 'text_make_post' => "creazione di un post = ", + 'text_add_comment' => "commento su torrent o offerta = ", + 'text_poll_vote' => "votazione sul sondaggio = ", + 'text_offer_vote' => "offerta di voto = ", + 'text_funbox_vote' => "votazione sul funbox = ", + 'text_rate_torrent' => "valutazione di un torrent = ", + 'text_say_thanks' => "ringraziamento = ", + 'text_receive_thanks' => "ricevere grazie = ", + 'text_funbox_reward' => "pubblicazione di roba funbox che ha ricevuto alti voti (vedi regole)", + 'text_howto_get_karma_four' => " +

    Cose che dovresti tenere a mente:

    +
      ", + 'text_howto_get_karma_five' => "
    • Tutto ciò che può ottenere karma può anche essere perso,
      i. . se si carica un torrent quindi eliminarlo, si guadagnerà e poi perdere ", + 'text_howto_get_karma_six' => ".
    • +
    • Ci sono sempre altri punti karma bonus nascosti sul sito. Prova a trovarli :)
    • +
    • Lo staff può dare o togliere punti per infrangere le regole, o fare del bene per la comunità.
    • +
    ", + 'std_no_permission' => "Nessun permesso", + 'std_class_above_vip' => "La tua classe sopra VIP!", + 'text_wasted_karma' => "Ho appena sprecato il mio karma", + 'text_huh' => "Huh?", + 'text_karma_self_giving_warning' => "Non così veloce lì signor pantaloni fantasia...
    Non puoi diffondere il karma a te stesso...
    Se vuoi diffondere l'amore, scegli un altro utente!

    clicca per tornare alla tua pagina Karma Bonus Point.", + 'text_receiver_not_exists' => "Spiacenti...
    Nessun utente con quel nome utente

    clicca per tornare alla tua pagina Karma Bonus Point.", + 'text_oups' => "OUPS!", + 'text_not_enough_karma' => "Scusa, non hai abbastanza punti Karma!
    torna alla tua pagina Punti Bonus Karma.", + 'text_cheat_alert' => "Scopare fuori! Sappiamo che stai cercando di barare!", + 'text_not_enough_bonus' => "Spiacenti, non hai abbastanza bonus. BTW, come sei arrivato qui?", + 'text_uploaded_one' => "1.0 GB Caricato", + 'text_uploaded_note' => "Con abbastanza punti bonus acquisiti, si è in grado di scambiarli per un credito di caricamento. I punti vengono quindi rimossi dalla tua Banca Bonus e il credito viene aggiunto al tuo importo totale caricato.", + 'text_download_note' => "Con abbastanza punti bonus acquisiti, si è in grado di scambiarli per un Scarica Credito. I punti vengono quindi rimossi dalla tua Banca Bonus e il credito viene aggiunto al totale scaricato importo.", + 'text_uploaded_two' => "5.0 GB Caricato", + 'text_uploaded_three' => "10.0 Gb Caricato", + 'text_uploaded_four' => "100.0 Gb Caricato", + 'text_downloaded_ten_gb' => "10.0 GB Scaricato", + 'text_downloaded_hundred_gb' => "100.0 GB Scaricato", + 'text_buy_invite' => "1 Invito", + 'text_buy_invite_note' => "Con abbastanza punti bonus acquisiti, si è in grado di scambiarli per alcuni inviti. I punti vengono quindi rimossi dalla tua Bonus Bank e gli inviti vengono aggiunti al tuo importo inviti.", + 'text_custom_title' => "Titolo Personalizzato!", + 'text_custom_title_note' => "Con abbastanza punti bonus acquisiti, è possibile acquistare un titolo personalizzato. Le uniche restrizioni sono nessuna lingua offensiva o offensiva o nomi di classi di utenti. I punti vengono quindi rimossi dalla tua Bonus Bank e il tuo titolo speciale viene cambiato al titolo di tua scelta.", + 'text_vip_status' => "Stato VIP", + 'text_vip_status_note' => "Con abbastanza punti bonus acquisiti, è possibile acquistare se stessi stato VIP per un mese. I punti vengono quindi rimossi dalla tua Banca Bonus e il tuo stato è cambiato.", + 'text_bonus_gift' => "Regala Un Regalo Del Karma", + 'text_bonus_gift_note' => "Beh, forse non hai bisogno del credito di upload, ma conosci qualcuno che potrebbe usare il Karma boost! Ora sei in grado di dare i tuoi crediti Karma come un regalo! I punti vengono quindi rimossi dalla tua Bonus Bank e aggiunti al conto di un utente di vostra scelta! E ricevono un PM con tutte le informazioni così come chi è venuto da...", + 'text_error' => "Errore", + 'text_ratio_too_high' => "Il tuo rapporto è alto", + 'text_bonus_formula_one' => "Il numero di punti karma guadagnati per ora è dato dalla seguente formula

        
        
    +dove
    • A è una variabile intermedia
    • Ti è la ith torrent Time Alive (TA), i. . tempo trascorso dal caricamento del torrent, nelle settimane
    • T0 è un parametro. T0= ", + 'text_bonus_formula_two' => "
    • Si è la dimensione del torrent i, in GB
    • Ni è il numero di piantine correnti del ith torrent
    • N0 è un parametro. N0= ", + 'text_bonus_formula_three' => "
    • B è il numero di punti karma guadagnati seminando in un'ora
    • B0 è un parametro, che rappresenta i punti bonus massimi per ora che un utente può ottenere da semina. B0= ", + 'text_bonus_formula_four' => "
    • L è un parametro. L= ", + 'text_bonus_formula_five' => "
    In poche parole, è possibile ottenere più bonus seminando torrenti meno seminati e più grandi.", + 'text_bonus_formula_wi' => "
  • Wi è il peso del torrent i, predefinito è 1, zero torrent bonus è ", + 'text_user_with_ratio_above' => "Utente con rapporto sopra ", + 'text_and_uploaded_amount_above' => " e l'importo caricato sopra ", + 'text_cannot_exchange_uploading' => " GB non può scambiare più crediti di caricamento.", + 'text_you_are_currently_getting' => "Stai ricevendo ", + 'text_per_hour' => " per ora", + 'text_custom' => "Personalizzato", + 'bonus_amount_not_allowed' => "Importo bonus non consentito! Puoi dare via solo da 25.0 a 1000.0 punti ogni volta.", + 'text_system_charges_receiver' => "NOTA: Il sistema addebita il destinatario del regalo ", + 'text_tax_bonus_point' => " punto bonus", + 'text_tax_plus' => " + ", + 'text_percent_of_transfered_amount' => "% dell'importo trasferito", + 'text_as_tax' => " come tasse. Ad esempio, il destinatario ottiene solo ", + 'text_tax_example_note' => " punti quando gli invii 100 punti bonus come regalo.", + 'text_no_advertisements' => " Giorni Senza Pubblicità", + 'text_no_advertisements_note' => "Con abbastanza punti bonus acquisiti, è possibile acquistare te stesso un po 'di tempo durante il quale è possibile scegliere di vedere nessun annuncio in questo sito. I punti vengono quindi rimossi dalla tua Bonus Bank e non vedi annunci per un periodo. Tuttavia, è sempre possibile riattivare gli annunci su PC utente. ", + 'text_success_no_ad' => "Goditi il tuo tempo senza annunci!", + 'submit_class_above_no_ad' => "Disabilita gli annunci al CP dell'utente", + 'submit_already_disabled' => "Annunci Già Disabilitati", + 'text_click_on_ad' => "cliccando su un annuncio (ogni annuncio conta solo una volta) = ", + 'text_promotion_link_clicked' => "il link di promozione viene cliccato (ogni IP conta solo una volta) = ", + 'text_charity_giving' => "Dare Carità", + 'text_charity_giving_note' => "La carità va direttamente a chi ha bisogno ed è assolutamente a voi decidere chi trarrà beneficio dalla vostra generosità.", + 'text_ratio_below' => "Dai a quelli con il rapporto qui sotto ", + 'text_and_downloaded_above' => " e scaricato sopra ", + 'text_select_receiver_ratio' => "Seleziona il rapporto delle persone a cui vuoi che la tua beneficenza vada a, e selezionare quanti punti si desidera inviare e fare clic su Carità dono!", + 'submit_charity_giving' => "Dare Carità!", + 'text_message' => "Messaggio: ", + 'bonus_amount_not_allowed_two' => "Importo bonus non consentito! Puoi dare via solo da 1000.0 a 50000.0 punti ogni volta.", + 'bonus_ratio_not_allowed' => "Bonus ratio non consentito! Solo gli utenti il cui rapporto inferiore a 0,8 hanno bisogno di beneficenza.", + 'std_no_users_need_charity' => "Nessun utente ha bisogno di beneficenza al momento.", + 'text_success_charity' => "Grazie! La tua generosità è apprezzata.", + 'text_cancel_hr_title' => 'Annullamento di H&R', + 'text_cancel_hr_label' => 'Digita ID H&R:', + 'text_success_cancel_hr' => "Hai annullato con successo un H&R.", + 'text_success_buy_medal' => 'Il successo compra la medaglia.', + 'text_attendance_card' => 'Acquista carta di frequenza', + 'text_attendance_card_note' => 'Un giorno per comporre la frequenza consumare uno, partecipare alla data di destinazione dei premi bonus in base al normale calcolo, cioè, la data di scadenza per calcolare il numero di giorni continui per ottenere ricompense.', + 'text_success_buy_attendance_card' => 'Acquisto con successo 1 carta di presenza.', + 'text_harem_addition_get' => 'L\'attuale aumento di harem guadagna %s bonus all\'ora', + 'reward_type' => 'Tipo ricompensa', + 'factor' => 'Fattore', + 'got_bonus' => 'Ottenuto bonus', + 'total' => 'Totale', + 'reward_type_basic' => 'Ricompensa base', + 'reward_type_harem_addition' => 'Aggiunta di harem', + 'bonus_base' => 'Bonus base', + 'lock_text' => 'Il sistema ti limita a un clic sul pulsante di scambio entro %s secondi!', + 'text_get_by_seeding_official' => 'I torrent ufficiali riceveranno il seguente valore bonus aggiuntivo per ora', + 'official_calculate_method' => 'La formula per il calcolo della ricompensa ufficiale è la stessa di cui sopra, ma solo per il tipo ufficiale, Nessuna considerazione per basso reddito', + 'official_tag_bonus_additional_factor' => 'La ricompensa finale è la ricompensa per tipo ufficiale calcolata moltiplicata per il fattore di tipo ufficiale, l\'attuale fattore di tipo ufficiale è: ', + 'reward_type_official_addition' => 'Aggiunta ufficiale', + 'text_get_by_harem' => 'L\'aggiunta di harem darà il seguente valore bonus aggiuntivo per ora', + 'harem_additional_desc' => "Solo gli harem diretti saranno presi in considerazione per l'harem. Il valore aggiunto di ogni harem può essere visualizzato qui", + 'harem_additional_note' => 'Nota: Se non si esegue il seme da soli, questo valore bonus non verrà aggiunto all\'account utente', + 'harem_additional_factor' => 'La ricompensa ottenuta è la somma del bonus orario di tutti gli harem (indipendentemente dall\'aggiunta), moltiplicato per il fattore bonus harem, con il valore attuale di ', + 'text_bonus_summary' => 'Bonus totale guadagnato per ora', + 'col_count' => 'Conteggi', + 'col_size' => 'Dimensione', + 'col_a' => 'Un Valore', + 'text_buy_tmp_invite' => '1 Invito Temporaneo', + 'text_buy_tmp_invite_note' => "Con abbastanza punti bonus acquisiti, si è in grado di scambiarli per alcuni inviti temporanei, validi per 7 giorni. I punti vengono quindi rimossi dalla tua Bonus Bank e gli inviti temporanei vengono aggiunti al tuo importo di inviti temporanei.", + 'text_success_tmp_invites' => "Congratulazioni! Ti sei fatto 1 nuovo invito temporaneo!", + 'text_buy_rainbow_id' => "Acquista Id Arcobaleno", + 'text_buy_rainbow_id_note' => 'Aggiunge un effetto scintillante simile all\'arcobaleno ai nomi utente, valido per 30 giorni e cumulativo nel tempo con acquisti ripetuti.', + 'text_success_buy_rainbow_id' => "Congratulazioni, Rainbow ID ha aggiunto 30 giorni!", + 'text_buy_change_username_card' => "Acquista cambiare nome utente carta", + 'text_buy_change_username_card_note' => 'Cambia il tuo nome utente una volta e sarà valido per sempre.', + 'text_success_buy_change_username_card' => "Congratulazioni per il tuo acquisto riuscito di una carta cambia nome utente!", + 'text_change_username_card_already_has' => 'Hai già una scheda per cambiare nome utente', + 'text_rainbow_id_already_valid_forever' => 'Hai già un ID permanente Arcobaleno', +); + +?> diff --git a/lang/it/lang_myhr.php b/lang/it/lang_myhr.php new file mode 100644 index 00000000..82df312b --- /dev/null +++ b/lang/it/lang_myhr.php @@ -0,0 +1,14 @@ + 'H&R ID', + 'th_torrent_name' => 'Torrent', + 'th_uploaded' => 'Caricato', + 'th_downloaded' => 'Scaricato', + 'th_share_ratio' => 'Rapporto di condivisione', + 'th_seed_time_required' => 'Tempo di seme richiesto', + 'th_completed_at' => 'Completato il', + 'th_ttl' => 'Tempo di ispezione rimanente', + 'th_comment' => 'Commento', + 'action_remove' => 'Rimuovi', +]; diff --git a/lang/it/lang_news.php b/lang/it/lang_news.php new file mode 100644 index 00000000..e3c8df04 --- /dev/null +++ b/lang/it/lang_news.php @@ -0,0 +1,21 @@ + "Elimina notizie", + 'std_are_you_sure' => "Vuoi davvero eliminare una notizia? Clicca ", + 'std_here' => "qui", + 'std_if_sure' => " e è sicuro.", + 'std_error' => "Errore", + 'std_news_body_empty' => "Il corpo delle notizie non può essere vuoto!", + 'std_news_title_empty' => "Il titolo delle notizie non può essere vuoto!", + 'std_something_weird_happened' => "È successo qualcosa di strano.", + 'std_invalid_news_id' => "Nessuna notizia con ID ", + 'head_edit_site_news' => "Modifica Notizie Del Sito", + 'text_edit_site_news' => "Modifica Notizie Del Sito", + 'text_notify_users_of_this' => "Notificare agli utenti di questo.", + 'head_site_news' => "Notizie Del Sito", + 'text_submit_news_item' => "Invia notizie" +); + +?> diff --git a/lang/it/lang_offers.php b/lang/it/lang_offers.php new file mode 100644 index 00000000..24e9402e --- /dev/null +++ b/lang/it/lang_offers.php @@ -0,0 +1,143 @@ + "Offerto da ", + 'text_inf' => "Inf.", + 'text_ratio' => "rapporto:", + 'text_orphaned' => "(orfano)", + 'text_at' => " a ", + 'text_edit' => "Modifica", + 'text_delete' => "Elimina", + 'text_profile' => "Profilo", + 'text_pm' => "PM", + 'text_report' => "Segnala", + 'text_last_edited_by' => "Ultima modifica di ", + 'text_edited_at' => " a ", + 'head_offer_error' => "Errore Offerta", + 'std_error' => "Errore!", + 'std_smell_rat' => "Io odore di un ratto!", + 'head_offer' => "Offerta", + 'submit_search' => "Go!", + 'text_red_star_required' => "I campi contrassegnati con una stella rossa (*) sono obbligatori.", + 'text_offers_open_to_all' => "Le offerte sono aperte a tutti gli utenti... un ottimo rapporto di spinta!", + 'select_type_select' => "(Seleziona)", + 'row_type' => "Tipo", + 'row_title' => "Titolo", + 'row_post_or_photo' => "Poster o foto", + 'text_link_to_picture' => "(Link diretto all'immagine. NESSUN TAG NEEDED! Verrà mostrato nella descrizione)", + 'row_description' => "Descrizione", + 'submit_add_offer' => "Aggiungi Offerta!", + 'col_type' => "Tipo", + 'col_title' => "Titolo", + 'title_time_added' => "Tempo Aggiunto", + 'col_offered_by' => "Aggiunto Da", + 'submit_show_all' => "Mostra Tutto", + 'std_must_enter_name' => "Devi inserire un nome!", + 'std_must_select_category' => "Devi selezionare una categoria in cui inserire l'offerta!", + 'std_must_enter_description' => "Devi inserire una descrizione!", + 'std_wrong_image_format' => "Immagine DEVE essere in formato jpg, gif o png.", + 'head_success' => "Successo!", + 'head_error' => "Errore!", + 'std_offer_exists' => "Offri tutto pronto esiste!", + 'text_view_all_offers' => "Visualizza tutte le offerte.", + 'head_offer_detail_for' => "Dettagli offerta per ", + 'text_offer_detail' => "Dettagli Offerta", + 'row_time_added' => "Tempo Aggiunto", + 'row_status' => "Stato", + 'text_pending' => "In Attesa", + 'text_allowed' => "Consentito", + 'text_denied' => "Negato", + 'text_edit_offer' => "Modifica Offerta", + 'text_delete_offer' => "Elimina Offerta", + 'report_offer' => "Offerta Report", + 'row_allow' => "Consenti", + 'submit_allow' => "Consenti", + 'submit_let_votes_decide' => "Lascia che voti decida", + 'row_vote' => "VOTAZIONI", + 'text_for' => "Per", + 'text_against' => "Contro", + 'row_offer_allowed' => "Offerta Consentita", + 'text_voter_receives_pm_note' => "Se hai votato per questa offerta, sarai PMed quando sarà alzato!", + 'text_urge_upload_offer_note' => "Questa offerta è stata permessa! Si prega di caricarla il prima possibile.", + 'row_vote_results' => "Vota Risultati", + 'text_see_vote_detail' => "[Vedi Dettagli Voto]", + 'row_report_offer' => "Offerta Report", + 'text_for_breaking_rules' => " per violare le regole ", + 'submit_report_offer' => "Segnala Offerta", + 'text_add_comment' => "Aggiungi Commento", + 'text_no_comments' => "Nessun commento", + 'std_access_denied' => "Accesso negato!", + 'std_mans_job' => "questo è il lavoro di un uomo!", + 'std_have_no_permission' => "Non hai i permessi", + 'std_sorry' => "Spiacenti", + 'std_no_votes_yet' => "Ancora nessun voto... ", + 'std_back_to_offer_detail' => "Torna ai dettagli dell'offerta", + 'std_cannot_edit_others_offer' => "Questa non è la tua offerta da modificare.", + 'head_edit_offer' => "Modifica Offerta ", + 'text_edit_offer' => "Modifica Offerta", + 'submit_edit_offer' => "Modifica Offerta", + 'head_offer_voters' => "Offri Votanti", + 'text_vote_results_for' => "Risultati Voto Offerta Per", + 'col_user' => "Utente", + 'col_uploaded' => "Caricato", + 'col_downloaded' => "Scaricato", + 'col_ratio' => "Rapporto", + 'col_vote' => "VOTAZIONI", + 'std_already_voted' => "Hai già votato", + 'std_already_voted_note' => "

    Hai già votato, massimo 1 voto per offerta

    Torna al ", + 'std_back_to_offer_detail' => "dettagli offerta

    ", + 'head_vote_for_offer' => "Vota Offerta", + 'std_vote_accepted' => "Votazione accettata", + 'std_vote_accepted_note' => "

    Il tuo voto è stato accettato

    Torna alla ", + 'std_cannot_delete_others_offer' => "Questa non è la tua offerta da eliminare!", + 'std_delete_offer' => "Elimina Offerta", + 'std_delete_offer_note' => "Stai per eliminare questa offerta.", + 'head_offers' => "Offerte", + 'text_offers_section' => "Sezione Offerte", + 'text_add_offer' => "Aggiungi offerta", + 'text_view_request' => "Visualizza Richieste", + 'select_show_all' => "(Mostra Tutto)", + 'submit_view_only_selected' => "visualizza solo selezionato", + 'text_search_offers' => "Cerca: ", + 'title_comment' => "Commenti", + 'col_vote_results' => "VOTAZIONI", + 'text_nothing_found' => "Niente Trovato!", + 'text_yep' => "yep", + 'text_nah' => "nah", + 'title_show_vote_details' => "Mostra Voto  Dettagli", + 'title_i_want_this' => " voglio questo!", + 'title_do_not_want_it' => "I non come questo", + 'row_action' => "Azione", + 'text_quick_comment' => "Commento Rapido", + 'submit_add_comment' => "Aggiungi Commento", + 'text_blank' => " ", + 'col_act' => "Atto", + 'title_delete' => "Elimina", + 'title_edit' => "Modifica", + 'col_timeout' => "Timeout", + 'row_info' => "Informazioni", + 'text_reason_is' => "Motivo: ", + 'submit_confirm' => "Conferma", + 'title_add_comments' => "Aggiungi commento", + 'text_at_time' => " a ", + 'text_blank_two' => " ", + 'text_last_commented_by' => "Ultimo commento di ", + 'title_has_new_comment' => "Ha nuovo commento", + 'title_no_new_comment' => "Nessun commento nuovo ", + 'text_new' => "NUOVO", + 'std_cannot_vote_youself' => "Non puoi votare per le tue offerte.", + 'text_rules' => "Regolamento: ", + 'text_rule_one_one' => "", + 'text_rule_one_two' => " o sopra può caricare i torrent direttamente senza passare attraverso la sezione offerte. ", + 'text_rule_one_three' => " o superiore può aggiungere offerte.", + 'text_rule_two_one' => "Un'offerta diventa approvata quando i voti favorevoli sono ", + 'text_rule_two_two' => " più che opporsi ai voti.", + 'text_rule_three_one' => "Le offerte saranno eliminate se non approvate ", + 'text_rule_three_two' => " ore dopo l'aggiunta.", + 'text_rule_four_one' => "Le offerte verranno eliminate se non caricate ", + 'text_rule_four_two' => " ore dopo l’approvazione.", + 'text_rule_skip_offer' => "Quando il numero di offerte passate dall'utente è maggiore o uguale a %d, l'utente può caricare i torrent direttamente senza passare attraverso la sezione offerte.", +); + +?> diff --git a/lang/it/lang_ok.php b/lang/it/lang_ok.php new file mode 100644 index 00000000..9f3a4b34 --- /dev/null +++ b/lang/it/lang_ok.php @@ -0,0 +1,24 @@ + "Iscrizione utente", + 'std_account_activated' => "Iscrizione riuscita ma Account non attivato!", + 'account_activated_note' => "Il tuo account creato con successo, tuttavia, l'amministratore deve convalidare i nuovi membri prima che siano classificati come membri registrati e possano accedere al sito, grazie per la vostra comprensione.", + 'account_activated_note_two' => "Il tuo account è stato creato con successo, tuttavia il tuo invitatore deve convalidare nuovi membri prima di essere classificati come membri registrati e di poter accedere al sito, grazie per la vostra comprensione.", + 'std_signup_successful' => "Registrazione riuscita!", + 'std_confirmation_email_note' => "Un'email di conferma è stata inviata all'indirizzo specificato (" , + 'std_confirmation_email_note_end' => "). Devi leggere e rispondere a questa email prima di poter utilizzare il tuo account. Se non lo fai, il nuovo account verrà eliminato automaticamente dopo un breve periodo.", + 'head_sysop_activation' => "Attivazione account Sysop", + 'std_sysop_activation_note' => "

    Account Sysop attivato con successo!

    \n", + 'std_auto_logged_in_note' => "

    Il tuo account è stato attivato!\n Sei stato automaticamente loggato. Ora puoi continuare alla pagina e iniziare a utilizzare il tuo account.

    \n", + 'std_cookies_disabled_note' => "

    Il tuo account è stato attivato! Tuttavia, sembra che non sia possibile effettuare l'accesso automaticamente. Forse è necessario aprire una nuova finestra nel tuo browser.
    Un'altra possibile ragione è che hai disabilitato i cookie nel tuo browser. Devi abilitare i cookie per utilizzare il tuo account. Per favore fai questo e poi accedi ad in e riprova.

    \n", + 'head_already_confirmed' => "Già confermato", + 'std_already_confirmed' => "

    Già confermato

    \n", + 'std_already_confirmed_note' => "

    Questo account utente è già stato confermato. Puoi procedere al login con esso.

    \n", + 'head_signup_confirmation' => "Conferma iscrizione", + 'std_account_confirmed' => "

    Account confermato con successo!

    \n", + 'std_read_rules_faq' => "

    Prima di iniziare a utilizzare %s ti invitiamo a leggere le REGOLE e le FAQ.

    \n" +); + +?> diff --git a/lang/it/lang_polloverview.php b/lang/it/lang_polloverview.php new file mode 100644 index 00000000..042dacea --- /dev/null +++ b/lang/it/lang_polloverview.php @@ -0,0 +1,21 @@ + "Errore", + 'head_poll_overview' => "Panoramica Dei Sondaggi", + 'text_polls_overview' => "Panoramica Dei Sondaggi", + 'col_id' => "ID", + 'col_added' => "Aggiunto", + 'col_question' => "Domanda", + 'text_no_users_voted' => "Ci dispiace... Non ci sono utenti che hanno votato!", + 'text_no_poll_id' => "Spiacenti...Non ci sono sondaggi con quell'ID!", + 'text_poll_question' => "Domande Del Sondaggio", + 'col_option_no' => "Opzione N.", + 'col_options' => "Opzioni", + 'text_polls_user_overview' => "Panoramica Dei Sondaggi Utente", + 'col_username' => "Username", + 'col_selection' => "Selezione", +); + +?> diff --git a/lang/it/lang_polls.php b/lang/it/lang_polls.php new file mode 100644 index 00000000..b3ac431f --- /dev/null +++ b/lang/it/lang_polls.php @@ -0,0 +1,20 @@ + "Errore", + 'std_permission_denied' => "Permesso negato.", + 'std_delete_poll' => "Elimina sondaggio", + 'std_delete_poll_confirmation' => "Vuoi davvero eliminare un sondaggio? Fare clic su\n", + 'std_here_if_sure' => "qui se sei sicuro.", + 'std_sorry' => "Sorry...", + 'std_no_polls' => "Non ci sono sondaggi!", + 'head_previous_polls' => "Sondaggi precedenti", + 'text_previous_polls' => "Sondaggi precedenti", + 'text_ago' => " fa", + 'text_edit' => "Modifica", + 'text_delete' => "Elimina", + 'text_votes' => "Votazioni: " +); + +?> \ No newline at end of file diff --git a/lang/it/lang_preview.php b/lang/it/lang_preview.php new file mode 100644 index 00000000..e21b0777 --- /dev/null +++ b/lang/it/lang_preview.php @@ -0,0 +1,8 @@ + "Anteprima" +); + +?> \ No newline at end of file diff --git a/lang/it/lang_promotionlink.php b/lang/it/lang_promotionlink.php new file mode 100644 index 00000000..e9c704c3 --- /dev/null +++ b/lang/it/lang_promotionlink.php @@ -0,0 +1,29 @@ + "Link Promozione", + 'text_promotion_link' => "Link Promozione", + 'text_promotion_link_note_one' => "Se davvero ti piace questo sito, perché non aiutare a far sapere a più persone su di esso? Si può fare questo diffondendo il vostro link di promozione. ", + 'text_promotion_link_note_two' => "Ogni utente ha un link di promozione unico, un URL casuale generato dal sistema per identificarlo. Quando qualcuno fa clic sul tuo link promozionale, verrà reindirizzato a questo sito e il sistema ti ricompenserà per aiutarti a diffondere l'URL.", + 'text_you_would_get' => "Si otterrebbe ", + 'text_bonus_points' => " punti bonus ogni volta che il tuo link di promozione viene cliccato da un IP non registrato. Un solo clic è contato in ", + 'text_seconds' => " secondi.", + 'text_your_promotion_link_is' => "Il tuo link di promozione: ", + 'text_promotion_link_note_four' => "Puoi comunque scegliere se usare il tuo link promozionale. Ecco alcuni esempi: ", + 'col_type' => "Tipo", + 'col_code' => "Codice", + 'col_result' => "Risultato", + 'col_note' => "Nota", + 'row_xhtml' => "XHTML 1.0", + 'text_xhtml_note' => "Se hai il tuo sito personale, puoi usare il codice XHTML nella tua pagina.", + 'row_html' => "HTML 4.01", + 'text_html_note' => "Se hai il tuo sito personale, puoi usare il codice HTML nella tua pagina.", + 'row_bbcode' => "BBCode", + 'text_bbcode_note' => "La maggior parte del software di forum internet (ad esempio vBulletin, Discuz!, PHPWind) supporta BBCode. È una buona idea mettere il tuo link di promozione nella tua firma.", + 'row_bbcode_userbar' => "Barra utente BBCode", + 'text_bbcode_userbar_note' => "Get your personal userbar. For userbar to work, you must NOT set your privacy level to 'strong' (at User CP).", + 'row_bbcode_userbar_alt' => "Barra utente BBCode alt.", + 'text_bbcode_userbar_alt_note' => "Usalo se quello precedente non funziona. Per far funzionare la barra utente, devi NON impostare il tuo livello di privacy su 'forte' (al PC utente)." +) +?> diff --git a/lang/it/lang_recover.php b/lang/it/lang_recover.php new file mode 100644 index 00000000..06a448d8 --- /dev/null +++ b/lang/it/lang_recover.php @@ -0,0 +1,39 @@ + "Recupero Fallito! (Vedi Sotto)", + 'std_missing_email_address' => "Devi inserire un indirizzo e-mail!", + 'std_invalid_email_address' => "Indirizzo email non valido!", + 'std_email_not_in_database' => "L'indirizzo email non è stato trovato nel database.\n", + 'std_error' => "Errore", + 'std_database_error' => "Errore nel database. Contatta un amministratore per questo.", + 'std_unable_updating_user_data' => "Impossibile aggiornare i dati utente. Si prega di contattare un amministratore per questo errore.", + 'text_recover_user' => "Recuperare il nome utente o la password persi.", + 'text_use_form_below' => "Usa il modulo qui sotto per reimpostare la tua password e i dettagli del tuo account ti sono stati inviati.", + 'text_reply_to_confirmation_email' => "(Dovrai rispondere a una email di conferma.)", + 'text_note' => "Nota: ", + 'text_ban_ip' => " tentativi falliti di riga comporteranno il divieto del tuo ip!", + 'row_registered_email' => "Email registrata: ", + 'submit_recover_it' => "Recuperalo!", + 'text_you_have' => "Hai ", + 'text_remaining_tries' => " tentativi rimanenti.", + + 'mail_this_link' => "QUESTO LINK", + 'mail_here' => "QUI", + + 'mail_title' => " conferma reimpostazione password", + 'mail_one' => "Ciao,

    Qualcuno si spera che tu abbia richiesto la password per l'account
    associata a questo indirizzo email ", + 'mail_two' => " be reset.

    The request originated from ", + 'mail_three' => ".

    Se non lo hai fatto, ignora questa email. Per favore non rispondi.

    Se desideri confermare questa richiesta, segui ", + 'mail_four' => "
    Dopo averlo fatto, la tua password verrà reimpostata e inviata via email a te.

    ------
    Yours,
    The %s Team.", + + 'mail_two_title' => " dettagli dell'account", + 'mail_two_one' => "Ciao,

    Secondo la tua richiesta abbiamo generato una nuova password per il tuo account.

    Ecco le informazioni che abbiamo ora sul file per questo account:

    Nome utente: ", + 'mail_two_two' => "
    Password: ", + 'mail_two_three' => "

    Puoi effettuare il login da ", + 'mail_two_four' => "

    È possibile modificare la password in User CP - Impostazioni di sicurezza dopo l'accesso.
    ------
    Yours,
    The %s Team.", + 'text_select_lang' => "Seleziona Lingua Del Sito: ", + 'std_user_account_unconfirmed' => "L'account non è stato ancora verificato. Se non hai ricevuto l'email di conferma, prova a reseed.", +); +?> diff --git a/lang/it/lang_report.php b/lang/it/lang_report.php new file mode 100644 index 00000000..8ca18fb6 --- /dev/null +++ b/lang/it/lang_report.php @@ -0,0 +1,42 @@ + "Errore", + 'std_missing_reason' => "Motivo Mancante!", + 'std_message' => "Messaggio", + 'std_successfully_reported' => "Segnalato con successo!", + 'std_already_reported_this' => "Hai già segnalato questo!", + 'std_sorry' => "Spiacenti", + 'std_cannot_report_oneself' => "Non puoi segnalare te stesso!", + 'std_invalid_user_id' => "ID Utente Non Valido!", + 'std_cannot_report' => "Non puoi segnalare ", + 'std_are_you_sure' => "Sei sicuro?", + 'text_are_you_sure_user' => "Sei sicuro di voler segnalare questo utente ", + 'text_to_staff' => " al personale per violazione delle regole?", + 'text_not_for_leechers' => "Si prega di notare, questo è non per essere utilizzato per segnalare leecher, abbiamo script in atto per affrontarli!", + 'text_reason_is' => "Motivo (richiesto): ", + 'submit_confirm' => "Conferma", + 'text_reason_note' => " PLEASE Note!  Se non hai ragione riceverai un avvertimento.", + 'std_invalid_torrent_id' => "ID Torrent Non Valido!", + 'text_are_you_sure_torrent' => "Sei sicuro di voler segnalare questo torrent ", + 'std_invalid_post_id' => "ID Post Non Valido!", + 'text_are_you_sure_post' => "Sei sicuro di voler segnalare il post del forum (ID ", + 'text_of_topic' => " di argomento ", + 'text_of_torrent' => " di torrent ", + 'text_of_offer' => " di offerta ", + 'text_of_request' => " di richiesta ", + 'text_by' => ") da ", + 'std_invalid_comment_id' => "ID Commento Non Valido!", + 'std_orphaned_comment' => "Commento orfano. Si prega di segnalare questo all'amministratore.", + 'text_are_you_sure_comment' => "Sei sicuro di voler segnalare il commento (ID ", + 'std_invalid_offer_id' => "ID offerta non valida!", + 'text_are_you_sure_offer' => "Sei sicuro di voler segnalare la seguente offerta ", + 'std_invalid_request_id' => "ID Richiesta Non Valida!", + 'std_are_you_sure_request' => "Sei sicuro di voler segnalare la seguente richiesta ", + 'std_invalid_action' => "Azione non valida.", + 'std_invalid_subtitle_id' => "ID Sottotitolo Non Valido!", + 'text_are_you_sure_subtitle' => "Sei sicuro di voler segnalare il sottotitolo ", +); + +?> diff --git a/lang/it/lang_reports.php b/lang/it/lang_reports.php new file mode 100644 index 00000000..bbc5256f --- /dev/null +++ b/lang/it/lang_reports.php @@ -0,0 +1,41 @@ + "Oho!", + 'std_no_report' => "Nessun rapporto.", + 'head_reports' => "Relazioni", + 'text_reports' => "Relazioni", + 'col_added' => "Aggiunto", + 'col_reporter' => "Segnalatore", + 'col_reporting' => "Relazioni", + 'col_type' => "Tipo", + 'col_reason' => "Motivo", + 'col_dealt_with' => "Distribuisci Con", + 'col_action' => "Atto", + 'text_yes' => "Sì", + 'text_no' => "No", + 'text_torrent' => "Torrent", + 'text_torrent_does_not_exist' => "Il torrent non esiste o è stato eliminato.", + 'text_user' => "Utente", + 'text_user_does_not_exist' => "L'utente non esiste o è stato eliminato.", + 'text_offer' => "Offerta", + 'text_offer_does_not_exist' => "L'offerta non esiste o è stata eliminata.", + 'text_forum_post' => "Post Del Forum", + 'text_post_does_not_exist' => "Il post del Forum non esiste o è stato eliminato.", + 'text_post_id' => "ID Post ", + 'text_of_topic' => " del Topic ", + 'text_by' => " di ", + 'text_comment' => "Commento", + 'text_comment_does_not_exist' => "Il commento non esiste o è stato eliminato.", + 'text_of_torrent' => " di torrent ", + 'text_of_offer' => " di offerta ", + 'text_comment_id' => "Id Commento ", + 'text_subtitle' => "Sottotitolo", + 'text_subtitle_does_not_exist' => "Il sottotitolo non esiste o è eliminato.", + 'text_for_torrent_id' => " per ID torrent ", + 'submit_set_dealt' => "Imposta Dealt", + 'submit_delete' => "Elimina", +); + +?> diff --git a/lang/it/lang_rules.php b/lang/it/lang_rules.php new file mode 100644 index 00000000..55f16ba8 --- /dev/null +++ b/lang/it/lang_rules.php @@ -0,0 +1,8 @@ + "Regole" +); + +?> \ No newline at end of file diff --git a/lang/it/lang_sendmessage.php b/lang/it/lang_sendmessage.php new file mode 100644 index 00000000..48c60ea9 --- /dev/null +++ b/lang/it/lang_sendmessage.php @@ -0,0 +1,24 @@ + "Errore", + 'std_permission_denied' => "Permesso negato", + 'head_send_message' => "Invia messaggio", + 'text_mass_message' => "Messaggio di massa a ", + 'text_users' => "utenti", + 'text_subject' => "Oggetto:", + 'text_comment' => "Commento:", + 'text_from' => "Da:", + 'text_take_snapshot' => "Scatta istantanea:", + 'submit_send_it' => "Mandatelo!", + 'submit_preview' => "Anteprima", + 'text_templates' => "Modelli:", + 'submit_use' => "Usa", + 'std_no_user_id' => "Nessun utente con quell'ID.", + 'text_message_to' => "Messaggio a ", + 'checkbox_delete_message_replying_to' => "Elimina il messaggio a cui stai rispondendo", + 'checkbox_save_message_to_sendbox' => "Salva messaggio in Sentbox" +); + +?> \ No newline at end of file diff --git a/lang/it/lang_settings.php b/lang/it/lang_settings.php new file mode 100644 index 00000000..dec41e39 --- /dev/null +++ b/lang/it/lang_settings.php @@ -0,0 +1,821 @@ + "Sì", + 'text_no' => "No", + 'text_website_settings' => "Impostazioni Sito Web", + 'text_configuration_file_saving_note' => "Prima di salvare le impostazioni, assicurati di aver configurato correttamente i permessi di accesso a file e directory.", + 'head_save_main_settings' => "Salva Impostazioni Principali", + 'std_message' => "Messaggio", + 'std_click' => "Click ", + 'std_here' => "qui", + 'std_to_go_back' => " per tornare indietro.", + 'head_save_basic_settings' => "Salva Impostazioni Di Base", + 'head_save_code_settings' => "Salva Impostazioni Codice", + 'head_save_bonus_settings' => "Salva Impostazioni Bonus", + 'head_save_account_settings' => "Salva Impostazioni Account", + 'head_save_torrent_settings' => "Salva Impostazioni Torrent", + 'head_save_smtp_settings' => "Salva Impostazioni Smtp", + 'head_save_security_settings' => "Salva Impostazioni Di Sicurezza", + 'head_save_authority_settings' => "Salva Impostazioni Autorità", + 'head_save_tweak_settings' => "Salva Impostazioni Di Modifica", + 'head_save_bot_settings' => "Salva Impostazioni Bot", + 'head_bot_settings' => "Impostazioni Bot", + 'head_tweak_settings' => "Impostazioni Di Modifica", + 'row_save_user_location' => "Salva Posizione Utente", + 'text_save_user_location_note' => "Default 'no'. Salva l'ultima posizione di navigazione dell'utente.", + 'row_log_user_ips' => "Log IP dell'utente", + 'text_store_user_ips_note' => "'sì' predefinito. Registra l'indirizzo IP quando gli utenti hanno un IP diverso.", + 'row_kps_enabled' => "Abilita Sistema Punti Bonus Karma", + 'text_enabled' => "Abilitato", + 'text_disabled_but_save' => "Disabilitato ma salva ancora punti", + 'text_disabled_no_save' => "Completamente disabilitato", + 'text_kps_note' => "Predefinito 'abilitato'. Abilita KPS o disabilita. Tieni i punti o no.", + 'row_tracker_founded_date' => "Data Fondamento Tracker", + 'text_tracker_founded_date_note' => "Il formato dell'ora è AAAA-MM-GD, impostalo alla data in cui il tracker è stato fondato", + 'row_save_settings' => "Salva impostazioni", + 'submit_save_settings' => "Salva Impostazioni [SOLO STAMPA]", + 'head_smtp_settings' => "Impostazioni SMTP", + 'row_mail_function_type' => "Tipo di funzione PHP Mail", + 'head_security_settings' => "Impostazioni Di Sicurezza", + 'row_enable_ssl' => "Usa SSL (Web)", + 'row_enable_ssl_tracker' => "Usa SSL (Tracker)", + 'text_optional' => "Facoltativo (selezionabile dagli utenti)", + 'text_ssl_note' => "'no' predefinito. Abilitare SSL richiede una configurazione aggiuntiva per il server HTTP e un certificato (da un'autorità di certificazione o auto-firmato).", + 'row_enable_image_verification' => "Abilita Verifica Immagine", + 'text_image_verification_note' => "Default 'no'. Richiedi agli utenti di inserire un codice di verifica visiva per registrarsi / login/recover.", + 'row_allow_email_change' => "Consenti all'utente di cambiare email", + 'text_email_change_note' => "Default 'no'. Impostare a 'no' per vietare agli utenti di cambiare il suo indirizzo email", + 'row_cheater_detection_level' => "Livello di rilevamento cheater", + 'select_none' => "nessuno", + 'select_conservative' => "conservatore", + 'select_normal' => "normale", + 'select_strict' => "rigoroso", + 'select_paranoid' => "paranoide", + 'text_cheater_detection_level_note' => "Predefinito 'normal'. Impostalo al livello che meglio si adatta al tuo tracker. Velocità di annuncio più rigorosa e più lenta. ", + 'text_never_suspect' => "Non sospettare mai ", + 'text_or_above' => " o superiore, cioè nessun rilevamento è fatto. Predefinito ", + 'row_max_ips' => "Ip Max.", + 'text_max_ips_note' => "Disabilita la registrazione con lo stesso indirizzo IP.", + 'row_max_login_attemps' => "Max. Tentativi Di Accesso", + 'text_max_login_attemps_note' => "Ban indirizzo IP che supera questo limite.", + 'head_authority_settings' => "Impostazioni Autorità", + 'row_default_class' => "Default Class", + 'text_default_user_class' => "Classe Utente Predefinita: ", + 'text_default' => " Predefinito ", + 'text_default_class_note' => ". Classe al momento della registrazione", + 'row_staff_member' => "Membro Del Personale", + 'text_minimum_class' => "Classe Minimun: ", + 'text_staff_member_note' => ". Classi considerate come membri del personale, ad esempio possono visualizzare staffbox", + 'row_news_management' => "Gestione Notizie", + 'text_news_management_note' => ". Aggiungi nuova, modifica, elimina le notizie", + 'row_post_funbox_item' => "Post articolo funbox", + 'text_post_funbox_item_note' => ". Posta nuovi elementi funbox e modifica i propri elementi funbox", + 'row_funbox_management' => "Gestione Funbox", + 'text_funbox_management_note' => ". Modificare, eliminare, bandire gli elementi funbox di chiunque", + 'row_shoutbox_management' => "Shoutbox Management", + 'text_shoutbox_management_note' => ". Eliminare i messaggi in shoutbox e helpbox", + 'row_poll_management' => "Gestione Sondaggi", + 'text_poll_management_note' => ". Aggiungere nuovi sondaggi modificati, eliminare", + 'row_apply_for_links' => "Applica per i link", + 'text_apply_for_links_note' => ". Applicare i link sulla pagina principale", + 'row_link_management' => "Gestione Link", + 'text_link_management_note' => ". Aggiungi link nuovi, modificati, elimina", + 'row_forum_post_management' => "Gestione Post Forum", + 'text_forum_post_management_note' => ". Modificare, eliminare, spostare, bastone, bloccare i messaggi del forum", + 'row_comment_management' => "Gestione Dei Commenti", + 'text_comment_management_note' => ". Modificare, eliminare i commenti dei torrent, offerte", + 'row_forum_management' => "Gestione Forum", + 'text_forum_management_note' => ". Aggiungi un nuovo forum, modifica, cancella, sposta forum", + 'row_view_userlist' => "Visualizza Elenco Utenti", + 'text_view_userlist_note' => ". Visualizza, cerca elenco utenti", + 'row_torrent_management' => "Gestione Torrent", + 'text_torrent_management_note' => ". Modifica torrent, escluso l'impostazione torrent sticky o su promozione o eliminare", + 'row_torrent_sticky' => "Torrent Sticky", + 'text_torrent_sticky_note' => ". Imposta torrent appiccicoso", + 'row_torrent_on_promotion' => "Torrent on Promotion", + 'text_torrent_promotion_note' => ". Imposta torrent sulla promozione", + 'row_ask_for_reseed' => "Richiedi reseed", + 'text_ask_for_reseed_note' => ". Chiedi di risuonare quando i torrent sono morti", + 'row_view_nfo' => "Visualizza NFO", + 'text_view_nfo_note' => ". Visualizza file NFO", + 'row_view_torrent_structure' => "Visualizza Struttura Torrent", + 'text_view_torrent_structure_note' => ". Visualizza la struttura dei file torrent", + 'row_send_invite' => "Invia Invito", + 'text_send_invite_note' => ". Inviare un invito di adesione ad altri", + 'row_view_history' => "Visualizza Cronologia", + 'text_view_history_note' => ". Visualizza la cronologia dei commenti e dei post degli altri", + 'row_view_topten' => "Visualizza Topten", + 'text_view_topten_note' => ". Visualizza I Dieci Superiori", + 'row_view_general_log' => "Visualizza Registro Generale", + 'text_view_general_log_note' => ". Visualizzare il registro generale, escluso il registro riservato", + 'row_view_confidential_log' => "Visualizza Registro Confidenziale", + 'text_view_confidential_log_note' => ". Visualizzare il registro riservato, ad esempio le modifiche dell'impostazione del sito", + 'row_view_user_confidential' => "Visualizza Il Profilo Riservato Dell'Utente", + 'text_view_user_confidential_note' => ". Visualizza il profilo riservato dell'utente, ad esempio indirizzo IP, indirizzo email", + 'row_view_user_torrent' => "Visualizza Cronologia Torrent Utente", + 'text_view_user_torrent_note' => ". Visualizza la cronologia dei torrent dell'utente, ad esempio i torrent scaricati.
    Valido solo quando l'impostazione dell'utente per il livello di privacy non è 'forte'", + 'row_general_profile_management' => "Gestione Profilo Generale Utente", + 'text_general_profile_management_note' => ". Cambia il profilo dell'utente, esclusi quelli cruciali per esempio email, nome utente, importo caricato e scaricato, bonus", + 'row_crucial_profile_management' => "Gestione Profilo Cruciale Dell'Utente", + 'text_crucial_profile_management_note' => ". Cambiare il profilo cruciale dell'utente, escludendo la donazione (solo ", + 'text_can_manage_donation' => " può gestire la donazione).", + 'row_upload_subtitle' => "Carica sottotitoli", + 'text_upload_subtitle_note' => ". Carica sottotitoli per torrent", + 'row_delete_own_subtitle' => "Elimina sottotitolo", + 'text_delete_own_subtitle_note' => ". Eliminare i sottotitoli caricati da se stessi", + 'row_subtitle_management' => "Gestione Sottotitoli", + 'text_subtitle_management' => ". Eliminare qualsiasi sottotitolo", + 'row_update_external_info' => "Aggiorna Informazioni Esterne", + 'text_update_external_info_note' => ". Aggiornamento informazioni esterne obsolete, ad esempio informazioni IMDb", + 'row_view_anonymous' => "Visualizza Anonimo", + 'text_view_anonymous_note' => ". Vedi chi è anonimo", + 'row_be_anonymous' => "Sii Anonimo", + 'text_be_anonymous_note' => ". Carica torrent, sottotitoli in modo anonimo", + 'row_add_offer' => "Aggiungi Offerta", + 'text_add_offer_note' => ". Aggiungi offerte da caricare", + 'row_offer_management' => "Gestione Offerta", + 'text_offer_management_note' => ". Permette, modifica, cancella offerta", + 'row_upload_torrent' => "Carica Torrent", + 'text_upload_torrent_note' => ". Carica torrent nella sezione Torrent", + 'row_upload_special_torrent' => "Carica Torrent Speciale", + 'text_upload_special_torrent_note' => ". Carica torrent in sezione speciale", + 'row_view_special_torrent' => 'Visualizza Torrent Speciale', + 'text_view_special_torrent_note' => 'Visualizza torrent nella sezione Speciale', + 'row_move_torrent' => "Sposta Torrent", + 'text_move_torrent_note' => ". Sposta i torrent tra le sezioni", + 'row_chronicle_management' => "Gestione Cronache", + 'text_chronicle_management_note' => ". Aggiungi, modifica, elimina cronaca.", + 'row_view_invite' => "Visualizza Invito", + 'text_view_invite_note' => ". Visualizza la cronologia degli inviti dell'utente.", + 'row_buy_invites' => "Acquista Inviti", + 'text_buy_invites_note' => ". Compra inviti al centro bonus.", + 'row_see_banned_torrents' => "Vedi Torrent Bannati", + 'text_see_banned_torrents_note' => ". Vedere e scaricare i torrent bannati.", + 'row_vote_against_offers' => "Vota Contro Le Offerte", + 'text_vote_against_offers_note' => ". Vota contro le offerte.", + 'row_allow_userbar' => "Consenti Barra Utente", + 'text_allow_userbar_note' => ". Prendi la sua barra utente.", + 'head_basic_settings' => "Impostazioni Di Base", + 'row_site_name' => "Nome Sito", + 'text_site_name_note' => "Nome Del Sito.", + 'row_base_url' => "Url Base", + 'text_it_should_be' => "Dovrebbe essere: ", + 'text_base_url_note' => ". NO trailing slash (/) alla fine!", + 'row_announce_url' => "Annunciare URL", + 'row_mysql_host' => "Host MySQL", + 'text_mysql_host_note' => "Inserisci il tuo host MySQL. Se MySQL viene eseguito sullo stesso host del server HTTP, inserisci 'localhost'. Altrimenti inserisci l'indirizzo IP del server su cui viene eseguito MySQL.", + 'row_mysql_user' => "Utente MySQL", + 'text_mysql_user_note' => "Inserisci il tuo nome utente MySQL. L'utente predefinito è 'root'. Tuttavia, per motivi di sicurezza, potresti prendere in considerazione la creazione di un altro utente MySQL per questo sito", + 'row_mysql_password' => "Password MySQL", + 'text_mysql_password_note' => "Per motivi di sicurezza, la password MySQL attuale non è mostrata qui. Devi inserire la tua password MySQL ogni volta che cambi le Impostazioni di base.", + 'row_mysql_database_name' => "Nome Database MySQL", + 'row_mysql_database_port' => "Porta Database MySQL", + 'text_mysql_database_name_note' => "Inserisci il nome del database del tuo tracker.", + 'text_mysql_database_port_note' => "Inserisci la porta del database del tuo tracker.", + 'head_code_settings' => "Impostazioni Codice", + 'row_main_version' => "Versione Principale", + 'text_main_version_note' => "La versione principale del codice.", + 'row_sub_version' => "Sub Versione", + 'text_sub_version_note' => "Il codice sotto versione", + 'row_release_date' => "Data di rilascio", + 'text_release_date_note' => "Il formato dell'ora è AAAA-MM-GD. Il codice della data è stato rilasciato.", + 'row_authorize_to' => "Autorizza a", + 'text_authorize_to_note' => "Il sito o le persone a cui il codice è autorizzato.", + 'row_authorization_type' => "Tipo Di Autorizzazione", + 'text_free' => "Gratis", + 'text_commercial' => "Commerciale", + 'row_web_site' => "Web Site", + 'text_web_site_note' => "L'URL del sito di ", + 'text_web_site_note_two' => ".", + 'row_email' => "Email", + 'text_email_note_one' => "L'indirizzo email di contatto di ", + 'text_email_note_two' => ".", + 'row_msn' => "MSN", + 'text_msn_note_one' => "Il contatto MSN di ", + 'text_msn_note_two' => ".", + 'row_qq' => "QQ", + 'text_qq_note_one' => "Il QQ di contatto di ", + 'text_qq_note_two' => ".", + 'row_telephone' => "Telefono", + 'text_telephone_note_one' => "Il telefono di contatto di ", + 'text_telephone_note_two' => ".", + 'head_bonus_settings' => "Impostazioni Bonus", + 'text_bonus_by_seeding' => "Ottieni un bonus seminando", + 'row_donor_gets_double' => "Donatore Ottiene Doppio", + 'text_donor_gets' => "Il donatore ottiene sempre ", + 'text_times_as_many' => " volte il maggior numero di punti bonus per la semina. Predefinito '2'. Impostalo su '0' per trattare i donatori come utenti comuni.", + 'row_basic_seeding_bonus' => "Bonus Di Semina Base", + 'text_user_would_get' => "L'utente otterrebbe ", + 'text_bonus_points' => " punti bonus per ogni torrente che sta piantando, al massimo ", + 'text_torrents_default' => " torrent. Default '1', '7'. Imposta punti bonus a '0' per disabilitare la regola.", + 'row_seeding_formula' => "Formula Di Semina", + 'text_bonus_formula_one' => "Il numero di punti karma guadagnati per ora è dato dalla seguente formula", + 'text_where' => "dove", + 'text_bonus_formula_two' => "A è una variabile intermedia
  • Ti è la iTime Alive (TA), i. . tempo trascorso dal caricamento del torrent, in settimane", + 'text_bonus_formula_three' => "T0 è un parametro. T0= ", + 'text_bonus_formula_four' => ". Predefinito '4'", + 'text_bonus_formula_five' => "Si è la dimensione del torrent i, in GB", + 'text_bonus_formula_six' => "Ni è il numero di semenzai attuali del torrent i
  • N0 è un parametro. N0= ", + 'text_bonus_formula_zero_bonus_factor' => "Wi è il peso del torrent i. Il valore predefinito è 1, zero torrent è ", + 'text_bonus_formula_seven' => ". Predefinito '7'", + 'text_bonus_formula_eight' => "B è il numero di punti karma guadagnati seminando in un'ora", + 'text_bonus_formula_nine' => "B0 è un parametro, che standard per i punti bonus massimi per ora che un utente può ottenere da semina. B0= ", + 'text_bonus_formula_ten' => ". Predefinito '100'", + 'text_bonus_formula_eleven' => "L è un parametro. L= ", + 'text_bonus_formula_twelve' => ". Predefinito '300'", + 'text_misc_ways_get_bonus' => "Vari modi per ottenere bonus", + 'row_uploading_torrent' => "Caricamento torrent", + 'text_uploading_torrent_note' => " punti bonus per il caricamento di un nuovo torrent. Predefinito '15'.", + 'row_uploading_subtitle' => "Caricamento sottotitoli", + 'text_uploading_subtitle_note' => " punti bonus per il caricamento di un nuovo sottotitolo. Predefinito '5'.", + 'row_starting_topic' => "Iniziare l'argomento", + 'text_starting_topic_note' => " punti bonus per iniziare un nuovo topic nei forum. Predefinito '2'.", + 'row_making_post' => "Fare post", + 'text_making_post_note' => " punti bonus per creare un post nei forum. Predefinito '1'.", + 'row_adding_comment' => "Aggiunta commento", + 'text_adding_comment_note' => " punti bonus per l'aggiunta di un commento per i torrent, offerte. Predefinito '1'.", + 'row_voting_on_poll' => "Votazione sul sondaggio", + 'text_voting_on_poll_note' => " punti bonus per la votazione su un sondaggio. Predefinito '1'.", + 'row_voting_on_offer' => "Offerta di voto", + 'text_voting_on_offer_note' => " punti bonus per votare su un'offerta. Predefinito '1'.", + 'row_voting_on_funbox' => "Votazione sul funbox", + 'text_voting_on_funbox_note' => " punti bonus per votare su una roba funbox. Predefinito '1'.", + 'row_saying_thanks' => "Dire grazie", + 'text_giver_and_receiver_get' => "Grazie donatore e ricevitore rispettivamente otterrebbe ", + 'text_saying_thanks_and' => " e ", + 'text_saying_thanks_default' => " punti bonus. Predefinito '0.5', '0'.", + 'row_funbox_stuff_reward' => "Ricompensa roba Funbox", + 'text_funbox_stuff_reward_note' => " punti bonus per la pubblicazione di roba funbox che è valutato 'divertente'. Predefinito '5'.", + 'text_things_cost_bonus' => "Cose che costano bonus", + 'row_one_gb_credit' => "1.0 GB di credito in caricamento", + 'text_it_costs_user' => "Costi utente ", + 'text_one_gb_credit_note' => " punti bonus da scambiare per 1.0 GB di credito di caricamento. Predefinito '300'.", + 'row_five_gb_credit' => "5.0 GB credito di caricamento", + 'text_five_gb_credit_note' => " punti bonus da scambiare per 5.0 GB di credito di caricamento. Default '800'.", + 'row_ten_gb_credit' => "10.0 GB di credito in caricamento", + 'text_ten_gb_credit_note' => " punti bonus da scambiare per 10.0 GB di credito di caricamento. Predefinito '1200'.", + 'row_ratio_limit' => "Limite rapporto", + 'text_user_with_ratio' => "Utente con rapporto sopra ", + 'text_uploaded_amount_above' => " e l'importo caricato sopra ", + 'text_ratio_limit_default' => " GB non può scambiarsi per caricare il credito. Predefinito '6', '50'. Imposta il rapporto a '0' per disabilitare il limite.", + 'row_buy_an_invite' => "Acquista un invito", + 'text_buy_an_invite_note' => " punti bonus per ottenere un invito. Predefinito '1000'.Imposta il rapporto '0' per disabilitare l'acquisto.", + 'row_custom_title' => "Titolo personalizzato", + 'text_custom_title_note' => " punti bonus per personalizzare il suo titolo. Predefinito '5000'.", + 'row_vip_status' => "Stato VIP", + 'text_vip_status_note' => " punti bonus per acquistare lo stato VIP per un mese. Predefinito '8000'.", + 'row_allow_giving_bonus_gift' => "Consenti di regalare bonus", + 'text_giving_bonus_gift_note' => "Permetti agli utenti di dare un regalo bonus l'uno all'altro. Predefinito 'sì'.", + 'head_account_settings' => "Impostazioni Account", + 'row_never_delete' => "Non disattivare mai", + 'text_delete_inactive_accounts' => "Disabilita Account Utente Inattivi", + 'text_never_delete' => " o superiore non sarebbe mai disabilitato. Predefinito ", + 'row_never_delete_if_packed' => "Non disabilitare mai se impacchettato", + 'text_never_delete_if_packed' => " o superiore non sarà mai disabilitato se imballato. Predefinito ", + 'row_delete_packed' => "Disabilita account impacchettati", + 'text_delete_packed_note_one' => "Gli account imballati sarebbero disabilitati se gli utenti non hanno effettuato l'accesso per più di ", + 'text_delete_packed_note_two' => " giorni di fila. Predefinito '400', impostalo a '0' per disabilitare la regola.", + 'row_delete_unpacked' => "Disabilita gli account non imballati", + 'text_delete_unpacked_note_one' => "Gli account non imballati sarebbero disabilitati se gli utenti non hanno effettuato l'accesso per più di ", + 'text_delete_unpacked_note_two' => " giorni di fila. Predefinito '150', impostalo a '0' per disabilitare la regola.", + 'row_delete_no_transfer' => "Disabilita account senza trasferimento dati", + 'text_delete_transfer_note_one' => "Gli account con entrambi caricati e scaricati essendo 0 verrebbero eliminati se gli utenti non hanno effettuato l'accesso per più di ", + 'text_delete_transfer_note_two' => " giorni consecutivi, o gli utenti sono stati registrati per più di ", + 'text_delete_transfer_note_three' => " days. Default '60', '0'.
    NOTA: Due regole funzionano seperately. Impostando una di queste a '0' SOLO disabilita una regola.", + 'text_user_promotion_demotion' => "Promozione e Demozione dell'Utente", + 'row_ban_peasant_one' => "Banna ", + 'row_ban_peasant_two' => "", + 'text_ban_peasant_note_one' => " sarebbe vietato se non promosso entro ", + 'text_ban_peasant_note_two' => " giorni. Predefinito '30', impostalo a '0' per bandirli immediatamente.", + 'row_demoted_to_peasant_one' => "Richiedi a ", + 'row_demoted_to_peasant_two' => "", + 'text_demoted_peasant_note_one' => "Gli utenti sarebbero degradati a ", + 'text_demoted_peasant_note_two' => " in una delle seguenti condizioni: ", + 'text_downloaded_amount_larger_than' => "Quantità scaricata maggiore di ", + 'text_and_ratio_below' => " GB e rapporto inferiore ", + 'text_demote_peasant_default_one' => ". Predefinito '50', '0.4'.", + 'text_demote_peasant_default_two' => ". Predefinito '100', '0.5'.", + 'text_demote_peasant_default_three' => ". Predefinito '200', '0.6'.", + 'text_demote_peasant_default_four' => ". Predefinito '400', '0.7'.", + 'text_demote_peasant_default_five' => ". Predefinito '800', '0.8'.", + 'text_demote_peasant_note' => "NOTA: NON cambia l'ordine ascendente degli importi scaricati. Imposta l'importo scaricato a '0' per disabilitare la regola pertinente.", + 'row_promote_to_one' => "Promuovi a ", + 'row_promote_to_two' => "", + 'text_member_longer_than' => "Utenti, che sono stati membri più a lungo di ", + 'text_downloaded_more_than' => ", e scaricato più di ", + 'text_with_ratio_above' => "GB, con rapporto sopra ", + 'text_seed_points_more_than' => 'settimana, punti del seme sopra', + 'text_be_promoted_to' => ", sarebbe promosso a ", + 'text_promote_to_default_one' => ". Predefinito ", + 'text_promote_to_default_two' => ". Predefinito ", + 'text_demote_with_ratio_below' => "Tuttavia, gli utenti sarebbero declassati se il suo rapporto scende sotto ", + 'head_torrent_settings' => "Impostazioni Torrent", + 'row_promotion_rules' => "Regole Promozione", + 'text_promotion_rules_note' => "Abilita alcune regole di promozione automatica. Codice brutto in questo momento. È necessario modificare più tardi.", + 'row_random_promotion' => "Promozione Casuale", + 'text_random_promotion_note_one' => "Torrent promossi in modo casuale dal sistema al momento del caricamento.", + 'text_halfleech_chance_becoming' => "% possibilità di diventare 50% Leech. Predefinito '5'.", + 'text_free_chance_becoming' => "% possibilità di diventare Leechgratis. Default '2'.", + 'text_twoup_chance_becoming' => "% possibilità di diventare 2X Up. Predefinito '2'.", + 'text_freetwoup_chance_becoming' => "% possibilità di diventare Leech gratuito e 2X su. Predefinito '1'.", + 'text_twouphalfleech_chance_becoming' => "% possibilità di diventare 2x su e 50% giù. Predefinito '0'.", + 'text_random_promotion_note_two' => "Imposta valori a '0' per disabilitare le regole.", + 'row_large_torrent_promotion' => "Promozione Torrent Grande", + 'text_torrent_larger_than' => "Torrent più grandi di ", + 'text_gb_promoted_to' => " GB sarà automaticamente promosso a ", + 'text_by_system_upon_uploading' => " dal sistema al momento del caricamento. ", + 'text_large_torrent_promotion_note' => "Predefinito '20', 'free'. Imposta la dimensione del torrent a '0' per disabilitare la regola.", + 'row_promotion_timeout' => "Timeout Promozione", + 'text_promotion_timeout_note_one' => "La promozione per i torrent scadrà dopo qualche tempo.", + 'text_halfleech_will_become' => "50% Leech diventerà ", + 'text_after' => " dopo ", + 'text_halfleech_timeout_default' => " giorni. Predefinito 'normale', '150'.", + 'text_free_will_become' => "Free Leech diventerà ", + 'text_free_timeout_default' => " giorni. Predefinito 'normale', '60'.", + 'text_twoup_will_become' => "2X Up diventerà ", + 'text_twoup_timeout_default' => " giorni. Predefinito 'normale', '60'.", + 'text_freetwoup_will_become' => "Free Leech e 2X up diventerà ", + 'text_freetwoup_timeout_default' => " giorni. Predefinito 'normale', '30'.", + 'text_halfleechtwoup_will_become' => "50% Leech e 2X up diventeranno ", + 'text_halfleechtwoup_timeout_default' => " giorni. Predefinito 'normale', '30'.", + 'text_normal_will_become' => "Normale diventerà ", + 'text_normal_timeout_default' => " giorni. Predefinito 'normale', '0'.", + 'text_promotion_timeout_note_two' => "Imposta giorni a '0' per mantenere la promozione per sempre.", + 'row_auto_pick_hot' => "Scegli Automaticamente Caldo", + 'text_torrents_uploaded_within' => "Torrent caricati all'interno ", + 'text_days_with_more_than' => " giorni con più di ", + 'text_be_picked_as_hot' => " i semi saranno selezionati automaticamente come Hot.", + 'text_auto_pick_hot_default' => " Predefinito '7', '10'. Imposta i giorni a '0' per disabilitarlo.", + 'row_uploader_get_double' => "Caricatore Ottieni Doppio", + 'text_torrent_uploader_gets' => "Il caricatore torrent ottiene sempre ", + 'text_times_uploading_credit' => " volte più di caricare il credito. ", + 'text_uploader_get_double_default' => "Predefinito '1'. Impostalo a '1' per trattare il caricatore torrent normalmente.", + 'row_delete_dead_torrents' => "Elimina torrent morti", + 'text_torrents_being_dead_for' => "Torrent che sono morti per ", + 'text_days_be_deleted' => " i giorni in una riga verranno automaticamente eliminati. Predefinito '0'. Impostalo a '0' disabilita la regola.", + 'row_delete_dead_torrents_note' => "ATTENZIONE: Una volta eliminati, i torrent non sono recuperabili. Ricordati di disabilitare questa regola quando il tuo sito è esaurito per molto tempo.", + 'head_main_settings' => "Impostazioni Principali", + 'row_site_online' => "Site online", + 'text_site_online_note' => "Predefinito 'sì'. Vuoi disattivare il tuo sito durante l'esecuzione di aggiornamenti o altri tipi di manutenzione? Si prega di notare: Gli amministratori saranno ancora in grado di vedere il sito.", + 'row_enable_invite_system' => "Abilita Sistema Di Invito", + 'text_invite_system_note' => "Predefinito 'sì'. Consenti le iscrizioni tramite sistema di invito.", + 'row_initial_uploading_amount' => "Quantità Di Caricamento Iniziale", + 'text_initial_uploading_amount_note' => "Quanti crediti di caricamento (in Byte, cioè 1073741824 = 1GB) devono essere dati a ogni utente al momento della registrazione?", + 'row_initial_invites' => "Numero iniziale di inviti", + 'text_initial_invites_note' => "Quanti inviti devono essere dati a ogni utente al momento della registrazione? Predefinito '0'.", + 'row_invite_timeout' => "Timeout Invito", + 'text_invite_timeout_note' => "In giorni. Elimina il codice di invito dopo X giorni che non hanno risposto alla richiesta di invito. Predefinito '7'.", + 'row_enable_registration_system' => "Abilita Sistema Di Registrazione", + 'row_allow_registrations' => "Consenti le registrazioni aperte. Predefinito 'sì'.", + 'row_verification_type' => "Tipo di verifica", + 'text_email' => "Email", + 'text_admin' => "Amministratore", + 'text_automatically' => "Automaticamente", + 'text_verification_type_note' => "EMAIL: e-mail di conferma inviata. AMMIN: Manuale attivato. AUTOMATIC: Attiva utente dopo la registrazione.", + 'row_enable_wait_system' => "Abilita Il Sistema Di Attesa", + 'text_wait_system_note' => "Abilita o disabilita il sistema di attesa (vedi FAQ).", + 'row_enable_max_slots_system' => "Abilita Sistema Max SLots", + 'text_max_slots_system_note' => "Default 'no'. Abilita o disabilita il massimo download simultanei (AKA Max Slots) (vedi FAQ).", + 'row_show_polls' => "Mostra Sondaggi", + 'text_show_polls_note' => "Default 'sì'. Mostra il sistema POLL nella pagina principale.", + 'row_show_stats' => "Mostra Statistiche", + 'text_show_stats_note' => "Predefinito 'sì'. Mostra il sistema STATS nella pagina principale.", + 'row_show_last_posts' => "Mostra gli ultimi x post del Forum", + 'text_show_last_posts_note' => "Default 'no'. Mostra gli ultimi x Post del Forum nella pagina principale.", + 'row_show_last_torrents' => "Mostra gli ultimi x Torrent", + 'text_show_last_torrents_note' => "Default 'no'. Mostra gli ultimi x torrent nella pagina principale.", + 'row_show_server_load' => "Mostra Carico Server", + 'text_show_server_load_note' => "Default 'sì'. Mostra il caricamento del server nella pagina principale.", + 'row_show_forum_stats' => "Mostra statistiche forum", + 'text_show_forum_stats_note' => "Default 'sì'. Mostra le statistiche del forum nella pagina del forum.", + 'row_show_hot' => "Mostra Hot", + 'text_show_hot_note' => "Predefinito 'sì'. Mostra le risorse hot nella pagina principale. Le risorse hot vengono selezionate automaticamente dal sistema o manualmente dai membri dello staff.", + 'row_show_classic' => "Mostra Classico", + 'text_show_classic_note' => "Default 'no'. Mostra le risorse classiche nella pagina principale. Solo moderatori designati o superiori possono scegliere le risorse classiche.", + 'row_enable_imdb_system' => "Abilita sistema IMDb", + 'text_imdb_system_note' => "Impostazione predefinita 'sì'. Informazioni IMDb su scala di sistema.", + 'row_enable_pt_gen_system' => 'Abilita sistema PT-Gen', + 'text_enable_pt_gen_system_note' => "Default 'no'. Impostazioni informazioni PT-Gen a livello di sistema.", + 'row_pt_gen_api_point' => "PT-Gen api point", + 'text_pt_gen_api_point_note' => "Predefinito '', quando richiesto, riferimento al documento per costruire te stesso", + 'row_enable_school_system' => "Abilita sistema scolastico", + 'text_school_system_note' => "Predefinito 'no'. NON abilitarlo a meno che tu non sai cosa stai facendo!", + 'row_restrict_email_domain' => "Limita Dominio Email", + 'text_restrict_email_domain_note' => "Default 'no'. Impostalo a 'sì' per consentire solo la registrazione di alcuni domini di posta elettronica. Vedi qui.", + 'row_show_shoutbox' => "Mostra Shoutbox", + 'text_show_shoutbox_note' => "Default 'sì'. Mostra shoutbox nella pagina principale.", + 'row_show_funbox' => "Show Funbox", + 'text_show_funbox_note' => "Default 'no'. Mostra funbox nella pagina principale.", + 'row_enable_offer_section' => "Abilita Sezione Offerta", + 'text_offer_section_note' => "Default 'sì'. Abilita o disabilita la sezione offerta.", + 'row_show_donation' => "Abilita Donazione", + 'text_show_donation_note' => "Mostra donazioni e donazioni top dieci.", + 'row_show_special_section' => "Abilita Sezione Speciale", + 'text_show_special_section_note' => "Predefinito 'no'. NON abilitarlo a meno che tu non sai cosa stai facendo!", + 'row_weekend_free_uploading' => "Caricamento gratuito nel fine settimana", + 'text_weekend_free_uploading_note' => "Default 'no'. Impostare a 'sì' per consentire a tutti gli utenti di caricare torrent al fine settimana (da sabato 12:00 a domenica 23:59).", + 'row_enable_helpbox' => "Abilita Helpbox", + 'text_helpbox_note' => "Default 'no'. Impostalo su 'no' per proibire agli ospiti di gridare messaggi.", + 'row_enable_bitbucket' => "Abilita Bitbucket", + 'text_bitbucket_note' => "Default 'sì'. Impostalo su 'no' per vietare agli utenti di caricare avatar sul tracker.", + 'row_enable_small_description' => "Abilita Decriptaggio Piccolo", + 'text_small_description_note' => "Default 'sì'. Mostra sotto il titolo del torrent sulla pagina dei Torrent.", + 'row_ptshow_naming_style' => "Stile del nome PTShow", + 'text_ptshow_naming_style_note' => "Default 'no'. Nel formato di [MM.DD.YY][nome originale][nome cinese]. NON abilitalo a meno che tu non sappia cosa stai facendo!", + 'row_use_external_forum' => "Usa forum esterno", + 'text_use_external_forum_note' => "Default 'no'. Impostalo a 'sì' per usare forum esterno invece di uno interno.", + 'row_external_forum_url' => "Url forum esterno", + 'text_external_forum_url_note' => "Dovrebbe essere come http://www.cc98.org", + 'row_torrents_category_mode' => "Modalità categoria della sezione Torrent", + 'text_torrents_category_mode_note' => "Questo cambia la modalità categoria alla pagina Torrent.", + 'row_special_category_mode' => "Modalità categoria sezione speciale", + 'text_special_category_mode_note' => "Questo cambia la modalità categoria nella sezione speciale.", + 'row_default_site_language' => "Lingua Predefinita Del Sito", + 'text_default_site_language_note' => "Questo cambia la lingua predefinita nella pagina di login.", + 'row_default_stylesheet' => "Default Stylesheet", + 'text_default_stylesheet_note' => "Gli utenti registrati userebbero questo foglio di stile.", + 'row_max_torrent_size' => "Dimensione Massima Del Torrent", + 'text_max_torrent_size_note' => " In byte. Predefinito 1048576 (cioè 1 MB)", + 'row_announce_interval' => "Intervallo Di Annuncio", + 'text_announce_interval_note_one' => "In pochi secondi. L'intervallo di annuncio il tracker chiede ai client BitTorrent di aggiornare le informazioni. However, in pratica l'intervallo di annuncio può essere diverso dal momento che i client BitTorrent potrebbero ignorare questo messaggio o gli utenti possono scegliere di collegare il tracker manualmente.", + 'text_announce_default' => "Predefinito: ", + 'text_announce_default_default' => "Predefinito '1800', cioè 30 minuti", + 'text_for_torrents_older_than' => "Per torrent più vecchi di ", + 'text_days' => " giorni: ", + 'text_announce_two_default' => "Predefinito '7', '2700' (cioè 45 minuti). Impostare i giorni '0' per disabilitare la regola.", + 'text_announce_three_default' => "Predefinito '30', '3600' (cioè 60 minuti). Impostare i giorni '0' per disabilitare la regola.", + 'text_announce_interval_note_two' => "NOTE: Do NOT change the ascendant order of the times!
    Shorter interval means more accurate of peers' information-updating and HEAVIER tracker load.", + 'row_cleanup_interval' => "Intervallo Di Pulizia Automatica", + 'text_cleanup_interval_note_one' => "Pulizia (promozione utente, demotione, aggiunta di bonus semina, ecc.) ogni XXX secondi.", + 'text_priority_one' => "Priorità 1: ", + 'text_priority_one_note' => "Aggiorna lo stato peer; Calcola il bonus di semina. Predefinito '3600', cioè 60 minuti.", + 'text_priority_two' => "Priorità 2: ", + 'text_priority_two_note' => "Aggiorna la visibilità dei torrents. Predefinito '5400', cioè 90 minuti.", + 'text_priority_three' => "Priorità 3: ", + 'text_priority_three_note' => "Aggiorna il numero di semi, leecher, commenti per i torrent; Aggiorna il numero di post/topic del forum; Elimina le offerte che sono timeout; Scadere la promozione del torrent; Scegli automaticamente i torrent caldi. Predefinito '7200', cioè 2 ore.", + 'text_priority_four' => "Priorità 4: ", + 'text_priority_four_note' => "Elimina account non confermati, vecchi tentativi di login, codici di invito e codici immagine reg; Pulisci account utente (elimina quelli inattivi, fai promozione e demo account, banning, ecc. ; Post caricato immagine; Aggiorna il tempo totale di semina e sanguinamento degli utenti. Predefinito '86400', cioè 24 ore.", + 'text_priority_five' => "Priorità 5: ", + 'text_priority_five_note' => "Elimina i torrent che non esistono più; Blocca i vecchi argomenti del forum; Elimina gli elementi del report molto vecchi. Predefinito '1296000', cioè 15 giorni.", + 'text_cleanup_interval_note_two' => "NOTE: Do NOT change the ascendant order of the times!", + 'row_signup_timeout' => "Timeout Registrazione", + 'text_signup_timeout_note' => "In secondi. Elimina utenti non confermati dopo XXX secondi. Predefinito '259200', cioè 3 giorni.", + 'row_min_offer_votes' => "Voti Min. Offerta", + 'text_min_offer_votes_note' => "L'offerta diventa approvata quando i voti di supporto sono XXX più di opporsi ai voti. Predefinito '15'.", + 'row_offer_vote_timeout' => "Timeout Voto Offerta", + 'text_offer_vote_timeout_note' => "In secondi. Elimina le offerte se non votate dopo XXX secondi. Predefinito '259200', cioè 72 ore. Impostalo a '0' per disabilitare il timeout.", + 'row_offer_upload_timeout' => "Tempo Di Caricamento Offerta", + 'text_offer_upload_timeout_note' => "In pochi secondi. Elimina le offerte se non caricate dopo essere state votate per XXX secondi. Predefinito '86400', cioè 24 ore. Impostalo a '0' per disabilitare il timeout.", + 'row_max_subtitle_size' => "Dimensione Massima Sottotitoli", + 'text_max_subtitle_size_note' => "In byte. Dimensione massima dei sottotitoli consentita per essere caricata. Predefinito 3145728, cioè 3 MB. Impostalo a '0' per disabilitare il limite.", + 'row_posts_per_page' => "Messaggi predefiniti per pagina", + 'text_posts_per_page_note' => "Numero di post per pagina mostrati nell'argomento di un forum. Predefinito '10'.
    Nota che l'impostazione personale dell'utente sovrascriverebbe questo", + 'row_topics_per_page' => "Argomenti predefiniti per pagina", + 'text_topics_per_page_note' => "Numero di argomenti per pagina mostrati in un forum. Predefinito '20'.
    Nota che l'impostazione personale dell'utente sovrascriverebbe questo", + 'row_number_of_news' => "Numero di notizie", + 'text_number_of_news_note' => "Mostra XXX pezzi di notizie recenti sulla pagina principale. Predefinito '3'.", + 'row_torrent_dead_time' => "Max. Tempo Morto Torrent", + 'text_torrent_dead_time_note' => "In pochi secondi. Segna il torrent come morto dopo che non c'è cercatore per XXX secondi. Predefinito '21600', cioè 6 ore.", + 'row_max_users' => "Max. Utenti", + 'text_max_users' => "Ogni volta che questo limite è raggiunto, la registrazione sia gratis che su invito è disabilitata.", + 'row_https_announce_url' => "HTTPS Annunciare URL", + 'text_https_announce_url_note' => "Lascialo vuoto se usi lo stesso URL sia per HTTP che per HTTPS. Dovrebbe essere: ", + 'row_site_accountant_userid' => "Id Utente Cliente Sito", + 'text_site_accountant_userid_note' => "In numeri, ad esempio '1'. L'ID dell'utente a cui i donatori dovrebbero inviare un messaggio di donazione.", + 'row_alipay_account' => "Alipay Account", + 'text_alipal_account_note' => "L'account Alipay che usi per ricevere la donazione, ad esempio 'yourname@gmail.com'. Lascialo vuoto se non hai un account Alipay.", + 'row_paypal_account' => "Account PayPal", + 'text_paypal_account_note' => "L'account PayPal che usi per ricevere la donazione, ad esempio 'yourname@gmail.com'. Lascialo vuoto se non hai un account PayPal.", + 'row_site_email' => "Email Sito", + 'text_site_email_note' => "Indirizzo email del sito", + 'row_report_email' => "Segnala Email", + 'text_report_email_note' => "Segnala indirizzo email", + 'row_site_slogan' => "Slogan Sito", + 'text_site_slogan_note' => "Slogan Del Sito", + 'row_icp_license' => "Licenza ICP", + 'text_icp_license_note' => "Questo è un regime di licenze per i siti web gestiti cinesi. Lascialo in bianco se non ne hai uno.", + 'row_torrent_directory' => "Directory Torrent", + 'text_torrent_directory' => "Default 'torrents'. NO trailing slash (/) alla fine!", + 'row_bitbucket_directory' => "Directory Bitbucket", + 'text_bitbucket_directory_note' => "Default 'bitbucket'. NO trailing slash (/) alla fine!", + 'row_cache_directory' => "Cache Directory", + 'text_cache_directory_note' => "Cache predefinita. NO slash finale (/) alla fine!", + 'row_torrent_name_prefix' => "Prefisso Nome Torrent", + 'text_torrent_name_prefix_note' => "Aggiungi prefisso al nome del file torrent scaricato da questo sito. Predefinito '[Nexus]'. No finale punto (.) alla fine!", + 'row_peering_time_calculation' => "Seminare Tempo Di Inizio Di Perdita", + 'text_peering_time_calculation_note' => "Lascialo in bianco. È impostato per una ragione legacy.", + 'row_new_subtitle_id' => "Nuovo Id Sottotitoli", + 'text_new_subtitle_id_note' => "Basta tenerlo '0'. È impostato per motivi legacy.", + 'head_website_settings' => "Impostazioni Sito Web", + 'row_basic_settings' => "Impostazioni Di Base", + 'submit_basic_settings' => "Impostazioni Di Base", + 'text_basic_settings_note' => "Imposta le cose più basilari, nome del sito.", + 'row_main_settings' => "Impostazioni Principali", + 'submit_main_settings' => "Impostazioni Principali", + 'text_main_settings_note' => "Imposta cose varie sul tuo sito.", + 'row_smtp_settings' => "Impostazioni SMTP", + 'submit_smtp_settings' => "Impostazioni SMTP", + 'text_smtp_settings_note' => "Imposta il server email per SMTP.", + 'row_security_settings' => "Impostazioni Di Sicurezza", + 'submit_security_settings' => "Impostazioni Di Sicurezza", + 'text_security_settings_note' => "Proteggi il tuo tracker.", + 'row_authority_settings' => "Impostazioni Autorità", + 'submit_authority_settings' => "Impostazioni Autorità", + 'text_authority_settings_note' => "Controlla ciò che gli utenti di ogni classe possono fare.", + 'row_tweak_settings' => "Impostazioni Di Modifica", + 'submit_tweak_settings' => "Impostazioni Di Modifica", + 'text_tweak_settings_note' => "TWEAK il tracker.", + 'row_bonus_settings' => "Impostazioni Bonus", + 'submit_bonus_settings' => "Impostazioni Bonus", + 'text_bonus_settings_note' => "Configura come viene ottenuto e utilizzato il bonus.", + 'row_account_settings' => "Impostazioni Account", + 'submit_account_settings' => "Impostazioni Account", + 'text_account_settings_settings' => "Configura quando gli account utente sono promossi, degradati o eliminati.", + 'row_torrents_settings' => "Impostazioni Torrent", + 'submit_torrents_settings' => "Impostazioni Torrent", + 'text_torrents_settings_note' => "Configura promozione torrent, selezione, ecc.", + 'row_bots_settings' => "Impostazioni Bot", + 'submit_bots_settings' => "Impostazioni Bot", + 'text_bots_settings_note' => "Configura Bots. NON tocca questo a meno che non sai cosa stai facendo!", + 'row_code_settings' => "Impostazioni Codice", + 'submit_code_settings' => "Impostazioni Codice", + 'text_code_settings_note' => "Configura la versione del codice. NON tocca questo a meno che non sai cosa stai facendo.", + 'text_smtp_default' => "Predefinito (Usa la funzione predefinita PHP Mail)", + 'text_smtp_advanced' => "Avanzato (utilizza la funzione PHP Mail predefinita con le intestazioni EXTRA. Questo aiuta a evitare i filtri spam)", + 'text_smtp_external' => "Esterno (utilizza un server SMTP esterno)", + 'text_setting_for_advanced_type' => "Impostazioni per Tipo Avanzato", + 'row_smtp_host' => "Host SMTP", + 'text_smtp_host_note' => "Default: 'localhost'", + 'row_smtp_port' => "Porta SMTP", + 'text_smtp_port_note' => "Predefinito: 25", + 'row_smtp_sendmail_from' => "SMTP sendmail da", + 'text_smtp_sendmail_from_note' => "Predefinito: ", + 'row_smtp_sendmail_path' => "Percorso Sendmail", + 'text_smtp_sendmail_path_note' => "Configurare il proprio sendmail_path modificando php.ini", + 'text_setting_for_external_type' => "Impostazioni per tipo esterno", + 'row_outgoing_mail_address' => "Indirizzo email in uscita (SMTP)", + 'row_outgoing_mail_port' => "Porta posta in uscita (SMTP)", + 'row_outgoing_mail_encryption' => "Crittografia della posta in uscita (SMTP)", + 'text_outgoing_mail_address_note' => "suggerimento: smtp.yourisp.com", + 'text_outgoing_mail_port_note' => "suggerimento: 25", + 'row_smtp_account_name' => "Nome Account", + 'text_smtp_account_name_note' => "suggerimento: tuonome@yourisp.com", + 'row_smtp_account_password' => "Password Account", + 'text_smtp_account_password_note' => "suggerimento: la tua password va qui", + 'text_mail_test_note' => "Come posso testare la posta php? È semplice facile: Clicca ", + 'text_here' => "Qui", + 'std_error' => "Errore", + 'std_mysql_connect_error' => "Impossibile connettersi a MySQL. Controlla le impostazioni. ", + 'row_enable_location' => "Abilita posizione", + 'text_enable_location_note' => "Default 'no'. Mostra la posizione geografica dell'utente in base al suo IP. Dovresti mantenere questa disabilitata a meno che tu non abbia importato un database IP.", + 'row_torrents_per_page' => "Torrent per pagina", + 'text_torrents_per_page_note' => "Numero di torrent per pagina mostrati sulla pagina dei torrent. Predefinito '50'.
    Nota che l'impostazione personale dell'utente sovrascriverebbe questo", + 'row_title_keywords' => "Parole Chiave Titolo", + 'text_title_keywords_note' => "Mostra nel titolo del documento. Queste parole chiave aiutano i motori di ricerca a trovare il tuo sito. Separare parecchie parole chiave con ' ', e. . 'BitTorrent Download Movie'. Lascialo vuoto se vuoi mantenere un titolo pulito.", + 'row_meta_keywords' => "Meta Keywords", + 'text_meta_keywords_note' => "Mostra nella testa del documento. Definisce le parole chiave per descrivere il tuo sito. Separare parecchie parole chiave con ',', ad esempio 'BitTorrent, Download, Movie'.", + 'row_meta_description' => "Meta Description", + 'text_meta_description_note' => "Mostra nella testa del documento. Definisce una descrizione del tuo sito.", + 'row_bonus_gift_tax' => "Bonus tassa regalo", + 'text_system_charges' => "Il sistema carica il ricevitore bonus ", + 'text_bonus_points_plus' => " punti bonus + ", + 'text_bonus_gift_tax_note' => "% dell'importo trasferito come imposta. Ad esempio, se i valori sono impostati a '5', '10', il ricevitore ottiene solo 85 punti bonus quando il donatore invia 100 punti bonus. Predefinito '5', '10'.
    NOTA: Le due regole funzionano separatamente. Devi impostare entrambi i valori a '0' per disabilitare le tasse.", + 'row_see_sql_debug' => "Vedi debug", + 'text_allow' => "Consenti ", + 'text_see_sql_list' => " o superiore per vedere le informazioni di debug (SQL query list in fondo alla pagina e le informazioni del rapporto PHP). Predefinito ", + 'text_smtp_none' => "Nessuno (selezionando questo disabiliterà completamente l'invio di email)", + 'row_attachment_settings' => "Impostazioni Allegato", + 'submit_attachment_settings' => "Impostazioni Allegato", + 'text_attachment_settings_note' => "Configurare gli allegati.", + 'head_attachment_settings' => "Impostazioni Allegato", + 'row_enable_attachment' => "Abilita allegato", + 'text_enable_attachment_note' => "Impostazione globale degli allegati. Quando impostato su 'no', nessuno può caricare alcun allegato.", + 'row_save_directory' => "Directory di salvataggio", + 'row_http_directory' => "Percorso HTTP per gli allegati", + 'text_http_directory_note' => "Potrebbe essere un percorso relativo o un percorso assoluto. NO slash finale (/) alla fine! 'allegati' predefiniti.", + 'row_attachment_authority' => "Autorità di omologazione", + 'text_can_upload_at_most' => " o superiore può caricare al massimo ", + 'text_file_size_below' => " accessori in 24 ore di dimensioni non superiori a ", + 'text_with_extension_name' => "KB e la cui estensione per il nome file è tra ", + 'text_authority_default_one_one' => ". Predefinito ", + 'text_authority_default_one_two' => ", '5', '256', 'jpeg, jpg, png, gif'.", + 'text_authority_default_two_one' => ". Predefinito ", + 'text_authority_default_two_two' => ", '10', '512', 'torrent, zip, rar, 7z, gzip, gz'.", + 'text_authority_default_three_one' => ". Predefinito ", + 'text_authority_default_three_two' => ", '20', '1024', 'mp3, oga, ogg, flv'.", + 'text_authority_default_four_one' => ". Predefinito ", + 'text_authority_default_four_two' => ", '500', '2048', ''.", + 'text_attachment_authority_note_two' => "NOTA:
    • Do NOT modificare l'ordine ascendente delle classi utente, limite di numero di file o limite di dimensione file.
    • Imposta la dimensione del file a '0', il numero di file limite a '0' e le estensioni di file consentite a ''(i. . vuoto) a disabilita la regola relativa .
    • Le classi superiori ereditano l'autorità delle classi inferiori, quindi non c'è bisogno di aggiungere estensioni di file consentite ad ogni regola.
    • Separare diverse estensioni di file con ','.
    • Non importa come sono le impostazioni, nessuno può caricare file la cui dimensione è maggiore di 5 MB o il cui nome di estensione è tra 'exe, com, bat, msi'.
    ", + 'text_attachment_authority_note_one' => "Definire l'autorità dell'utente di caricare gli allegati in base alla sua classe.", + 'text_save_directory_note' => "La directory in cui si salvano gli allegati. Assicurati di aver configurato correttamente le autorizzazioni di accesso alla directory (777). NO trailing slash (/) alla fine! Default './attachments'.", + 'row_save_directory_type' => "Salva allegati in", + 'text_one_directory' => "Una directory per tutti i file", + 'text_directories_by_monthes' => "Directory denominate dopo i mesi di caricamento", + 'text_directories_by_days' => "Directory denominate dopo i giorni di caricamento", + 'text_save_directory_type_note' => "L'impostazione modificata non influisce sugli allegati già caricati. Default 'Directory nominate dopo i mesi caricati'.", + 'row_image_thumbnails' => "Image thumbnail", + 'text_no_thumbnail' => "1. Nessuna miniatura. Salva solo l'immagine originale.", + 'text_create_thumbnail' => "2. Crea una miniatura se l'immagine è grande e salva sia la miniatura che l'immagine originale.", + 'text_resize_big_image' => "3. Ridimensiona l'immagine se è grande e salva solo la miniatura.", + 'text_image_thumbnail_note' => "Predefinito '2'.", + 'row_thumbnail_quality' => "Qualità miniatura", + 'text_thumbnail_quality_note' => "Imposta la qualità della miniatura. Il valore deve essere un intero compreso tra 1 e 100. Il numero maggiore, la qualità superiore e la dimensione del file più grande. Predefinito '80'.", + 'row_thumbnail_size' => "Thumbnail size", + 'text_thumbnail_size_note' => "Larghezza * altezza, in pixel. Crea miniature SOLO per le immagini la cui larghezza o supera il limite. Predefinito '500', '500'.", + 'row_watermark' => "Posizione filigrana", + 'text_no_watermark' => "Nessuna filigrana", + 'text_left_top' => "#1", + 'text_top' => "#2", + 'text_right_top' => "#3", + 'text_left' => "#4", + 'text_center' => "#5", + 'text_right' => "#6", + 'text_left_bottom' => "#7", + 'text_bottom' => "#8", + 'text_right_bottom' => "#9", + 'text_random_position' => "Posizione casuale", + 'text_watermark_note' => "Aggiungi filigrana al file di immagine caricato (JPEG/PNG/GIF). Sostituisci il file PNG filigrana 'pic/watermark.png' con quello tuo. Imposta la posizione dove posizionare la filigrana. L'animazione GIF non è supportata. Predefinito 'nessuna filigrana'.", + 'row_image_size_for_watermark' => "Dimensione immagine per la filigrana", + 'text_watermark_size_note' => "Larghezza * altezza, in pixel. Aggiungi la filigrana SOLO alle immagini la cui larghezza e supera tale altezza. Predefinito '300', '300'.", + 'row_jpeg_quality_with_watermark' => "Qualità JPEG con filigrana", + 'text_jpeg_watermark_quality_note' => "La qualità dell'immagine per il file JPEG dopo aver aggiunto la filigrana. Il valore dovrebbe essere un intero compreso tra 1 e 100. Il numero maggiore, la qualità superiore e la dimensione del file più grande. Predefinito '85'.", + 'head_save_attachment_settings' => "Salva impostazioni allegati", + 'row_css_date' => "CSS date", + 'text_css_date' => "Il formato del tempo è AAAAMMGDhhmm, ad esempio '200911030110'. Cambiare questo aiuta a forzare gli utenti 'browser di aggiornamento della cache CSS. Utile quando si effettuano alcune modifiche ai file CSS. Lascialo vuoto se non ha senso per te. Predefinito vuoto.", + 'row_alternative_thumbnail_size' => "Dimensione Miniatura Alternativa", + 'text_alternative_thumbnail_size_note' => "Gli utenti potrebbero scegliere la dimensione alternativa per le miniature. Predefinito '180', '135'.", + 'row_add_watermark_to_thumbnail' => "Aggiungi filigrana alla miniatura", + 'text_watermark_to_thumbnail_note' => "Indica se aggiungere anche la filigrana alla miniatura o no. Predefinito 'no'. L'impostazione della filigrana globale deve essere abilitata perché funzioni.", + 'row_advertisement_settings' => "Impostazioni Pubblicità", + 'submit_advertisement_settings' => "Impostazioni Pubblicità", + 'text_advertisement_settings_note' => "Configurare le pubblicità sul tuo sito.", + 'head_advertisement_settings' => "Impostazioni Pubblicità", + 'row_enable_advertisement' => "Abilita Pubblicità", + 'text_enable_advertisement_note' => "Impostazione della pubblicità globale.", + 'row_no_advertisement' => "Nessuna Pubblicità", + 'text_can_choose_no_advertisement' => " o superiore può scegliere di non vedere pubblicità su CP utente. Predefinito ", + 'row_bonus_no_advertisement' => "Nessuna Pubblicità Con Bonus", + 'text_no_advertisement_with_bonus' => " o sopra può comprare un po 'di tempo senza pubblicità al centro bonus. Predefinito ", + 'row_no_advertisement_bonus_price' => "Nessun Prezzo Bonus Pubblicità", + 'text_bonus_points_to_buy' => " punti bonus da acquistare ", + 'text_days_without_advertisements' => " giorni senza pubblicità. Predefinito '10000', '15'.", + 'row_click_advertisement_bonus' => "Click Advertisements Bonus", + 'text_points_clicking_on_advertisements' => " punti bonus la prima volta che fa clic su un annuncio. Impostalo su '0' per disabilitare la regola. Predefinito '0'.
    Nota: alcune applicazioni di servizio pubblicitario (ad esempio Google Adsense) vietano i siti inclusi gli incentivi per cliccare sulle pubblicità.", + 'head_save_advertisement_settings' => "Salva Impostazioni Pubblicità", + 'row_enable_tooltip' => "Abilita Suggerimento", + 'text_enable_tooltip_note' => "Permetti agli utenti di usare il suggerimento. Predefinito 'sì'.", + 'text_thirtypercentleech_chance_becoming' => "% possibilità di diventare 30% Leech. Predefinito '0'.", + 'text_thirtypercentleech_will_become' => "30% Leech diventerà ", + 'text_thirtypercentleech_timeout_default' => " giorni. Predefinito 'normale', '30'.", + 'row_site_logo' => "Logo Sito", + 'text_site_logo_note' => "Il file immagine del logo del sito. La dimensione consigliata dell'immagine è 220 * 70. Se vuoto, mostra invece il testo. Predefinito ''.", + 'row_promotion_link_click' => "Clic Link Promozione", + 'text_promotion_link_note_one' => " punti bonus se il suo link di promozione viene cliccato da un IP non registrato. Solo un clic è contato in ", + 'text_promotion_link_note_two' => " secondi. Imposta punti a '0' per disabilitare la regola. Predefinito '0', '600'.", + 'row_promotion_link_example_image' => "Esempio immagine collegamento promozione", + 'text_promotion_link_example_note' => "L'immagine negli esempi di link di promozione. MUST usa il percorso relativo, ad esempio 'pic/prolink.png'.", + 'row_enable_nfo' => "Abilita NFO", + 'text_enable_nfo_note' => "Impostazione predefinita 'sì'. Impostazione NFO a livello di sistema.", + 'row_web_analytics_code' => "Codice di analisi web", + 'text_web_analytics_code_note' => "Inserisci il codice di analisi web da un servizio di terze parti (ad esempio Google Analytics). Lascialo vuoto se non lo è.
    Nota: usa solo il codice che sei sicuro è sicuro e affidabile.", + 'row_enable_email_notification' => "Abilita Notifiche Email", + 'text_email_notification_note' => "Consenti agli utenti di ricevere una notifica via email quando riceve un nuovo pm, commento, ecc.", + 'text_users_get' => "Gli utenti otterrebbero ", + 'text_invitations_default' => " inviti la prima volta che viene promosso a questa classe. Predefinito ", + 'row_guest_visit_type' => "Visita dell'ospite", + 'text_guest_visit_type_normal' => 'Normale', + 'text_guest_visit_type_static_page' => 'Mostra una pagina statica', + 'text_guest_visit_type_custom_content' => 'Visualizza contenuto personalizzato', + 'text_guest_visit_type_redirect' => 'Reindirizza a un URL', + 'row_guest_visit_value_static_page' => 'Pagina statica specifica', + 'row_guest_visit_value_custom_content' => 'Contenuto personalizzato', + 'row_guest_visit_value_redirect' => 'Url Specifico', + 'text_guest_visit_value_static_page' => 'File localizza:resources/static-pages/', + 'row_login_type' => 'Tipo di login', + 'text_login_type_normal' => 'Normale', + 'text_login_type_secret' => 'Segreto', + 'text_login_type_warning' => "Solo uno dei tre è in vigore", + 'row_login_secret' => 'Login secret', + 'text_login_secret_current' => 'Segreto attuale', + 'text_login_url_with_secret' => 'Url di accesso segreto', + 'text_login_url_with_passkey' => 'Passkey login URL', + 'text_login_secret_regenerate_yes' => "Re-generate(aggiornerà il segreto e estenderà la sua durata dopo il salvataggio)", + 'text_login_secret_regenerate_no' => "Rimanente (non cambierà il segreto ed è la vita dopo il salvataggio)", + 'text_login_secret_lifetime' => 'Scadenza', + 'text_login_secret_lifetime_unit' => 'minuto', + 'row_login_secret_lifetime' => 'Login segreto', + 'text_login_secret_lifetime_deadline' => 'Termine segreto di accesso attuale', + 'row_enable_technical_info' => 'Abilita MediaInfo', + 'text_enable_technical_info' => "Default 'No'. MediaInfo proviene dal software MediaInfo Visualizzazione testo", + 'row_sticky_first_level_background_color' => 'Colore bg di primo livello adesivo', + 'text_sticky_first_level_background_color_note' => 'Sticky primo livello colore bg, sarà nessuno se non impostato.', + 'row_sticky_second_level_background_color' => 'Adesivo secondo livello colore bg', + 'text_sticky_second_level_background_color_note' => 'Adesivo secondo livello colore bg, sarà nessuno se non impostato.', + 'row_download_support_passkey' => 'Supporto download tramite passkey', + 'text_download_support_passkey_note' => 'Supporto scaricare file torrent da password o non (richiede anche ID torrent).', + 'row_torrent_hr' => 'H&R', + 'text_torrent_hr_note' => '.Impostare il torrent unire l\'ispezione H&R', + 'row_cancel_hr' => 'Annulla H&R', + 'text_cancel_hr_note' => "punti bonus per annullare un H&R. Predefinito '".\App\Models\BonusLogs::DEFAULT_BONUS_CANCEL_ONE_HIT_AND_RUN."'.", + 'text_attendance_get_bonus' => 'Partecipazione ottenere bonus', + 'text_attendance_initial_reward' => 'Ricompensa iniziale', + 'text_attendance_initial_reward_input_label' => 'Prima volta che otterrete', + 'text_attendance_input_suffix' => 'bonus', + 'text_attendance_continuous_increment' => 'Incremento continuo', + 'text_attendance_continuous_increment_input_label' => 'Ogni incremento continuo della frequenza', + 'text_attendance_reward_limit' => 'Limite ricompensa', + 'text_attendance_reward_limit_input_label' => 'Ricompensa più alta che otterrai', + 'text_attendance_continuous' => 'Continuo', + 'text_attendance_continuous_days' => 'Giorni continui', + 'text_attendance_continuous_days_additional_reward' => 'Bonus aggiuntivo', + 'text_attendance_continuous_days_action' => 'Azione', + 'text_attendance_continuous_unit' => 'giorni', + 'text_attendance_continuous_item_action_remove' => 'Rimuovi', + 'text_attendance_continuous_item_action_add' => 'Aggiungi', + 'text_attendance_continuous_add_rules' => 'Si prega di aggiungere regole dal più basso al più alto', + 'row_attendance_card' => 'Acquista carta di frequenza', + 'text_attendance_card_note' => "punti bonus per acquistare una carta di presenza. Predefinito'" . \App\Models\BonusLogs::DEFAULT_BONUS_BUY_ATTENDANCE_CARD . "'.", + 'row_site_language_enabled' => 'Lingua abilitata dal sito', + 'text_site_language_enabled_note' => 'Seleziona la lingua abilitata dal sito', + 'keep_at_least_one' => 'Mantieni almeno uno', + 'text_alias' => 'Class alias: ', + 'row_default_user_one' => 'Predefinito è', + 'row_default_user_two' => '', + 'row_show_top_uploader' => 'Mostra top uploaded(conteggio torrent)', + 'text_show_top_uploader_note' => "Predefinito 'No'. Mostra utente di caricamento superiore (conteggio Torrent) nella homepage.", + 'claim_label' => 'Richiamo torrent', + 'claim_enabled' => 'Indicazione abilitata', + 'claim_torrent_ttl' => 'Il torrent può essere richiesto dopo %s di giorni di rilascio.', + 'claim_torrent_user_counts_up_limit' => 'Un Torrent può essere richiesto da un massimo di %s degli utenti.', + 'claim_user_torrent_counts_up_limit' => 'Un utente può richiedere fino a %s di torrent.', + 'claim_remove_deduct_user_bonus' => "Il torrent richiesto verrà eliminato e %s del bonus dell'utente verrà detratto se non soddisfano lo standard (non il primo mese di reclamo).", + 'claim_give_up_deduct_user_bonus' => 'L\'utente rinuncia attivamente a richiedere il bonus %s dell\'utente.', + 'claim_reach_standard' => 'Standard: Tempo di seme mensile maggiore o uguale a %s di ore, o caricato maggiore o uguale a %s volte la sua dimensione.', + 'claim_bonus_multiplier' => 'Calcola %s volte il valore normale del bonus del seme raggiunto.', + 'row_misc_settings' => 'Impostazioni varie', + 'submit_misc_settings' => 'Impostazioni varie', + 'text_misc_settings_note' => 'Impostazioni varie', + 'row_misc_donation_custom' => 'Donazione personalizzata', + 'text_donation_custom_note' => 'Contenuto personalizzato della pagina di donazione, visualizzato sopra Alipay, PayPal. Supporto bbcode tag', + 'row_approval_status_icon_enabled' => 'Mostra icona di stato di approvazione', + 'text_approval_status_icon_enabled_note' => "Indica se mostrare l'icona di stato dell'approvazione nell'elenco dei torrent, predefinito: 'No'.", + 'row_approval_status_none_visible' => 'Visibilità dei torrent non rivisti', + 'text_approval_status_none_visible_note' => "Predefinito: 'Sì'. Se si cambia 'No', forzare la visualizzazione dell'icona di stato di approvazione quando il controllo non è stato [allow].", + 'row_imdb_language' => 'Lingua IMDB', + 'text_imdb_language_note' => 'Lingue usate per crawl dati IMDB.', + 'text_login_type_passkey' => 'passkey', + 'row_harem_addition' => 'Aggiunta di harem', + 'text_user_would_get_by_harem' => 'L\'utente riceverà il valore bonus dell\'harem diretto', + 'text_harem_addition_note' => 'volte come ricompensa (fattore, ad esempio riempire 0.01, se harem ottiene 100 bonus poi ricompensa utente 100 * 0.01 = 1)', + 'row_offer_skip_approved_count' => 'L\'offerta di caricamento diretto consente il conteggio', + 'text_offer_skip_approved_count_note' => 'Quando il numero di offerta approvata è maggiore o uguale a questo valore, è possibile caricare direttamente senza inviare offerte.', + 'row_torrent_delete' => 'Elimina torrent', + 'text_torrent_delete_note' => 'Eliminare torrent', + 'row_hundred_gb_credit' => "100.0 GB di credito in caricamento", + 'text_hundred_gb_credit_note' => " punti bonus per scambiare il credito di caricamento di 100.0 GB. Predefinito '10000'.", + 'row_ten_gb_download_credit' => "10.0 GB scaricando credito", + 'text_ten_gb_download_credit_note' => " punti bonus per scambiare 10.0 GB scaricando il credito. Predefinito '1000'.", + 'row_hundred_gb_download_credit' => "100.0 GB credito", + 'text_hundred_gb_download_credit_note' => " punti bonus per scambiare 100.0 GB scaricando il credito. Predefinito '8000'.", + 'row_official_addition' => 'Aggiunta ufficiale', + 'text_user_would_get_by_official' => 'L\'utente riceverà il normale valore bonus del torrent ufficiale', + 'text_addition_addition_note' => 'volte come ricompensa (fattore, ad esempio riempire 0.01, se torrens ufficiale ottiene 100 bonus poi ricompensa utente 100 * 0.01 = 1)', + 'zero_bonus_factor_default' => '. Predefinito è: 0.2', + 'row_official_tag' => 'Tag ufficiale', + 'text_official_tag_note' => '. I torrent con questo tag sono torrent ufficiali', + 'row_zero_bonus_tag' => 'Zero bonus tag', + 'text_zero_bonus_tag_note' => '. I torrent con questo tag sono torrent bonus zero', + 'row_upload_deny_approval_deny_count' => 'Rifiuta di caricare il contatore negato di approvazione', + 'text_upload_deny_approval_deny_count_note' => "Quando il numero di approvazione dei torrent negato è maggiore o uguale a questo valore, la pubblicazione non è consentita. Impostare a '0' per non usare questa regola", + 'row_nfo_view_style_default' => 'Stile di visualizzazione predefinito NFO', + 'row_destroy_disabled' => 'Elimina completamente l\'account', + 'text_destroy_disabled_note_one' => 'Account disabilitati se sono continuamente', + 'text_destroy_disabled_note_two' => "I giorni senza l'accesso, verranno fisicamente cancellati dal database completamente. Predefinito '500', imposta un valore maggiore di uno qualsiasi dei precedenti per disabilitare. Imposta a '0' per disabilitare questa regola." , + 'row_enable_global_search_system' => 'Abilita ricerca globale', + 'text_global_search_system_note' => "Predefinito: 'Sì'. Se abilitato, quando ci sono più sezioni, il portale di ricerca globale viene visualizzato nell'angolo in basso a destra del menu principale.", + 'row_protected_forum' => 'Forum Di Protezione Della Privacy', + 'text_protected_forum' => 'Gli ID dei forum che consentono la protezione della privacy , separati da virgole (es. 1,2,3)', + 'forum_format_error' => 'Il formato del forum è errato, si prega di controllare di nuovo!', + 'row_buy_an_tmp_invite' => 'Acquista un invito temporaneo', + 'text_buy_an_tmp_invite_note' => " punti bonus per ottenere un invito temporaneo. Predefinito '500'.Imposta il rapporto '0' per disabilitare l'acquisto.", + 'row_buy_rainbow_id' => 'Acquista Id Arcobaleno', + 'text_buy_rainbow_id_note' => " punti bonus per ottenere un ID arcobaleno, valido per 30 giorni. Predefinito '5.000'.", + 'row_buy_change_username_card' => 'Acquista Cambia nome utente', + 'text_buy_change_username_card_note' => " punti bonus per ottenere una scheda Cambia nome utente, valida per sempre. Predefinito '100,000'.", + 'row_initial_tmp_invites' => "Numero iniziale di inviti temporanei", + 'text_initial_tmp_invites_note' => "Quanti inviti temporanei devono essere dati a ogni utente al momento della registrazione? Predefinito '0'.", + 'row_tax_factor' => 'Fattore fiscale per i torrent pagati', + 'text_tax_factor_note' => 'Se il prezzo è 100, questo fattore è 0.1 e il fatturato effettivo del caricatore è 100 - 100 x 0. = 90, notare che non deve essere superiore a 1 o inferiore a 0.', + 'row_max_price' => 'Tariffa massima per i torrent pagati', + 'text_max_price_note' => 'default: 1,000,000, impostato a 0 senza limite', + 'row_paid_torrent_enabled' => 'Indica se abilitare i torrent a pagamento', + 'text_paid_torrent_enabled_note' => 'Se abilitato, gli utenti con autorizzazione possono impostare una certa quantità di bonus da addebitare agli utenti che scaricano i torrent quando vengono inviati, predefinito: no', + 'row_use_challenge_response_authentication' => 'Autenticazione Challenge-Response', + 'text_use_challenge_response_authentication_note' => 'Se abilitata, nessuna password di testo semplice sarà trasmessa al login, raccomandata. Le versioni future rimuoveranno questa configurazione e attiveranno questa funzione.' , + 'row_complain_enabled' => 'Indica se abilitare i reclami', + 'row_complain_enabled_note' => 'default: "sì"', +); + +?> diff --git a/lang/it/lang_shoutbox.php b/lang/it/lang_shoutbox.php new file mode 100644 index 00000000..708ec319 --- /dev/null +++ b/lang/it/lang_shoutbox.php @@ -0,0 +1,16 @@ + "del", + 'std_access_denied' => "Accesso Negato.", + 'std_access_denied_note' => "Non è consentito agli ospiti vedere questa pagina.", + 'text_to_guest' => " ad Ospite", + 'text_guest' => "Ospite", + 'text_ago' => " fa", + 'text_helpbox_disabled' => "La casella di aiuto è attualmente disabilitata. Come l'inferno arrivi qui?", + 'text_no_permission_to_shoutbox' => "Non hai i permessi per inviare messaggi a gridare. Come l'inferno arrivi qui?", + "speaking_too_often" => "Parlare troppo spesso!", +); + +?> diff --git a/lang/it/lang_signup.php b/lang/it/lang_signup.php new file mode 100644 index 00000000..267ac6c0 --- /dev/null +++ b/lang/it/lang_signup.php @@ -0,0 +1,35 @@ + "Registrati", + 'text_cookies_note' => "Nota: È necessario abilitare i cookie per registrarsi o effettuare l'accesso.", + 'row_desired_username' => "Nome utente desiderato", + 'text_allowed_characters' => "Caratteri consentiti: (a-z), (A-Z), (0-9), il massimo è di 12 caratteri", + 'row_pick_a_password' => "Scegli una password", + 'text_minimum_six_characters' => "Minimo è di 6 caratteri", + 'row_enter_password_again' => "Inserire nuovamente la password", + 'row_question' => "Domanda", + 'row_enter_hint_answer' => "Inserisci risposta suggerimento", + 'text_hint_note' => "Questa risposta verrà utilizzata per reimpostare la password nel caso in cui la dimentichi.
    Minimo è di 6 caratteri.", + 'row_email_address' => "Indirizzo email", + 'text_email_note' => "puoi iscriverti solo con l'email da quei domini: ", + 'row_country' => "Paese", + 'row_gender' => "Sesso", + 'radio_male' => "Maschio ", + 'radio_female' => "Femmina ", + 'row_verification' => "Verifica", + 'checkbox_read_rules' => "Ho letto la pagina regole.", + 'checkbox_read_faq' => "Accetto di leggere le FAQ prima di fare domande.", + 'checkbox_age' => "Ho almeno tredici anni.", + 'text_all_fields_required' => "Tutti i campi sono richiesti! ", + 'submit_sign_up' => "Sign up! (PRESS ONLY ONCE)", + 'select_none_selected' => "Nessuno selezionato", + 'text_select_lang' => "Seleziona Lingua Del Sito: ", + 'row_school' => "Scuola", + 'head_invite_signup' => "Iscrizione Invita", + 'std_uninvited' => "Codice di invito errato. ", + 'std_error' => "Errore", +); + +?> diff --git a/lang/it/lang_special.php b/lang/it/lang_special.php new file mode 100644 index 00000000..5cb22f00 --- /dev/null +++ b/lang/it/lang_special.php @@ -0,0 +1,7 @@ + "Sorry...", + 'std_permission_denied_only' => "Permesso negato. Solo ", + 'std_or_above_can_view' => " o superiore potrebbe vedere la sezione speciale.

    Per favore consulta le FAQ per maggiori informazioni sulle diverse classi di utenti e su cosa possono fare.

    Lo Staff %s
    ", +]; diff --git a/lang/it/lang_staff.php b/lang/it/lang_staff.php new file mode 100644 index 00000000..4efd4e13 --- /dev/null +++ b/lang/it/lang_staff.php @@ -0,0 +1,36 @@ + "Personale", + 'text_staff' => "Personale", + 'text_firstline_support' => "Supporto Prima Linea", + 'text_firstline_support_note' => "Le domande generali di sostegno dovrebbero preferibilmente essere rivolte a questi utenti. Si noti che sono volontari, dando via il loro tempo e lo sforzo per aiutarti.", + 'text_movie_critics' => "Critici", + 'text_movie_critics_note' => "I critici sono responsabili per la raccolta di buone cose, la scrittura di recensioni, ricompense i commenti degli utenti su film, musica, ecc, in generale creando un clima migliore per la discussione.", + 'text_general_staff' => "Personale Generale", + 'text_general_staff_note' => "Tutte le domande di supporto software e quelle già risposte nelle FAQ verranno ignorate.

    Invia un messaggio allo staff, clicca qui", + 'text_username' => "Username", + 'text_online_or_offline' => "Online/Offline", + 'text_country' => "Paese", + 'text_contact' => "Contatto", + 'text_language' => "Lingua", + 'text_support_for' => "Supporto per", + 'text_responsible_for' => "Responsabile di", + 'text_duties' => "Funzioni Di Personale", + 'title_online' => "Online", + 'title_offline' => "Offline", + 'title_send_pm' => "Invia PM", + 'text_vip' => "VIP", + 'text_vip_note' => "Lo status VIP è concesso solo a coloro che hanno dato un contributo speciale a %s, ad esempio ex membri del personale.", + 'text_reason' => "Motivo", + 'text_apply_for_it' => "Applica per entrare", + 'text_forum_moderators' => "Moderatori Forum", + 'text_forum_moderators_note' => "I moderatori del forum sono responsabili della gestione quotidiana dei forum.", + 'text_forums' => "Forum", + 'std_sorry' => "Sorry...", + 'std_permission_denied_only' => "Permesso negato. Solo ", + 'std_or_above_can_view' => " o sopra potrebbe visualizzare lo staff.

    Per favore consulta le FAQ per maggiori informazioni sulle diverse classi di utenti e su cosa possono fare.

    Lo Staff %s
    ", +); + +?> diff --git a/lang/it/lang_staffbox.php b/lang/it/lang_staffbox.php new file mode 100644 index 00000000..4851fee4 --- /dev/null +++ b/lang/it/lang_staffbox.php @@ -0,0 +1,34 @@ + "PM Del Personale", + 'text_staff_pm' => "PM Del Personale", + 'std_sorry' => "Spiacenti", + 'std_no_messages_yet' => "Ancora nessun messaggio!", + 'col_subject' => "Oggetto", + 'col_sender' => "Mittente", + 'col_added' => "Aggiunto", + 'col_answered' => "Risposto", + 'col_action' => "Atto", + 'text_yes' => "Sì", + 'text_no' => "No", + 'submit_set_answered' => "Imposta Risposta", + 'submit_delete' => "Elimina", + 'text_system' => "Sistema", + 'head_view_staff_pm' => "Visualizza Il PM Del Personale", + 'col_from' => "Da", + 'col_date' => "Data", + 'col_answered_by' => "Risposto da", + 'text_reply' => "Rispondi", + 'text_mark_answered' => "Segna Risposte", + 'text_delete' => "Elimina", + 'std_error' => "Errore", + 'std_no_user_id' => "Nessun utente con quell'ID.", + 'head_answer_to_staff_pm' => "Rispondi al PM dello staff", + 'text_answering_to' => "Rispondendo a ", + 'text_sent_by' => " inviato da ", + 'std_body_is_empty' => "Inserisci qualcosa!", +); + +?> diff --git a/lang/it/lang_subtitles.php b/lang/it/lang_subtitles.php new file mode 100644 index 00000000..db8590bd --- /dev/null +++ b/lang/it/lang_subtitles.php @@ -0,0 +1,64 @@ + "Errore!", + 'std_must_login_to_upload' => "Devi essere loggato per caricare i sottotitoli", + 'head_subtitles' => "Sottotitoli", + 'std_nothing_received' => "Upload fallito!

    Niente ricevuto! Il file selezionato potrebbe essere troppo grande.", + 'std_subs_too_big' => "Upload fallito!

    Subs è troppo grande!", + 'std_wrong_subs_format' => "Upload fallito!

    Non sono autorizzato a salvare il file che mi invii :", + 'std_file_already_exists' => "Caricamento fallito!

    Un file già esistente ", + 'std_missing_torrent_id' => "Caricamento fallito!

    mancante ID torrent!", + 'std_invalid_torrent_id' => "Caricamento fallito!

    sembra non essere un ID torrent valido!", + 'std_no_permission_uploading_others' => "Upload fallito!

    Sembra che non sia il tuo ID torrent, gli utenti della tua classe non possano caricare sotto-s su torrent di altri!", + 'std_file_same_name_exists' => "Il file con questo nome esiste già ", + 'std_must_choose_language' => "Caricamento fallito!

    Scegli una lingua per il sottotitolo !", + 'std_failed_moving_file' => "Spostamento del file caricato non riuscito. È necessario contattare un amministratore per questo errore.", + 'std_this_file' => "Questo file: ", + 'std_is_invalid' => " non è valida nella cartella.", + 'text_upload_subtitles' => "Carica sottotitoli - totale caricato ", + 'text_rules' => "Regolamento:", + 'text_rule_one' => "1. Si prega di caricare solo i file con i nomi inglesi!", + 'text_rule_two' => "2.I sottotitoli DEVONO ESSERE IN SYNC con quello che stai dicendo che sono per. Se non sono uno spreco di spazio.", + 'text_rule_three' => "3. L'identificazione linguistica non è davvero necessaria nel titolo in quanto c'è la bandiera nazionale, ma se si sente il bisogno: scrivere la lingua alla fine , e. . CHS.", + 'text_rule_four' => "4. Se state caricando sottotitoli per un pacchetto di stagione, zip/rar tutti insieme.", + 'text_rule_five' => "5.If state caricando i sottotitoli Vobsub (idx+sub), zip/rar prima di caricarli.", + 'text_rule_six' => "6.Se stai caricando un sottotitolo corretto o ri-sincronizzato, aggiungi [proper] o [resynced] dopo il nome del sottotitolo.", + 'text_red_star_required' => "

    I campi contrassegnati con una stella rossa (*) sono obbligatori.

    \n", + 'text_uploading_subtitles_for_torrent' => "Caricamento sottotitoli per torrent: ", + 'row_file' => "File", + 'text_maximum_file_size' => "Dimensione massima del file: ", + 'row_torrent_id' => "Id Torrent", + 'text_torrent_id_note' => "(Il numero nella barra degli indirizzi quando si va alla pagina dei dettagli del torrent.
    es.  http://%s/details.php?id=16  il numero 16 è l'ID del torrent)", + 'row_title' => "Titolo", + 'text_title_note' => "(Opzionale, preso dal nome del file se non specificato.)", + 'row_language' => "Lingua", + 'select_choose_one' => "(sceglierne uno)", + 'row_show_uploader' => "Mostra Uploader", + 'hide_uploader_note' => "Non mostrare il mio nome utente nel campo 'Upped By'.", + 'submit_upload_file' => "Upload file", + 'submit_reset' => "Reset", + 'text_sorry' => "Spiacenti", + 'text_nothing_here' => "Siamo spiacenti, niente qui pal :( ", + 'submit_search' => "Cerca", + 'text_prev' => "Precedente", + 'text_next' => "Successivo", + 'col_lang' => "Lang.", + 'col_title' => "Titolo", + 'title_date_added' => "Tempo Aggiunto", + 'title_size' => "Dimensione", + 'col_hits' => "Colpi", + 'col_upped_by' => "Upped by", + 'text_delete' => "[Delete]", + 'text_anonymous' => "anonimo", + 'std_delete_subtitle' => "Elimina sottotitoli", + 'std_delete_subtitle_note' => "Stai per eliminare questo sottotitolo.", + 'text_reason_is' => "Motivo: ", + 'submit_confirm' => "Conferma", + 'col_report' => "Segnala", + 'title_report_subtitle' => "Segnala questo sottotitolo", + 'select_all_languages' => "(tutte le lingue)", +); + +?> diff --git a/lang/it/lang_tags.php b/lang/it/lang_tags.php new file mode 100644 index 00000000..f08fc28f --- /dev/null +++ b/lang/it/lang_tags.php @@ -0,0 +1,152 @@ + "Sintassi:", + 'text_example' => "Esempio:", + 'text_result' => "Risultato:", + 'text_remarks' => "Osservazioni:", + 'head_tags' => "Etichette", + 'text_tags' => "Etichette", + 'text_bb_tags_note' => "I forum %s supportano un certo numero di tag BB che puoi inserire per modificare come vengono visualizzati i tuoi messaggi.", + 'submit_test_this_code' => "Prova questo codice !", + 'text_bold' => "Bold", + 'text_bold_description' => "Rende il testo allegato in grassetto.", + 'text_bold_syntax' => "[b]Testo[/b]", + 'text_bold_example' => "[b]Questo è il testo in grassetto.[/b]", + 'text_italic' => "Italic", + 'text_italic_description' => "Rende il testo allegato in corsivo.", + 'text_italic_syntax' => "[i]Testo[/i]", + 'text_italic_example' => "[i]Questo è il testo in corsivo.[/i]", + 'text_underline' => "Sottolineato", + 'text_underline_description' => "Rende il testo allegato sottolineato.", + 'text_underline_syntax' => "[u]Testo[/u]", + 'text_underline_example' => "[u]Questo è il testo sottolineato.[/u]", + 'text_color_one' => "Colore (alt. 1)", + 'text_color_one_description' => "Cambia il colore del testo racchiuso.", + 'text_color_one_syntax' => "[color=Colore]Testo[/color]", + 'text_color_one_example' => "[color=blu]Questo è il testo blu.[/color]", + 'text_color_one_remarks' => "Quali colori sono validi dipende dal browser. Se si utilizzano i colori di base (rosso, verde, blu, giallo, rosa, ecc) si dovrebbe essere al sicuro.", + 'text_color_two' => "Colore (alt. 2)", + 'text_color_two_description' => "Cambia il colore del testo racchiuso.", + 'text_color_two_syntax' => "[color=#RGB]Testo[/color]", + 'text_color_two_example' => "[color=#0000ff]Questo è il testo blu.[/color]", + 'text_color_two_remarks' => "RGB deve essere un numero esadecimale a sei cifre.", + 'text_size' => "Dimensione", + 'text_size_description' => "Imposta la dimensione del testo incluso.", + 'text_size_syntax' => "[size=n]testo[/size]", + 'text_size_example' => "[size=4]Questa è la dimensione 4.[/size]", + 'text_size_remarks' => "n deve essere un numero intero nell'intervallo 1 (più piccolo) a 7 (più grande). La dimensione predefinita è 2.", + 'text_font' => "Font", + 'text_font_description' => "Imposta il tipo di faccia (carattere) per il testo allegato.", + 'text_font_syntax' => "[font=Font]Text[/font]", + 'text_font_example' => "[font=Impact]Ciao mondo![/font]", + 'text_font_remarks' => "Specifica caratteri alternativi separandoli con una virgola.", + 'text_hyperlink_one' => "Hyperlink (alt. 1)", + 'text_hyperlink_one_description' => "Inserisce un collegamento ipertestuale.", + 'text_hyperlink_one_syntax' => "[url]URL[/url]", + 'text_hyperlink_one_example' => "[url]http://%s[/url]", + 'text_hyperlink_one_remarks' => "Questo tag è superfluo; tutti gli URL sono collegati automaticamente.", + 'text_hyperlink_two' => "Hyperlink (alt. 2)", + 'text_hyperlink_two_description' => "Inserisce un collegamento ipertestuale.", + 'text_hyperlink_two_syntax' => "[url=URL]Link text[/url]", + 'text_hyperlink_two_example' => "[url=http://%s]%s[/url]", + 'text_hyperlink_two_remarks' => "Non è necessario utilizzare questo tag a meno che non si voglia impostare il testo del collegamento; tutti gli URL sono collegati automaticamente.", + 'text_image_one' => "Immagine (alt. 1)", + 'text_image_one_description' => "Inserisce una foto.", + 'text_image_one_syntax' => "[img=URL]", + 'text_image_one_example' => "[img=http://%s/pic/nexus.png]", + 'text_image_one_remarks' => "L'URL deve terminare con .gif, .jpg, .jpeg o .png.", + 'text_image_two' => "Immagine (alt. 2)", + 'text_image_two_description' => "Inserisce una foto.", + 'text_image_two_syntax' => "[img]URL[/img]", + 'text_image_two_example' => "[img]http://%s/pic/nexus.png[/img]", + 'text_image_two_remarks' => "L'URL deve terminare con .gif, .jpg, .jpeg o .png.", + 'text_quote_one' => "Preventivo (alt. 1)", + 'text_quote_one_description' => "Inserisce un preventivo.", + 'text_quote_one_syntax' => "[quote]Testo citato[/quote]", + 'text_quote_one_example' => "[quote]Amo %s.[/quote]", + 'text_quote_two' => "Preventivo (alt. 2)", + 'text_quote_two_description' => "Inserisce un preventivo.", + 'text_quote_two_syntax' => "[quote=Autore]Testo citato[/quote]", + 'text_quote_two_example' => "[quote=%s]Amo %s.[/quote]", + 'text_list' => "Elenco", + 'text_description' => "Inserisce un elemento della lista.", + 'text_list_syntax' => "[*]Testo", + 'text_list_example' => "[*] Questo è l'elemento 1\n[*] Questo è l'elemento 2", + 'text_preformat' => "Preformato", + 'text_preformat_description' => "Testo preformattato (monospace). Non a capo automaticamente.", + 'text_preformat_syntax' => "[pre]Testo[/pre]", + 'text_preformat_example' => "[pre]Questo è il testo preformattato.[/pre]", + 'text_code' => "Codice", + 'text_code_description' => "Mostra testo in formato decorato.", + 'text_code_syntax' => "[code]Testo[/code]", + 'text_code_example' => "[code]Questo è il codice[/code]", + 'text_you' => "[you]", + 'text_you_description' => "Mostra il nome utente di chi lo visualizza", + 'text_you_syntax' => "[you]", + 'text_you_example' => "So che stai leggendo questo, [you]", + 'text_you_remarks' => "Utile per fare trucchi", + 'text_site' => "[site]", + 'text_site_description' => "Mostra il nome del sito", + 'text_site_syntax' => "[site]", + 'text_site_example' => "Stai visitando [site] ora", + 'text_siteurl' => "[siteurl]", + 'text_siteurl_description' => "Mostra l'url di questo sito", + 'text_siteurl_syntax' => "[siteurl]", + 'text_siteurl_example' => "L'url di [site] è [siteurl]", + 'text_flash' => "Flash (alt. 1)", + 'text_flash_description' => "Inserisci flash nelle pagine web alla larghezza e all'altezza definite", + 'text_flash_syntax' => "[flash,width,height]Flash URL[/flash]", + 'text_flash_example' => "[flash,500,300]http://%s/flash.demo.swf[/flash]", + 'text_flash_two' => "Flash (alt. 2)", + 'text_flash_two_description' => "Inserisci flash nelle pagine web alla larghezza e all'altezza predefinite (500 * 300)", + 'text_flash_two_syntax' => "[flash]Flash URL[/flash]", + 'text_flash_two_example' => "[flash]http://%s/flash.demo.swf[/flash]", + 'text_flv_one' => "Video flash (alt.1)", + 'text_flv_one_description' => "Inserisci video flash nelle pagine web alla larghezza e all'altezza definite", + 'text_flv_one_syntax' => "[flv,width,height]Flash video URL[/flv]", + 'text_flv_one_example' => "[flv,320,240]http://%s/flash.video.demo.flv[/flv]", + 'text_flv_two' => "Video flash (alt.2)", + 'text_flv_two_description' => "Inserisci video flash nelle pagine web a larghezza e altezza predefinita (320 * 240)", + 'text_flv_two_syntax' => "[flv]Flash video URL[/flv]", + 'text_flv_two_example' => "[flv]http://%s/flash.video.demo.flv[/flv]", + 'text_youtube' => "YouTube", + 'text_youtube_description' => "Inserisci video online di YouTube nelle pagine web", + 'text_youtube_syntax' => "[youtube,width,height]URL video su YouTube[/youtube]", + 'text_youtube_example' => "[youtube,560,315]https://www.youtube.com/watch?v=DWDL3VTCcCg&ab_channel=ESPNMMA[/youtube]", + 'text_youku' => "YouKu", + 'text_youku_description' => "Inserisci video online YouKu nelle pagine web", + 'text_youku_syntax' => "[youku]URL video su YouKu[/youku]", + 'text_youku_example' => "[youku]http://player.youku.com/player.php/sid/XMzM1MDExODg=/v.swf[/youku]", + 'text_tudou' => "TuDou", + 'text_tudou_description' => "Inserisci video online TuDou nelle pagine web", + 'text_tudou_syntax' => "[tudou]URL video su TuDou[/tudou]", + 'text_tudou_example' => "[tudou]http://www.tudou.com/v/1jaI4LNa7sk[/tudou]", + 'text_ninety_eight_image' => "Immagine CC98", + 'text_ninety_eight_image_description' => "Visualizza immagine ospitata al forum CC98", + 'text_ninety_eight_image_syntax' => " [98img=[auto number]]file immagine[/98img]", + 'text_ninety_eight_image_example' => "[98img=150]uploadfile/2008/10/30/2362924185.png[/98img]", + 'text_ninety_eight_image_remarks' => "CC98 è un forum alla Zhejiang University", + 'text_spoiler' => 'Spoiler', + 'text_spoiler_description' => 'Inserisci contenuti espandibili/pieghevoli nella pagina', + 'text_spoiler_syntax' => '[spoiler=title]Questo è il contenuto piegato[/spoiler]', + 'text_spoiler_example' => '[spoiler=Cos\'è successo alla fine finale dell\'eroe?]L\'eroe è morto per ultimo![/spoiler]', + + 'text_left' => 'Text align left', + 'text_left_description' => 'Inserire il contenuto giustificato da sinistra nella pagina', + 'text_left_syntax' => '[left]Questo è il contenuto allineato a sinistra[/left]', + 'text_left_example' => '[left]Questo è il contenuto allineato a sinistra[/left]', + + 'text_center' => 'Allineamento testo centro', + 'text_center_description' => 'Inserisci contenuti giustificati dal centro nella pagina', + 'text_center_syntax' => '[center]Questo è il contenuto allineato al centro[/center]', + 'text_center_example' => '[center]Questo è il contenuto allineato al centro[/center]', + + 'text_right' => 'Allineamento testo a destra', + 'text_right_description' => 'Inserire il contenuto giustificato da destra nella pagina', + 'text_right_syntax' => '[right]Questo è il contenuto allineato a destra[/right]', + 'text_right_example' => '[right]Questo è il contenuto allineato a destra[/right]', +); + +?> diff --git a/lang/it/lang_takeconfirm.php b/lang/it/lang_takeconfirm.php new file mode 100644 index 00000000..2651382e --- /dev/null +++ b/lang/it/lang_takeconfirm.php @@ -0,0 +1,14 @@ + "Sorry...", + 'std_no_buddy_to_confirm' => "Nessun amico da confermare. :(

    Clicca per favore ", + 'std_here_to_go_back' => "qui per tornare indietro.", + 'mail_title' => " Account Confermato", + 'mail_here' => "QUI", + 'mail_content_1' => "Salve,

    Il tuo account è stato confermato. Ora puoi visitare ", + 'mail_content_2' => "

    e utilizza le informazioni di accesso per effettuare il login. Speriamo che leggerai le FAQ e le Regole prima di iniziare a condividere i file.

    Buona fortuna e divertirti su ".$SITENAME."!

    Se non conosci la persona che ti ha invitato, segnala questa email a ".$REPORTMAIL."
    ------
    Yours,The ".$SITENAME." Squadra." +); + +?> diff --git a/lang/it/lang_takecontact.php b/lang/it/lang_takecontact.php new file mode 100644 index 00000000..f7d5233c --- /dev/null +++ b/lang/it/lang_takecontact.php @@ -0,0 +1,17 @@ + "Errore", + 'std_method' => "Metodo", + 'std_please_enter_something' => "Inserisci qualcosa!", + 'std_please_define_subject' => "Devi definire l'oggetto!", + 'std_message_flooding' => "Inondazioni dei messaggi non consentite. Attendere prego ", + 'std_second' => " secondo", + 'std_s' => "s", + 'std_before_sending_pm' => " prima di inviare PM allo STAFF.", + 'std_succeeded' => "Riuscito", + 'std_message_succesfully_sent' => "Messaggio inviato con successo!" +); + +?> \ No newline at end of file diff --git a/lang/it/lang_takeedit.php b/lang/it/lang_takeedit.php new file mode 100644 index 00000000..0079bfb3 --- /dev/null +++ b/lang/it/lang_takeedit.php @@ -0,0 +1,12 @@ + "Modifica fallita!", + 'std_missing_form_data' => "dati del modulo mancanti", + 'std_not_owner' => "Non sei il proprietario! Come è successo?", + 'std_nfo_too_big' => "NFO è troppo grande! Max 65.535 byte.", + 'std_cannot_move_torrent' => "Non hai i permessi per spostare i torrent in un'altra sezione. BTW, come raggiungi qui?" +); + +?> \ No newline at end of file diff --git a/lang/it/lang_takeflush.php b/lang/it/lang_takeflush.php new file mode 100644 index 00000000..5e2204a5 --- /dev/null +++ b/lang/it/lang_takeflush.php @@ -0,0 +1,11 @@ + "Fallito", + 'std_success' => "Successo", + 'std_ghost_torrents_cleaned' => "i torrent fantasma sono stati puliti completamente.", + 'std_cannot_flush_others' => "Puoi pulire solo i tuoi torrent fantasma" +); + +?> \ No newline at end of file diff --git a/lang/it/lang_takeinvite.php b/lang/it/lang_takeinvite.php new file mode 100644 index 00000000..e5626e23 --- /dev/null +++ b/lang/it/lang_takeinvite.php @@ -0,0 +1,29 @@ + "Invito fallito!", + 'std_username_too_long' => "Spiacenti, il nome utente è troppo lungo (fino a 12 caratteri)", + 'std_must_enter_email' => "Devi inserire un indirizzo e-mail!", + 'std_invalid_email_address' => "Indirizzo email non valido!", + 'std_must_enter_personal_message' => "Aggiungere un messaggio personale.", + 'std_email_address' => "L'indirizzo email ", + 'std_is_in_use' => " è già in uso.", + 'mail_here' => "QUI", + 'mail_tilte' => " Invito", + 'mail_one' => "Ciao,

    Sei stato invitato a unirti alla comunità %s da ", + 'mail_two' => ".
    Questa è una comunità privata che ha membri molto esperti.
    Se sei interessato ad unirti alla community leggi le regole
    e conferma l'invito.

    Se vuoi accettare questo invito, devi cliccare su questo link:", + 'mail_three' => "Dovrai accettare l'invito entro ", + 'mail_four' => " giorni, altrimenti il link diventerà inattivo.
    Speriamo che %s accetti l'invito e unisciti alla nostra grande comunità!

    Messaggio personale da ", + 'mail_five' => ":", + 'mail_six' => "Se non conosci la persona che ti ha invitato, si prega di inoltrare questa email a %s

    ------
    Yours,
    The %s Team.", + 'std_error' => "Errore", + 'std_invite_denied' => "Gli utenti della tua classe non sono autorizzati a inviare l'invito. Come si arriva qui?", + 'std_email_address_banned' => "Questo indirizzo email è bandito!", + 'std_wrong_email_address_domains' => "Questo indirizzo email non è permesso! Puoi inviare inviti solo a quei domini: ", + 'std_no_invite' => "Non hai alcun invito. Come arrivi qui?", + 'std_invitation_already_sent_to' => "Invito fallito! L'indirizzo email ", + 'std_await_user_registeration' => " ha già ricevuto un invito. Si prega di attendere la registrazione dell'utente.", +); + +?> diff --git a/lang/it/lang_takelogin.php b/lang/it/lang_takelogin.php new file mode 100644 index 00000000..e17fd780 --- /dev/null +++ b/lang/it/lang_takelogin.php @@ -0,0 +1,13 @@ + "Errore: Nome utente o password non corretti!

    Non ricordarti la tua password? Recupera la tua password!", + 'std_login_fail' => "Accesso fallito!", + 'std_account_disabled' => "Questo account è stato disabilitato.", + 'std_user_account_unconfirmed' => "L'account non è stato ancora verificato. Se non hai ricevuto l'email di conferma, prova a reseed.", + 'std_require_two_step_code' => 'Richiede il codice di autenticazione in due passaggi.', + 'std_invalid_two_step_code' => 'Codice di autenticazione a due passi non valido.', +); + +?> diff --git a/lang/it/lang_takemessage.php b/lang/it/lang_takemessage.php new file mode 100644 index 00000000..e6b9f1f3 --- /dev/null +++ b/lang/it/lang_takemessage.php @@ -0,0 +1,29 @@ + "Errore", + 'std_permission_denied' => "Permesso Negato!", + 'std_please_enter_something' => "Inserisci qualcosa!", + 'std_message_flooding_denied' => "Inondazioni dei messaggi non consentite. Attendere prego ", + 'std_before_sending_pm' => " secondi prima di inviare il PM.", + 'std_invalid_id' => "Invalid ID", + 'std_user_not_exist' => "Nessun utente con questo ID", + 'std_refused' => "Rifiutato", + 'std_account_parked' => "Questo account è parcheggiato.", + 'std_user_blocks_your_pms' => "Questo utente ha bloccato i PM da te.", + 'std_user_accepts_friends_pms' => "Questo utente accetta i PM solo dagli utenti nella sua lista di amici.", + 'std_user_blocks_all_pms' => "Questo utente non accetta PM.", + 'std_succeeded' => "Riuscito", + 'std_messages_out_of' => " messaggi di ", + 'std_were' => " erano", + 'std_message_was' => "Il messaggio era", + 'std_successfully_sent' => " inviato con successo!", + 'std_s_were' => "s erano", + 'std_was' => " era", + 'std_updated' => " aggiornato!", + 'std_no_permission_forwarding' => "Non hai i permessi per inoltrare questo messaggio.", + 'std_must_enter_username' => "Devi inserire il nome utente a cui vuoi inoltrare il messaggio." +); + +?> diff --git a/lang/it/lang_takereseed.php b/lang/it/lang_takereseed.php new file mode 100644 index 00000000..e2c5a9ac --- /dev/null +++ b/lang/it/lang_takereseed.php @@ -0,0 +1,12 @@ + "Riseed Request!", + 'std_it_worked' => "Ha funzionato! Viene inviato un messaggio agli utenti che hanno strappato questo torrent.", + 'std_error' => "Errore", + 'std_torrent_not_dead' => "Il torrent non è morto.", + 'std_reseed_sent_recently' => "Qualcuno ha già chiesto di reseed di questo torrent negli ultimi 15 minuti. Si prega di attendere pazientemente per gli utenti di reseed.", +); + +?> diff --git a/lang/it/lang_takesignup.php b/lang/it/lang_takesignup.php new file mode 100644 index 00000000..ba73ad1b --- /dev/null +++ b/lang/it/lang_takesignup.php @@ -0,0 +1,41 @@ + "Iscrizione Fallita! (Vedi Sotto)", + 'std_invalid_email_address' => "Indirizzo email non valido!", + 'std_email_address_banned' => "Questo indirizzo email è bandito!", + 'std_wrong_email_address_domains' => "Questo indirizzo email non è permesso! Puoi iscriverti solo con l'email da quei domini: ", + 'std_invalid_gender' => "Gender Non Valido!", + 'std_blank_field' => "Non lasciare nessun campo vuoto.", + 'std_hintanswer_too_short' => "Spiacenti, Hintanswer è troppo breve (min è 6 caratteri)", + 'std_username_too_long' => "Spiacenti, il nome utente è troppo lungo (max 12 caratteri)", + 'std_passwords_unmatched' => "Le password non corrispondono! Deve essere stato battuto. Riprova.", + 'std_password_too_short' => "Siamo spiacenti, la password è troppo corta (min è 6 caratteri)", + 'std_password_too_long' => "Siamo spiacenti, la password è troppo lunga (max 40 caratteri)", + 'std_password_equals_username' => "Siamo spiacenti, la password non può essere la stessa del nome utente.", + 'std_wrong_email_address_format' => "Non sembra un indirizzo email valido.", + 'std_invalid_username' => "Nome utente non valido.", + 'std_unqualified' => "Siamo spiacenti, non sei qualificato per diventare membro di questo sito.", + 'std_email_address' => "L'indirizzo e-mail ", + 'std_in_use' => " è già in uso.", + 'std_username_exists' => "Nome utente esiste già!", + 'std_database_in_distress' => "Siamo spiacenti, errore mysql. Si prega di contattare l'amministratore per questo errore.", + 'std_almost_signup' => "Quasi Finisci iscrizione!", + 'std_please_click' => "Per favore clicca ", + 'std_here' => "qui", + 'std_to_finish_signup' => " per finire la registrazione, grazie!", + 'msg_subject' => "Benvenuto in ", + 'msg_congratulations' => "Congratulazioni ", + 'msg_you_are_a_member' => ",\n\nOra sei un membro di %s,\nVorremmo cogliere questa opportunità per salutare e dare il benvenuto ad %s!\n\nPer favore assicurati di leggere le [url=regole. hp][b]Regole[/b][/url] e [url=faq. hp][b]Faq[/b][/url].\n E assicurati di fermarti da [url=forum. hp][b]Forum[/b][/url]: e dire Ciao!\n\nGoditi il tuo soggiorno.\nLo staff di %s ", + 'mail_this_link' => "QUESTO LINK", + 'mail_here' => "QUI", + 'mail_title' => " Conferma Registrazione Utente", + 'mail_one' => "Hi ", + 'mail_two' => ",

    Hai richiesto un nuovo account utente su %s e hai
    specificato questo indirizzo ", + 'mail_three' => " come contatto utente.

    Se non lo hai fatto, ignora questa email. La persona che ha inserito il tuo indirizzo email
    aveva l'indirizzo IP ", + 'mail_four' => ". Si prega di non rispondere.

    Per confermare la registrazione dell'utente, è necessario seguire ", + 'mail_four_1' => "

    Se il link qui sopra è rotto o scaduto, prova a inviare nuovamente una nuova email di conferma da ", + 'mail_five' => "

    After you do this, you will be able to use your new account. If you fail to
    do this, your account will be deleted within 24 hours. We urge you to read
    the RULES and FAQ before you start using %s.

    Please Note: If you did not register for %s, please report this email to %s

    ------
    Yours,
    The %s Team.", +); +?> diff --git a/lang/it/lang_takeupload.php b/lang/it/lang_takeupload.php new file mode 100644 index 00000000..a00b788d --- /dev/null +++ b/lang/it/lang_takeupload.php @@ -0,0 +1,31 @@ + "Caricamento fallito!", + 'std_missing_form_data' => "dati del modulo mancanti", + 'std_empty_filename' => "Nome file vuoto!", + 'std_zero_byte_nfo' => "0-byte NFO", + 'std_nfo_too_big' => "NFO è troppo grande! Max 65.535 byte.", + 'std_nfo_upload_failed' => "Caricamento NFO non riuscito", + 'std_blank_description' => "Devi inserire una descrizione!", + 'std_category_unselected' => "Devi selezionare una categoria per inserire il torrent!", + 'std_invalid_filename' => "Nome file non valido!", + 'std_filename_not_torrent' => "Nome file non valido (non un .torrent).", + 'std_empty_file' => "File vuoto!", + 'std_not_bencoded_file' => "Che diavolo hai caricato? Questo non è un file bencodificato!", + 'std_not_a_dictionary' => "non è un dizionario", + 'std_dictionary_is_missing_key' => "dizionario mancante chiavi", + 'std_invalid_entry_in_dictionary' => "voce nel dizionario non valida", + 'std_invalid_dictionary_entry_type' => "tipo di voce dizionario non valido", + 'std_invalid_pieces' => "pezzi non validi", + 'std_missing_length_and_files' => "lunghezza e file mancanti", + 'std_filename_errors' => "errore nome file", + 'std_uploaded_not_offered' => "sei autorizzato a caricare torrent che hai offerto, torna indietro e selezionane uno da 'La tua offerta'!", + 'std_unauthorized_upload_freely' => "non sei autorizzato a caricare il torrent liberamente!", + 'std_torrent_existed' => "Torrent già caricato!", + 'std_torrent_file_too_big' => "Il file torrent è troppo grande! Max ", + 'std_remake_torrent_note' => " byte. Remake il file torrent con dimensioni del pezzo più grandi o divide il contenuto in diversi torrent.", +); + +?> diff --git a/lang/it/lang_topten.php b/lang/it/lang_topten.php new file mode 100644 index 00000000..950e8c36 --- /dev/null +++ b/lang/it/lang_topten.php @@ -0,0 +1,116 @@ + "Errore!", + 'std_sorry' => "Sorry...", + 'std_permission_denied_only' => "Permesso negato. Solo ", + 'std_or_above_can_view' => " o sopra potrebbe vedere Top 10.

    Si prega di vedere il "."FAQ per maggiori informazioni sulle diverse classi di utenti e su cosa possono fare.

    %s Staff
    ", + 'col_rank' => "Rango", + 'col_user' => "Utente", + 'col_donated' => "Donato", + 'col_ul_speed' => "Velocità UL", + 'col_downloaded' => "Scaricato", + 'col_dl_speed' => "Velocità DL", + 'col_ratio' => "Rapporto", + 'col_joined' => "Iscritto", + 'col_name' => "Nome", + 'title_sna' => "Numero di strappati", + 'col_data' => "Dati", + 'title_se' => "Numero di Seeders", + 'col_le' => "Numero di Leechers", + 'col_to' => "A:", + 'col_country' => "Paese", + 'col_username' => "Username", + 'col_upload_rate' => "Upload rate", + 'col_download_rate' => "Tasso di download", + 'text_users' => "Utenti", + 'text_torrents' => "Torrent" , + 'text_countries' => "Paesi", + 'text_peers' => "Peers", + 'text_community' => "Community", + 'text_search' => "Cerca", + 'text_other' => "Altro", + 'text_this_page_last_updated' => "Ultimo aggiornamento di questa pagina ", + 'text_started_recording_date' => "Statistiche xfer dell'account di registrazione iniziate su ", + 'text_update_interval' => ", e le statistiche sono aggiornate ogni 60 minuti", + 'text_uploaders' => "Caricatori", + 'text_downloaders' => "Scaricatori", + 'text_fastest_uploaders' => "Caricatori Più Veloci", + 'text_fastest_up_note' => "(media, include tempo inattivo, con un minimo di 50 GB caricati)", + 'text_fastest_note' => "(media, incluso il tempo inattivo)", + 'text_fastest_downloaders' => "Download Più Veloci", + 'text_best_sharers' => "Migliori Condivisori", + 'text_sharers_note' => "(con almeno 50 GB scaricati)", + 'text_worst_sharers' => "Più Condivisori", + 'text_most_active_torrents' => "Torrent Più Attivi", + 'text_most_snatched_torrents' => "Torrent Più Strappati" , + 'text_most_data_transferred_torrents' => "I Torrent Più Dati Trasferiti", + 'text_best_seeded_torrents' => "I Migliori Torrent Seeded ", + 'text_best_seeded_torrents_note' => "(con un minimo di 5 semi)", + 'text_worst_seeded_torrents' => "Peggior Torrent Seeded", + 'text_worst_seeded_torrents_note' => "(con almeno 1 leecher, esclusi i torrenti non strappati)", + + 'text_most_donated_USD' => "Donatori in dollari USA", + 'text_most_donated_CNY' => "Donatori in yuan cinese", + 'col_donated_usd' => "Donato($)", + 'col_donated_cny' => "Donato", + + 'text_most_supplied' => " Più grande fornitore di risorse(Non includere i torrent eliminati)", + 'text_most_snatched' => " Più grande Risorsa Snatcher(Non includere i torrenti eliminati)", + 'col_torrent_uploaded' => "# Aggiornato", + 'col_torrent_downloaded' => "# Strappato", + + 'text_most_topic' => " Forum Topic Starters (Non includere gli argomenti cancellati)", + 'text_most_post' => " Poster del Forum (Non includere i post eliminati)", + 'col_topics' => "Argomenti", + 'col_posts' => "Post", + + + 'text_biggest_topics' => "I più grandi argomenti (Topica nei forum privilegiati non sono calcolati)", + 'col_subject' => "Oggetto", + + 'col_number' => "Numero", + 'text_most_browser' => "Browsers", + 'text_most_client' => "Client Torrent (Ultima volta che ha avuto accesso al tracker)", + + 'col_comments' => "Commenti", + 'text_most_commenter' => "Commentatore Torrent (Non includere i commenti cancellati)", + + 'col_reviews' => "Recensioni", + 'text_most_reviewer' => "Revisore del film (Non includere recensioni cancellate)", + + 'col_location' => "Posizione", + 'text_most_locations' => "Posizioni Del Peer", + + 'col_keyword' => "Parole Chiave", + 'col_times' => "Volte", + 'col_datetime' => "Tempo", + 'text_latest_search' => "Ultime Ricerche", + 'text_current_month_search' => "Ricerche di questo mese", + 'text_last_month_search' => "Ricerca del Mese Scorso", + 'text_current_year_search' => "Ricerche di questo anno", + + 'text_most_bonuses' => "Bonus", + 'col_bonus' => "Bonus", + 'text_countries_users' => "Utenti", + 'col_users' => "Utenti", + 'text_countries_uploaded' => "Totale Caricato", + 'col_uploaded' => "Caricato", + 'text_countries_per_user' => "Totale medio caricato per utente (con almeno 1TB caricati e 100 utenti)", + 'col_average' => "Media", + 'text_countries_ratio' => "Rapporto (con almeno 1TB caricati, 1TB scaricati e 100 utenti)", + 'text_ago' => " fa", + 'text_inf' => "Inf.", + 'head_top_ten' => "Top 10", + 'text_most_stylesheet' => "Stylesheets", + 'text_most_language' => "Lingue Utente", + 'text_top' => "Alto ", + 'text_one_hundred' => "Top 100", + 'text_top_250' => "Top 250", + 'col_clicks' => "Clic", + 'text_most_clicks' => "Proprietari Di Link Promozione", + 'text_charity_giver' => "Donatori Di Carità" +); + +?> diff --git a/lang/it/lang_torrents.php b/lang/it/lang_torrents.php new file mode 100644 index 00000000..c73873e2 --- /dev/null +++ b/lang/it/lang_torrents.php @@ -0,0 +1,69 @@ + "Risultati della ricerca per ", + 'text_search_box' => "Casella Di Ricerca", + 'text_category' => "Categoria:", + 'text_source' => "Fonte:", + 'text_codec' => "Codec:", + 'text_standard' => "Standard:", + 'text_processing' => "Elaborazione:", + 'text_show_dead_active' => "Mostra Dead/Active?", + 'select_including_dead' => "inclusi morti", + 'select_active' => "attivo", + 'select_dead' => "morto", + 'text_show_special_torrents' => "Mostrare Promozione?", + 'select_all' => "tutti", + 'select_normal' => "normale", + 'select_free' => "gratis", + 'select_two_times_up' => "2x su", + 'select_free_two_times_up' => "libero e 2x su", + 'select_half_down' => "50% in calo", + 'text_search' => "Cerca parola chiave:", + 'submit_go' => "Go!", + 'std_search_results_for' => "Risultati ricerca per \"", + 'std_try_again' => "Niente trovato! Riprova con una stringa di ricerca raffinata.\n", + 'std_nothing_found' => "Niente trovato!", + 'std_no_active_torrents' => "Nessun Torrent :(\n", + 'input_check_all' => "Seleziona Tutto", + 'input_uncheck_all' => "Deseleziona Tutto", + 'text_download_client' => "Scarica Client Consentito", + 'select_title' => "Titolo", + 'select_description' => "Descrizione", + 'select_small_description' => "Descrizione Piccola", + 'select_uploader' => "Uploader", + 'select_imdb_url' => "URL IMDb", + 'select_and' => "E", + 'select_or' => "O", + 'select_exact' => "Esatto", + 'select_parsed' => "Parsed", + 'text_in' => " in ", + 'text_with' => " con ", + 'text_mode' => " modalità corrispondente", + 'text_show_bookmarked' => "Mostra Segnalibro?", + 'select_bookmarked' => "Segnalibro", + 'select_bookmarked_exclude' => "Non Segnalibro", + 'text_s_bookmarked_torrent' => "Torrent Segnalibri", + 'text_s_not_bookmarked_torrent' => "'s NOT Bookmarked Torrent", + 'head_torrents' => "Torrent", + 'head_special' => "Speciale", + 'text_movies_and_tvs' => "Film & TV:", + 'text_games_and_appz' => "Giochi & Appz:", + 'text_others' => "Altro:", + 'text_medium' => "Medio:", + 'text_team' => "Squadra", + 'text_audio_codec' => "Codec Audio:", + 'text_video' => "Video:", + 'text_tv' => "TV:", + 'text_music' => "Musica:", + 'text_software' => "Software:", + 'text_approval_status' => 'Stato di omologazione:', + 'size_range' => 'Size range(GB):', + 'leechers_range' => 'Leechers range:', + 'seeders_range' => 'Gamma di seminativi:', + 'times_completed_range' => 'Intervallo di tempo completato:', + 'added_range' => 'Aggiunto intervallo:', +); + +?> diff --git a/lang/it/lang_upload.php b/lang/it/lang_upload.php new file mode 100644 index 00000000..c7b22b42 --- /dev/null +++ b/lang/it/lang_upload.php @@ -0,0 +1,46 @@ + "Carica", + 'std_sorry' => "Sorry...", + 'std_unauthorized_to_upload' => "You are not authorized to upload torrents. Read (Inbox)", + 'std_please_offer' => "Non sei autorizzato a caricare torrent. (Vedi Uploading nelle FAQ.

    Se pensi di essere qualificato per il caricamento dei diritti, ti preghiamo di proporre la tua offerta qui
    ", + 'text_red_star_required' => "I campi contrassegnati con una stella rossa (*) sono obbligatori.", + 'text_tracker_url' => "L'URL dell'annuncio del tracker è", + 'row_torrent_file' => "File Torrent ", + 'row_torrent_name' => "Nome torrent ", + 'text_torrent_name_note' => "(Taken from filename if not specified. Please use descriptive names. e.g. Blade Runner 1982 Final Cut 720p HDDVD DTS x264-ESiR)\n", + 'row_small_description' => "Descrizione Piccola ", + 'text_small_description_note' => "(Questo è mostrato nella pagina torrent sotto il nome del torrent. es. 720p @ 4615 kbps - DTS 5.1 @ 1536 kbps)\n", + 'row_nfo_file' => "NFO file", + 'text_only_viewed_by' => "(Può essere visualizzato solo da ", + 'text_or_above' => " o Sopra.
    inserisci solo il file che termina con .nfo)\n", + 'row_description' => "Descrizione", + 'select_choose_one' => "sceglierne uno", + 'row_type' => "Tipo", + 'row_quality' => "Qualità", + 'text_source' => "Fonte:", + 'text_codec' => "Codec:", + 'text_standard' => "Standard:", + 'text_processing' => "Elaborazione:", + 'row_your_offer' => "La tua offerta", + 'text_please_select_offer' => "   Se stai caricando una delle tue offerte, selezionala qui in modo che gli elettori siano avvisati.", + 'row_show_uploader' => "Mostra Uploader", + 'checkbox_hide_uploader_note' => "Non mostrare il mio nome utente nel campo 'Caricato da'.", + 'text_read_rules' => "Ho letto le regole prima di questo caricamento.", + 'submit_upload' => "Carica", + 'text_to_browse_section' => "Carica nella sezione Torrent ", + 'text_to_special_section' => "o sezione Special ", + 'text_type_note' => "   Scegli solo uno dei due", + 'text_medium' => "Medio:", + 'text_team' => "Gruppo:", + 'text_audio_codec' => "Codec Audio:", + 'row_content' => "Contenuto", + 'text_chinese_title' => "Nome Cinese:", + 'text_english_title' => "Nome Inglese:", + 'text_titles_note' => "(Se nessun nome inglese esiste, usa pinyin o lascia vuoto)", + 'fill_quality' => 'Qualità di riempimento', +); + +?> diff --git a/lang/it/lang_uploaders.php b/lang/it/lang_uploaders.php new file mode 100644 index 00000000..c1a65691 --- /dev/null +++ b/lang/it/lang_uploaders.php @@ -0,0 +1,22 @@ + "Nessun caricatore trovato!", + 'head_uploaders' => "Caricatori", + 'text_uploaders' => "Caricatori", + 'col_username' => "Username", + 'col_torrents_size' => "Dimensione Torrent", + 'col_torrents_num' => "Num Torrent", + 'col_last_upload_time' => "Ultimo Tempo Aggiornato", + 'col_last_upload' => "Ultimo Torrent Aggiornato", + 'text_not_available' => "N/A", + 'submit_go' => "Vai", + 'text_select_month' => "Seleziona mese: ", + 'text_order_by' => "Ordina Per", + 'text_username' => "Username", + 'text_torrent_size' => "Dimensione Torrent", + 'text_torrent_num' => "Num Torrent", +); + +?> diff --git a/lang/it/lang_usercp.php b/lang/it/lang_usercp.php new file mode 100644 index 00000000..733f5337 --- /dev/null +++ b/lang/it/lang_usercp.php @@ -0,0 +1,261 @@ + "Sorry...", + 'text_user_cp_home' => "Casa Pc Utente", + 'text_personal_settings' => "Impostazioni Personali", + 'text_tracker_settings' => "Impostazioni Tracker", + 'text_forum_settings' => "Impostazioni Forum", + 'text_security_settings' => "Impostazioni Di Sicurezza", + 'row_save_settings' => "Salva Impostazioni", + 'submit_save_settings' => "Salva Impostazioni! (PRESS SOLO ONCE)", + 'std_error' => "Errore", + 'head_control_panel' => "Pannello Di Controllo ", + 'head_personal_settings' => " - Impostazioni Personali", + 'std_invalid_action' => "Azione Non Valida", + 'text_saved' => "Salvato!", + 'row_account_parked' => "Account parcheggiato", + 'checkbox_pack_my_account' => "Io sarò via per molto tempo.", + 'text_account_pack_note' => "Nota:Puoi parcheggiare il tuo account per evitare che venga eliminato a causa dell'inattività se vai via per esempio una vacanza. Quando l'account è stato parcheggiato i limiti sono messi sull'account, ad esempio non è possibile utilizzare il tracker e sfogliare alcune pagine.", + 'row_pms' => "PMs", + 'row_recommended_movies' => "Risorse Consigliate", + 'checkbox_show_hot' => "Mostra HOT nella home page", + 'checkbox_show_classic' => "Mostra CLASSIC nella home page", + 'text_accept_pms' => "Accetta PMs da ", + 'radio_all_except_blocks' => "Tutti (eccetto i blocchi)", + 'radio_friends_only' => "Solo amici", + 'radio_staff_only' => "Solo personale", + 'checkbox_delete_pms' => "Elimina PMs su risposta", + 'checkbox_save_pms' => "Salva PM in Sentbox", + 'checkbox_pm_on_comments' => "Notifica me quando qualcuno commenti su i miei torrent", + 'row_gender' => "Sesso", + 'radio_not_available' => "N/A", + 'radio_male' => "Maschio", + 'radio_female' => "Femmina", + 'row_country' => "Paese", + 'row_download_speed' => "Scarica Velocità", + 'row_upload_speed' => "Carica Velocità", + 'row_bt_client' => "BT Client", + 'row_avatar_url' => "Avatar URL", + 'select_choose_avatar' => "Scegli un avatar", + 'select_nothing' => "Niente", + 'text_avatar_note' => "La larghezza deve essere di 150 pixel (sarà ridimensionata se necessario). ", + 'text_bitbucket_note' => "Se hai bisogno di un host per l'immagine, prova il bitbucket .", + 'row_info' => "Informazioni", + 'text_info_note' => "Visualizzati sulla tua pagina pubblica. Può contenere i codici BB.", + 'head_tracker_settings' => " - Impostazioni Tracker", + 'row_email_notification' => "Email notifica", + 'checkbox_notification_received_pm' => "Avvisami quando ho ricevuto un PM.", + 'checkbox_notification_default_categories' => "Avvisami quando un torrent viene caricato in una delle mie categorie di navigazione predefinite.\n", + 'row_browse_default_categories' => "Categorie predefinite
    ", + 'row_stylesheet' => "Stylesheet", + 'row_site_language' => "Lingua Del Sito", + 'row_torrent_page' => "Torrent per pagina", + 'text_zero_equals_default' => "(0=usa impostazione predefinita, max=100)", + 'head_forum_settings' => " - Impostazioni Forum", + 'row_topics_per_page' => "Argomenti per pagina ", + 'row_posts_per_page' => "Posts per pagina", + 'row_view_avatars' => "Visualizza avatar", + 'checkbox_low_bandwidth_note' => "(Gli utenti di larghezza di banda bassa potrebbero voler spegnerlo)", + 'row_view_signatures' => "Visualizza Firme", + 'row_forum_signature' => "Firma Del Forum", + 'head_security_settings' => " - Impostazioni Di Sicurezza", + 'row_security_check' => "Sicurezza Verifica", + 'text_security_check_note' => "Nota: Per modificare le impostazioni di sicurezza, è necessario inserire la password corrente!", + 'std_enter_old_password' => "Inserisci prima la tua password!", + 'std_wrong_password_note' => "Hai inserito una password sbagliata!", + 'std_password_equals_username' => "Siamo spiacenti, la password non può essere uguale al nome utente", + 'std_password_too_long' => "Siamo spiacenti, la password è troppo lunga (max 40 caratteri)", + 'std_password_too_short' => "Siamo spiacenti, la password è troppo corta (min è 6 caratteri)", + 'std_passwords_unmatched' => "Le password non corrispondono. Riprova.", + 'std_email_address_banned' => "Questo indirizzo email è bandito!", + 'std_wrong_email_address_domains' => "Questo indirizzo email non è permesso! È possibile utilizzare solo e-mail da quei domini: ", + 'std_wrong_email_address_format' => "Non sembra un indirizzo email valido.", + 'std_email_in_use' => "L'indirizzo e-mail è già in uso", + 'std_confirmation_email_sent' => " (L'email di conferma è stata inviata!)", + 'std_passkey_reset' => " (La chiave è stata aggiornata!)", + 'std_password_changed' => " (la tua password è stata modificata!)", + 'std_privacy_level_updated' => " (il tuo livello di privacy è stato aggiornato!)", + 'row_reset_passkey' => "Reset passkey", + 'checkbox_reset_my_passkey' => "Voglio resettare la mia passkey.", + 'text_reset_passkey_note' => "Nota: Per resettare la tua passkey corrente, qualsiasi link di download torrent (come la lista rss) deve essere recuperato di nuovo per scaricare il file torrent.", + 'row_reset_authkey' => "Reimposta la chiave authkey", + 'checkbox_reset_my_authkey' => "Voglio resettare la mia authkey.", + 'text_reset_authkey_note' => "Nota: Per resettare la tua chiave di autenticazione corrente, ogni torrent attivo deve essere nuovamente scaricato per continuare a sanguinare/semina.", + 'row_email_address' => "Indirizzo email ", + 'text_email_address_note' => "Nota: Per modificare il tuo indirizzo email, riceverai un'altra email di conferma al tuo nuovo indirizzo.", + 'row_change_password' => "Cambia password", + 'row_type_password_again' => "Digita di nuovo password", + 'row_privacy_level' => "Livello Privacy ", + 'radio_normal' => "Normale", + 'radio_low' => "Basso (indirizzo email verrà mostrato)", + 'radio_strong' => "Forte (nessuna informazione sarà disponibile)", + 'head_home' => " - Home", + 'row_join_date' => "Unisciti data", + 'row_avatar' => "Avatar", + 'row_passkey' => "Passkey", + 'row_invitations' => "Inviti", + 'link_send_invitation' => "Vai a Invito Sistema", + 'row_karma_points' => "Punti Karma ", + 'link_use_karma_points' => "Usa Punti Karma ", + 'row_ratings_submitted' => "Valutazioni inviate", + 'row_written_comments' => "Scritto commenti", + 'link_view_comments' => "Visualizza Commenti", + 'row_forum_posts' => "Forum Post", + 'link_view_posts' => "Visualizza Post", + 'text_posts_per_day' => " post al giorno ", + 'text_of_total_posts' => " del totale dei posti del forum", + 'text_recently_read_topics' => "Leggi Recentemente Gli Argomenti", + 'col_topic_title' => "Titolo Dell'Argomento", + 'col_replies' => "Risposte", + 'col_topic_starter' => "Topic Avviatore", + 'col_views' => "Viste", + 'col_last_post' => "Ultimo Post", + 'text_by' => "da ", + 'select_none_selected' => "Nessuno selezionato", + 'text_ago' => " fa", + 'mail_here' => "QUI", + 'mail_change_email_one' => "Hai richiesto il tuo profilo utente (username ", + 'mail_change_email_two' => ") su %s dovrebbe essere aggiornato con questo indirizzo email ", + 'mail_change_email_three' => " come contatto utente.", + 'mail_change_email_four' => "Se non lo hai fatto, ignora questa email. La persona che ha inserito il tuo indirizzo email ha l'indirizzo IP ", + 'mail_change_email_five' => ". – Non rispondere.", + 'mail_change_email_six' => "Per completare l'aggiornamento del tuo profilo utente, fare clic su ", + 'mail_change_email_six_1' => " per confermare", + 'mail_change_email_seven' => "Il tuo nuovo indirizzo email apparirà nel tuo profilo dopo averlo fatto. Altrimenti il tuo profilo rimarrà invariato.", + 'mail_change_email_eight' => "
    Yours,", + 'mail_change_email_nine' => "La Squadra %s.", + 'mail_profile_change_confirmation' => " conferma cambio profilo", + 'text_go_back' => "torna indietro", + 'text_category' => "Categoria", + 'text_source' => "Fonte", + 'text_codec' => "Codec", + 'text_standard' => "Standard", + 'text_processing' => "Elaborazione", + 'text_show_dead_active' => "Mostra Dead/Active?", + 'select_including_dead' => "inclusi morti", + 'select_active' => "attivo", + 'select_dead' => "morto", + 'text_show_special_torrents' => "Mostrare Promozione?", + 'select_all' => "tutti", + 'select_normal' => "normale", + 'select_free' => "gratis", + 'select_two_times_up' => "2x su", + 'select_free_two_times_up' => "libero e 2x su", + 'text_show_bookmarked' => "Mostra Segnalibro?", + 'select_bookmarked' => "Segnalibro", + 'select_bookmarked_exclude' => "Non Segnalibro", + 'select_with' => "con", + 'select_without' => "senza", + 'text_review' => " revisione", + 'row_pm_boxes' => "Caselle PM", + 'text_show' => "Mostra ", + 'text_pms_per_page' => " pms per pagina (max=100)", + 'row_shoutbox' => "Shoutbox", + 'text_show_last' => "Mostra l'ultimo ", + 'text_messages_at_shoutbox' => " messaggi a shoutbox (0=usa impostazione predefinita, min=10, max=500)", + 'text_refresh_shoutbox_every' => "Aggiorna shoutbox ogni ", + 'text_seconds' => " secondi (0=usa impostazione predefinita, min=10, max=3600)", + 'text_hide_helpbox_messages' => "Nascondi messaggi dalla finestra di aiuto", + 'row_torrent_detail' => "Pagina Dettaglio Torrent", + 'text_show_description' => "Mostra Descrizione", + 'text_show_nfo' => "Mostra NFO", + 'text_show_imdb_info' => "Mostra Informazioni IMDb", + 'text_show_douban_info' => "Shou Douban Informazioni", + 'text_show_lastfm_info' => "Show Last.fm Information", + 'text_show_reviews' => "Mostra recensioni", + 'text_show_comments' => "Mostra commenti", + 'row_browse_page' => "Pagina Torrent", + 'text_browse_setting_warning' => "ATTENZIONE: Accendere molte funzionalità potrebbe rallentare la velocità di navigazione.", + 'text_torrents_per_page' => " torrent per pagina ", + 'text_tooltip_type' => "Tipo di suggerimento sul nome del torrent", + 'text_last_review' => "Ultima recensione", + 'text_minor_imdb_info' => "Informazioni Minori Imdb (Titolo + Anno + Valutazione Imdb + Paese + Genere + Direttore + Main Cast + Tagline)", + 'text_median_imdb_info' => "Mediana IMDb Info (Picture + Title + Year + IMDb Rating + Runtime + Country + Language + Director + Genere + Main Cast + Plot Outline in English)", + 'text_douban_info' => "Douban Info (Picture + Title + Year + Douban Rating + Language + Director + Region + Main Cast + Plot Outline in Chinese)", + 'text_off' => "Off", + 'text_show_lastfm_tooltip' => "Mostra informazioni su Last.fm nel suggerimento", + 'row_time_type' => "Tipo Di Ora", + 'text_time_added' => "Tempo Aggiunto", + 'text_time_elapsed' => "Tempo Elastato", + 'text_append_words_to_torrents' => "Torrent speciali", + 'text_append_sticky' => "Aggiungi l'icona \"sticky\" adesiva ai torrent attaccati in alto", + 'text_append_new' => "Aggiungi 'Nuovo' ai nuovi torrent", + 'text_append_picked' => "Aggiungi parole, ad esempio 'Classic', ai torrent selezionati dai critici", + 'text_show_action_icons' => "Mostra icone azione", + 'text_show_nfo_icon' => "Icona NFO", + 'text_show_download_icon' => "Scarica icona", + 'text_show_edit_icon' => "Modifica icona", + 'text_if_owner' => " (se proprietario di torrent)", + 'text_show_bookmark_icon' => "Icona segnalibro", + 'text_comments_reviews' => "Commenti", + 'text_show_comment_number' => "Mostra numero di commenti ", + 'text_last_comment_on_tooltip' => " ultimo commento sul suggerimento", + 'text_show_review_number' => "Mostra numero di recensioni ", + 'row_school' => "Scuola", + 'row_discuss' => "Discutere", + 'row_funbox' => "Funbox", + 'text_show_funbox' => "Mostra funbox nella home page", + 'text_send' => "Invia", + 'text_use' => "Usa", + 'text_view' => "Visualizza", + 'row_ip_location' => "Posizione", + 'text_translation_note' => "La tua lingua non è nella lista? Vedi cosa puoi fare per ", + 'text_translation_link' => "AIUTO ALLA TRADUZIONE", + 'text_movies_and_tvs' => "Film & TV:", + 'text_games_and_appz' => "Giochi & Appz:", + 'text_others' => "Altro:", + 'text_at_browse_page' => "Sezione torrent", + 'text_at_special_page' => "Sezione speciale", + 'text_additional_selection' => "Selezioni aggiuntive", + 'text_stylesheet_note' => "Più fogli di stile? Vuoi progettare il tuo? ", + 'text_stylesheet_link' => "CLICCA QUI", + 'row_font_size' => "Font Size", + 'select_small' => "Piccolo", + 'select_large' => "Grande", + 'text_medium' => "Medio", + 'text_torrents_on_promotion' => "Torrent su promozione: ", + 'text_highlight' => "Evidenzia", + 'text_append_words' => "Aggiungi parole, ad esempio '2X Free'", + 'text_append_icon' => "Aggiungi l'icona, ad esempio \"free\"", + 'text_no_mark' => "Off", + 'text_signature_note' => "Può contenere codici BB. La dimensione massima dell'immagine è 500*200 e solo la prima immagine sarebbe visualizzata.", + 'row_click_on_topic' => "Clicca sull'argomento", + 'text_go_to_first_page' => "vai alla prima pagina", + 'text_go_to_last_page' => "vai all'ultima pagina", + 'select_half_down' => "50% in calo", + 'row_category_icons' => "Icone Categoria", + 'text_team' => "Gruppo", + 'text_audio_codec' => "Codec Audio", + 'text_sub_category' => "Sottocategorie", + 'select_medium' => "Medio", + 'row_tooltip_last_post' => "Mostra il suggerimento dell'ultimo post", + 'checkbox_last_post_note' => "(Se ti disturba, spegnerla)", + 'row_network_bandwidth' => "Larghezza Banda Di Rete", + 'text_downstream_rate' => "Tasso Di Downstream", + 'text_upstream_rate' => "Tasso Di Alto", + 'text_isp' => "ISP", + 'text_show_title' => "Mostra titolo", + 'text_show_small_description' => "Descrizione piccola", + 'row_show_advertisements' => "Mostra Pubblicità", + 'text_can_turn_off_advertisement' => " o sopra può scegliere di non vedere pubblicità", + 'text_buy_no_advertisement' => " o superiore può utilizzare il bonus per acquistare un po 'di tempo senza pubblicità a ", + 'text_bonus_center' => " centro bonus", + 'text_show_advertisement_note' => "Mi piacerebbe vedere le pubblicità", + 'row_promotion_link' => "Link Promozione", + 'text_update_promotion_link' => "Aggiorna Link Promozione", + 'text_read_more' => "Leggi Di Più", + 'row_two_step_secret' => 'Autenticazione a due passi', + 'text_two_step_secret_bind_by_qrdoe_note' => 'È possibile utilizzare Google Authenticator o Authy per scansionare il codice QR sulla sinistra

    Se il codice QR sulla sinistra non viene caricato correttamente, puoi provare ad aprire questo link per caricare: ', + 'text_two_step_secret_bind_manually_note' => 'Oppure inserisci manualmente la seguente chiave nell\'APP: ', + 'text_two_step_secret_bind_complete_note' => 'Inserisci il codice per completare l\'autenticazione in due passaggi', + 'text_two_step_secret_unbind_note' => 'Inserisci il codice per annullare l\'autenticazione in due passaggi', + 'row_passkey_login_url' => 'Passkey login URL', + 'row_seed_box' => 'SeedBox', + 'add_seed_box_btn' => 'Registrati', + 'checkbox_pm_on_topic_reply' => 'Avvisami quando ci sono nuove risposte ai post del forum', + 'checkbox_pm_on_hr_reached' => 'Avvisami quando H&R raggiunge l\'obiettivo', +); + +?> diff --git a/lang/it/lang_userdetails.php b/lang/it/lang_userdetails.php new file mode 100644 index 00000000..5b9cccd9 --- /dev/null +++ b/lang/it/lang_userdetails.php @@ -0,0 +1,160 @@ + "Errore", + 'std_no_such_user' => "Nessun utente con questo ID!", + 'head_details_for' => "Dettagli per ", + 'text_account_disabled_note' => "Questo account è stato disabilitato!", + 'text_remove_from_friends' => "rimuovi dagli amici", + 'text_remove_from_blocks' => "rimuovi dai blocchi", + 'text_add_to_friends' => "aggiungi agli amici", + 'text_add_to_blocks' => "aggiungi a blocchi", + 'text_flush_ghost_torrents' => "Per scaricare i tuoi torrent fantasma clicca ", + 'text_here' => "qui", + 'row_invitation' => "Inviti", + 'text_no_invitation' => "Nessun Invito Disponibile", + 'link_send_invitation' => "Invia Invito", + 'row_invited_by' => "Invitato Da", + 'row_join_date' => "Unisciti data", + 'row_last_seen' => "Ultima vista", + 'row_last_seen_location' => "Ultima vista(Posizione)", + 'row_email' => "Email", + 'row_users_ips' => "Ip Utente", + 'row_ip_history' => "Storico IP", + 'text_user_earlier_used' => "Questo utente ha usato in precedenza ", + 'text_different_ips' => " indirizzo IP diverso", + 'row_ip_address' => "Indirizzo IP", + 'row_bt_client' => "Client BT", + 'row_uploaded' => "Caricato", + 'row_downloaded' => "Scaricato", + 'row_share_ratio' => "Rapporto Condivisione", + 'row_real_uploaded' => "Caricato Effettivamente", + 'row_real_downloaded' => "Effettivo Scaricato", + 'row_real_share_ratio' => "Rapporto Di Azioni Attuali", + 'row_real_ps' => "Effettivo caricato/Effettivo scaricato (Solo a scopo di registrazione, non per il calcolo del tasso di condivisione)", + 'row_internet_speed' => "Larghezza Banda Di Rete", + 'row_gender' => "Sesso", + 'row_donated' => "Donato", + 'row_avatar' => "Avatar", + 'row_class' => "Classe", + 'row_torrent_comment' => "Commenti Torrent ", + 'link_view_comments' => "Visualizza Commenti", + 'row_forum_posts' => "Forum post", + 'link_view_posts' => "Visualizza Post", + 'row_karma_points' => "Punti Karma", + 'row_uploaded_torrents' => "Caricato Torrent", + 'text_show_or_hide' => "[Mostra/Nascondi]", + 'row_current_seeding' => "Seeding Corrente", + 'row_current_leeching' => "Perdita Corrente", + 'row_completed_torrents' => "Torrent Completati", + 'row_incomplete_torrents' => "Torrent Incompleto", + 'text_public_access_denied' => "Siamo spiacenti, accesso pubblico negato da ", + 'text_user_wants_privacy' => ". He(She) vuole proteggere i dati personali.", + 'text_edit_user' => "Modifica Utente", + 'row_title' => "Titolo", + 'row_privacy_level' => "Livello Privacy", + 'radio_low' => "Basso", + 'radio_normal' => "Normale", + 'radio_strong' => "Forte", + 'row_avatar_url' => "Avatar URL", + 'row_signature' => "Firma", + 'row_donor_status' => "Donatore Status", + 'row_donor' => "Donatore", + 'radio_yes' => "Sì", + 'radio_no' => "No", + 'row_support' => "Supporto", + 'row_support_language' => "Lingua Di Supporto", + 'row_support_for' => "Supporto per", + 'row_comment' => "Commento", + 'row_seeding_karma' => "Bonus", + 'row_warning_system' => "Avviso Sistema

    (comportamento cattivo)", + 'text_not_warned' => "Non avvisato.", + 'text_arbitrary_duration' => "(Durata arbitraria)", + 'text_until' => "Fino A ", + 'text_to_go' => " per andare", + 'text_warn_for' => "Avviso per ", + 'text_week' => "Settimana", + 'text_weeks' => "Settimane", + 'text_unlimited' => "Illimitato", + 'text_reason_of_warning' => "Motivo dell'avviso", + 'text_times_warned' => "Volte Avvisate", + 'text_last_warning' => "Ultimo Avviso", + 'text_not_warned_note' => "Questo utente non è stato ancora avvisato", + 'row_auto_warning' => "Avvertimento Automatico", + 'text_low_ratio' => "Rapporto Basso", + 'text_leech_warned' => "Leech Warned!", + 'text_for_unlimited_time' => "Per tempo illimitato...", + 'row_movie_picker' => "Selettore", + 'row_enabled' => "Abilitato", + 'row_forum_post_possible' => "Forum Post possibile?", + 'row_upload_possible' => "Caricare possibile?", + 'row_download_possible' => "Download possibile?", + 'row_change_username' => "Cambia Nome Utente", + 'row_change_email' => "Cambia E-mail", + 'row_change_password' => "Cambia Password", + 'row_repeat_password' => "Ripeti Password", + 'row_amount_uploaded' => "Importo Caricato", + 'row_amount_downloaded' => "Importo Scaricato", + 'row_passkey' => "Passkey", + 'checkbox_reset_passkey' => " Reset passkey", + 'submit_okay' => "Ok", + 'text_delete_user' => "Elimina Utente", + 'submit_delete' => "Elimina", + 'text_ago' => " fa", + 'title_show_or_hide' => "Mostra/Nascondi", + 'title_download' => "Scarica: ", + 'title_upload' => "Caricamento: ", + 'title_male' => "Maschio", + 'title_female' => "Femmina", + 'title_not_available' => "N/A", + 'title_send_pm' => "Invia PM", + 'title_report_user' => "Segnala Utente", + 'text_free' => "Gratis", + 'text_two_times_up' => "2X", + 'text_free_two_times_up' => "2X Gratis", + 'text_half_down' => "50%", + 'text_by' => "di ", + 'text_by_system' => "per sistema", + 'text_transaction_memo' => "Memo Di Transazione:", + 'row_pick_for' => "Pick..", + 'row_staff_duties' => "Obblighi Del Personale/Motivo VIP", + 'row_transfer' => "Storni", + 'row_sltime' => "Tempo Di Torrenting", + 'text_seeding_leeching_time_ratio' => "Rapporto Tempo Se./Le.", + 'text_seeding_time' => "Tempo Di Semina", + 'text_leeching_time' => "Tempo Di Perdita", + 'text_since' => "Poiché: ", + 'row_compatibility' => "Gusto Compatibilità", + 'text_unknown' => "Sconosciuto", + 'text_super' => "Super", + 'text_very_high' => "Molto Alto", + 'text_high' => "Alto", + 'text_medium' => "Medio", + 'text_low' => "Basso", + 'text_very_low' => "Molto Basso", + 'row_invites' => "Inviti", + 'js_delete_user_note' => "È ora possibile eliminare questo account utenti, essere MOLTO MOLTO sicuro.", + 'std_sorry' => "Spiacenti", + 'std_user_not_confirmed' => "L'utente non è ancora stato confermato!", + 'text_not_available' => "N/A", + 'row_vip_by_bonus' => "VIP con bonus", + 'text_vip_by_bonus_note' => "Se lo stato VIP è guadagnato utilizzando il bonus", + 'row_vip_until' => "VIP fino al", + 'text_vip_until_note' => "Il formato dell'ora è AAAA-MM-GG hh:mm:ss. L'ora fino a quando lo stato VIP è valido. Perché questo funzioni, 'VIP con bonus' deve essere impostato su 'sì'.", + 'row_show_ad' => "Show Ad", + 'row_no_ad_until' => "Nessun Annuncio Fino A", + 'text_no_ad_until_note' => "Il formato dell'ora è AAAA-MM-GG hh:mm:ss. Il tempo fino a quando l'utente può disattivare gli annunci.", + 'disable_user_migrated' => 'Abilita o disabilita l\'uso vai al nuovo sistema di gestione.', + 'text_user_id'=> "Id Utente", + 'row_medal' => 'Medaglia', + 'row_donoruntil' => 'Donato fino a', + 'text_donoruntil_note' => "Il formato dell'ora è AAAA-MM-GG hh:mm:ss. Lasciare vuoto permanentemente.", + 'change_field_value_migrated' => 'Modifica per favore vai alla %s.', + 'sure_to_remove_leech_warn' => 'Sei sicuro di voler rimuovere questo avvertimento di sanguisuga?', + 'row_user_props' => 'Props', + 'meta_key_change_username_username' => 'Nuovo nome utente', + 'consume' => 'Usa', + 'text_bonus_table' => 'Bonus per hour', +); +?> diff --git a/lang/it/lang_userhistory.php b/lang/it/lang_userhistory.php new file mode 100644 index 00000000..f825cf5b --- /dev/null +++ b/lang/it/lang_userhistory.php @@ -0,0 +1,26 @@ + "Errore", + 'std_permission_denied' => "Permesso negato", + 'std_no_posts_found' => "Nessun post trovato", + 'head_posts_history' => "Cronologia post", + 'text_posts_history_for' => "Storico post per ", + 'text_forum' => "Forum: ", + 'text_topic' => "Argomento: ", + 'text_post' => "Post: ", + 'text_new' => "NUOVO!", + 'text_last_edited' => "Ultima modifica da ", + 'text_at' => " a ", + 'std_no_comments_found' => "Nessun commento trovato", + 'head_comments_history' => "Cronologia commenti", + 'text_comments_history_for' => "Cronologia commenti per ", + 'text_torrent' => "Torrent: ", + 'text_comment' => "Comment: ", + 'std_history_error' => "Errore Cronologia", + 'std_unkown_action' => "Azione sconosciuta", + 'std_invalid_or_no_query' => "Interrogazione non valida o non valida." +); + +?> diff --git a/lang/it/lang_users.php b/lang/it/lang_users.php new file mode 100644 index 00000000..9222ca40 --- /dev/null +++ b/lang/it/lang_users.php @@ -0,0 +1,20 @@ + "Utenti", + 'text_users' => "

    Utenti

    ", + 'text_search' => "Cerca:", + 'select_any_class' => "(qualsiasi classe)", + 'submit_okay' => "Ok", + 'text_prev' => "Precedente", + 'text_next' => "Successivo", + 'col_user_name' => "Nome utente", + 'col_registered' => "Registrato", + 'col_last_access' => "Ultimo accesso", + 'col_class' => "Classe", + 'col_country' => "Paese", + 'select_any_country'=> "(qualsiasi paese)", +); + +?> diff --git a/lang/it/lang_viewfilelist.php b/lang/it/lang_viewfilelist.php new file mode 100644 index 00000000..ec8f64aa --- /dev/null +++ b/lang/it/lang_viewfilelist.php @@ -0,0 +1,8 @@ + "Percorso", +); + +?> \ No newline at end of file diff --git a/lang/it/lang_viewnfo.php b/lang/it/lang_viewnfo.php new file mode 100644 index 00000000..6734eea2 --- /dev/null +++ b/lang/it/lang_viewnfo.php @@ -0,0 +1,13 @@ + "Puke", + 'head_view_nfo' => "Visualizza File NFO", + 'text_nfo_for' => "NFO per", + 'title_dos_vy' => "", + 'text_dos_vy' => "DOS-vy", + 'title_windows_vy' => "Latin-1: Inget socker tack!", + 'text_windows_vy' => "Windows-vy" +); +?> \ No newline at end of file diff --git a/lang/it/lang_viewpeerlist.php b/lang/it/lang_viewpeerlist.php new file mode 100644 index 00000000..96c56e5d --- /dev/null +++ b/lang/it/lang_viewpeerlist.php @@ -0,0 +1,28 @@ + "Utente", + 'col_location' => "Posizione", + 'col_connectable' => "Connettibile", + 'col_uploaded' => "Caricato", + 'col_rate' => "Vota", + 'col_av_rate' => "Tasso Medio", + 'col_downloaded' => "Scaricato", + 'col_ratio' => "Rapporto", + 'col_complete' => "Complete", + 'col_connected' => "Connesso", + 'col_idle' => "Inattivo", + 'col_client' => "Client", + 'text_anonymous' => "Anonimo", + 'text_unknown' => "(sconosciuto)", + 'text_seeders' => "Seminatrici", + 'text_leechers' => "Leechers", + 'row_seeders' => "Seminatrici", + 'row_leechers' => "Leechers", + 'text_yes' => "Sì", + 'text_no' => "No", + 'text_inf' => "Inf." +); + +?> diff --git a/lang/it/lang_viewrequests.php b/lang/it/lang_viewrequests.php new file mode 100644 index 00000000..37df27b1 --- /dev/null +++ b/lang/it/lang_viewrequests.php @@ -0,0 +1,65 @@ + 'Richieste', + 'request' => 'Richiesta', + 'add_request' => 'Aggiungi richiesta', + 'request_name' => 'Nome della richiesta', + 'view_request_all' => 'Vedi tutti', + 'view_request_resolved' => 'Visualizza risolto', + 'view_request_unresolved' => 'Visualizza irrisolto', + 'view_request_resolving' => 'Visualizza risoluzione', + 'view_request_my' => 'Visualizza Il Mio', + 'thead_name' => 'Nome', + 'thead_price_newest' => 'Offerta più recente', + 'thead_price_original' => 'Offerta originale', + 'thead_comment_count' => 'Conteggio commenti', + 'thead_on_request_count' => 'Conteggio forniture', + 'thead_request_user' => 'Utente', + 'thead_created_at' => 'Tempo', + 'thead_status' => 'Stato', + 'request_status_resolved' => 'Richiesta riuscita', + 'request_status_resolving' => 'Richiesta', + 'action_search' => 'Cerca', + 'basic_info' => 'Informazioni di base', + 'created_at' => 'Creato il', + 'reward' => 'Ricompensa', + 'newest_bidding' => 'Offerta Più Recente', + 'original_bidding' => 'Offerta originale', + 'on_request' => 'Fornitura', + 'recycle' => 'Riciclo', + 'recycle_title' => 'Riciclo restituisce solo l\'80% dei bouns', + 'add_reward' => 'Aggiungi resard', + 'add_reward_desc' => 'Aggiungi ricompensa detrae 25 bouns come carica di servizio', + 'no_request_yet' => 'Niente ancora', + 'btn_select_text' => 'Usa la risorsa selezionata per la richiesta', + 'request_already_resolved' => 'Questo requst è risolto', + 'add_request_desc' => 'La ricompensa non può essere inferiore a 100 tagli, e detrae 100 taglie come servizio di ricarica per ogni richiesta', + 'description_required' => 'Descrizione richiesta!', + 'name_required' => 'Nome richiesto!', + 'amount_required' => 'Ricompensa richiesta!', + 'amount_must_be_numeric' => 'L\'importo deve essere numerico!', + 'add_request_amount_minimum' => 'La ricompensa non può essere inferiore a 100 tagli!', + 'add_request_amount_maximum' => 'La ricompensa non può più di 10000 tagli!', + 'bouns_not_enough' => 'I tuoi bouns non sono sufficienti!!!', + 'add_request_success' => 'Aggiunta richiesta riuscita', + 'request_id_must_be_numeric' => 'L\'ID della richiesta deve essere numerico', + 'request_deleted' => 'Richiesta eliminata!', + 'edit_request_success' => 'Modifica richiesta riuscita', + 'do_request' => 'Voglio una richiesta', + 'type_in_torrent_id' => 'Inserisci ID torrent', + 'delete_request_success' => 'Eliminazione richiesta riuscita', + 'torrent_is_picked_for_request' => 'La tua richiesta è stata fornita', + 'confirm_request_success' => 'Conferma successo', + 'message_required' => 'Messaggio richiesto!', + 'request_created_at' => 'Creato il', + 'request_get_new_reply' => 'La tua richiesta riceve una nuova risposta', + 'request_comment_get_new_reply' => 'Il commento della tua richiesta riceve una nuova risposta', + 'torrent_not_release_yet' => 'Questo torrent non è ancora rilasciato', + 'supply_already_exists' => 'Questa fornitura esiste già!', + 'message_please_confirm_supply' => 'Qualcuno fornisce la tua richiesta, ti preghiamo di confermarla in tempo', + 'please_confirm_supply' => 'Si prega di confermare la fornitura in tempo', + 'supply_success' => 'Richiesta riuscita', + 'add_reward_amount_minimum' => 'Aggiungi l\'importo della ricompensa non può essere inferiore a 100 bonus!', + 'add_reward_amount_maximum' => 'Aggiungere importo premio non può più di 5000 bonus!', + 'add_reward_success' => 'Aggiungi ricompensa con successo', +]; \ No newline at end of file diff --git a/lang/it/lang_viewsnatches.php b/lang/it/lang_viewsnatches.php new file mode 100644 index 00000000..6de4a088 --- /dev/null +++ b/lang/it/lang_viewsnatches.php @@ -0,0 +1,33 @@ + "Snac Dettagli", + 'text_snatch_detail_for' => "Snac Dettagli per ", + 'text_users_top_finished_recently' => "Gli utenti in alto finito il download più recentemente", + 'col_username' => "Username", + 'col_uploaded' => "Caricato", + 'col_downloaded' => "Scaricato", + 'col_se_time' => "Se. Tempo", + 'col_le_time' => "Le. Tempo", + 'col_ratio' => "Rapporto", + 'col_when_completed' => "Completato Il", + 'col_last_action' => "Ultima Azione", + 'col_seeding' => "Semina", + 'col_pm_user' => "Utente PM", + 'col_report_user' => "Report Utente", + 'col_on_or_off' => "On/Off", + 'text_global' => "Globale", + 'text_torrent' => "Torrent", + 'text_yes' => "Sì", + 'text_no'=> "No", + 'title_report' => "Segnala", + 'col_ip' => "IP", + 'text_per_second' => "/s", + 'text_anonymous' => "anonimo", + 'text_inf' => "Inf.", + 'std_sorry' => "Spiacenti", + 'std_no_snatched_users' => "Nessun utente ha ancora strappato questo torrent.", +); + +?> diff --git a/lang/ja/lang_aboutnexus.php b/lang/ja/lang_aboutnexus.php index f434caa4..25ef701e 100644 --- a/lang/ja/lang_aboutnexus.php +++ b/lang/ja/lang_aboutnexus.php @@ -1,35 +1,38 @@ 'バージョン', - 'text_version_note' => 'このサイトで使用されるコード%sは次のようになります%s。以下はバージョンの詳細です。', - 'text_main_version' => 'メインバージョン', - 'text_sub_version' => '2番目のバージョン', - 'text_release_date' => 'リリース時間', - 'text_authorize_to' => '認定者', - 'text_authorization_type' => '承認タイプ', - 'text_commercial' => '商業ライセンス', - 'text_free' => '無料の承認', - 'text_nexus' => 'について', - 'text_nexus_note' => 'Zhijiang UniversityのNexusチームによって開始および開発されました。その目標は、Tbsourceプロジェクトを置き換え、ユーザーの評判と知識を重視するリソース共有コミュニティに完全で整然としたソリューションを提供することです。

    -%sの最初のフェーズバージョンは、Tbsourceに基づいて開発されています。コード効率を大幅に改善しながら、後者に基づいて多数の機能を追加または改善しました。 Tbsourceに加えて、Bit-HDTV、What.CD、Saneetorrentsなど、他のプライベートトラッカーのアイデアやコードも吸収しました。', - 'text_authorization' => '許可について', - 'text_authorization_note' => '使用することに興味がある場合%s共有Webサイトをセットアップするには、お問い合わせをお願いします。', - 'text_translation' => '翻訳について', - 'text_translation_note' => 'ユーザー側の多言語の切り替えをサポートします。私たちの主要言語は英語です。

    あなたの言語が現在サポートされていない(利用できない)場合、翻訳を支援することに興味がある場合は、翻訳手順を読んだ後にお問い合わせください。私たちは常に新しい翻訳を歓迎します。さらに、既存の翻訳には、メンテナンス、特にアウトトート、不完全、または新しいものとしてマークされた言語がメンテナンスが必要です。', - 'text_flag' => 'フラグ', - 'text_language' => '言語', - 'text_state' => '州', - 'text_stylesheet' => 'インターフェイススタイルについて', - 'text_stylesheet_note' => '%sのページレイアウトは完全にCSS設計に基づいているため、ユーザーはウェブサイトの外観をカスタマイズして新しいインターフェイススタイルを簡単に追加できます。

    以下は、このサイトで利用可能なインターフェイススタイルのリストです%s。より多くのインターフェイススタイルを取得したり、自分でデザインしたい場合は、お問い合わせ。', - 'text_name' => '名前', - 'text_designer' => 'デザイナー', - 'text_comment' => '説明します', - 'text_contact' => '接続する', - 'text_contact_note' => '参加に興味がありますか?何か提案はありますか?コードのバグを見つけましたか?ビジネスを交渉しますか?次の方法でお問い合わせください。', - 'text_web_site' => 'Webサイト', - 'text_email' => '郵便', - 'text_msn' => 'MSN', - 'text_qq' => 'QQ', - 'text_telephone' => '電話', +$lang_aboutnexus = array +( + 'text_version' => "バージョン", + 'text_version_note' => "このトラッカー %s は %sによって電源が供給されています。以下はバージョンの詳細です。", + 'text_main_version' => "メインバージョン", + 'text_sub_version' => "サブバージョン", + 'text_release_date' => "公開日", + 'text_authorize_to' => "承認先", + 'text_authorization_type' => "認証タイプ", + 'text_commercial' => "Commercial", + 'text_free' => "無料", + 'text_nexus' => "About ", + 'text_nexus_note' => " 「Nexus Team」と自称する中国浙江大学の連中が始めた。 これは、TBSourceプロジェクトの代替となることに専念し、リソース共有コミュニティをクレジットのメンバーと作成するための完全なソリューションを提示します。 秩序と知識。

    +TBSourceからの %s フォークの最初のステージ。 コード効率が大幅に向上し、オリジナルのTBSourceコードには存在しないか、はるかに優れていない広範な機能セットを提供します。 TBSource以外にも、Bit-HDTV、What.cd、SceneTorrentなどの他のプライベートトラッカーからいくつかのアイデアやコードを借りています。", + 'text_authorization' => "認証について", + 'text_authorization_note' => "If you like to use %s to power your tracker, feel free to contact us.", + 'text_translation' => "翻訳について", + 'text_translation_note' => " supports user-side site language switch. The master language is English.

    If your language is not (yet) available and you are interested in translating it, please read the translation HOWTO and contact us. We always welcome new translations. Also, the available translations can always use a helping hand, especially those marked as outdate, incomplete or in need of new translators.", + 'text_flag' => "フラグ", + 'text_language' => "言語", + 'text_state' => "都道府県:", + 'text_stylesheet' => "スタイルシートについて", + 'text_stylesheet_note' => "The layout of %s is fully CSS-based designed, which allows maximum user interface customization and makes adding new stylesheets easy.

    The following is a list of currently available stylesheets at this tracker %s. If you want more stylesheets or feel like to design your own one, contact us.", + 'text_name' => "名前", + 'text_designer' => "デザイナー", + 'text_comment' => "コメント", + 'text_contact' => "お問い合わせ ", + 'text_contact_note' => "私たちに参加してみませんか?提案やバグを見つけましょうか?ビジネスについて話しましょうか?以下の方法でお問い合わせください。", + 'text_web_site' => "Web Site", + 'text_email' => "Eメールアドレス", + 'text_msn' => "MSN", + 'text_qq' => "QQ", + 'text_telephone' => "Tele.", ); + +?> diff --git a/lang/ja/lang_admanage.php b/lang/ja/lang_admanage.php index 95034cc6..8b150b16 100644 --- a/lang/ja/lang_admanage.php +++ b/lang/ja/lang_admanage.php @@ -1,100 +1,103 @@ '広告を管理します', - 'text_ad_management' => '広告を管理します', - 'text_add_ad' => '広告を追加します', - 'text_header' => 'ヘッダ', - 'text_footer' => 'ページの終わり', - 'text_below_navigation' => 'ナビゲーションバーの下', - 'text_below_searchbox' => '以下の検索ボックス', - 'text_torrent_detail' => 'シードの詳細ページ', - 'text_comment_page' => 'コメントページ', - 'text_inter_overforums' => 'フォーラムパーティション間隔', - 'text_forum_post_page' => 'フォーラムポストルーム', - 'text_popup' => 'ポップアップ広告', - 'text_no_ads_yet' => 'まだ広告はありません!', - 'col_enabled' => '有効にする', - 'col_name' => '名前', - 'col_position' => '位置', - 'col_order' => '選別', - 'col_type' => '表示方法', - 'col_start_time' => '開始時間', - 'col_end_time' => '終了時間', - 'col_action' => '行動', - 'text_yes' => 'はい', - 'text_no' => 'いいえ', - 'text_bbcodes' => 'BBCODEコード', - 'text_xhtml' => 'XHTMLコード', - 'text_text' => '言葉', - 'text_image' => '写真', - 'text_flash' => 'フラッシュ', - 'text_delete' => '消去', - 'text_edit' => '編集', - 'js_sure_to_delete_ad' => 'この広告を削除したいですか?', - 'std_error' => '間違い', - 'std_invalid_id' => '無効なID', - 'std_invalid_position' => '無効な広告ロケーション', - 'head_add_ad' => '広告を追加します', - 'head_edit_ad' => '広告を編集します', - 'text_note' => '知らせ', - 'text_ad_detail' => '広告の詳細', - 'row_name' => '名前', - 'row_start_time' => '開始時間', - 'row_end_time' => '終了時間', - 'row_enabled' => '有効にする', - 'row_order' => '選別', - 'row_type' => '表示方法', - 'row_image_url' => '画像URL', - 'row_image_link' => '広告リンク', - 'row_image_width' => '画像幅', - 'row_image_height' => '画像の高さ', - 'row_image_tooltip' => '中断されたプロンプトテキストをリンクします', - 'row_text_content' => 'テキストコンテンツ', - 'row_text_link' => '広告リンク', - 'row_text_size' => 'テキストサイズ', - 'row_bbcodes_code' => 'BBCODEコード', - 'row_xhtml_code' => 'XHTMLコード', - 'row_flash_url' => 'フラッシュURL', - 'row_flash_width' => 'フラッシュ幅', - 'row_flash_height' => 'フラッシュの高さ', - 'submit_submit' => '提出する', - 'text_ad' => '宣伝します', - 'text_header_note' => 'すべてのページの右上隅に表示されます。 580x90以内のサイズの画像またはフラッシュを使用することをお勧めします。優先度が最も高い広告のみが表示されます。', - 'text_footer_note' => 'すべてのページの最下部に表示されます。推奨される広告サイズは728x160以内です。優先度が最も高い広告のみが表示されます。', - 'text_below_navigation_note' => 'すべてのページのナビゲーションバーの下に示されています。推奨される広告サイズは728x90です。優先度が最も高い広告のみが表示されます。', - 'text_below_searchbox_note' => 'シードページ検索ボックスの下に示されています。推奨される広告サイズは728x90です。優先度が最も高い広告のみが表示されます。', - 'text_torrent_detail_note' => 'シード詳細ページのシード紹介に示されています。推奨される広告サイズは600x160です。優先度が最も高い広告のみが表示されます。', - 'text_comment_page_note' => 'シードと候補のコメントの間に表示されます。推奨される広告サイズは600x160です。複数の広告を同時に表示できます。', - 'text_inter_overforums_note' => 'フォーラムのホームページフォーラムパーティションに表示されます。推奨される広告サイズは728x90です。複数の広告を同時に表示できます。', - 'text_forum_post_page_note' => 'フォーラムのトピックの詳細ページの投稿に表示されます。推奨される広告サイズは600x160です。複数の広告を同時に表示できます。', - 'text_popup_note' => 'すべてのページでプロモーションについて話してください。非常に邪魔になります。注意して使用してください。推奨される広告サイズは468x90です。', - 'text_name_note' => '簡単に識別するために広告に名前を付けます。', - 'text_start_time_note' => '時間形式は、「2007-12-24 21:00:00:00」など、「年の数か月間の日の時間:分:秒秒」です。広告が有効になり始めた時期。', - 'text_end_time_note' => '時間形式は、「2008-01-24 21:00:00:00」など、「年の数か月間の日の時間:分:秒秒」です。広告が終了する時間。', - 'text_order_note' => '広告は優先度を表示します。値「0」は最優先事項です。
    広告の場所に複数の有効な広告がある場合:場所に1つの広告のみが許可されている場合、最優先広告が表示されます。場所が複数の広告を許可する場合、複数の広告が優先度の高い順に表示されます。複数の広告が同じ優先事項を持っている場合、最近追加された広告は優先度が高くなります。', - 'text_enabled_note' => '有効な広告のみが表示されます。', - 'text_type_note' => '広告の表示方法を選択してください。', - 'text_image_url_note' => '広告画像ファイルのURL。
    相対アドレス( \'pic/ad.jpg\'など)または絶対アドレス( \'https://nexusphp.org/ad.jpg\'など)を使用できます。', - 'text_image_link_note' => '広告が指しているリンク。 \'https://nexusphp.org/ad.html\'など。', - 'text_image_width_note' => 'ユニットはピクセルです。写真の幅。', - 'text_image_height_note' => 'ユニットはピクセルです。写真の高さ。', - 'text_image_tooltip_note' => '広告リンクはテキスト情報を一時停止します。', - 'text_text_content_note' => '表示されるテキスト広告の内容', - 'text_text_link_note' => '広告が指しているリンク。 \'https://nexusphp.org/ad.html\'など。', - 'text_text_size_note' => '広告テキストのフォントサイズ。 「30pt」などのユニットとしてPT、PX、およびEMを使用できます。空白のままにしている場合は、 \'30pt\'を使用します。', - 'text_bbcodes_code_note' => 'BBCodeコードとは何ですか?見る', - 'text_here' => 'ここ', - 'text_xhmtl_code_note' => '一般的に言えば、XHTMLを使用して広告を直接表示することを避けるようにしてください。そうすることで、コードエラーのために全体的なページの混乱を引き起こすだけでなく、安全リスク
    です。使用する必要がある場合は、XHTMLコードが安全で正しいことを確認してください。
    注< /b>:HTML 4.01仕様の代わりに、XHTML 1.0の移行仕様に従ってコードを入力してください。', - 'text_flash_url_note' => 'フラッシュファイルのURL。
    相対アドレス( \'pic/flash.demo.swf\'など)または絶対アドレス( \'https://nexusphp.org/flash.demo.swf\'など)を使用できます。', - 'text_flash_width_note' => 'ユニットはピクセルです。フラッシュディスプレイの幅。', - 'text_flash_height_note' => 'ユニットはピクセルです。フラッシュで表示される高さ。', - 'std_missing_form_data' => '書かれていない必要なアイテムがあります。', - 'std_invalid_type' => '無効な表示方法。', - 'std_success' => '成功', - 'std_edit_success' => '広告編集は成功しました。', - 'std_add_success' => '広告が正常に追加されました。', - 'text_unlimited' => '無制限', - 'std_go_back' => '広告リストに戻ります', - 'col_clicks' => 'クリック数', +$lang_admanage = array +( + 'head_ad_management' => "広告管理", + 'text_ad_management' => "広告管理", + 'text_add_ad' => "広告を追加", + 'text_header' => "ヘッダー", + 'text_footer' => "フッター", + 'text_below_navigation' => "ナビゲーションの下", + 'text_below_searchbox' => "検索ボックスの下", + 'text_torrent_detail' => "トレントの詳細", + 'text_comment_page' => "コメントページ", + 'text_inter_overforums' => "インターオーバーフォーラム", + 'text_forum_post_page' => "フォーラム投稿ページ", + 'text_popup' => "Popup", + 'text_no_ads_yet' => "広告はまだありません!", + 'col_enabled' => "有効", + 'col_name' => "名前", + 'col_position' => "位置", + 'col_order' => "ご注文", + 'col_type' => "方法", + 'col_start_time' => "開始時刻", + 'col_end_time' => "終了時刻", + 'col_action' => "アクション", + 'text_yes' => "はい", + 'text_no' => "いいえ", + 'text_bbcodes' => "BB コード", + 'text_xhtml' => "XHTML", + 'text_text' => "テキスト", + 'text_image' => "画像", + 'text_flash' => "フラッシュ", + 'text_delete' => "削除", + 'text_edit' => "編集", + 'js_sure_to_delete_ad' => "この広告を削除してもよろしいですか?", + 'std_error' => "エラー", + 'std_invalid_id' => "Invalid ID", + 'std_invalid_position' => "位置が無効です", + 'head_add_ad' => "広告を追加", + 'head_edit_ad' => "広告を編集", + 'text_note' => "メモ", + 'text_ad_detail' => "広告の詳細", + 'row_name' => "名前", + 'row_start_time' => "開始時刻", + 'row_end_time' => "終了時刻", + 'row_enabled' => "有効", + 'row_order' => "ご注文", + 'row_type' => "表示方法", + 'row_image_url' => "画像URL", + 'row_image_link' => "Ad Link", + 'row_image_width' => "画像の幅", + 'row_image_height' => "画像の高さ", + 'row_image_tooltip' => "リンクツールチップ", + 'row_text_content' => "テキストコンテンツ", + 'row_text_link' => "Ad Link", + 'row_text_size' => "文字サイズ", + 'row_bbcodes_code' => "BB コード", + 'row_xhtml_code' => "XHTML コード", + 'row_flash_url' => "フラッシュ URL", + 'row_flash_width' => "Flash Width", + 'row_flash_height' => "フラッシュの高さ", + 'submit_submit' => "Sumbit", + 'text_ad' => "広告", + 'text_header_note' => "すべてのページの右上に表示します。580*90以内の画像やフラッシュを使用することをお勧めします。1つの広告のみ表示されます。 ", + 'text_footer_note' => "ページの下部に表示します。推奨サイズは728*160です。1つの広告のみ表示されます。 ", + 'text_below_navigation_note' => "すべてのページにナビゲーションバーの下に表示します。推奨サイズは 728 * 90 です。広告が 1 つだけ表示されます。 ", + 'text_below_searchbox_note' => "Torrent ページの検索ボックスの下に表示します。推奨サイズは 728 * 90 です。広告が 1 つだけ表示されます。 ", + 'text_torrent_detail_note' => "トレントの詳細ページにトレントの説明を表示します。推奨サイズは600*160です。広告が1つだけ表示されます。 ", + 'text_comment_page_note' => "トレント詳細ページまたはオファー詳細ページのコメント間で表示します。推奨サイズは600*160です。複数の広告が一緒に表示されます。 ", + 'text_inter_overforums_note' => "フォーラムのホームページでオーバーフォーラム間を表示します。推奨サイズは 728 * 90 です。複数の広告が一緒に表示されます。", + 'text_forum_post_page_note' => "フォーラムトピック詳細ページの投稿間を表示します。推奨サイズは600*160です。複数の広告が同時に表示されます。", + 'text_popup_note' => "すべてのページをポップアップ表示します。ご心配なくご使用ください。推奨サイズは468*90です。", + 'text_name_note' => "広告を呼び出すだけの名前です。", + 'text_start_time_note' => "YYYY-MM-DD hh:mm:ssの形式で、例えば'2007-12-24 21:00:00'。広告が表示されるようになってからの時間。", + 'text_end_time_note' => "YYYY-MM-DD hh:mm:ssの形式で、例えば'2008-01-24 21:00:00'。広告が表示されるまでの時間。", + 'text_order_note' => "広告の優先度。値 '0' は最優先度を取得します。
    ポジションに複数の広告が掲載されている場合、最も優先度の高い広告が表示されます。 優先順位が高い人は広告が複数ある場合トップに表示されます 複数の利用可能な広告が同じ優先度値を持つ場合、最近追加された広告が最も高い優先度を持っています。 ", + 'text_enabled_note' => "有効な広告だけが表示されます。 ", + 'text_type_note' => "広告の表示方法を選択します。 ", + 'text_image_url_note' => "画像ファイルのURL。
    相対パス(例:'pic/ad.jpg')または絶対パス(例:'https://nexusphp.org/ad.jpg')の両方が問題ありません。 ", + 'text_image_link_note' => "広告のリンク。例:'https://nexusphp.org/ad.html' ", + 'text_image_width_note' => "ピクセル単位。画像が表示される時の幅。 ", + 'text_image_height_note' => "ピクセル単位。画像が表示される高さ。 ", + 'text_image_tooltip_note' => "リンクのツールチップに表示されるテキスト。 ", + 'text_text_content_note' => "テキスト広告の内容 ", + 'text_text_link_note' => "広告のリンク。例:'https://nexusphp.org/ad.html' ", + 'text_text_size_note' => "テキスト広告のフォントサイズ。pt、px、em、例えば'30pt'でも構いません。何も定義されていない場合は、'30pt'と仮定します。", + 'text_bbcodes_code_note' => "BBコードとは? ", + 'text_here' => "ここ", + 'text_xhmtl_code_note' => "You should avoid using XHTML not only because incorrect XHTML code could easily mess up the whole page, but also because it's INSECURE. If you have to, make sure the XHTML code is secure and correct.
    NOTE: Please follow the XHTML 1.0 Transitional specification, not HTML 4.01.", + 'text_flash_url_note' => "FlashファイルのURL。
    相対パス(例:'pic/flash.demo.swf')または絶対パス(例:'https://nexusphp.org/flash.demo.swf')の両方が問題ありません。", + 'text_flash_width_note' => "ピクセル単位。Flashが表示される幅。 ", + 'text_flash_height_note' => "ピクセル単位。Flashが表示される高さ。 ", + 'std_missing_form_data' => "フォームデータがありません。", + 'std_invalid_type' => "無効な表示方法です。", + 'std_success' => "成功", + 'std_edit_success' => "広告が編集されます。 ", + 'std_add_success' => "広告が追加されます。 ", + 'text_unlimited' => "無制限の", + 'std_go_back' => "広告一覧に戻る", + 'col_clicks' => "クリック数" ); + +?> diff --git a/lang/ja/lang_adredir.php b/lang/ja/lang_adredir.php index ea963163..e7cefca1 100644 --- a/lang/ja/lang_adredir.php +++ b/lang/ja/lang_adredir.php @@ -1,8 +1,11 @@ '間違い', - 'std_ad_system_disabled' => '広告システムは閉じられています。', - 'std_invalid_ad_id' => '無効な広告ID', - 'std_no_redirect_url' => 'ジャンプリンクなし。', +$lang_adredir = array +( + 'std_error' => "エラー", + 'std_ad_system_disabled' => "広告システムが無効になりました。", + 'std_invalid_ad_id' => "Invalid ad id", + 'std_no_redirect_url' => "リダイレクトURLがありません。" ); + +?> diff --git a/lang/ja/lang_attachment.php b/lang/ja/lang_attachment.php index e0071c60..750a5420 100644 --- a/lang/ja/lang_attachment.php +++ b/lang/ja/lang_attachment.php @@ -1,17 +1,20 @@ '失敗!ドキュメントは受け取られていません!', - 'text_file_number_limit_reached' => '失敗!当面の間、これ以上の添付ファイルをアップロードすることはできません!しばらく待ってください。', - 'text_file_size_too_big' => '失敗!ファイルが大きすぎます。', - 'text_file_extension_not_allowed' => '失敗!このファイル拡張機能は許可されていません。', - 'text_invalid_image_file' => '失敗!画像ファイルは無効です。', - 'text_cannot_move_file' => '失敗!アップロードされたファイルを移動できません。', - 'submit_upload' => 'アップロード', - 'text_left' => '今日の残り:', - 'text_of' => '/', - 'text_size_limit' => 'サイズ制限:', - 'text_file_extensions' => '拡張機能を許可します:', - 'text_mouse_over_here' => 'ここでマウスを移動します', - 'text_small_thumbnail' => '小さなサムネイル', +$lang_attachment = array +( + 'text_nothing_received' => "失敗!何も受け取れません!", + 'text_file_number_limit_reached' => "失敗!しばらくの間、ファイルをアップロードできません。しばらくお待ちください。", + 'text_file_size_too_big' => "失敗!ファイルサイズが大きすぎます。", + 'text_file_extension_not_allowed' => "失敗!ファイル拡張子は許可されていません。", + 'text_invalid_image_file' => "失敗しました!無効な画像ファイルです。", + 'text_cannot_move_file' => "失敗!アップロードしたファイルを移動できません。", + 'submit_upload' => "アップロード", + 'text_left' => "今日残り: ", + 'text_of' => " / ", + 'text_size_limit' => "サイズ: ", + 'text_file_extensions' => "ファイル拡張子: ", + 'text_mouse_over_here' => "ここのマウス", + 'text_small_thumbnail' => "サムネイルの小ささ", ); + +?> diff --git a/lang/ja/lang_attendance.php b/lang/ja/lang_attendance.php index 1a186cc1..9917fff6 100644 --- a/lang/ja/lang_attendance.php +++ b/lang/ja/lang_attendance.php @@ -1,15 +1,16 @@ 'サインイン', - 'success' => 'サインインに成功します', - 'attend_info' => 'これはあなたの%u のチェックインです。 %u 日間継続的に署名しました。このサインインは%u 魔法の値を取得しました。', - 'initial' => '最初のサインインの%Uマジック値を取得します。', - 'steps' => '各連続サインインは、%uがキャップされるまで追加の%uマジック値を取得できます。', - 'continuous' => '継続的に%u Dayにサインインし、追加の%Uマジック値を取得します。', - 'sorry' => 'ごめんなさい', - 'already_attended' => 'あなたは今日サインインしました、それを繰り返しリフレッシュしないでください。', - 'retroactive_event_text' => '修理', - 'retroactive_confirm_tip' => '再署名することを確認してください:', - 'retroactive_description' => '白い背景のドットをクリックして、再署名します。現在、再署名カード%d カードがあります。', +$lang_attendance = array +( + 'title' => "出席", + 'success' => "成功", + 'attend_info' => "既に %u 日間、連続 %u 日間、今回は %u ボーナスを受け取ることができます。", + 'initial' => "最初の出席は %u ボーナスを受け取る。", + 'steps' => "最大 %u に達しない限り、継続的に出席するごとに %uボーナスが付与されます。", + 'continuous' => "%u 日間連続して参加すると、 %u 報奨金が追加されます。", + 'sorry' => "申し訳ありません", + 'already_attended' => "既に出席しました。更新しないでください。", + 'retroactive_event_text' => '再表示', + 'retroactive_confirm_tip' => '参加確認: ', + 'retroactive_description' => '白の背景のドットをクリックして出席します。現在出席カード %d があります。', ); diff --git a/lang/ja/lang_bitbucket-upload.php b/lang/ja/lang_bitbucket-upload.php index 5c6e95fb..47ea0884 100644 --- a/lang/ja/lang_bitbucket-upload.php +++ b/lang/ja/lang_bitbucket-upload.php @@ -1,33 +1,36 @@ 'アップロードに失敗しました', - 'std_nothing_received' => '文書は受け入れられませんでした!', - 'std_file_too_large' => '申し訳ありませんが、ファイルが大きすぎてアップロードできません。', - 'std_bad_file_name' => 'ファイル名のエラー。', - 'std_file_with_the_name' => '申し訳ありませんが、このドキュメント', - 'std_already_exists' => 'すでに存在していました。', - 'std_error' => '間違い', - 'std_invalid_image_format' => '無効な拡張: gif、jpg、またはpng のみが許可されています!', - 'std_image_processing_failed' => '画像処理に失敗しました', - 'std_sorry_the_uploaded' => '申し訳ありませんが、ファイルをアップロードしました', - 'std_failed_processing' => '処理に失敗しました。アップロードする前に、画像編集ソフトウェアを使用して処理してください。ありがとう!', - 'std_success' => '成功', - 'std_use_following_url' => '次のURLを使用してファイルにアクセスします。', - 'std_upload_another_file' => '他のファイルをアップロードします', - 'std_image' => '写真', - 'std_need_not_rescaling' => '縮小する必要はありません', - 'std_rescaled_from' => 'から', - 'std_to' => '縮小します', - 'std_profile_updated' => '
    注:あなたのアバターが更新されました!', - 'head_avatar_upload' => 'アバターアップロード', - 'text_avatar_upload' => 'アバターアップロード', - 'text_upload_directory_unwritable' => '注:アップロードパスを書き込むことはできません。これを管理者に報告してください!', - 'text_disclaimer' => 'ステートメント< /b>
    不正な写真や違法な写真をアップロードしないでください。
    アップロードされた画像はパブリック画像と見なされるため、見知らぬ人に視聴したくない画像をアップロードしないでください。
    画像の高さが超えている場合', - 'text_disclaimer_two' => 'ピクセルまたは幅を超えます', - 'text_disclaimer_three' => 'ピクセルはアスペクト比で減少します。
    ファイルサイズを超えることはできません', - 'text_disclaimer_four' => 'バイト。', - 'row_file' => '書類', - 'checkbox_avatar_shared' => '共享头像(其他用户可以选择使用我的头像)。', - 'submit_upload' => 'アップロード', +$lang_bitbucketupload = array +( + 'std_upload_failed' => "アップロードに失敗しました", + 'std_nothing_received' => "何も受信されていません!", + 'std_file_too_large' => "申し訳ありませんが、このファイルはビットバケットには大きすぎます。", + 'std_bad_file_name' => "不正なファイル名", + 'std_file_with_the_name' => "Sorry, a file with the name ", + 'std_already_exists' => " はビットバケットにすでに存在します。", + 'std_error' => "エラー", + 'std_invalid_image_format' => "無効な拡張機能: gif, jpg または png のみ!", + 'std_image_processing_failed' => "画像処理に失敗しました", + 'std_sorry_the_uploaded' => "申し訳ありませんが、アップロードされました。 ", + 'std_failed_processing' => " 処理に失敗しました。グラフィックエディタで画像を再保存してみてください。ありがとうございます。", + 'std_success' => "成功", + 'std_use_following_url' => "ファイルにアクセスするには、次の URL を使用します。 ", + 'std_upload_another_file' => "別のファイルをアップロード", + 'std_image' => "画像 ", + 'std_need_not_rescaling' => "再スケーリングは必要ありません", + 'std_rescaled_from' => " から再スケールしました ", + 'std_to' => " to ", + 'std_profile_updated' => "
    注意: プロフィールが更新されました!", + 'head_avatar_upload' => "AVATAR アップロード", + 'text_avatar_upload' => "AVATAR アップロード", + 'text_upload_directory_unwritable' => "注意: アップロードディレクトリに書き込みができません。この問題については管理者に問い合わせてください!", + 'text_disclaimer' => "Disclaimer
    Do not upload unauthorized or illegal pictures.
    Uploaded pictures should be considered \"public domain\". So do not upload pictures you wouldn't want a stranger to have access to.
    Uploaded images will be scaled by keeping aspect ratio if height exceeds ", + 'text_disclaimer_two' => " ピクセルまたは幅を超えています ", + 'text_disclaimer_three' => " ピクセル
    最大ファイルサイズは ", + 'text_disclaimer_four' => " bytes.", + 'row_file' => "ファイル", + 'checkbox_avatar_shared' => "他のユーザーは自分のアバターを使うことができます(usercpで選択可能)。", + 'submit_upload' => "アップロード", ); + +?> diff --git a/lang/ja/lang_catmanage.php b/lang/ja/lang_catmanage.php index c87042d2..c5fb7bbb 100644 --- a/lang/ja/lang_catmanage.php +++ b/lang/ja/lang_catmanage.php @@ -1,83 +1,86 @@ '分類管理', - 'text_category_management' => '分類管理', - 'text_manage' => '管理', - 'text_searchbox' => '種子分類パターン', - 'text_category_icons' => 'カテゴリアイコン', - 'text_second_icons' => '2番目のアイコン', - 'text_categories' => '分類', - 'text_sources' => 'ソース', - 'text_media' => '中くらい', - 'text_codecs' => 'コーディング', - 'text_standards' => '解決', - 'text_processings' => '対処する', - 'text_teams' => '制作チーム', - 'text_audio_codecs' => 'オーディオエンコーディング', - 'std_error' => '間違い', - 'std_invalid_type' => '無効なタイプ。', - 'text_add' => 'に追加', - 'text_no_record_yet' => 'まだ記録はありません!', - 'col_id' => 'id', - 'col_name' => '名前', - 'col_order' => '選別', - 'col_action' => '行動', - 'text_delete' => '消去', - 'text_edit' => '編集', - 'js_sure_to_delete_this' => 'このアイテムを削除したいですか?', - 'col_sub_category' => 'サブカテゴリ', - 'text_per_row' => '1行あたりのアイテム数', - 'text_padding' => '間隔', - 'text_enabled' => '見せる', - 'text_disabled' => '表示されていません', - 'col_folder' => 'アイコンフォルダー', - 'text_multi_language' => '多言語', - 'text_second_icon' => '2番目のアイコン', - 'text_css_file' => 'CSSファイル', - 'text_none' => 'なし', - 'text_css_file_note' => 'この分類アイコンにCSSファイルを指定します。 「スタイル/sceneTorrents.css」などのフルパスを埋めます。そうでない場合は、空白のままにしてください。
    許可された文字:[a-z](小文字)、[0-9]、[_。 /]。', - 'text_designer' => 'デザイナー', - 'text_comment' => '説明します', - 'text_yes' => 'はい', - 'text_no' => 'いいえ', - 'col_image' => '画像ファイル名', - 'text_class_name' => 'クラス属性値', - 'col_mode' => 'モデル', - 'std_invalid_id' => '無効なID', - 'submit_submit' => '提出する', - 'text_subcategory_name_note' => '長すぎる名前を使用しないでください。 10文字以内にすることをお勧めします。', - 'text_order_note' => 'インクリメンタルソート、つまり、「0」が上部にあります。', - 'row_searchbox_name' => '分類パターン名', - 'text_searchbox_name_note' => '許可された文字:[a-z](小文字)、[0-9]、[_。/]。', - 'row_show_sub_category' => '分類を表示します', - 'text_show_sub_category_note' => '有効にするサブカテゴリを確認してください。', - 'row_items_per_row' => '1行あたりのアイテム数', - 'text_items_per_row_note' => '「8」など、検索ボックスに各行に表示されるアイテムの数を設定します。', - 'row_padding_between_items' => 'プロジェクト間隔', - 'text_padding_between_items_note' => 'ユニットはピクセルです。 「3」など、ボックス内のアイテムの水平間隔距離を検索します。', - 'text_category_icon_name_note' => '許可された文字:[a-z](小文字)、[0-9]、[_。/]。', - 'text_folder_note' => 'カテゴリアイコンが存在するフォルダーの名前。許可された文字:[a-z](小文字)、[0-9]、[_。/]。
    「mycaticon/」など、最後にスラッシュ(/)を追加する必要があります。', - 'text_multi_language_note' => '異なる言語で異なる分類アイコンを使用するかどうか。 「はい」に設定されている場合、「en」という名前のフォルダー、「CHS」などに複数のアイコンを入れます。', - 'text_second_icon_note' => '2番目のアイコンを使用して補足情報を表示するかどうか。 「はい」に設定されている場合、2番目のアイコンを通常のアイコンディレクトリに「追加」という名前のフォルダーに配置します。', - 'text_designer_note' => 'このアイコンセットのデザイナー。', - 'text_comment_note' => 'このアイコンセットの説明。', - 'text_icon_directory_note' => '次の設定を機能させるには、サーバーの正しいディレクトリにアイコンファイルを配置する必要があります。通常の分類アイコンを「pic/category/分類パターン名/アイコンフォルダー [言語の略語/]」に入れ、2番目のアイコンを「pic/category/分類パターン名/ iconフォルダー [i> sitfitiation [ langue)folder ]
    わかりませんか?次の例を参照してください:
      • カテゴリーパターン名 = \'nhd\'
      • アイコンフォルダー = \'seneTorrents/\'
      • 多leangage = \'yes\'
      • 英語ムービータイプのアイコン( \'movies.png\'など)は、「pic/category/nhd/scenetorrents/en/」
        • カテゴリパターン名 = \'chd\'
        • アイコンフォルダー = \'nanosofts/\'
        • 多言語 = \'no\'
        • アイコン( \'movies.png\'など)は、 \'pic/category/chd/nanosofts/\'にfile file in \'and "pic/category/chd/nanosofts/addition/\'に2番目のアイコン( \'bdh264.png\'など)。
        ', - 'text_second_icon_name_note' => '長すぎる名前を使用しないでください。 10文字以内にすることをお勧めします。', - 'text_image_note' => '画像ファイルの名前。許可された文字:[a-z](小文字)、[0-9]、[_。/]。', - 'row_selections' => '選ぶ', - 'text_selections_note' => '選択が指定されていない場合、そのすべてのオプションはこのルールに準拠しています。少なくとも1つの選択を指定する必要があります。', - 'row_category_name' => 'カテゴリ名', - 'text_category_name_note' => '長すぎる名前を使用しないでください。 10文字以内にすることをお勧めします。', - 'row_mode' => 'モデル', - 'text_class_name_note' => '画像のクラス属性値を指定します。そうでない場合は、空白のままにしてください。許可された文字:[a-z](小文字)、[0-9]、[_]、最初の文字は文字でなければなりません。', - 'std_missing_form_data' => '記入されていない必要なアイテムがあります。', - 'std_invalid_character_in_filename' => 'このファイル名には違法文字が含まれています。', - 'std_must_define_one_selection' => '少なくとも1つのオプションを指定する必要があります!', - 'std_invalid_mode_id' => '無効なパターンID。', - 'row_enable_custom_field' => '自己単語の意味フィールドを有効にします', - 'row_custom_field_display_name' => 'カスタムフィールド表示名', - 'row_custom_field_display' => 'カスタムフィールド表示', - 'row_custom_field_display_help' => '特別なラベルを使用して、フィールドの名前と価値を表します。フィールドにアーティストの名前がある場合、その名前は次のとおりです。', - 'row_searchbox_extras' => '他の', +$lang_catmanage = array +( + 'head_category_management' => "カテゴリ管理", + 'text_category_management' => "カテゴリ管理", + 'text_manage' => "管理", + 'text_searchbox' => "検索ボックス", + 'text_category_icons' => "カテゴリアイコンパック", + 'text_second_icons' => "2番目のアイコン", + 'text_categories' => "カテゴリ", + 'text_sources' => "ソース", + 'text_media' => "メディア", + 'text_codecs' => "Codecs", + 'text_standards' => "標準", + 'text_processings' => "処理中", + 'text_teams' => "チーム", + 'text_audio_codecs' => "音声コーデック(音声)", + 'std_error' => "エラー", + 'std_invalid_type' => "Invalid type.", + 'text_add' => "追加", + 'text_no_record_yet' => "記録がまだありません!", + 'col_id' => "ID", + 'col_name' => "名前", + 'col_order' => "ご注文", + 'col_action' => "アクション", + 'text_delete' => "削除", + 'text_edit' => "編集", + 'js_sure_to_delete_this' => "削除してもよろしいですか?", + 'col_sub_category' => "サブカテゴリ", + 'text_per_row' => "アイテム/行", + 'text_padding' => "Padding", + 'text_enabled' => "有効", + 'text_disabled' => "無効", + 'col_folder' => "アイコンパックフォルダ", + 'text_multi_language' => "マルチラング。", + 'text_second_icon' => "2番目のアイコン", + 'text_css_file' => "CSS ファイル", + 'text_none' => "なし", + 'text_css_file_note' => "このアイコンパックのCSSファイル。フルパスを入力してください。例えば、'styles/scenetorrents.css'。何もない場合は空白のままにしてください。
        使用可能な文字: [a-z] (小文字), [0-9], [_./].", + 'text_designer' => "デザイナー", + 'text_comment' => "コメント", + 'text_yes' => "はい", + 'text_no' => "いいえ", + 'col_image' => "画像", + 'text_class_name' => "クラス属性", + 'col_mode' => "モード", + 'std_invalid_id' => "Invalid id", + 'submit_submit' => "送信", + 'text_subcategory_name_note' => "長い名前を使用しないでください。10 文字未満を推奨します。", + 'text_order_note' => "最初に「0」が上がってきます。", + 'row_searchbox_name' => "検索ボックス名", + 'text_searchbox_name_note' => "許可する文字: [a-z] (小文字), [0-9], [_./].", + 'row_show_sub_category' => "サブカテゴリを表示", + 'text_show_sub_category_note' => "有効にするサブカテゴリをチェックします。", + 'row_items_per_row' => "1行あたりのアイテム", + 'text_items_per_row_note' => "検索ボックスの行に表示する項目数を設定します。例: '8'", + 'row_padding_between_items' => "アイテム間のパディング", + 'text_padding_between_items_note' => "ピクセル単位。検索ボックス内のアイテム間の水平パディングスペース。例えば '3' 。", + 'text_category_icon_name_note' => "許可する文字: [a-z] (小文字), [0-9], [_./].", + 'text_folder_note' => "The folder name of the icon pack. Allowed Characters: [a-z] (in lower case), [0-9], [_./].
        MUST add a trailing slash (/) at the end, e.g. 'mycaticon/'", + 'text_multi_language_note' => "異なる言語で異なるカテゴリアイコンを使用するかどうか。「はい」に設定されている場合は、「en」、「chs」などという名前の複数のフォルダに複数のアイコンを入れてください。", + 'text_second_icon_note' => "追加情報に2番目のアイコンを使用するかどうか。「はい」に設定されている場合は、通常のアイコンと一緒に「追加」という名前のフォルダに2番目のアイコンを入れてください。", + 'text_designer_note' => "アイコンパックを設計した人。", + 'text_comment_note' => "アイコンパックに関する情報。", + 'text_icon_directory_note' => "You need to put the icons in the right directory for these settings to work. Put the normal icons in 'pic/category/searchbox_name/icon_pack_folder[language_short_name/]' and the second icons in 'pic/category/searchbox_name/icon_pack_folder[language_short_name/]additional/'.
        Don't get it? See if the following examples could help:
        • When
          • searchbox_name='nhd'
          • icon_pack_folder='scenetorrents/'
          • multi-lang='yes'
          • second_icon='no'
          you should put an English normal icon file for movies (e.g. 'movies.png') in 'pic/category/nhd/scenetorrents/en/' .
        • When
          • searchbox_name='chd'
          • icon_pack_folder='nanosofts/'
          • multi-lang='no'
          • second_icon='yes'
          you should put a normal icon file for movies (e.g. movies.png) in 'pic/category/chd/nanosofts/' and an additional icon file (e.g. 'bdh264.png') in 'pic/category/chd/nanosofts/additional/'.
        ", + 'text_second_icon_name_note' => "長い名前を使用しないでください。10 文字未満を推奨します。", + 'text_image_note' => "許可する文字: [a-z] (小文字), [0-9], [_./].", + 'row_selections' => "選択", + 'text_selections_note' => "選択範囲が定義されていない場合、選択範囲のすべてのオプションがルールに許可されます。少なくとも 1 つの選択範囲を定義する必要があります。", + 'row_category_name' => "カテゴリ名", + 'text_category_name_note' => "長い名前を使用しないでください。10 文字未満を推奨します。", + 'row_mode' => "モード", + 'text_class_name_note' => "イメージの 'class' 属性の値。ない場合は空白のままにします。 許可される文字: [a-z] (小文字)、 [0-9]、 [_]、および最初の文字は [a-z] でなければなりません。", + 'std_missing_form_data' => "フォームデータがありません。", + 'std_invalid_character_in_filename' => "ファイル名の無効な文字 ", + 'std_must_define_one_selection' => "少なくとも 1 つの選択を定義する必要があります!", + 'std_invalid_mode_id' => "無効なモード id", + 'row_enable_custom_field' => 'カスタムフィールドを有効にする', + 'row_custom_field_display_name' => 'カスタムフィールド表示名', + 'row_custom_field_display' => 'カスタムフィールドの表示', + 'row_custom_field_display_help' => "1つのカスタムフィールドの名前が「artist」など、カスタムフィールドのラベルと値を表すには、「特定のラベル」を使用してください。
        ラベル:<%artist.label%>,値:<%artist.value%>", + 'row_searchbox_extras' => 'Extras', ); + +?> diff --git a/lang/ja/lang_cheaterbox.php b/lang/ja/lang_cheaterbox.php index f6489448..7582505f 100644 --- a/lang/ja/lang_cheaterbox.php +++ b/lang/ja/lang_cheaterbox.php @@ -1,25 +1,28 @@ 'ああ!', - 'std_no_suspect_detected' => '不正行為の容疑者は検出されていません。', - 'head_cheaterbox' => '詐欺師', - 'text_cheaterbox' => 'Cheater beta ', - 'col_added' => '時間', - 'col_suspect' => '容疑者', - 'col_hit' => '頻度', - 'col_torrent' => 'シード', - 'col_ul' => 'アップロード', - 'col_dl' => 'ダウンロード', - 'col_ann_time' => '報告時間', - 'col_seeders' => 'シードメーカー', - 'col_leechers' => 'ダウンローダー', - 'col_comment' => '述べる', - 'col_dealt_with' => '対処する', - 'col_action' => '行動', - 'text_torrent_does_not_exist' => '種子は存在しないか、削除されていません', - 'text_yes' => 'はい', - 'text_no' => 'いいえ', - 'submit_set_dealt' => '処理されたまま設定します', - 'submit_delete' => '消去', +$lang_cheaterbox = array +( + 'std_oho' => "Oho!", + 'std_no_suspect_detected' => "まだ容疑者が検出されていません。", + 'head_cheaterbox' => "Cheaterbox", + 'text_cheaterbox' => "Cheaterbox ベータ", + 'col_added' => "追加しました", + 'col_suspect' => "容疑者", + 'col_hit' => "ヒット", + 'col_torrent' => "Torrent", + 'col_ul' => "UL", + 'col_dl' => "DL", + 'col_ann_time' => "An. Time", + 'col_seeders' => "Seeders", + 'col_leechers' => "Leechers", + 'col_comment' => "コメント", + 'col_dealt_with' => "送金する", + 'col_action' => "Act.", + 'text_torrent_does_not_exist' => "Torrent が存在しないか削除されます", + 'text_yes' => "はい", + 'text_no' => "いいえ", + 'submit_set_dealt' => "送信済みを設定", + 'submit_delete' => "削除" ); + +?> diff --git a/lang/ja/lang_checkuser.php b/lang/ja/lang_checkuser.php index c1f95c25..e34c0cde 100644 --- a/lang/ja/lang_checkuser.php +++ b/lang/ja/lang_checkuser.php @@ -1,14 +1,17 @@ '間違い', - 'std_no_user_id' => 'このIDのないユーザー!', - 'std_no_permission' => '許可はありません', - 'head_detail_for' => 'ユーザーの詳細 - ', - 'text_account_disabled' => '

        このアカウントは無効です!

        ', - 'row_join_date' => '参加日', - 'row_gender' => '性別', - 'row_email' => '郵便', - 'row_ip' => 'IP', - 'submit_confirm_this_user' => 'このユーザーを確認してください', +$lang_checkuser = array +( + 'std_error' => "エラー", + 'std_no_user_id' => "このIDを持つユーザーはいません!", + 'std_no_permission' => "権限がありません", + 'head_detail_for' => "詳細 ", + 'text_account_disabled' => "

        このアカウントは無効になっています!

        ", + 'row_join_date' => "Join date", + 'row_gender' => "性別", + 'row_email' => "メール", + 'row_ip' => "IP", + 'submit_confirm_this_user' => "Confirm this user" ); + +?> diff --git a/lang/ja/lang_comment.php b/lang/ja/lang_comment.php index c58c034f..28b76ec4 100644 --- a/lang/ja/lang_comment.php +++ b/lang/ja/lang_comment.php @@ -1,47 +1,51 @@ '間違い', - 'std_comment_flooding_denied' => 'コメントを無差別に投稿することは禁止されています。お願いします', - 'std_before_posting_another' => 'もう一度数秒で送ってください。', - 'std_no_torrent_id' => 'そのIDの種はありません。', - 'std_no_comment_id' => 'このIDなしでコメント', - 'std_comment_body_empty' => 'コメントコンテンツは空にすることはできません!', - 'head_add_comment_to' => 'コメントを追加 - ', - 'text_add_comment_to' => 'コメントを追加 - ', - 'submit_okay' => ' もちろん ', - 'text_comments_in_reverse_order' => '逆の順序で表示される、トップは最後に投稿されたコメントです', - 'std_invalid_id' => '無効なID', - 'std_permission_denied' => 'そのような許可はありません。', - 'head_edit_comment_to' => '編集者のコメント - ', - 'text_edit_comment_to' => '編集者のコメント - ', - 'std_delete_comment' => 'コメントを削除します', - 'std_delete_comment_note' => 'コメントを削除しようとしています。クリック', - 'std_here_if_sure' => '> ここで確認してください 。', - 'head_original_comment' => 'オリジナルコメント', - 'text_original_content_of_comment' => 'オリジナルのコメントコンテンツ', - 'std_unknown_action' => '未知の動作。', - 'std_no_review_id' => 'IDのコメントは存在しません', - 'std_review_body_empty' => 'コメントテキストは空にすることはできません!', - 'text_reviews_in_reverse_order' => '

        逆の順序、上部は投稿された最後のコメント

        です', - 'head_edit_review_to' => '編集者のコメント - ', - 'text_edit_review_to' => '編集者のコメント - ', - 'std_delete_review' => 'コメントを削除します', - 'std_delete_review_note' => 'コメントを削除しようとしています。クリック', - 'head_original_review' => 'オリジナルレビュー', - 'text_original_content_of_review' => 'オリジナルのレビューコンテンツ', - 'row_user_comment' => 'ユーザーのコメント', - 'row_editor_notes' => '編集者のコメント', - 'row_bouns_change' => '魔法の価値の変化', - 'text_bouns_change_notes' => 'スコア範囲は0〜1000で、ビューレビューの品質の値が取られます(1000を超えると1000と見なされ、範囲内にない他の値は0と見なされます)', - 'std_review_no_external_info' => '外部情報、コメントをマークすることはできません!', - 'std_review_unmark' => 'コメントマークを削除します', - 'std_unmark_review_note' => 'コメントを削除しようとしています。クリック', - 'row_original_torrent' => 'オリジナルの種', - 'text_no_exists' => 'もう存在しません!', - 'text_torrent_id' => 'シードID:', - 'text_back' => '戻る', - 'text_body' => '文章', - 'text_compose' => '書く', - 'text_edit' => '編集', +$lang_comment = array +( + 'std_error' => "エラー", + 'std_comment_flooding_denied' => "コメントの洪水は許可されていません。お待ちください。 ", + 'std_before_posting_another' => " second(s) before posting another comment.", + 'std_no_torrent_id' => "このIDのトレントはありません。", + 'std_no_comment_id' => "このIDのコメントはありません", + 'std_comment_body_empty' => "コメント本文は空にできません!", + 'head_add_comment_to' => "コメントを追加 ", + 'text_add_comment_to' => "コメントを追加 ", + 'submit_okay' => "OK", + 'text_comments_in_reverse_order' => "Most recent comments, in reverse order\n", + 'std_invalid_id' => "Invalid ID.", + 'std_permission_denied' => "アクセスが拒否されました。", + 'head_edit_comment_to' => "コメントの編集 ", + 'text_edit_comment_to' => "コメントの編集 ", + 'std_delete_comment' => "コメントを削除", + 'std_delete_comment_note' => "You are about to delete a comment. Click\n", + 'std_here_if_sure' => ">here if you are sure.", + 'head_original_comment' => "元のコメント", + 'text_original_content_of_comment' => "コメントの元の内容 ", + 'std_unknown_action' => "不明な操作。", + 'std_no_review_id' => "このIDのレビューはありません", + 'std_review_body_empty' => "レビュー本文は空にできません!", + 'text_reviews_in_reverse_order' => "

        Most recent reviews, in reverse order

        \n", + 'head_edit_review_to' => "レビューの編集 ", + 'text_edit_review_to' => "レビューの編集 ", + 'std_delete_review' => "レビューを削除", + 'std_delete_review_note' => "You are about to delete a review. Click\n", + 'head_original_review' => "元のレビュー", + 'text_original_content_of_review' => "オリジナルのレビュー内容 ", + 'std_unknown_action' => "不明な操作。", + 'row_user_comment' => "ユーザー コメント", + 'row_editor_notes' => "編集者のメモ", + 'row_bouns_change' => "ボーナス変更", + 'text_bouns_change_notes' => " 0から1000まで レビューの品質に基づいて(1000以上は1000として扱われ、範囲内ではないものは0として扱われます)", + 'std_review_no_external_info' => "外部情報なしでコメントをマークできませんでした!", + 'std_review_unmark' => "レビューのマークを解除", + 'std_unmark_review_note' => "You are about to unmark a review. Click\n", + 'row_original_torrent' => "元の Torrent", + 'text_no_exists' => "これ以上存在しません!", + 'text_torrent_id' => " トレントID: ", + 'text_back' => "戻る", + 'text_body' => "本文", + 'text_compose' => "作成", + 'text_edit' => "編集", ); + +?> diff --git a/lang/ja/lang_complains.php b/lang/ja/lang_complains.php index 4801f73d..c36627c2 100644 --- a/lang/ja/lang_complains.php +++ b/lang/ja/lang_complains.php @@ -1,33 +1,33 @@ '苦情エリア', - 'text_new_complain' => '控訴を提出します', - 'text_new_email' => 'アカウントメール:', - 'text_new_body' => '苦情の内容:', - 'text_new_body_placeholder' => 'アピールの質問: -関連証拠:外部リンクの写真は、タグ[img = url]を使用して使用できます', - 'text_new_submit' => '苦情を提出します', - 'text_new_failure' => '電子メールが誤って埋められないか、アピールが空です', - 'text_created_title' => 'アピールが作成されました', - 'text_created_note' => 'このページをブックマークして、後続の更新を確認してください。アピールプロセスに影響を与えないように、他の人にURLを送信しないでください!', - 'text_search_account' => 'このアカウントを検索します', - 'text_reply' => '苦情に返信します', - 'text_replies' => '苦情処理', - 'text_complainer' => '苦情', - 'text_added' => '苦情の時間', - 'text_no_replies' => '現在、コンテンツを追跡する苦情はありません', - 'text_closed' => '苦情は処理されており、返信することはできません', - 'text_answer_it' => 'アピールを閉じます', - 'text_unanswer_it' => '控訴を再開します', - 'th_complain_at' => '苦情の時間', - 'th_complain_account' => '控訴アカウント', - 'th_action_view' => 'チェック', - 'pending_complaints' => '保留中の控訴', - 'no_pending_complaints' => '保留中の苦情はありません', - 'complaints_processed' => '苦情が処理されました', - 'no_complaints_have_been_processed' => '苦情は処理されていません', - 'text_view_band_log' => '禁止されたレコードを表示します', - 'reply_notify_subject' => '控訴への返信', - 'reply_notify_body' => 'Webサイトの苦情に対する返信があります。ここをクリックしてください view 。', -); +$lang_complains = [ + 'text_complain' => '苦情アカウントの問題', + 'text_new_complain' => '新しい不平文', + 'text_new_email' => 'Account Email:', + 'text_new_body' => '苦情の詳細:', + 'text_new_body_placeholder' => "問題の説明:\n関連証明が適用可能: 画像は [img=URL] の形式で表示されます。", + 'text_new_submit' => '送信', + 'text_new_failure' => '不正な電子メールまたは空の文句が入力されました。', + 'text_created_title' => '文句が作成されました', + 'text_created_note' => '後で更新を確認できるように、このページをブックマークしてください。 このURLをANYBODYに返信しないでください! そうでなければ、あなたの苦情は処理されません。', + 'text_search_account' => 'このメールアドレスでアカウントを検索', + 'text_reply' => '返信', + 'text_replies' => 'フォローアップメッセージ', + 'text_complainer' => '苦情者', + 'text_added' => '時間を追加しました', + 'text_no_replies' => 'メッセージはありません', + 'text_closed' => 'この苦情は回答され、新しい返信のためにロックされています。', + 'text_answer_it' => '閉じる', + 'text_unanswer_it' => '再開く', + 'th_complain_at' => '不平を言うとき', + 'th_complain_account' => '苦情アカウント', + 'th_action_view' => '表示', + 'pending_complaints' => '保留中の苦情情報', + 'no_pending_complaints' => '保留中の苦情はありません', + 'complaints_processed' => '苦情処理済み', + 'no_complaints_have_been_processed' => '苦情が処理されていません', + 'text_view_band_log' => 'BANログを表示', + 'reply_notify_subject' => '返信した苦情の回答', + 'reply_notify_body' => 'You have a reply to your complaint on the site %s, click here to see it.', + 'complain_not_enabled' => '苦情が有効になっていません', +]; diff --git a/lang/ja/lang_confirm_resend.php b/lang/ja/lang_confirm_resend.php index 07c49285..f899ae71 100644 --- a/lang/ja/lang_confirm_resend.php +++ b/lang/ja/lang_confirm_resend.php @@ -1,34 +1,37 @@ '再送信確認メールは失敗しました', - 'std_fields_blank' => '記入するアイテムはありません。', - 'std_invalid_email_address' => '無効なメールアドレス!', - 'std_email_not_found' => 'データベースでは、メールアドレスは使用できません。', - 'std_user_already_confirm' => 'このメールボックスのユーザーが検証に合格しました。', - 'std_passwords_unmatched' => '2回入力されたパスワードは一貫性がありません!間違っている必要があります。もう一度やり直してください。', - 'std_password_too_short' => '申し訳ありませんが、パスワードが短すぎます(少なくとも6文字)', - 'std_password_too_long' => '申し訳ありませんが、パスワードが長すぎます(最大40文字)', - 'std_password_equals_username' => '申し訳ありませんが、ユーザー名とパスワードは同じではありません。', - 'std_error' => '間違い', - 'std_database_error' => 'データベースエラー!これを管理者に報告してください。', - 'text_resend_confirmation_mail_note' => '

        再送信確認メール

        次のフォームに入力して、システムを再送信する電子メールを変更します。

        過去24時間以内に登録する必要があり、この関数を使用するための検証に合格していません。それ以外の場合、アカウント情報が削除されており、再登録する必要があります。

        注:失敗した試みの%sは、IPアドレスを無効にします!

        ', - 'row_registered_email' => '登録メール:', - 'row_new_password' => '新しいパスワード:', - 'text_password_note' => '少なくとも6文字', - 'row_enter_password_again' => 'もう一度新しいパスワードを入力してください:', - 'submit_send_it' => '送信!', - 'text_you_have' => 'あなたはまだ持っています', - 'text_remaining_tries' => '試してみるチャンス。', - 'mail_title' => 'ユーザー登録確認(ResEnd)', - 'mail_this_link' => 'このリンク', - 'mail_here' => 'ここ', - 'mail_one' => 'こんにちは', - 'mail_two' => '、

        %sウェブサイトの登録確認メールを再収集し、このメールアドレスを指定することをリクエストします', - 'mail_three' => '連絡先アドレス用。

        このリクエストを送信していない場合は、このメールを無視してください。次のようにメールアドレスを入力してください', - 'mail_four' => '。 。このメールに返信しないでください。

        実際にこのリクエストを送信した場合は、次のリンクをクリックして検証に合格してください。', - 'mail_four_1' => '

        上記のリンクが誤って開かれている場合、存在しない、または期限切れがある場合は、ここで確認メールを復活させてみてください', - 'mail_five' => '確認を通過した後、新しいアカウントを使用できます。

        24時間以内に確認に合格しない場合、アカウントは削除されます。
        新人が%sにログインしたら、最初にサイトのルールを必ず読んでください。質問する前にFAQを参照してください。

        注意:%sのウェブサイトに登録されていない場合は、このメールを%s

        ------

        %sウェブサイトに報告してください。', - 'text_select_lang' => 'サイト言語を選択します:', - 'std_need_admin_verification' => 'アカウントは、管理者が手動で検証する必要があります。', +$lang_confirm_resend = array +( + 'resend_confirmation_email_failed' => "確認メールの送信に失敗しました", + 'std_fields_blank' => "フィールドを空白にしないでください。", + 'std_invalid_email_address' => "無効なメールアドレスです!", + 'std_email_not_found' => "メールアドレスがデータベースに見つかりませんでした。\n", + 'std_user_already_confirm' => "このメールアドレスを使用しているユーザーは既に確認されています。\n", + 'std_passwords_unmatched' => "パスワードが一致しませんでした。もう一度やり直してください。", + 'std_password_too_short' => "パスワードが短すぎます(最小文字数は6文字)", + 'std_password_too_long' => "パスワードが長すぎます(最大40文字)", + 'std_password_equals_username' => "申し訳ありませんが、パスワードはユーザー名と同じにできません。", + 'std_error' => "エラー", + 'std_database_error' => "データベース エラー。管理者に問い合わせてください。", + 'text_resend_confirmation_mail_note' => "

        Send confirmation mail again

        Use the form below to have your confirmation mail send to you again.

        You must be registered within 1 day and haven't confirmed,
        otherwise your pending account might be deleted and you should register again.

        Note: %s failed attempts in a row will result in banning your ip!

        ", + 'row_registered_email' => "登録メールアドレス: ", + 'row_new_password' => "新しいパスワード: ", + 'text_password_note' => "最低6文字です", + 'row_enter_password_again' => "再度パスワードを入力してください: ", + 'submit_send_it' => "送信!", + 'text_you_have' => "持っている ", + 'text_remaining_tries' => " 残りの試行だ", + + 'mail_title' => " ユーザー登録の確認(再送信)", + 'mail_this_link' => "このリンク", + 'mail_here' => "ここ", + 'mail_one' => "Hi ", + 'mail_two' => ",

        You have requested a new confirmation email on %s and you have
        specified this address ", + 'mail_three' => " as user contact.

        If you did not do this, please ignore this email. The person who entered your
        email address had the IP address ", + 'mail_four' => "をクリックします。 返信しないでください。

        ユーザー登録を確認するには、フォローする必要があります ", + 'mail_four_1' => "

        上記のリンクが破損または期限切れの場合は、新しい確認メールを再度送信してみてください ", + 'mail_five' => "

        After you do this, you will be able to use your new account. If you fail to
        do this, your account will be deleted within 24 hours. We urge you to read
        the RULES and FAQ before you start using %s.

        Please Note: If you did not register for %s, please report this email to %s

        ------
        Yours,
        The %s Team.", + 'text_select_lang' => "サイト言語を選択: ", + 'std_need_admin_verification' => "アカウントは管理者から手動で確認する必要があります。" ); +?> diff --git a/lang/ja/lang_contactstaff.php b/lang/ja/lang_contactstaff.php index 07ac966e..74478e47 100644 --- a/lang/ja/lang_contactstaff.php +++ b/lang/ja/lang_contactstaff.php @@ -1,9 +1,12 @@ '管理グループに連絡してください', - 'text_message_to_staff' => '管理チームにテキストメッセージを送信します', - 'row_subject' => 'タイトル', - 'row_body' => '文章', - 'submit_send_it' => '送信', +$lang_contactstaff = array +( + 'head_contact_staff' => "スタッフにお問い合わせ", + 'text_message_to_staff' => "スタッフにメッセージを送信", + 'row_subject' => "件名", + 'row_body' => "本文", + 'submit_send_it' => "Send It!" ); + +?> \ No newline at end of file diff --git a/lang/ja/lang_delete.php b/lang/ja/lang_delete.php index 92eba207..ae1e3515 100644 --- a/lang/ja/lang_delete.php +++ b/lang/ja/lang_delete.php @@ -1,14 +1,17 @@ '削除が失敗しました!', - 'std_missing_form_date' => '記入されていないアイテムがあります', - 'std_not_owner' => 'あなたはブリーダーではありません!どうしてここに来ることができますか?', - 'std_invalid_reason' => '無効性の理由', - 'std_describe_violated_rule' => '違反した特定のルールを記入してください。', - 'std_enter_reason' => '種を削除する理由を記入してください。', - 'head_torrent_deleted' => '種子は正常に削除されました!', - 'text_go_back' => '今私がちょうどどこに戻ってください', - 'text_back_to_index' => 'ホームページに戻ります', - 'text_torrent_deleted' => '種子は正常に削除されました!', +$lang_delete = array +( + 'std_delete_failed' => "削除に失敗しました!", + 'std_missing_form_date' => "フォームデータがありません", + 'std_not_owner' => "あなたは所有者ではありません!どうしてそうなったのですか?", + 'std_invalid_reason' => "無効な理由 ", + 'std_describe_violated_rule' => "違反したルールを説明してください。", + 'std_enter_reason' => "トレントを削除する理由を入力してください。", + 'head_torrent_deleted' => "トレントを削除しました!", + 'text_go_back' => "来た場所に戻ってください", + 'text_back_to_index' => "インデックスに戻る", + 'text_torrent_deleted' => "トレントを削除しました!" ); + +?> diff --git a/lang/ja/lang_deletedisabled.php b/lang/ja/lang_deletedisabled.php index d0499e4d..caa17c17 100644 --- a/lang/ja/lang_deletedisabled.php +++ b/lang/ja/lang_deletedisabled.php @@ -1,9 +1,12 @@ '禁止されたユーザーを削除します', - 'text_delete_diasabled' => '禁止されたユーザーを削除します', - 'submit_delete_all_disabled_users' => '禁止されているすべてのユーザーを削除します', - 'text_delete_disabled_note' => '下のボタンをクリックすると、Webサイト上のすべての禁止ユーザーは削除されます。確信が持てない限り、このボタンをクリックしないでください。', - 'text_users_are_disabled' => 'ユーザーが削除されました。', +$lang_deletedisabled = array +( + 'head_delete_diasabled' => "削除無効", + 'text_delete_diasabled' => "削除無効", + 'submit_delete_all_disabled_users' => "無効なすべてのユーザーを削除", + 'text_delete_disabled_note' => "If you click the following button, all disabled users at your site will be DELETED. NEVER click the button unless you are VERY SURE.", + 'text_users_are_disabled' => " ユーザーが削除されます。" ); + +?> diff --git a/lang/ja/lang_deletemessage.php b/lang/ja/lang_deletemessage.php index 0b29dfc9..bca8ae3a 100644 --- a/lang/ja/lang_deletemessage.php +++ b/lang/ja/lang_deletemessage.php @@ -1,9 +1,12 @@ 'エラーSMS ID', - 'std_not_suggested' => 'もし私があなただったら、私はそれをしなかっただろう...', - 'std_not_in_inbox' => '受信トレイにそのメッセージがありません。', - 'std_not_in_sentbox' => 'あなたはあなたのアウトボックスにそのメッセージを持っていません。', - 'std_unknown_pm_type' => '不明なSMSタイプ。', +$lang_deletemessage = array +( + 'std_bad_message_id' => "メッセージIDが不正です", + 'std_not_suggested' => "私はあなただったらそれをしないでしょう...", + 'std_not_in_inbox' => "メッセージは受信トレイにありません。", + 'std_not_in_sentbox' => "メッセージは送信ボックスにありません。", + 'std_unknown_pm_type' => "不明なPMタイプです。" ); + +?> \ No newline at end of file diff --git a/lang/ja/lang_details.php b/lang/ja/lang_details.php index 0cebf855..17f83b62 100644 --- a/lang/ja/lang_details.php +++ b/lang/ja/lang_details.php @@ -1,245 +1,247 @@ '間違い', - 'std_no_torrent_id' => 'このIDには種はありません', - 'head_details_for_torrent' => '種子の詳細', - 'text_successfully_uploaded' => 'リリース成功!', - 'text_redownload_torrent_note' => '種子を作り始めるには、種子を再ダウンロードする必要があります。', - 'text_successfully_edited' => '正常に編集!', - 'text_go_back' => 'に戻ります', - 'text_whence_you_came' => '元の場所', - 'text_rating_added' => '評価を正常に追加!', - 'text_thanks_added' => '成功してくれてありがとう!', - 'text_free' => '無料', - 'text_two_times_up' => '2x', - 'text_free_two_times_up' => '2x無料', - 'text_half_down' => '50%', - 'row_download' => 'ダウンロード', - 'text_downloading_not_allowed' => 'ダウンロードは禁止されています。', - 'row_small_description' => '字幕', - 'row_info_hash' => 'ハッシュコード', - 'row_description' => '導入', - 'text_nfo' => 'NFO', - 'text_view_nfo' => '[すべてのモード]', - 'row_imdb_url' => 'IMDBリンク', - 'row_subtitles' => '字幕', - 'text_no_subtitles' => 'この種子にはまだ字幕がありません', - 'submit_upload_subtitles' => '字幕をアップロードします', - 'row_info' => '情報', - 'text_imdb' => 'IMDB', - 'text_lastfm' => 'last.parents', - 'text_douban' => 'ドゥバン', - 'text_not_ready' => '取得されていない情報、クリックしてください', - 'text_here_to_retrieve' => 'ここ 研究', - 'text_someone_has_requested' => 'ユーザーが入っています', - 'text_please_be_patient' => '1秒前に検索リクエストを送信してください、お待ちください。', - 'text_information' => '情報:', - 'text_title' => 'タイトル:', - 'text_title_chinese' => '中国映画のタイトル:', - 'text_also_known_as' => 'エイリアス:', - 'text_year' => '時代:', - 'text_runtime' => '映画の長さ:', - 'text_mins' => '分', - 'text_votes' => '投票数:', - 'text_rating' => 'スコア:', - 'text_language' => '対話言語:', - 'text_country' => '国家:', - 'text_all_genres' => 'カテゴリ:', - 'text_tagline' => 'スローガン:', - 'text_director' => '監督:', - 'text_written_by' => '脚本家:', - 'text_performed_by' => '見せる:', - 'text_offcial_site' => '公式ウェブサイト:', - 'text_imdb_link' => 'IMDBリンク:', - 'text_produced_by' => ' 制作: ', - 'text_music' => '音楽:', - 'text_plot_outline' => 'プロットの概要:', - 'text_cast' => '主演:', - 'text_as' => '...', - 'text_recommended_comment' => '推奨コメント:', - 'text_information_updated_at' => '

        注:< /b>この情報は最後に更新されました', - 'text_might_be_outdated' => '、有効期限が切れている可能性があります、クリックしてください', - 'text_here_to_update' => 'これ ここで情報を更新 ', - 'text_network_error' => '警告!ネットワークステータスでは、情報のリアルタイム検索は許可されていません', - 'text_avprogress' => '平均進捗状況:', - 'row_type' => 'タイプ', - 'text_none_selected' => '(選択されていない)', - 'text_source' => 'ソース:', - 'text_codec' => 'コーディング:', - 'text_stardard' => '解決:', - 'text_processing' => '対処する:', - 'row_quality' => '品質', - 'col_type' => 'タイプ', - 'col_name' => 'タイトル', - 'col_quality' => '品質', - 'title_size' => 'サイズ', - 'title_time_added' => '時間を追加します', - 'title_seeders' => '種子の数', - 'title_leechers' => 'ダウンロード数', - 'col_special' => 'プロモーション?', - 'text_normal' => '普通', - 'row_other_copies' => '他のバージョン', - 'row_last_seeder' => '最近のイベント:', - 'text_ago' => '前に', - 'text_size' => 'サイズ:', - 'text_none_yet' => 'なし(%sチケットが必要ですが、今のみです', - 'text_only' => 'チケット', - 'text_none' => 'なし', - 'text_no_votes_yet' => 'まだ評価はありません', - 'text_invalid' => '無効?', - 'text_out_of_five_with' => '/5ポイント、合計', - 'text_votes_total' => 'チケット', - 'text_login_to_vote' => 'ログインして初めて評価できます', - 'text_you_rated_as' => '(あなたは種子を評価します', - 'select_add_rating' => '(評価を追加)', - 'submit_vote' => '投票します', - 'row_rating' => 'スコア', - 'row_time' => '時間', - 'row_hot_meter' => 'ホットメーター', - 'text_views' => 'チェック:', - 'text_hits' => 'クリック:', - 'text_snatched' => '完了:', - 'text_view_snatches' => '
        時間 <---クリックして完了の詳細を表示します', - 'text_average_speed' => '平均速度:', - 'text_total_speed' => '合計速度:', - 'text_health_note' => '(データは時間によって計算された平均であり、必ずしも正確ではありません)', - 'text_traffic' => '流れ:', - 'text_no_traffic' => 'トラフィックはありません', - 'text_status' => '州:', - 'text_dead' => '種子が切り取られます', - 'row_health' => '活力', - 'text_anonymous' => '匿名', - 'text_edit_torrent' => '編集', - 'text_edit_and_delete_torrent' => '編集/削除', - 'title_edit_torrent' => 'クリックしてこのシードを編集または削除します', - 'row_upped_by' => 'による', - 'text_click' => 'クリック', - 'text_num_files' => 'ファイルの数:', - 'text_see_full_list' => '[ビューリスト]', - 'text_files' => 'ファイル', - 'row_file_list' => 'ファイルリスト', - 'text_hide_list' => '[非表示リスト]', - 'row_action' => '行動', - 'text_download_torrent' => '種子をダウンロードしてください', - 'text_download_paid_torrent' => 'シードをダウンロードします(魔法のパワーは報告時に控除されます:%s)', - 'text_download_bought_torrent' => 'Seedsをダウンロード(購入)', - 'title_download_torrent' => '種子をダウンロードしてください', - 'text_ask_for_reseed' => '更新のリクエスト', - 'title_ask_for_reseed' => '種子がない場合、要求された完了が更新されます', - 'text_report_torrent' => '種子を報告します', - 'title_report_torrent' => '種子を報告することは規則に違反します', - 'text_here' => 'ここ 。', - 'row_peers' => '仲間', - 'text_seeders' => 'シードメーカー', - 'text_leechers' => 'ダウンローダー', - 'text_peers_total' => '仲間', - 'row_seeders' => 'シードメーカー', - 'row_leechers' => 'ダウンローダー', - 'submit_say_thanks' => 'ありがとうと言ってください', - 'submit_you_said_thanks' => 'ありがとうと言った', - 'text_no_thanks_added' => 'まだありがとう', - 'row_thanks_by' => 'ありがとう', - 'row_torrent_info' => 'シードファイル', - 'text_torrent_structure' => '種子構造:', - 'text_torrent_info_note' => '[構造を見る]', - 'head_comments_for_torrent' => 'シードコメント - ', - 'text_comments_for' => 'シードコメント - ', - 'text_snatch_detail_for' => 'シード完成の詳細 - ', - 'text_users_top_finished_recently' => '上部のユーザーが最終的にダウンロードを完了します', - 'col_username' => 'ユーザー名', - 'col_uploaded' => 'ボリュームをアップロードします', - 'col_downloaded' => 'ダウンロード', - 'col_when_completed' => '仕上げる', - 'col_last_action' => '最近の傾向', - 'col_seeding' => '種を作る', - 'col_pm_user' => 'SMS', - 'col_report_user' => '報告', - 'col_on_or_off' => 'オンライン', - 'text_global' => 'グローバル', - 'text_torrent' => 'このタイプ', - 'text_yes' => 'はい', - 'text_no' => 'いいえ', - 'text_add_a_comment' => 'コメントを追加します', - 'text_no_comments_yet' => 'コメントはありません', - 'text_quick_comment' => '簡単なコメント', - 'submit_add_comment' => ' に追加 ', - 'title_pm' => 'メッセージを送信します', - 'title_report' => '報告', - 'title_online' => 'オンライン', - 'title_offline' => 'オンラインではありません', - 'select_kewl' => '狂ったように賞賛!', - 'select_pretty_good' => 'より良い', - 'select_decent' => '一般的に', - 'select_pretty_bad' => '貧しい', - 'select_sucks' => 'ごみ!', - 'text_lastfm_not_ready' => 'last.fm情報は取得されません。クリックしてください', - 'text_biography' => 'バイオグラフィー', - 'text_tags' => 'ラベル:', - 'text_similiar_artists' => '同様のアーティスト:', - 'text_may_also_like' => 'たぶんのように:', - 'text_top_albums' => '人気のアルバム:', - 'text_listener' => 'リスナー', - 'text_scrobbled' => 'プレイした', - 'text_album' => 'アルバム', - 'text_album_name' => 'アルバムタイトル:', - 'text_track_number_info' => '追跡:', - 'text_release_date' => '発行日:', - 'text_label' => 'レコード会社:', - 'text_track_list' => 'トラックリスト:', - 'text_track_number' => '# ', - 'text_track_name' => 'トラックタイトル', - 'text_track_duration' => '間隔', - 'text_track_listener' => 'リスナー', - 'text_ratings_legend' => '平均:', - 'text_points' => 'ポイント', - 'text_totalvotes' => 'チケット', - 'text_author' => '著者:', - 'text_from' => 'から', - 'h1_user_reviews' => 'ユーザーレビュー', - 'h1_critic_reviews' => '映画批評家によるレビュー', - 'h1_user_comments' => 'ユーザーのコメント', - 'text_local_link' => 'ローカルリンク', - 'text_at' => '投稿しました', - 'row_basic_info' => '基本情報', - 'text_site_rating' => 'スコア', - 'text_blank' => '投稿しました', - 'text_creator' => '作成者:', - 'submit_search_at_shooter' => '射手座ネットワークを検索します', - 'submit_search_at_opensubtitles' => 'opensubtitlesを検索します', - 'title_show_or_hide' => '表示または非表示', - 'title_bookmark' => '集める', - 'text_album_information' => 'アルバム情報:', - 'text_about_album' => 'アルバムについて:', - 'text_artist' => 'アーティスト', - 'text_artist_name' => 'アーティスト:', - 'text_medium' => '中くらい:', - 'text_team' => '制作チーム:', - 'text_audio_codec' => 'オーディオコーディング:', - 'text_delete' => '消去', - 'text_other_copies' => 'その他のバージョン', - 'row_uploader_bandwidth' => 'パブリッシャーの帯域幅', - 'text_and_more' => '……(ここには最新の記録のみが表示されます。一般', - 'text_users_in_total' => 'ありがとう)', - 'torrent_dl_url' => 'トレントリンク', - 'torrent_dl_url_notice' => 'BTクライアントで使用して、同じ日に有効です。', - 'torrent_dl_url_text' => '右クリックして表示します。', - 'span_description_have_given' => 'あなたは魔法の価値を与えました', - 'text_no_magic_added' => '魔法の価値の報酬はまだありません', - 'magic_value_number' => '魔法のポイントの数が与えられています', - 'magic_value_award' => '魔法の価値報酬', - 'magic_newest_record' => 'ここには最新のレコードのみが表示されます。', - 'magic_sum_user_give_number' => '合計数のメンバーが魔法の価値に報いました', - 'magic_show_all_description' => '詳細を表示します', - 'magic_haveGotBonus' => '現在、出版社は多くの魔法の価値報酬を受け取っています。', - 'magic_have_no_enough_bonus_value' => 'より多くの魔法のポイントが必要です。', - 'claim_already' => '認識された', - 'claim_now' => '請求', - 'claim_info' => '%s ユーザーと残りの%s によって請求されています。', - 'claim_detail' => 'クレームの詳細', - 'claim_label' => '種を主張します', - 'claim_confirm' => 'この種を請求したいですか?', - 'action_approval' => 'レビュー', - 'row_tags' => 'ラベル', - 'torrent_existed' => '種はすでに存在します!', +$lang_details = array +( + 'std_error' => "エラー", + 'std_no_torrent_id' => "この ID で Torrent がありません", + 'head_details_for_torrent' => "Torrent の詳細 ", + 'text_successfully_uploaded' => "アップロードに成功しました!", + 'text_redownload_torrent_note' => "You should re-download the torrent and start seeding now.", + 'text_successfully_edited' => "正常に編集されました!", + 'text_go_back' => "戻る ", + 'text_whence_you_came' => "どこに来たの?", + 'text_rating_added' => "評価が追加されました!", + 'text_thanks_added' => "ありがとうございました!", + 'text_free' => "無料", + 'text_two_times_up' => "2X", + 'text_free_two_times_up' => "2倍無料", + 'text_half_down' => "50%", + 'row_download' => "ダウンロード", + 'text_downloading_not_allowed' => "ダウンロードが許可されていません。", + 'row_small_description' => "小さな説明", + 'row_info_hash' => "情報ハッシュ", + 'row_description' => "説明", + 'text_nfo' => "NFO", + 'text_view_nfo' => "format@@0", + 'row_imdb_url' => "IMDb URL", + 'row_subtitles' => "字幕", + 'text_no_subtitles' => "このトレントには字幕がありません", + 'submit_upload_subtitles' => "Upload Subtitle!", + 'row_info' => " 情報", + 'text_imdb' => "IMDb", + 'text_lastfm' => "Last.fm", + 'text_douban' => "Douban", + 'text_not_ready' => " 情報の準備ができていません。クリックしてください ", + 'text_here_to_retrieve' => " から取得する ", + 'text_someone_has_requested' => "誰かが情報の取得をリクエストしました ", + 'text_please_be_patient' => " 数秒前我慢してください", + 'text_information' => "情報:", + 'text_title' => " タイトル: ", + 'text_title_chinese' => "中国語のタイトル: ", + 'text_also_known_as' => " 別名: ", + 'text_year' => " 年: ", + 'text_runtime' => " 実行時: ", + 'text_mins' => " 分", + 'text_votes' => " 投票: ", + 'text_rating' => " 評価: ", + 'text_language' => " 言語: ", + 'text_country' => " 国: ", + 'text_all_genres' => " すべてのジャンル: ", + 'text_tagline' => " Tagline: ", + 'text_director' => " ディレクター: ", + 'text_written_by' => " 書き込み者: ", + 'text_performed_by' => " 実行者: ", + 'text_offcial_site' => " オフサイト: ", + 'text_imdb_link' => " IMDb リンク: ", + 'text_produced_by' => " 製作者: ", + 'text_music' => " 音楽: ", + 'text_plot_outline' => " プロットの概要:", + 'text_cast' => " キャスト:", + 'text_as' => " として ", + 'text_recommended_comment' => " 推奨コメント:", + 'text_information_updated_at' => "

        注意: この情報は次の時点で更新されます: ", + 'text_might_be_outdated' => " 今日は古くなっているかもしれませんが ", + 'text_here_to_update' => " 古い情報を更新する", + 'text_network_error' => "警告!ネットワーク状態ではIMDbから情報を取得できません。", + 'text_avprogress' => "平均進行度: ", + 'row_type' => "タイプ", + 'text_none_selected' => "(何も選択されていません)", + 'text_source' => "ソース:", + 'text_codec' => "コーデック:", + 'text_stardard' => "標準:", + 'text_processing' => "処理中:", + 'row_quality' => "品質", + 'col_type' => "タイプ", + 'col_name' => "名前", + 'col_quality' => "品質", + 'title_size' => "サイズ", + 'title_time_added' => "時間が追加されました", + 'title_seeders' => "Seeders", + 'title_leechers' => "Leechers", + 'col_special' => "プロモーションしますか?", + 'text_normal' => "普通", + 'row_other_copies' => "Other Copies", + 'row_last_seeder' => "最終 アクション: ", + 'text_ago' => " 前", + 'text_size' => "サイズ: ", + 'text_none_yet' => "まだ投票がありません(少なくとも %s 票が必要です)。 ", + 'text_only' => "のみ ", + 'text_none' => "なし", + 'text_no_votes_yet' => "まだ投票がありません", + 'text_invalid' => "無効?", + 'text_out_of_five_with' => " 5のうちの1つは ", + 'text_votes_total' => " 総投票数", + 'text_login_to_vote' => " にログインして評価する", + 'select_add_rating' => "(評価を追加)", + 'submit_vote' => "投票!", + 'text_rating' => "評価: ", + 'row_time' => "時刻", + 'row_hot_meter' => "ホットメーター", + 'text_views' => "閲覧回数: ", + 'text_hits' => "ヒット数: ", + 'text_snatched' => "スナッチング: ", + 'text_view_snatches' => " x time(s)", + 'text_average_speed' => "平均速度: ", + 'text_total_speed' => "合計速度: ", + 'text_health_note' => "(これらは時間の経過とともに平均であるため、それほど正確ではありません)", + 'text_traffic' => "トラフィック: ", + 'text_no_traffic' => "No Traffic for the Moment", + 'text_status' => "ステータス: ", + 'text_dead' => "死亡", + 'row_health' => "健康", + 'text_anonymous' => "匿名です", + 'text_edit_torrent' => "編集", + 'text_edit_and_delete_torrent' => "編集/削除", + 'title_edit_torrent' => " to Edit or Delete この Torrent", + 'row_upped_by' => "アップロード者", + 'text_click' => "Click ", + 'text_num_files' => "Num ファイル: ", + 'text_see_full_list' => "format@@0", + 'text_files' => " ファイル", + 'row_file_list' => "ファイルリスト", + 'text_hide_list' => "format@@0", + 'row_action' => "アクション", + 'text_download_torrent' => "Torrent をダウンロード", + 'text_download_paid_torrent' => "Torrent をダウンロード(アナウンスするとボーナスが差し引かれます: %s)", + 'text_download_bought_torrent' => "torrentをダウンロード(購入)", + 'title_download_torrent' => "Download torrent", + 'text_ask_for_reseed' => "リシードを要求する", + 'title_ask_for_reseed' => "Ask snatched users for reseeding when there's no seeder", + 'text_report_torrent' => "トレントを報告", + 'title_report_torrent' => "Report torrent for violating rules", + 'text_here' => "ここ", + 'row_peers' => "ピア", + 'text_seeders' => " シーダー", + 'text_leechers' => " Leecher", + 'text_peers_total' => " ピアの合計", + 'row_seeders' => "Seeders", + 'row_leechers' => "Leechers", + 'submit_say_thanks' => "Say Thanks!", + 'submit_you_said_thanks' => "You Said Thanks!", + 'text_no_thanks_added' => "まだ感謝は追加されてない", + 'row_thanks_by' => "Thanks by", + 'row_torrent_info' => "Torrent 情報", + 'text_torrent_structure' => "ストラクチャー: ", + 'text_torrent_info_note' => "format@@0", + 'head_comments_for_torrent' => "Torrent へのコメント ", + 'text_comments_for' => "コメント ", + 'text_snatch_detail_for' => "スナッチの詳細 ", + 'text_users_top_finished_recently' => "上部のユーザーが最近ダウンロードを完了しました", + 'col_username' => "ユーザー名", + 'col_uploaded' => "アップロードしました", + 'col_downloaded' => "ダウンロード済み", + 'col_when_completed' => "完了時", + 'col_last_action' => "最後のアクション", + 'col_seeding' => "シード中", + 'col_pm_user' => "PM ユーザー", + 'col_report_user' => "ユーザーを報告", + 'col_on_or_off' => "オン/オフ", + 'text_global' => "グローバル", + 'text_torrent' => "Torrent", + 'text_yes' => "はい", + 'text_no'=> "いいえ", + 'text_add_a_comment' => "コメントを追加", + 'text_no_comments_yet' => "コメントはまだありません", + 'text_quick_comment' => "クイックコメント", + 'submit_add_comment' => "Add Comment", + 'title_pm' => "送信PM", + 'title_report' => "レポート", + 'title_online' => "オンライン", + 'title_offline' => "オフライン", + 'select_kewl' => "Kewl!", + 'select_pretty_good' => "かなり良い", + 'select_decent' => "", + 'select_pretty_bad' => "かなり悪い", + 'select_sucks' => "サック!", + 'text_lastfm_not_ready' => "Last.fm 情報の準備ができていません。クリックしてください ", + 'text_biography' => "来歴", + 'text_tags' => "タグ:", + 'text_similiar_artists' => "Similiar Artists:", + 'text_may_also_like' => "May Also like:", + 'text_top_albums' => "上位アルバム:", + 'text_listener' => " リスナー", + 'text_scrobbled' => " 再生", + 'text_album' => " アルバム", + 'text_album_name' => "名前: ", + 'text_track_number_info' => "トラック: ", + 'text_release_date' => "リリース日: ", + 'text_label' => "ラベル: ", + 'text_track_list' => "トラックリスト: ", + 'text_track_number' => "#   ", + 'text_track_name' => "トラック名", + 'text_track_duration' => "期間", + 'text_track_listener' => "リスナー", + 'text_ratings_legend' => "凡例: ", + 'text_points' => " ポイント", + 'text_totalvotes' => " 投票", + 'text_author' => "作成者: ", + 'text_from' => "from", + 'h1_user_reviews' => "選択したユーザーのレビュー", + 'h1_critic_reviews' => "映画批評家のレビュー", + 'h1_user_comments' => "ユーザーコメント", + 'text_local_link' => "ローカルリンク", + 'text_at' => " に ", + 'row_basic_info' => "基本情報", + 'text_site_rating' => " 評価", + 'text_blank' => " ", + 'text_creator' => "作成者: ", + 'submit_search_at_shooter' => "射手から検索", + 'submit_search_at_opensubtitles' => "オープン字幕で検索", + 'title_show_or_hide' => " または 非表示", + 'title_bookmark' => "ブックマーク", + 'text_album_information' => "アルバム情報: ", + 'text_about_album' => "このアルバムについて: ", + 'text_artist' => " アーティスト", + 'text_artist_name' => "アーティスト: ", + 'text_medium' => "中:", + 'text_team' => "チーム:", + 'text_audio_codec' => "オーディオコーデック:", + 'text_delete' => "削除", + 'text_other_copies' => " その他のコピー", + 'row_uploader_bandwidth' => "アップローダー
        バンド", + 'text_and_more' => " そしてもっと (ありがとうございます) ", + 'text_users_in_total' => " ユーザーの合計)", + 'torrent_dl_url' => "Torrent URL", + 'torrent_dl_url_notice' => "BT クライアントにコピーできます。今日だけ有効です。", + 'torrent_dl_url_text' => "右クリックで表示します。", + 'span_description_have_given' =>'価値の魔法を与えました', + 'text_no_magic_added' => "この賞の魔法の価値はありません", + 'magic_value_number' => "数値マジックポイント値が提示されました", + 'magic_value_award' => "Magic value of awards", + 'magic_newest_record' =>'ここでは、最新のレコードだけです。 ', + 'magic_sum_user_give_number' => '数字のメンバーは魔法の賞を完全に与えました', + 'magic_show_all_description' => '単一の詳細を表示', + 'magic_haveGotBonus' => 'パブリッシャーが賞の番号ボーナスを受け取ったようです。', + 'magic_have_no_enough_bonus_value' => 'より多くのポイントが必要でした', + 'claim_already' => '請求済み', + 'claim_now' => 'Claim', + 'claim_info' => 'すでに %s のユーザー、 %s が残っています。', + 'claim_detail' => '詳細を請求する', + 'claim_label' => 'トレントを受け取る', + 'claim_confirm' => 'このトレントを請求してもよろしいですか?', + 'action_approval' => '承認', + 'row_tags' => 'タグ', + 'torrent_existed' => 'トレントはすでにアップロードされています!', ); + +?> diff --git a/lang/ja/lang_docleanup.php b/lang/ja/lang_docleanup.php index 70b26e94..21a9bcc1 100644 --- a/lang/ja/lang_docleanup.php +++ b/lang/ja/lang_docleanup.php @@ -1,9 +1,9 @@ 'クリーンアップを実行します', - 'running' => '掃除が進行中です、待ってください...', - 'force' => '強制的に徹底的にクリーニングする必要がある場合は、 here をクリックします。', - 'time_consumed' => '時間:%f秒', - 'done' => '仕上げる', -); +$lang_docleanup = [ + 'title' => 'クリーンアップを行う', + 'running' => '清掃中です...お待ちください', + 'force' => 'If you need to force a complete cleaning, clickhere', + 'time_consumed' => 'Time consumed:%f sec', + 'done' => '完了', +]; diff --git a/lang/ja/lang_donate.php b/lang/ja/lang_donate.php index 63bf306e..a2c31802 100644 --- a/lang/ja/lang_donate.php +++ b/lang/ja/lang_donate.php @@ -1,28 +1,31 @@ 'ごめん', - 'std_do_not_accept_donation' => '現在、寄付は受け付けていません。', - 'std_success' => '成功', - 'std_donation_success_note_one' => '寄付ありがとうございます!あなたの支払いは完了しました。クリックしてください', - 'std_here' => 'ここ', - 'std_donation_success_note_two' => 'お客様の寄付を確認できるように、お支払い情報をお送りください。', - 'head_donation' => '寄付する', - 'text_donate' => '寄付する', - 'std_error' => '間違い', - 'std_no_donation_account_available' => '寄付を受け取るアカウントはありません。この状況については、管理グループに伝えてください。', - 'text_donation_note' => '寄付するつもりでありがとう。何回寄付があっても、心から感謝します!', - 'text_donate_with_paypal' => 'PayPalに寄付してください', - 'text_donate_paypal_note' => '1.寄付金額を選択します。
        2。 [PayPal]ボタンをクリックします。
        3。 PayPalのWebサイトでの完全な支払い。', - 'text_select_donation_amount' => '寄付金額を選択してください:', - 'select_choose_donation_amount' => '---寄付金額を選択します---', - 'select_other_donation_amount' => 'その他の金額', - 'text_usd_mark' => '', - 'text_donation' => 'ドル', - 'text_donate_with_alipay' => 'Alipayに寄付してください', - 'text_donate_alipay_note_one' => '1. Alipayボタンをクリックします。
        2。 「奇妙な売り手への支払い」を選択します。
        3。 「Payee Alipayアカウント」にAlipayアカウントに入力してください', - 'text_donate_alipay_note_two' => '。
        4。支払いが完了するまで続行します。', - 'text_after_donation_note_one' => '寄付を完了したら、サイトを通して支払い情報を必ず渡してください', - 'text_send_us' => '私たちに送ってください', - 'text_after_donation_note_two' => '、あなたの寄付の確認を促進するため。', +$lang_donate = array +( + 'std_sorry' => "申し訳ありません", + 'std_do_not_accept_donation' => "現時点では寄付は受け付けていません。", + 'std_success' => "成功", + 'std_donation_success_note_one' => "寄付ありがとうございます!取引が完了しました。クリックしてください ", + 'std_here' => "ここ", + 'std_donation_success_note_two' => " 取引情報を送ってくれれば口座に入金できるようになります", + 'head_donation' => "寄付", + 'text_donate' => "寄付", + 'std_error' => "エラー", + 'std_no_donation_account_available' => "寄付アカウントが定義されていません。スタッフに報告してください。", + 'text_donation_note' => "寄付にご関心をお寄せいただきありがとうございます。どんなに小さくても、寄付できるものは何でも喜んでいただけると思います。", + 'text_donate_with_paypal' => "PayPalで寄付", + 'text_donate_paypal_note' => "1. 寄付金額を選択します。
        2. PayPalボタンをクリックします。
        3. PayPalでお支払いを完了します。", + 'text_select_donation_amount' => "寄付金額を選択してください: ", + 'select_choose_donation_amount' => "---寄付金額を選択---", + 'select_other_donation_amount' => "その他の寄付額", + 'text_usd_mark' => "$", + 'text_donation' => " 寄付", + 'text_donate_with_alipay' => "Alipayで寄付", + 'text_donate_alipay_note_one' => "1. Click Alipay button.
        2. Choose 'pay to 見知らぬ人'.
        3. Enter our account at Alipay. ", + 'text_donate_alipay_note_two' => "
        4. 完了するまで続けてください。", + 'text_after_donation_note_one' => "寄付完了後、確認してください ", + 'text_send_us' => "私たちに送信", + 'text_after_donation_note_two' => " 取引情報 を使用して、お客様のアカウントに入金することができます!", ); + +?> diff --git a/lang/ja/lang_download.php b/lang/ja/lang_download.php index 43978b72..9f8fedb0 100644 --- a/lang/ja/lang_download.php +++ b/lang/ja/lang_download.php @@ -1,4 +1,5 @@ 'ヒントをダウンロードしてください', - 'text_client_banned_notice' => '禁止されたクライアントプロンプト', - 'text_client_banned_note' => 'トラッカーは、最後に使用したBTクライアントが banded のカテゴリにあることをチェックします。以下の手順をお読みください。', - 'text_low_ratio_notice' => '低共有率のヒント', - 'text_low_ratio_note_one' => ' 警告: 共有率が低すぎます!あなたがいる必要があります', - 'text_low_ratio_note_two' => 'それを内部的に改善します。そうしないと、このサイトのアカウントは禁止されます。共有率がわからない場合は、以下の指示を注意深くお読みください。', - 'text_first_time_download_notice' => '最初にプロンプ​​トをダウンロードします', - 'text_first_time_download_note' => 'こんにちは!
        これは、このサイトでシードをダウンロードするのが初めてかもしれません。
        この前に次の簡単なメモを読んでください。', - 'text_this_is_private_tracker' => 'これは共有レート要件を備えた非公開のBTサイトです', - 'text_private_tracker_note_one' => 'これはプライベートBTサイト(プライベートトラッカー)です。つまり、トラッカーは登録メンバーのみが利用できます。', - 'text_learn_more' => '見る', - 'text_nexuswiki' => 'Nexus wiki', - 'text_private_tracker_note_two' => 'メンバーシップを維持するには、必要なアップロード/ダウンロード比を最小限に抑える必要があります(つまり、共有率。共有率が低いとメンバーシップが失われます。', - 'text_see_ratio' => 'レート要件の共有については、参照してください', - 'text_private_tracker_note_three' => '現在の共有率は常にナビゲーションメニューの真下に表示されます。頻繁に注意してください。', - 'text_private_tracker_note_four' => '良い共有率を取得する方法は?
        最良の方法は、 BTクライアントを実行し続け、対応するファイルが削除されるまでダウンロードしたリソースを植えることです。', - 'text_use_allowed_clients' => '許容されるBTクライアントのみが使用されます', - 'text_allowed_clients_note_one' => 'BTクライアントには多くの種類があります。しかし、このサイトでは、のみを許可します。他のクライアント(Qbittorrentee、Thunderなど)は、禁止のカテゴリに分類され、トラッカーは接続要求を受け入れません。', - 'text_allowed_clients_note_two' => 'あなたはできる', - 'text_allowed_clients_note_three' => '許可されているクライアントはすべて、どのクライアントを使用するかわからない場合は、次の2つの推奨事項のいずれかを選択できます。', - 'title_download' => 'ダウンロード', - 'text_for' => 'サポートプラットフォーム:', - 'text_for_more_information_read' => '見る', - 'text_rules' => 'ルール', - 'text_and' => 'そして', - 'text_faq' => 'よくある質問', - 'text_let_me_download' => '共有率を上げます。', - 'text_notice_not_show_again' => 'このプロンプトは次回は表示されません', - 'text_notice_always_show' => 'このプロンプトは、共有率を改善するまで毎回表示されます。', - 'submit_download_the_torrent' => 'シードファイルをダウンロードします', +$lang_downloadnotice = array +( + 'head_download_notice' => "ダウンロード通知", + 'text_client_banned_notice' => "クライアントは禁止された通知", + 'text_client_banned_note' => "Hi!
        The tracker has detected that you have been using a banned BitTorrent client in the last connecting. Please read the following notice.", + 'text_low_ratio_notice' => "低比率通知", + 'text_low_ratio_note_one' => "警告: あなたの比率が低いです! ", + 'text_low_ratio_note_two' => ", or you will lose your membership here. If you have no idea what your ratio is, read the following notice carefully.", + 'text_first_time_download_notice' => "初回ダウンロード通知", + 'text_first_time_download_note' => "Hi!
        Chances are it's your first time downloading a torrent from our tracker.
        There are probably a few things you should know before you continue. I will try to make this short :)", + 'text_this_is_private_tracker' => "これは、比率要件を持つプライベートトラッカーです", + 'text_private_tracker_note_one' => "これはプライベートトラッカーで、登録メンバーの 排他的な 使用のためにトラッカーを予約します。 ", + 'text_learn_more' => "プライベートトラッカーについて詳しくはこちら ", + 'text_nexuswiki' => "NexusWiki", + 'text_private_tracker_note_two' => "You MUST keep a minimum required upload-to-download ratio, or you will lose your membership here. ", + 'text_see_ratio' => "比率要件を参照してください ", + 'text_private_tracker_note_three' => "現在の比率は常にサイトのナビゲーションメニューの下に表示されます。目を離さないでください。", + 'text_private_tracker_note_four' => "How to keep a good ratio?
        Well, the best way is to always leave your BitTorrent client running and keep on seeding the torrents you've downloaded until you delete the files.", + 'text_use_allowed_clients' => "許可されているBitTorrentクライアントのみ使用", + 'text_allowed_clients_note_one' => "Well, there are quite a few BitTorrent clients out there. However, we ONLY accept some of them. Others (e.g. qbittorrentEE, Thunder) are banned here and would fail to connect our tracker. ", + 'text_allowed_clients_note_two' => "許可されているクライアントの完全なリストを見つけることができます ", + 'text_allowed_clients_note_three' => "を選択します。 どちらを選択するかがわからない場合は、次の 2 つの推奨クライアントを検討してください。 ", + 'title_download' => "ダウンロード ", + 'text_for' => "対象: ", + 'text_for_more_information_read' => "詳細については、 ", + 'text_rules' => "ルール", + 'text_and' => " と ", + 'text_faq' => "FAQ", + 'text_let_me_download' => "私は私の比率を改善します。 ", + 'text_notice_not_show_again' => "この通知を今後表示しません。 ", + 'text_notice_always_show' => "この通知は、比率を改善するまで常に表示されます。 ", + 'submit_download_the_torrent' => "Torrent をダウンロード", ); + +?> diff --git a/lang/ja/lang_edit.php b/lang/ja/lang_edit.php index 0e22da5c..92c895ad 100644 --- a/lang/ja/lang_edit.php +++ b/lang/ja/lang_edit.php @@ -1,71 +1,74 @@ 'シードの編集 - ', - 'text_cannot_edit_torrent' => 'シードを編集できません', - 'text_cannot_edit_torrent_note' => 'あなたは種ではないか、正しくログインしていません。 ', - 'row_torrent_name' => 'タイトル', - 'row_small_description' => '字幕', - 'row_nfo_file' => 'NFOファイル', - 'radio_keep_current' => '元のファイル', - 'radio_update' => '更新します', - 'radio_remove' => '取り除く', - 'row_description' => '導入', - 'row_type' => 'タイプ', - 'text_source' => 'ソース:', - 'select_choose_one' => '選択してください', - 'text_codec' => 'コーディング:', - 'text_standard' => '解決:', - 'text_processing' => '対処する:', - 'row_quality' => '品質', - 'text_quality_note' => 'ビデオファイルのみに適用されます。', - 'row_visible' => '見せる', - 'checkbox_visible' => '閲覧ページに表示します', - 'text_visible_note' => '注:アップローダーがあるときにシードは自動的に表示され、一定期間シードがない場合(シードが切断されます)、隠されます。これを選択して、プロセスを手動でスピードアップします。同時に、隠された種子はまだ表示または検索できることに注意してくださいが、デフォルトでは表示されません。', - 'row_anonymous_uploader' => '匿名でアップロードします', - 'checkbox_anonymous_note' => 'ブラウジングページにユーザー名を表示しないでください', - 'row_special_torrent' => 'プロモーションシード', - 'select_use_global_setting' => 'グローバル設定を使用します', - 'select_forever' => '永続', - 'select_until' => 'それまで', - 'text_keep_current' => '元の設定', - 'text_ie_for' => '間隔', - 'text_promotion_until_note' => '(タイムフォーマットは「年年の年の日の日時間:分:秒秒」です)', - 'select_normal' => '普通', - 'select_free' => '無料', - 'select_two_times_up' => '2倍アップロード', - 'select_free_two_times_up' => '無料および2xアップロード', - 'select_half_down' => '50%ダウンロード', - 'select_choose_torrent_state' => '種子のプロモーションステータスを設定します', - 'row_torrent_position' => '種子の場所', - 'row_recommended_movie' => '推奨ビデオ', - 'select_choose_recommended_movie' => 'ビデオポスターがホームページ「推奨ホットフィルム」または「推奨クラシック」に表示されるかどうかを選択します', - 'select_hot' => '人気のある', - 'select_classic' => 'クラシック', - 'select_recommended' => '推薦する', - 'select_sticky' => 'トップ', - 'select_choose_if_sticky' => 'シードページにシードがトッピングされているかどうかを選択します', - 'row_banned' => '禁止する', - 'checkbox_banned' => '禁止する', - 'submit_edit_it' => '編集', - 'submit_revert_changes' => 'リセット', - 'text_delete_torrent' => 'シードを削除 - 理由:', - 'radio_dead' => '種子が切り取られます', - 'text_dead_note' => '0シードメーカー + 0ダウンローダー= 0合計コンパニオン', - 'radio_dupe' => '繰り返す', - 'radio_nuked' => '劣った品質', - 'radio_rules' => 'ルールの違反', - 'text_req' => '(必須)', - 'radio_other' => '他の', - 'submit_delete_it' => '消去', - 'text_move_to_browse' => 'タイプはシードエリアに変更されました', - 'text_move_to_special' => 'タイプは特別領域になります', - 'text_medium' => '中くらい:', - 'row_pick' => '選択します', - 'row_check' => 'チェック', - 'text_team' => '制作チーム', - 'text_audio_codec' => 'オーディオエンコーディング', - 'row_content' => 'コンテンツ', - 'ban_reason_label' => '理由', - 'fill_quality' => '品質を埋めます', +$lang_edit = array +( + 'head_edit_torrent' => "トレントを編集 - ", + 'text_cannot_edit_torrent' => "このトレントは編集できません", + 'text_cannot_edit_torrent_note' => "You're not the rightful owner, or you're not logged in properly.\n", + 'row_torrent_name' => "トレント名", + 'row_small_description' => "小規模な説明", + 'row_nfo_file' => "NFO ファイル", + 'radio_keep_current' => "最新のままにする", + 'radio_update' => "更新", + 'radio_remove' => "削除", + 'row_description' => "説明", + 'row_type' => "タイプ", + 'text_source' => "ソース:", + 'select_choose_one' => "一つ選んでください", + 'text_codec' => "コーデック:", + 'text_standard' => "標準:", + 'text_processing' => "処理中:", + 'row_quality' => "品質", + 'text_quality_note' => "ビデオのみを選択してください", + 'row_visible' => "表示", + 'checkbox_visible' => "メインページに表示", + 'text_visible_note' => "シードがある場合、トレントは自動的に表示されることに注意してください。 しばらくシダーがいないと、自動的に見えなくなります(死んでいます)。 手動でプロセスをスピードアップするには、このスイッチを使用します。 また、見えない(死んだ)急流はまだ表示または検索することができることに注意してください、それは単にデフォルトではありません。", + 'row_anonymous_uploader' => "匿名です", + 'checkbox_anonymous_note' => "Torrent のアップローダーを非表示にするには、このボックスにチェックを入れてください", + 'row_special_torrent' => "プロモーション", + 'select_use_global_setting' => "グローバル設定の使用", + 'select_forever' => "永久に", + 'select_until' => "まで", + 'text_keep_current' => "現在のままにする", + 'text_ie_for' => "対象: ", + 'text_promotion_until_note' => "(時間形式は YYYY-MM-DD hh:mm:ss)", + 'select_normal' => "普通", + 'select_free' => "無料", + 'select_two_times_up' => "2倍アップ", + 'select_free_two_times_up' => "無料と2倍アップ", + 'select_half_down' => "50% ダウン", + 'select_choose_torrent_state' => "トレントをプロモーションに設定", + 'row_torrent_position' => "Torrent Postion", + 'row_recommended_movie' => "おすすめ 映画", + 'select_choose_recommended_movie' => "映画のトレントのポスターをメインページに表示するかどうかを選択します", + 'select_hot' => "ホット", + 'select_classic' => "古典的な", + 'select_recommended' => "推奨されます", + 'select_sticky' => "Sticky", + 'select_choose_if_sticky' => "トレントページでトレントが付着するかどうかを選択します", + 'row_banned' => "禁止", + 'checkbox_banned' => "禁止", + 'submit_edit_it' => "Edit it!", + 'submit_revert_changes' => "Revert changes", + 'text_delete_torrent' => "Delete torrent - Reason:", + 'radio_dead' => "死亡者数", + 'text_dead_note' => " 0 シーダー+ 0 リーチャ = 0 ピアの合計", + 'radio_dupe' => "Dupe", + 'radio_nuked' => "Nuked", + 'radio_rules' => "ルール", + 'text_req' => "(req)", + 'radio_other' => "その他", + 'submit_delete_it' => "Delete it!", + 'text_move_to_browse' => "Torrent セクションに移動 ", + 'text_move_to_special' => "特別な セクションに移動 ", + 'text_medium' => "中:", + 'row_pick' => "選択", + 'row_check' => "チェック", + 'text_team' => "グループ", + 'text_audio_codec' => "オーディオコーデック", + 'row_content' => "コンテンツ", + 'ban_reason_label' => '理由:', + 'fill_quality' => '塗りつぶし', ); + +?> diff --git a/lang/ja/lang_faq.php b/lang/ja/lang_faq.php index 6bec052b..8a8993a2 100644 --- a/lang/ja/lang_faq.php +++ b/lang/ja/lang_faq.php @@ -1,9 +1,12 @@ 'よくある質問', - 'text_welcome_to' => 'いらっしゃいませ', - 'text_welcome_content_one' => '私たちの目標は、純粋に高品質のものを提供することです。したがって、認定ユーザーのみが種子を公開できます。 0日リソースのソースがある場合は、連絡先 us!

        これは非公開のBTサイトであり、アクセスするために登録する必要があります。', - 'text_welcome_content_two' => '%sが何かをする前に、サイトの rules を読むことをお勧めします。いくつかの簡単なルールはありますが、ユーザーに厳密に従うように要求しています。

        %s ユーザー契約を読んでください。', - 'text_contents' => '目次', +$lang_faq = array +( + 'head_faq' => "FAQ", + 'text_welcome_to' => "ようこそ ", + 'text_welcome_content_one' => "The goal is to provide the absolutely high quality stuff. Therefore, only specially authorised users have permission to upload torrents. If you have access to 0-day stuff do not hesitate to contact us!

        This is a private tracker, and you have to register before you can get full access to the site.", + 'text_welcome_content_two' =>" Before you do anything here at %s, we suggest you read the rules! There are only a few rules to abide by, but we do enforce them!

        Before you go any further you should read the %s user agreement.", + 'text_contents' => "内容", ); + +?> diff --git a/lang/ja/lang_fastdelete.php b/lang/ja/lang_fastdelete.php index 8397e8d2..6a145648 100644 --- a/lang/ja/lang_fastdelete.php +++ b/lang/ja/lang_fastdelete.php @@ -1,10 +1,13 @@ '削除が失敗しました!', - 'std_missing_form_data' => 'アイテムが埋められています', - 'text_no_permission' => 'シードを削除する許可はなく、モデレーターとユーザー以上のユーザーのみができます。投稿した種子を削除したい場合は、連絡してください。', - 'std_delete_torrent' => 'シードを削除します', - 'std_delete_torrent_note' => '確認:シードを削除しようとしています。クリックしてください', - 'std_here_if_sure' => 'ここで確認しましょう。', +$lang_fastdelete = array +( + 'std_delete_failed' => "削除に失敗しました!", + 'std_missing_form_data' => "フォームデータがありません", + 'text_no_permission' => "トレントを削除する権限がありません。モデレータ以上のみが削除できます。 これがあなたのトレントで、削除したい場合は連絡してください。\n", + 'std_delete_torrent' => "トレントを削除", + 'std_delete_torrent_note' => "サニティチェック: トレントを削除しようとしています。クリックしてください。", + 'std_here_if_sure' => " here if you are sure." ); + +?> diff --git a/lang/ja/lang_fields.php b/lang/ja/lang_fields.php index 0793243d..48097ab2 100644 --- a/lang/ja/lang_fields.php +++ b/lang/ja/lang_fields.php @@ -1,30 +1,31 @@ 'カスタムフィールド管理', - 'text_manage' => '管理', - 'text_add' => 'に追加', - 'text_field' => 'フィールド', - 'text_delete' => '消去', - 'text_edit' => '編集', - 'col_id' => 'id', - 'col_name' => '名前', - 'col_name_help' => '数字、文字、およびアンダースコアのみが許可されています', - 'col_label' => 'タグを表示します', - 'col_type' => 'タイプ', - 'col_required' => '空にすることはできません', - 'col_help' => '補助指示', - 'col_options' => 'オプション', - 'col_options_help' => 'タイプが単一選択、複数選択、プルダウン、1行ごとに1行、形式:オプション値|オプション説明テキスト', - 'col_action' => '動作します', - 'col_is_single_row' => '提示時の単一の行', - 'js_sure_to_delete_this' => 'このアイテムを削除したいですか?', - 'submit_submit' => '提出する', - 'field_type_text' => '短いテキスト', - 'field_type_textarea' => '長いテキスト', - 'field_type_radio' => '水平シングル選択', - 'field_type_checkbox' => '水平方向の多肢選択', - 'field_type_select' => '単一の選択を引き下げます', - 'field_type_image' => '写真', - 'col_display' => 'カスタムディスプレイ', -); +$lang_fields = [ + 'field_management' => 'カスタムフィールド管理', + 'text_manage' => '管理', + 'text_add' => '追加', + 'text_field' => 'フィールド', + 'text_delete' => '削除', + 'text_edit' => '編集', + 'col_id' => 'ID', + 'col_name' => '名前', + 'col_name_help' => '数字、アルファベット、下線のみを許可する', + 'col_label' => '表示ラベル', + 'col_type' => 'タイプ', + 'col_required' => '必須', + 'col_help' => 'ヘルプテキスト', + 'col_options' => 'オプション', + 'col_options_help' => 'タイプがラジオ、チェックボックス、選択時に必要です。1行、1オプション、書式: 値|テキストを表示', + 'col_action' => 'アクション', + 'col_is_single_row' => '1行に表示', + 'js_sure_to_delete_this' => '削除しますか?', + 'submit_submit' => '送信', + 'field_type_text' => '短いテキスト', + 'field_type_textarea' => '長いテキスト', + 'field_type_radio' => '水平単一選択', + 'field_type_checkbox' => '水平方向の複数選択', + 'field_type_select' => '垂直方向の単一選択', + 'field_type_image' => '画像', + 'col_display' => 'カスタム表示', + +]; diff --git a/lang/ja/lang_forummanage.php b/lang/ja/lang_forummanage.php index 341cb9e8..ccce2145 100644 --- a/lang/ja/lang_forummanage.php +++ b/lang/ja/lang_forummanage.php @@ -1,35 +1,38 @@ 'フォーラム管理', - 'text_forum_management' => 'フォーラム管理', - 'text_edit_forum' => 'フォーラムのセクションを編集します', - 'row_forum_name' => 'セクション名', - 'row_forum_description' => 'セクションの説明', - 'row_overforum' => 'フォーラムパーティション', - 'row_moderator' => 'モデレータ', - 'text_moderator_note' => '最大3つのモデレーター。 \'、\'を使用してユーザー名を分割します', - 'row_minimum_read_permission' => '最小許可読み取りレベル', - 'row_minimum_write_permission' => '最小許容応答レベル', - 'row_minimum_create_topic_permission' => '最小許容トピックの公開レベル', - 'row_forum_order' => 'フォーラムセクションソート', - 'text_forum_order_note' => '数字の昇順でアレンジ、つまり、0が上部に表示されます。', - 'submit_edit_forum' => 'フォーラムのセクションを編集します', - 'text_no_records_found' => '申し訳ありませんが、記録はありません!', - 'text_add_forum' => 'フォーラムセクションを追加します', - 'text_make_new_forum' => '新しいセクションを追加します', - 'submit_overforum_management' => 'フォーラムパーティション管理', - 'submit_add_forum' => 'セクションを追加します', - 'col_name' => '名前', - 'col_overforum' => 'フォーラムパーティション', - 'col_read' => '読む', - 'col_write' => '返事', - 'col_create_topic' => 'トピックを作成します', - 'col_moderator' => 'モデレータ', - 'col_modify' => '改訂', - 'text_not_available' => 'まだありません', - 'text_edit' => '編集', - 'text_delete' => '消去', - 'js_sure_to_delete_forum' => 'このフォーラムセクションを削除したいですか?', - 'submit_make_forum' => 'フォーラムセクションを作成します', +$lang_forummanage = array +( + 'head_forum_management' => "フォーラム管理", + 'text_forum_management' => "フォーラム管理", + 'text_edit_forum' => "フォーラムを編集", + 'row_forum_name' => "フォーラム名", + 'row_forum_description' => "フォーラムの説明", + 'row_overforum' => "Overforum", + 'row_moderator' => "モデレーター", + 'text_moderator_note' => "最大3人のモデレータ。','で区切ってください。", + 'row_minimum_read_permission' => "最小読み取り権限", + 'row_minimum_write_permission' => "最小書き込み権限", + 'row_minimum_create_topic_permission' => "トピック作成権限の最小値", + 'row_forum_order' => "フォーラムの注文", + 'text_forum_order_note' => "上位順。つまり、0が最上位に表示されます。", + 'submit_edit_forum' => "フォーラムを編集", + 'text_no_records_found' => "申し訳ありませんが、レコードが見つかりませんでした!", + 'text_add_forum' => "フォーラムを追加", + 'text_make_new_forum' => "新しいフォーラムを作成", + 'submit_overforum_management' => "オーバーフォーラム管理", + 'submit_add_forum' => "フォーラムを追加", + 'col_name' => "名前", + 'col_overforum' => "Overforum", + 'col_read' => "既読にする", + 'col_write' => "書き込み", + 'col_create_topic' => "トピックを作成", + 'col_moderator' => "モデレーター", + 'col_modify' => "変更", + 'text_not_available' => "該当なし", + 'text_edit' => "編集", + 'text_delete' => "削除", + 'js_sure_to_delete_forum' => "このフォーラムを削除してもよろしいですか?", + 'submit_make_forum' => "フォーラムを作成" ); + +?> diff --git a/lang/ja/lang_forums.php b/lang/ja/lang_forums.php index 43e16eda..99e9a1c5 100644 --- a/lang/ja/lang_forums.php +++ b/lang/ja/lang_forums.php @@ -1,202 +1,204 @@ '現在、フォーラムにはアクティブユーザーはいません。', - 'text_stats' => 'データ', - 'text_our_members_have' => 'ユーザーがリリースします', - 'text_posts_in_topics' => '投稿、', - 'text_in_topics' => 'トピック。', - 'text_there' => '合計フォーラムがあります', - 'text_online_user' => '個々', - 'text_in_forum_now' => 'オンラインユーザー。', - 'std_no_post_found' => '投稿はありません', - 'text_quick_jump' => 'ジャンプします', - 'submit_go' => 'もちろん', - 'std_bad_forum_id' => '無効なセクションID', - 'text_new_topic_in' => '新しいテーマ - ', - 'text_forum' => 'セクション', - 'std_forum_error' => 'フォーラムエラー', - 'std_topic_not_found' => 'トピックは見つかりませんでした。', - 'text_reply_to_topic' => 'トピックへの返信:', - 'text_compose' => '書く', - 'std_error' => '間違い', - 'std_no_post_id' => 'このIDの投稿は存在しません', - 'submit_submit' => '提出する', - 'submit_preview' => 'プレビュー', - 'text_tags' => 'ラベル', - 'text_smilies' => '表現', - 'text_ten_last_posts' => '10の最近の投稿、逆の順序で', - 'text_by' => '', - 'text_at' => '', - 'head_edit_forum' => '編集セクション', - 'text_edit_forum' => '編集セクション', - 'row_forum_name' => 'セクション名', - 'row_description' => '導入', - 'row_permission' => '権限', - 'text_minimum' => '', - 'select_minimum_class_view' => '上でのみ
        ', - 'select_minimum_class_post' => '上に返信
        ', - 'select_minimum_class_topic' => 'そうして初めて、新しいテーマをリリースできます
        ', - 'std_no_forum_id' => 'セクションIDは存在しません。', - 'std_must_specify_forum_name' => 'セクションの名前を指定する必要があります。', - 'std_must_provide_forum_description' => 'セクションの紹介に記入する必要があります。', - 'head_delete_forum' => 'セクションを削除します', - 'text_warning' => '**警告! **', - 'text_deleting_forum_id' => 'セクションIDを削除します', - 'text_will_also_delete' => '削除も削除されます', - 'text_posts_in' => '投稿と', - 'text_topics' => 'トピック。', - 'text_accept' => '同意する', - 'text_cancel' => 'キャンセル', - 'std_unauthorised_performing_action' => 'あなたは許可を持っていません!', - 'head_new_topic' => '新しいテーマ', - 'std_must_enter_subject' => 'トピックに記入する必要があります。', - 'std_subject_limited' => '長すぎる。単語の数を減らしてください。', - 'std_bad_topic_id' => 'テーマIDエラー', - 'std_sorry' => 'ごめん...', - 'std_unauthorized_to_post' => '投稿する許可はありません。確認してください(受信トレイ)', - 'std_permission_denied' => 'そのような許可はありません。', - 'std_no_body_text' => 'テキストを空にすることはできません。', - 'std_post_flooding' => '無差別に投稿することは禁止されています。お願いします', - 'std_seconds_before_making' => '数秒でもう一度やり直してください。', - 'std_no_topic_id_returned' => 'トピックIDは訪問されませんでした', - 'std_topic_locked' => 'テーマはロックされています。', - 'std_post_id_not_available' => '投稿IDは存在しません', - 'std_unpermitted_viewing_topic' => 'トピックを読む許可はありません。', - 'text_prev' => '前のページ', - 'text_next' => '次のページ', - 'head_view_topic' => 'トピックを表示します', - 'text_forums' => 'フォーラム', - 'text_ago' => '前に', - 'text_quote' => '引用', - 'text_last_edited_by' => 'ついに', - 'text_last_edit_at' => '編集', - 'text_posts' => '投稿:', - 'text_ul' => 'アップロード:', - 'text_dl' => 'ダウンロード:', - 'text_ratio' => '共有率:', - 'text_class' => '学年:', - 'text_back_to_top' => 'トップに戻ります', - 'title_sticky' => 'トップ', - 'submit_sticky' => 'トップ', - 'submit_unsticky' => '上部をキャンセルします', - 'submit_unlock' => 'トピックのロックを解除します', - 'submit_lock' => 'トピックをロックします', - 'submit_delete_topic' => 'トピックを削除します', - 'text_rename_topic' => 'トピックの名前を変更します。', - 'submit_okay' => 'もちろん', - 'text_move_thread_to' => 'トピックをに移動します', - 'submit_move' => '動く', - 'text_topic_locked_new_denied' => '

        このトピックはロックされています。新しい投稿は禁止されています。

        ', - 'text_unpermitted_posting_here' => '

        このセクションで返信する許可はありません。

        ', - 'head_post_reply' => '返事', - 'std_forum_not_found' => 'セクションはありません。', - 'std_cannot_get_posts_count' => '投稿の総数は取得できません。', - 'std_delete_topic' => 'トピックを削除します', - 'std_delete_topic_note' => '確認:トピックを削除しようとしています。クリックします', - 'std_here_if_sure' => 'ここで確認しましょう。', - 'std_no_topic_for_post' => 'この投稿には対応するトピックはありません', - 'std_denied' => '拒否する!', - 'std_body_empty' => 'テキストを空にすることはできません!', - 'std_subject_empty' => 'トピックを空にすることはできません!', - 'std_success' => '成功', - 'std_post_edited_successfully' => '投稿は正常に編集されました。', - 'text_edit_post' => '投稿を編集します', - 'std_how_could_this_happen' => 'どうしたの? !', - 'std_post_not_found' => 'この投稿は存在しません', - 'std_cannot_delete_post' => '投稿を削除できません。この投稿はこのトピックに関する最初の投稿です。', - 'std_delete_topic_instead' => 'このトピックを削除。', - 'std_delete_post' => '投稿を削除します', - 'std_delete_post_note' => '確認:投稿を削除しようとしています。クリックします', - 'std_must_enter_new_title' => '新しいトピックを入力する必要があります!', - 'std_not_permitted' => '禁止する', - 'std_sql_error' => 'SQLエラー', - 'head_forum' => 'セクション', - 'col_topic' => 'テーマ', - 'col_replies' => '返事', - 'col_views' => 'チェック', - 'col_author' => '著者', - 'col_last_post' => '最近の返信', - 'text_no_topics_found' => 'トピックはありません', - 'text_new_posts' => '新しい投稿', - 'text_locked_topic' => 'トピックをロックします', - 'text_unpermitted_starting_new_topics' => 'このセクションに新しいトピックを投稿する許可はありません。', - 'submit_view_unread' => '未読を表示します', - 'submit_new_topic' => '新しいトピックを投稿します', - 'text_topics_with_unread_posts' => '新しく返信した投稿', - 'col_forum' => 'セクション', - 'text_more_than' => '以上が見つかりました', - 'text_items_found_displaying_first' => 'アイテム、最新情報を示しています', - 'text_catch_up' => 'すべての設定が読み取られます', - 'text_nothing_found' => '結果はありません', - 'head_forum_search' => 'フォーラム検索', - 'col_post' => '投稿', - 'col_posted_by' => '著者を投稿します', - 'text_found' => '現れる', - 'text_num_posts' => '投稿', - 'text_search_on_forum' => 'フォーラムを検索します', - 'text_by_keyword' => 'キーワードによって', - 'head_forums' => 'フォーラム', - 'col_forums' => 'セクション', - 'col_topics' => 'テーマ', - 'col_posts' => '投稿', - 'std_bad_forum_last_post' => '最近の返信エラー', - 'text_in' => 'テーマ:', - 'text_edit' => '編集', - 'text_delete' => '消去', - 'std_unknown_action' => '未知の動作', - 'text_search' => '検索', - 'text_view_unread' => '未読を表示します', - 'text_forum_manager' => 'フォーラム管理', - 'title_reply_with_quote' => 'この投稿を引用してください', - 'title_reply_directly' => '直接返信してください', - 'title_delete_post' => '投稿を削除します', - 'title_edit_post' => '投稿を編集します', - 'text_quick_reply' => '迅速な返信', - 'submit_add_reply' => '提出する', - 'text_add_reply' => 'トピックに返信します', - 'title_online' => 'オンライン', - 'title_offline' => 'オンラインではありません', - 'title_send_message_to' => 'テキストメッセージを送信します', - 'title_report_this_post' => 'この投稿を報告してください', - 'title_new_topic' => '新しいテーマ', - 'col_moderator' => 'モデレータ', - 'text_apply_now' => '採用', - 'text_locked' => 'ロック', - 'text_number' => '', - 'text_lou' => '建物', - 'there_is' => 'このトピックは表示されています', - 'hits_on_this_topic' => '二流', - 'title_read' => '読む', - 'title_unread' => '読まないでください', - 'title_locked' => 'ロック', - 'title_locked_new' => 'ロックされ、読まれません', - 'text_highlight_topic' => 'トピックを強調表示します', - 'select_color' => 'なし', - 'submit_change' => 'もちろん', - 'head_view_unread' => '未読を表示します', - 'text_today' => '今日:', - 'text_new_post' => '今日', - 'text_posts_today' => '投稿。', - 'text_at_time' => '投稿しました', - 'text_blank' => '投稿されました', - 'text_last_posted_by' => '最新の投稿', - 'text_fast_search' => 'クイック検索:', - 'text_go' => '私を探してください', - 'submit_show_more' => 'もっと参照してください', - 'text_view_all_posts' => 'すべての投稿を表示します', - 'text_view_this_author_only' => '著者のみを参照してください', - 'title_jump_to_unread' => '未読の投稿にスキップします', - 'text_new' => '新しい', - 'title_order_topic_desc' => 'リリース時間ごとに下降注文', - 'title_order_topic_asc' => 'リリース時間による昇順', - 'title_order_post_asc' => '最近の返信の昇順', - 'title_order_post_desc' => '最近の返信での降順', - 'text_order' => '並べ替え', - 'text_topic_desc' => 'リリース時間の下降', - 'text_topic_asc' => '上昇時間をリリースします', - 'text_post_asc' => '最近の返信が上昇しています', - 'text_post_desc' => '最近の返信順序', - 'text_post_protected' => '[size = 3] [b] - このセクションはプライバシー保護セクションです - [/b] -現在の投稿コンテンツは、ポスター、返信著者、このバージョンのモデレーター、および上記の管理者にのみ表示されます[/size]', +$lang_forums = array +( + 'text_no_active_users' => "フォーラムにアクティブなユーザーがいません。", + 'text_stats' => "統計", + 'text_our_members_have' => "私たちのメンバーが作った ", + 'text_posts_in_topics' => " 投稿 ", + 'text_in_topics' => " トピック。 ", + 'text_there' => "そこに ", + 'text_online_user' => " オンラインユーザー", + 'text_in_forum_now' => " 今はフォーラムで ", + 'std_no_post_found' => "投稿が見つかりません", + 'text_quick_jump' => "クイックジャンプ: ", + 'submit_go' => "Go!", + 'std_bad_forum_id' => "フォーラムIDが不正です", + 'text_new_topic_in' => "新しいトピック:", + 'text_forum' => "フォーラム", + 'std_forum_error' => "フォーラムエラー", + 'std_topic_not_found' => "トピックが見つかりません。", + 'text_reply_to_topic' => "トピックに返信: ", + 'text_compose' => "作成", + 'std_error' => "エラー", + 'std_no_post_id' => "このIDの投稿はありません", + 'submit_submit' => "送信", + 'submit_preview' => "プレビュー", + 'text_tags' => "タグ", + 'text_smilies' => "スマイリー", + 'text_ten_last_posts' => "最後の10つの投稿は逆の順序で", + 'text_by' => "作成者: ", + 'text_at' => "に ", + 'head_edit_forum' => "フォーラムを編集", + 'text_edit_forum' => "フォーラムを編集", + 'row_forum_name' => "フォーラム名", + 'row_description' => "説明", + 'row_permission' => "アクセス許可", + 'text_minimum' => "最低 ", + 'select_minimum_class_view' => "
         最小を表示するために必要なクラス", + 'select_minimum_class_post' => "
         最低投稿に必要なクラス", + 'select_minimum_class_topic' => "トピックの作成に必要なクラス", + 'std_no_forum_id' => "フォーラムIDが見つかりません。", + 'std_must_specify_forum_name' => "フォーラム名を指定する必要があります。", + 'std_must_provide_forum_description' => "フォーラムの説明を入力する必要があります。", + 'head_delete_forum' => "フォーラムを削除", + 'text_warning' => "** 警告! **", + 'text_deleting_forum_id' => "フォーラムIDの削除 ", + 'text_will_also_delete' => " 削除されます ", + 'text_posts_in' => "投稿 ", + 'text_topics' => " トピック。 ", + 'text_accept' => "同意する", + 'text_cancel' => "キャンセル", + 'std_unauthorised_performing_action' => "このアクションを実行する権限がありません!", + 'head_new_topic' => "新規トピック", + 'std_must_enter_subject' => "件名を入力する必要があります。", + 'std_subject_limited' => "件名が制限されています。件名を短くしてください。", + 'std_bad_topic_id' => "不正なトピックID", + 'std_sorry' => "Sorry...", + 'std_unauthorized_to_post' => "ポストの権限がありません。読む(受信トレイ)", + 'std_permission_denied' => "アクセスが拒否されました。", + 'std_no_body_text' => "本文テキストはありません。", + 'std_post_flooding' => "投稿は許可されていません。しばらくお待ちください。 ", + 'std_seconds_before_making' => " 別のポストを作るまでの秒", + 'std_no_topic_id_returned' => "トピックIDが返されていません", + 'std_topic_locked' => "このトピックはロックされています。", + 'std_post_id_not_available' => "Post id n/a", + 'std_unpermitted_viewing_topic' => "このトピックを表示する権限がありません。", + 'text_prev' => "前", + 'text_next' => "次へ", + 'head_view_topic' => "トピックを表示", + 'text_forums' => " フォーラム", + 'text_ago' => " 前", + 'text_quote' => "引用", + 'text_last_edited_by' => "最終編集者: ", + 'text_last_edit_at' => " に ", + 'text_posts' => "投稿: ", + 'text_ul' => "UL: ", + 'text_dl' => "DL: ", + 'text_ratio' => "比率: ", + 'text_class' => "クラス:", + 'text_back_to_top' => "トップに戻る", + 'title_sticky' => "Sticky", + 'submit_sticky' => "Sticky", + 'submit_unsticky' => "粘着しない", + 'submit_unlock' => "Unlock Topic", + 'submit_lock' => "Lock Topic", + 'submit_delete_topic' => " トピックを削除", + 'text_rename_topic' => "トピックの名前を変更:", + 'submit_okay' => "OK", + 'text_move_thread_to' => "このスレッドを次に移動:", + 'submit_move' => "移動", + 'text_topic_locked_new_denied' => "

        このトピックはロックされています。新しい投稿は許可されていません。

        ", + 'text_unpermitted_posting_here' => "

        このフォーラムに投稿することはできません。

        ", + 'head_post_reply' => "返信を投稿", + 'std_forum_not_found' => "フォーラムが見つかりません。", + 'std_cannot_get_posts_count' => "投稿数を取得できませんでした。", + 'std_delete_topic' => "トピックを削除", + 'std_delete_topic_note' => "サニティチェック: トピックを削除しようとしています。クリックしてください。 ", + 'std_here_if_sure' => "here if you are sure.", + 'std_no_topic_for_post' => "この投稿IDに関連付けられているトピックはありません", + 'std_denied' => "拒否しました!", + 'std_body_empty' => "本文は空にできません!", + 'std_subject_empty' => "件名を空にすることはできません", + 'std_success' => "成功", + 'std_post_edited_successfully' => "投稿は正常に編集されました。", + 'text_edit_post' => "投稿を編集", + 'std_how_could_this_happen' => "どうしてこんなことが?", + 'std_post_not_found' => "投稿が見つかりません", + 'std_cannot_delete_post' => "投稿を削除できません。トピックの最初の投稿です。必要があります。 ", + 'std_delete_topic_instead' => "トピック を削除します。", + 'std_delete_post' => "投稿を削除", + 'std_delete_post_note' => "サニティチェック: 投稿を削除しようとしています。クリックします。 ", + 'std_must_enter_new_title' => "新しいタイトルを入力する必要があります!", + 'std_not_permitted' => "許可されていません", + 'std_sql_error' => "SQL エラー", + 'head_forum' => "フォーラム", + 'col_topic' => "トピック", + 'col_replies' => "返信", + 'col_views' => "ビュー", + 'col_author' => "作成者", + 'col_last_post' => "最後の 投稿", + 'text_no_topics_found' => "トピックが見つかりません", + 'text_new_posts' => "新しい投稿", + 'text_locked_topic' => "ロックされたトピック", + 'text_unpermitted_starting_new_topics' => "このフォーラムで新しいトピックを開始する権限がありません.", + 'submit_view_unread' => "View unread", + 'submit_new_topic' => "新しい トピック", + 'text_topics_with_unread_posts' => "未読の投稿のあるトピック", + 'col_forum' => "フォーラム", + 'text_more_than' => "以上 ", + 'text_items_found_displaying_first' => " アイテムが見つかりました。最初に表示します ", + 'text_catch_up' => "キャッチアップ", + 'text_nothing_found' => "何も見つかりませんでした", + 'head_forum_search' => "フォーラム検索", + 'col_post' => "投稿", + 'col_posted_by' => "Posted by", + 'text_found' => "見つかりました ", + 'text_num_posts' => " 投稿", + 'text_search_on_forum' => "フォーラムで検索", + 'text_by_keyword' => "キーワード順", + 'head_forums' => "フォーラム", + 'col_forums' => "フォーラム", + 'col_topics' => "トピック", + 'col_posts' => "投稿", + 'std_bad_forum_last_post' => "不正なフォーラムの最終投稿", + 'text_in' => "in ", + 'text_edit' => "編集", + 'text_delete' => "削除", + 'std_unknown_action' => "不明なアクション", + 'text_search' => "検索", + 'text_view_unread' => "未読を表示", + 'text_forum_manager' => "フォーラムマネージャー", + 'title_reply_with_quote' => "  見積書で返信", + 'title_reply_directly' => "Reply directly to this post", + 'title_delete_post' => " 投稿を削除", + 'title_edit_post' => "Edit Post", + 'text_quick_reply' => "クイック返信", + 'submit_add_reply' => "Add Reply", + 'text_add_reply' => "返信を追加", + 'title_online' => "オンライン", + 'title_offline' => "オフライン", + 'title_send_message_to' => "  メッセージを  に送る", + 'title_report_this_post' => "Report this post", + 'title_new_topic' => "新しい トピック", + 'col_moderator' => "モデレーター", + 'text_apply_now' => "該当なし", + 'text_locked' => "ロック中", + 'text_number' => "#", + 'text_lou' => "", + 'there_is' => "", + 'hits_on_this_topic' => " このスレッドを見る", + 'title_read' => "既読にする", + 'title_unread' => "未読です", + 'title_locked' => "ロック中", + 'title_locked_new' => "ロックされていると未読です", + 'text_highlight_topic' => "トピックの色の設定 ", + 'select_color' => "なし", + 'submit_change' => "Go!", + 'head_view_unread' => "未読を表示", + 'text_today' => "今日: ", + 'text_new_post' => " 投稿", + 'text_posts_today' => " 今日だ", + 'text_at_time' => " に ", + 'text_blank' => " ", + 'text_last_posted_by' => "最終投稿者: ", + 'text_fast_search' => "クイック検索: ", + 'text_go' => "Go!", + 'submit_show_more' => "詳細を表示", + 'text_view_all_posts' => "すべての投稿を表示", + 'text_view_this_author_only' => "この投稿者のみ表示", + 'title_jump_to_unread' => "未読の投稿へジャンプ", + 'text_new' => "新規", + 'title_order_topic_desc' => "トピックの時間の子孫順にソート", + 'title_order_topic_asc' => "トピック時間昇順で並び替え", + 'title_order_post_asc' => "前回の投稿日時昇順で注文", + 'title_order_post_desc' => "最後の投稿日時の子孫による注文", + 'text_order' => "並び替え", + 'text_topic_desc' => "トピックの時間の降順", + 'text_topic_asc' => "トピックの時間昇順", + 'text_post_asc' => "前回の投稿日時昇順", + 'text_post_desc' => "最後の投稿時間の降順", + 'text_post_protected' => "[size=3][b]--プライバシー保護はこのフォーラムで有効になっています。[/b]\nトピックのポスター、mods、admin、replyの著者のみがコンテンツを読むことができます。[/size]", ); + +?> diff --git a/lang/ja/lang_friends.php b/lang/ja/lang_friends.php index 5be528c9..966cd676 100644 --- a/lang/ja/lang_friends.php +++ b/lang/ja/lang_friends.php @@ -1,35 +1,38 @@ '間違い', - 'std_invalid_id' => '無効なID', - 'std_access_denied' => 'アクセスが拒否されました。', - 'std_no_user_id' => 'ユーザーIDはありません', - 'std_unknown_type' => '不明なタイプ', - 'std_user_id' => 'ユーザー', - 'std_already_in' => 'すでにあなたのものです', - 'std_list' => 'リスト内。', - 'std_delete' => '消去', - 'std_delete_note' => 'あなたは本当に削除したいです', - 'std_click' => 'それですか?クリック', - 'std_here_if_sure' => 'ここで確認してください 。', - 'std_no_friend_found' => '友達IDはありません', - 'std_no_block_found' => '悪者のIDはありません', - 'head_personal_lists_for' => 'ソーシャルリスト - ', - 'text_personallist' => 'ソーシャルリスト', - 'text_friendlist' => '友達', - 'text_friends_empty' => '友達はいない', - 'text_neighbors_empty' => '隣人なし', - 'text_last_seen_on' => '最後の訪問時間:', - 'text_ago' => '前に', - 'text_remove_from_friends' => '友達を削除します', - 'text_send_pm' => 'メッセージを送信します', - 'text_added_you_to_friendslist' => '友達としてあなたを追加してください', - 'text_add_to_friends' => '友達として追加します', - 'text_blocklist_empty' => 'ブラックリストは空です', - 'text_blocked_users' => 'ブラックリスト', - 'text_find_user' => 'ユーザー/参照ユーザーリストを検索します', - 'text_neighbors' => '近所の人', - 'text_friend' => '友達', - 'text_block' => '悪者', +$lang_friends = array +( + 'std_error' => "エラー", + 'std_invalid_id' => "Invalid ID ", + 'std_access_denied' => "アクセスが拒否されました。", + 'std_no_user_id' => "IDを持つユーザーはありません ", + 'std_unknown_type' => "不明なタイプ ", + 'std_user_id' => "ユーザー ID ", + 'std_already_in' => " は既にあなたの中にあります ", + 'std_list' => " リストから選択します。", + 'std_delete' => "削除 ", + 'std_delete_note' => "削除しますか? ", + 'std_click' => "? Click \n", + 'std_here_if_sure' => " を確認してください。", + 'std_no_friend_found' => "ID付きの友達が見つかりませんでした ", + 'std_no_block_found' => "ID のブロックが見つかりません ", + 'head_personal_lists_for' => "個人リスト ", + 'text_personallist' => "PERSONALIST", + 'text_friendlist' => "友人リスト", + 'text_friends_empty' => "No friends yet", + 'text_neighbors_empty' => "No Neighbors yet", + 'text_last_seen_on' => "最終閲覧日時 ", + 'text_ago' => " 前", + 'text_remove_from_friends' => "フレンドから削除", + 'text_send_pm' => "送信PM", + 'text_added_you_to_friendslist' => "フレンドリストにあなたを追加しました", + 'text_add_to_friends' => "友達に追加", + 'text_blocklist_empty' => "Your blocked userlist is empty", + 'text_blocked_users' => "ブロックされたユーザー", + 'text_find_user' => "ユーザーを検索する/ユーザーリストを参照する", + 'text_neighbors' => "", + 'text_friend' => "友達", + 'text_block' => "ブロック", ); + +?> diff --git a/lang/ja/lang_fun.php b/lang/ja/lang_fun.php index ce11ed48..139b2b16 100644 --- a/lang/ja/lang_fun.php +++ b/lang/ja/lang_fun.php @@ -1,41 +1,44 @@ '興味深いコンテンツを削除しますか?', - 'text_please_click' => '本当にこの興味深いコンテンツを削除したいですか?クリック', - 'text_here_if_sure' => 'ここで確認しましょう。', - 'std_error' => '間違い', - 'std_invalid_id' => '無効なID', - 'std_permission_denied' => 'アクセスが拒否されました!', - 'text_fun_title' => 'タイトル', - 'text_body' => '文章', - 'submit_okay' => 'もちろん', - 'head_new_fun' => '新しい興味深いコンテンツ', - 'text_submit_new_fun' => '新しい興味深いコンテンツを送信します', - 'text_new_compose' => '新しく書かれています', - 'head_fun' => '興味深いコンテンツ', - 'text_on' => 'で', - 'text_blank' => '投稿しました', - 'text_ago' => '前に', - 'text_posted_by' => 'による', - 'text_not_funny' => 'つまらない', - 'text_funny' => '面白い', - 'text_very_funny' => '陽気な', - 'head_edit_fun' => '興味深いコンテンツを編集します', - 'text_edit_fun' => '興味深いコンテンツを編集します', - 'std_body_is_empty' => 'テキストを空にすることはできません!', - 'std_title_is_empty' => 'タイトルを空にすることはできません!', - 'std_fun_added_successfully' => '興味深いエントリが正常に追加されました。', - 'std_error_happened' => '何かがうまくいかなかった。', - 'std_the_newest_fun_item' => '最新の楽しいエントリ', - 'std_posted_on' => '投稿しました', - 'std_need_to_wait' => '。新しい興味深いコンテンツを追加する前に、24時間以上公開されるのを待ってください。', - 'std_are_you_sure' => '本気ですか?', - 'std_only_against_rule' => '興味深いエントリの変更を禁止したいですか?これは、興味深いコンテンツがルールに違反している場合にのみ必要であることに注意してください。さらに、ユーザーに同時に警告を与えることもできます。', - 'std_reason_required' => '理由(記入する必要があります):', - 'std_reason_is_empty' => '理由を記入する必要があります!', - 'std_success' => '成功', - 'std_fun_item_banned' => 'この興味深いコンテンツはうまく禁止されました。', - 'std_already_vote' => 'あなたは投票しました!', - 'std_cannot_give_bonus' => 'このシステムは、出版社に興味深いコンテンツに報いることはできません。この問題を管理者に報告してください。', +$lang_fun = array +( + 'std_delete_fun' => "楽しいアイテムを削除しますか?", + 'text_please_click' => "Do you really want to delete a fun item? Click\n", + 'text_here_if_sure' => "here if you are sure.", + 'std_error' => "エラー", + 'std_invalid_id' => "無効な楽しいアイテムID", + 'std_permission_denied' => "権限がありません!", + 'text_fun_title' => " タイトル", + 'text_body' => "本文", + 'submit_okay' => "OK", + 'head_new_fun' => "新しい面白いもの", + 'text_submit_new_fun' => "新しい面白いものを送信", + 'text_new_compose' => "新規作成", + 'head_fun' => "楽しい", + 'text_on' => " オン ", + 'text_blank' => " ", + 'text_ago' => " 前", + 'text_posted_by' => " 投稿者: ", + 'text_not_funny' => "ボーリング", + 'text_funny' => "面白いです", + 'text_very_funny' => "横配置", + 'head_edit_fun' => "楽しみを編集", + 'text_edit_fun' => "楽しみを編集", + 'std_body_is_empty' => "ボディは空にできません!", + 'std_title_is_empty' => "タイトルは空にできません!", + 'std_fun_added_successfully' => "楽しいアイテムが正常に追加されました。", + 'std_error_happened' => "奇妙なことが起こりました。", + 'std_the_newest_fun_item' => "最新の楽しみアイテム ", + 'std_posted_on' => " was posted on ", + 'std_need_to_wait' => "24時間経過するまでお待ちください。", + 'std_are_you_sure' => "よろしいですか?", + 'std_only_against_rule' => "この楽しいアイテムを禁止してもよろしいですか?楽しいアイテムがルールに反している場合にのみこれを行う必要があることに注意してください。 BTW、あなたはまた、ユーザーに少し警告を与えることを好むかもしれません。", + 'std_reason_required' => "理由 (必須): ", + 'std_reason_is_empty' => "理由を教えなければなりません!", + 'std_success' => "成功", + 'std_fun_item_banned' => "楽しいアイテムは正常に禁止されました。", + 'std_already_vote' => "あなたはすでに投票しています!", + 'std_cannot_give_bonus' => "システムは楽しいアイテムのポスターにボーナスを与えることができません。管理者に報告してください。", ); + +?> diff --git a/lang/ja/lang_functions.php b/lang/ja/lang_functions.php index e306136a..eb61c945 100644 --- a/lang/ja/lang_functions.php +++ b/lang/ja/lang_functions.php @@ -1,333 +1,344 @@ 'アクセスが拒否されました!', - 'std_fake_account' => 'あなたが偽のアカウントを使用しているのではないかと疑っているので、この動作を記録しました!', - 'std_permission_denied' => 'あなたは許可を持っていません!', - 'std_permission_denied_only' => '許可はありません。のみ', - 'std_or_above_can_view' => '高いレベルのユーザーのみが表示できます。

        ユーザーレベルと許可の詳細については、 faq < /b> を確認してください。

        < /p>%s管理グループ< /b>', - 'std_target_not_exists' => '目標は存在しません', - 'std_already_logged_in' => 'あなたはすでにログインしています!', - 'text_page_last_updated' => 'このページは最後に更新されました', - 'text_browser_cookies_note' => 'Cookieを有効にしてからログインできない場合は、ログインCookieに問題がある場合があります。 Cookieを削除した後、再試行することをお勧めします。 Internet ExplorerのCookieを削除する方法は、ツールインターネットオプション... に移動し、削除Cookie をクリックします。これにより、コンピューターの他のサイトに保存されたCookieも削除されることに注意してください。', - 'std_error' => '間違い', - 'text_unable_to_send_mail' => '電子メールは送信できません。エラーを管理者に報告してください。', - 'std_success' => '成功', - 'std_confirmation_email_sent' => '確認メールが送信されました', - 'std_please_wait' => 'メールが届くのを待ってください。', - 'std_account_details_sent' => '新しいアカウント情報が送信されました', - 'std_locked' => 'ロック! (認証のためのエラー試行の最大数', - 'std_attempts_reached' => '時が来ました)', - 'std_your_ip_banned' => 'あなたがシステムをスプーフィングしていると思うので、IPアドレスが無効になっています!', - 'std_login_failed' => 'ログインに失敗しました!', - 'std_login_failed_note' => 'エラー:ユーザー名またはパスワードが正しくありません!それとも、検証に合格していませんか? パスワードを取得しますか?', - 'std_failed' => '失敗', - 'std_sorry' => 'ごめん', - 'std_oops' => 'ああ、O!', - 'std_invite_system_disabled' => '招待システムは現在開いていません...', - 'std_open_registration_disabled' => '現在、無料登録は閉鎖されており、招待のみが許可されています。参加したい場合は、このサイトに招待できる友人を見つけてください:)私たちは、蹴られた後にアカウントを大事にすることについて考え始めている詐欺師や吸血鬼の数を知りたいだけです。はい、蹴られた後に戻ってきたいだけで戻ってくることはできません。詐欺師や不正行為者に招待状を非公式に送ると、あなたと招待者が蹴られることに注意してください。アカウントを再度有効にしたい場合は、当社の同意が必要です。', - 'std_account_limit_reached' => '現在のアカウントキャップに達しました。システムは、多くの場合、非アクティブアカウントを削除します。しばらくしてからもう一度やり直してください...', - 'std_the_ip' => 'このIP', - 'std_used_many_times' => '多くのアカウントで使用されています... %s は、このIPがより多くのアカウントに登録することを許可していません。', - 'std_invalid_image_code' => '画像コードは無効です!
        戻ってこないでください、画像コードがクリアされました! < /b>

        クリックします', - 'std_here_to_request_new' => 'ここ 新しい画像コードを取得します。', - 'std_action' => '動作します', - 'std_report' => '報告', - 'std_desc' => '説明する', - 'std_comment' => 'コメント', - 'std_quick_comment' => '簡単なコメント', - 'std_click_here_to_goback' => 'ここをクリックして戻ります', - 'std_you_will_get' => 'あなたは得るでしょう', - 'std_by' => 'による', - 'row_security_image' => '検証像:', - 'row_security_code' => '検証コード:', - 'text_slots' => '接続の数:', - 'text_unlimited' => '無制限', - 'std_server_load_very_high' => 'サーバーのロードが高すぎます、もう一度やり直してください、待ってください...', - 'std_too_many_users' => 'ユーザーが多すぎます。ページを更新して、もう一度やり直してください。', - 'text_unauthorized_ip' => '

        403禁止

        不正なIPアドレス。', - 'text_home' => ' フロントページ ', - 'text_forums' => 'フォーラムで', - 'text_torrents' => '種子', - 'text_offers' => '選択を待っています', - 'text_request' => 'シードしてください', - 'text_upload' => ' 急送', - 'text_subtitles' => ' 字幕 ', - 'text_user_cp' => ' コントロールパネル ', - 'text_top_ten' => 'ランキングリスト', - 'text_log' => ' ログ ', - 'text_rules' => ' ルール ', - 'text_faq' => 'よくある質問', - 'text_staff' => '管理グループ', - 'std_site_down_for_maintenance' => 'サイトは閉鎖されて維持されています。後でもう一度訪問してください...ありがとう', - 'text_click_view_full_image' => '完全な画像を表示するには、ここをクリックしてください', - 'text_image_resized' => '画像が縮小されます。ここをクリックして完全な画像を表示します', - 'text_click_view_small_image' => '縮小画像を表示するには、ここをクリックしてください', - 'text_login' => 'ログイン', - 'text_signup' => '登録する', - 'text_inf' => '無制限', - 'title_donor' => 'ドナー', - 'title_warned' => '警告した', - 'title_inbox_new_messages' => '受信トレイ(新しいテキストメッセージ)', - 'title_inbox_no_new_messages' => '受信トレイ(新しいテキストメッセージはありません)', - 'text_yes' => 'はい', - 'text_no' => 'いいえ', - 'text_unknown' => '未知', - 'text_welcome_back' => 'おかえり', - 'text_staff_panel' => '管理グループパネル', - 'text_site_settings' => 'サイト設定', - 'text_logout' => 'やめる', - 'text_bonus' => '魔法の価値', - 'text_use' => '使用', - 'text_ratio' => '共有率:', - 'text_uploaded' => 'アップロードボリューム:', - 'text_downloaded' => 'ダウンロード:', - 'text_active_torrents' => '現在のアクティビティ:', - 'title_torrents_seeding' => '現在作られた種子', - 'title_torrents_leeching' => '現在のダウンロード', - 'text_connectable' => '接続可能:', - 'text_the_time_is_now' => '時間:', - 'text_message_new' => '新しい', - 'title_sentbox' => 'アウトボックス', - 'title_inbox' => '受信トレイ', - 'title_buddylist' => 'ソーシャルリスト', - 'text_you_have' => ' あなたが持っている', - 'text_new_message' => '新しいメッセージ', - 'text_s' => '', - 'text_click_here_to_read' => '!クリックして表示します ', - 'text_your_friends' => 'あなたの友達', - 'text_awaiting_confirmation' => '確認を待ってください!', - 'text_website_offline_warning' => '警告:サイトは現在オンラインではありません! こちらをクリックして、設定を変更します。', - 'text_there_is' => ' 持っている', - 'text_new_report' => '新しいレポート情報 ', - 'text_new_staff_message' => '新しい管理グループ情報 ', - 'text_search' => '検索', - 'text_profile' => '個人的なプロフィール', - 'text_chat' => 'チャット', - 'text_dox' => '書類', - 'text_links' => 'リンク', - 'text_username' => 'ユーザー名:', - 'text_password' => 'パスワード:', - 'submit_log_in' => 'ログイン', - 'text_register' => '登録する', - 'text_rules_link' => 'ルール', - 'text_faq_link' => 'よくある質問', - 'text_useragreement' => 'ユーザー契約', - 'text_prev' => '前のページ', - 'text_next' => '次のページ', - 'text_by' => '', - 'text_orphaned' => '(そのようなアカウントはありません)', - 'text_at' => '', - 'text_quote' => '引用', - 'text_edit' => '編集', - 'text_delete' => '消去', - 'text_view_original' => 'オリジナルを表示します', - 'text_last_edited_by' => 'ついに', - 'text_edited_at' => '編集', - 'col_type' => 'タイプ', - 'col_name' => 'タイトル', - 'col_dl' => 'ダウンロード', - 'col_wait' => '待って', - 'col_edit' => '編集', - 'col_visible' => '見える', - 'title_number_of_comments' => 'コメントの数', - 'title_time_added' => '時間を追加します', - 'title_size' => 'サイズ', - 'title_number_of_seeders' => '種子の数', - 'title_number_of_leechers' => 'ダウンロード数', - 'title_number_of_snatched' => '完成した番号', - 'col_uploader' => '発行', - 'col_action' => '行動', - 'text_normal' => '普通', - 'text_free' => '無料', - 'text_two_times_up' => '2x', - 'text_free_two_times_up' => '2x無料', - 'text_half_down' => '50%', - 'text_half_down_two_up' => '2x50%', - 'text_new_uppercase' => '新しい', - 'text_sticky' => 'トップ', - 'title_download_torrent' => 'このタイプをダウンロードしてください', - 'text_h' => '時間', - 'text_none' => 'なし', - 'text_anonymous' => '匿名', - 'text_promoted_torrents_note' => '強調表示された種子は次のとおりです。 2x upload | free&2x upload | 50%ダウンロード | 50%download&2x upload | 30%ダウンロード
        ダウンロードは共有率を上げる良い方法です!', - 'std_file' => '書類', - 'std_does_not_exist' => '存在しません', - 'std_access_permission_note' => '!
        設定前に、ファイルとディレクトリへのアクセス許可が適切に設定されていることを確認してください。以下を参照してください。 < /font>

        chmod -r 777 config(set directory)。', - 'std_cannot_read_file' => 'ファイルを読み取れません', - 'std_cannot_serialize_file' => 'ファイルをシリアル化できません', - 'std_cannot_open_file' => 'ファイルを開くことができません', - 'std_to_save_info' => '情報を保存するため', - 'text_cannot_save_info_in' => '情報をファイルに保存できません(シリアル化エラー)', - 'std_your_account_parked' => '你的帐户处于封存中。', - 'title_online' => 'オンライン', - 'title_offline' => 'オンラインではありません', - 'title_send_message_to' => 'テキストメッセージを送信します', - 'title_report_this_comment' => '举报该评论', - 'text_bookmarks' => '集める', - 'title_bookmark_torrent' => '集める', - 'title_delbookmark_torrent' => 'お気に入りを削除します', - 'text_mark' => 'マーク', - 'text_unmark' => 'マークを削除します', - 'text_award' => '魔法の価値報酬:', - 'text_additional_notes' => '追加のメモ:', - 'title_view_reviews' => 'クリックしてレビューを表示します', - 'title_has_new_comment' => '新しいコメントがあります', - 'title_no_new_comment' => '新しいコメントはありません', - 'row_external_info' => '外部情報', - 'row_imdb_url' => 'IMDBリンク', - 'text_imdb_url_note' => '( imdb からのリンク。たとえば、映画へのリンク https://www.imdb.com/title/tt0468569/ )', - 'text_artist' => 'アーティスト:', - 'text_album' => 'アルバムタイトル:', - 'title_get_rss' => 'RSSを取得します', - 'text_hot' => '人気のある', - 'text_classic' => 'クラシック', - 'text_recommended' => '推薦する', - 'title_view_nfo' => 'NFOファイルを表示します', - 'title_edit_torrent' => 'シードを編集/削除します', - 'title_time_alive' => '生存の時間', - 'title_add_comments' => 'コメントを追加します', - 'text_at_time' => '投稿しました', - 'text_blank' => '投稿されました', - 'text_ago' => 'フォワード', - 'text_last_commented_by' => 'による最新のコメント', - 'text_imdb' => 'IMDB', - 'text_votes' => 'チケット', - 'text_country' => '国家', - 'text_genres' => 'カテゴリ', - 'text_director' => '監督', - 'text_starring' => '主演', - 'text_runtime' => 'フィルムの長さ', - 'text_language' => '対話言語', - 'text_douban' => 'ドゥバン', - 'text_region' => 'エリア', - 'text_creator' => 'メインクリエイター', - 'text_awaiting_five_votes' => ' 5票を待っています', - 'text_invite' => '招待する', - 'text_send' => '送信', - 'text_tracks' => 'トラック', - 'text_label' => '記録', - 'text_tags' => 'ラベル', - 'text_user_ip' => 'ユーザーIP', - 'text_location_main' => 'ロケーションメインカテゴリ', - 'text_location_sub' => 'ロケーション分類', - 'text_ip_range' => 'IP範囲', - 'text_min' => '分', - 'text_music' => ' 音楽 ', - 'text_special' => ' 特別 ', - 'title_reply_with_quote' => '引用', - 'title_add_reply' => '返事', - 'title_delete' => '消去', - 'title_edit' => '編集', - 'title_reportbox' => 'メールボックスをレポートします', - 'title_staffbox' => '管理组信箱', - 'title_sticky' => 'トップ', - 'text_new_news' => '条未读的重要消息       ', - 'std_no_user_named' => 'ユーザーの名前はありません', - 'text_banned' => '禁止する', - 'text_are' => '', - 'text_is' => '', - 'select_choose_one' => '選択してください', - 'text_space' => '', - 'text_day' => '空', - 'text_new_suspected_cheater' => '新しい不正容疑者 ', - 'title_cheaterbox' => '詐欺師', - 'text_will_end_in' => '残り時間:', - 'text_alt_pageup_shortcut' => 'alt+ページアップ', - 'text_alt_pagedown_shortcut' => 'alt+ページダウン', - 'text_shift_pageup_shortcut' => 'シフト+ページアップ', - 'text_shift_pagedown_shortcut' => 'シフト+ページダウン', - 'text_code' => 'コード', - 'std_invalid_id' => '無効なID!セキュリティ上の考慮事項に基づいて、この動作を記録しました。', - 'text_smilies' => '表現', - 'col_type_something' => '入力...', - 'col_to_make_a' => '得る...', - 'text_year' => '年', - 'text_month' => '月', - 'text_hour' => '時間', - 'select_color' => '色', - 'select_font' => 'フォント', - 'select_size' => 'フォント番号', - 'text_subject' => 'テーマ:', - 'text_more_smilies' => 'より多くの表現', - 'js_prompt_enter_url' => 'URLを入力する必要があります', - 'js_prompt_enter_title' => 'タイトルを入力する必要があります', - 'js_prompt_error' => '間違い!', - 'js_prompt_enter_item' => 'リストにアイテムを入力します。リストの最後に、キャンセルするか、次の空のままにしてください', - 'js_prompt_enter_image_url' => '完全な画像URLを入力する必要があります', - 'js_prompt_enter_email' => 'メールアドレスを入力する必要があります', - 'text_new' => '新しく書かれています', - 'text_reply' => '返事', - 'submit_submit' => '提出する', - 'submit_preview' => 'プレビュー', - 'row_subject' => 'テーマ', - 'row_body' => '文章', - 'text_peasant' => '農民', - 'text_user' => 'ユーザー', - 'text_power_user' => 'パワーユーザー', - 'text_elite_user' => 'エリートユーザー', - 'text_crazy_user' => 'クレイジーユーザー', - 'text_insane_user' => '非常識なユーザー', - 'text_veteran_user' => 'ベテランユーザー', - 'text_extreme_user' => '極端なユーザー', - 'text_ultimate_user' => '究極のユーザー', - 'text_nexus_master' => 'ネクサスマスター', - 'text_vip' => 'VIP', - 'text_uploader' => '出版社', - 'text_retiree' => '高齢者の世話人', - 'text_forum_moderator' => 'フォーラムモデレーター', - 'text_moderators' => '一般的なモデレーター', - 'text_administrators' => '管理者', - 'text_sysops' => 'メンテナンス開発者', - 'text_staff_leader' => '監督', - 'text_short_year' => '年', - 'text_short_month' => '月', - 'text_short_day' => '日', - 'text_short_hour' => '時間', - 'text_short_min' => 'ポイント', - 'submit_edit' => '編集', - 'text_banned_client_warning' => '最後に使用したBTクライアントは禁止されました!ここをクリック。', - 'text_please_improve_ratio_within' => 'お願いします', - 'text_or_you_will_be_banned' => '内部の共有率を改善します。そうしないと、アカウントが無効になります!ここをクリック。', - 'text_size' => 'サイズ', - 'text_downloads' => 'ダウンロード', - 'text_attachment_key' => '付録', - 'text_not_found' => '無効', - 'text_thirty_percent_down' => '30%', - 'text_please_download_something_within' => 'お願いします', - 'text_inactive_account_be_deleted' => '中にいくつかのダウンロードを作成します。トラフィックのないユーザーが削除されます。', - 'text_attendance' => '[魔法にサインイン]', - 'text_attended' => '[サインインして%uを取得し、カードを再署名します:%d]', - 'imdb_cache_dir_can_not_create' => 'IMDBキャッシュディレクトリを作成できません', - 'imdb_cache_dir_is_not_writeable' => 'IMDBキャッシュディレクトリは書き込みはありません', - 'imdb_photo_dir_can_not_create' => 'IMDB画像ディレクトリを作成できません', - 'imdb_photo_dir_is_not_writeable' => 'IMDB画像ディレクトリは書き込みできません', - 'text_tag_no_release_to_any_other' => '転送なし', - 'text_tag_first_release' => '最初のリリース', - 'text_tag_official' => '正式', - 'text_tag_diy' => 'DIY', - 'text_tag_mother_language' => 'マンダリン', - 'text_tag_mother_language_subtitle' => '漢字', - 'text_tag_hdr' => 'HDR', - 'text_required' => '空にすることはできません', - 'text_invalid' => '違法', - 'text_technical_info' => 'メディア情報', - 'text_technical_info_help_text' => 'Mediainfoはソフトウェアから来ています mediainfo 、ソフトウェアを使用してファイルを開き、言語で英語を選択し、メニュービュー(ビュー) - >ファイルをクリックしてください - >', - 'text_management_system' => '管理システム', - 'text_seed_points' => 'スコアを作ります', - 'spoiler_expand_collapse' => 'クリックして展開/縮小します', - 'spoiler_default_title' => 'コンテンツを折ります', - 'menu_claim' => '請求:', - 'text_complains' => '苦情保留中の%s%uがあります', - 'text_contactstaff' => '管理グループに連絡してください', - 'full_site_promotion_in_effect' => 'サイト全体[%s]が有効です!', - 'full_site_promotion_time_range' => '時間:%s〜%s', - 'text_torrent_to_approval' => 'レビューする%s%u種子がありますs', - 'std_confirm_remove' => '削除したいですか?', - 'select_an_user_class' => 'ユーザーレベルを選択します', - 'input_check_all' => 'すべてを選択します', - 'input_uncheck_all' => '何も選択しないでください', - 'select_at_least_one_record' => '少なくとも1つのレコードを選択してください!', - 'text_seed_box_record_to_approval' => 'レビューする%s%uシードボックスレコードがあります', - 'approval_deny_reach_upper_limit' => '現在のレビューで拒否された種子の数:%sは上限に達し、公開は許可されていません。', +$lang_functions = array +( + 'std_access_denied' => "Access Denied!", + 'std_fake_account' => "We come to believe you are using a fake account, therefore we've logged this action!", + 'std_permission_denied' => "Permission denied!", + 'std_permission_denied_only' => "Permission denied. Only ", + 'std_or_above_can_view' => " or above could view.

        Please see the "."
        FAQ for more information on different user classes and what they can do.

        The %s Staff
        ", + 'std_target_not_exists' => 'Target not exists', + 'std_already_logged_in' => "You have already logged in!", + 'text_page_last_updated' => "This page last updated ", + 'text_browser_cookies_note' => "If you enable cookies and are still unable to log in, perhaps something happened to cause a problem with your login cookie. We suggest delete your cookies and trying again. To delete cookies in Internet Explorer, go to Tools > Internet Options... and click on the Delete Cookies button. Note that this will delete all cookies stored on your system for other sites as well.", + 'std_error' => "Error", + 'text_unable_to_send_mail' => "Unable to send mail. Please contact an administrator about this error.", + 'std_success' => "Success", + 'std_confirmation_email_sent' => "A confirmation email has been mailed to ", + 'std_please_wait' => "Please allow a few minutes for the mail to arrive.", + 'std_account_details_sent' => "The new account details have been mailed to ", + 'std_locked' => " Locked! (the maximum number of failed ", + 'std_attempts_reached' => " attempts is reached during reauthentication)", + 'std_your_ip_banned' => "We come to believe you are trying to cheat our system, therefore we've banned your ip!", + 'std_login_failed' => "Login failed!", + 'std_login_failed_note' => "Error: Username or password incorrect! Or you are not confirmed yet

        Don't remember your password? Recover your password!", + 'std_failed' => "Failed", + 'std_oops' => "Oops!", + 'std_sorry' => "Sorry", + 'std_invite_system_disabled' => "The invite system is currently disabled...", + 'std_open_registration_disabled' => "Open registration is currently disabled. Invites only. If you are lucky you might have a friend who wants to invite you :) We just wanna see how much cheaters will start respecting their accounts after they realize they can't just come back in and get another one :). Keep this in mind, if you are already a member and you invite a known cheater, and you knew about it in the first place, both yours and the person you invited are disabled. You will have to come talk to us to get your account reenstated. If you want an invite and you know someone who have one it's up to them to give you an invite.", + 'std_account_limit_reached' => "The current user account limit has been reached. Inactive accounts are pruned all the time, please check back again later...", + 'std_the_ip' => "The IP ", + 'std_used_many_times' => " is already being used on too many account.... No more accounts allowed at %s.", + 'std_invalid_image_code' => "Invalid Image Code!
        Do not go back, The image code has been cleared!

        Please click ", + 'std_here_to_request_new' => "here to request a new image code.", + 'std_action' => 'Action', + 'std_report' => 'レポート', + 'std_desc' => 'Description', + 'std_comment' => 'Comment', + 'std_quick_comment' => 'Quick comment', + 'std_click_here_to_goback' => 'Click here to goback', + 'std_you_will_get' => 'You will get', + 'std_by' => 'By', + 'row_security_image' => "Security Image:", + 'row_security_code' => "Security Code:", + 'text_slots' => "Slots:", + 'text_unlimited' => "Unlimited", + 'std_server_load_very_high' => "The server load is very high at the moment. Retrying, please wait...", + 'std_too_many_users' => "Too many users. Please press the Refresh button in your browser to retry.", + 'text_unauthorized_ip' => "

        403 Forbidden

        Unauthorized IP address.", + 'text_home' => "Home", + 'text_forums' => "フォーラム", + 'text_torrents' => "Torrents", + 'text_offers' => "Offers", + 'text_request' => "Requests", + 'text_upload' => "アップロード", + 'text_subtitles' => "字幕", + 'text_user_cp' => "User CP", + 'text_top_ten' => "Top 10", + 'text_log' => "LOG", + 'text_rules' => "ルール", + 'text_faq' => "FAQ", + 'text_staff' => "Staff", + 'std_site_down_for_maintenance' => "Site is down for maintenance, please check back again later... thanks", + 'text_click_view_full_image' => "Click this bar to view the full image.", + 'text_image_resized' => "This image has been resized. Click this bar to view the full image.", + 'text_click_view_small_image' => "Click this bar to view the small image.", + 'text_login' => "Login", + 'text_signup' => "Signup", + 'text_inf' => "Inf.", + 'title_donor' => "donor", + 'title_warned' => "warned", + 'title_inbox_new_messages' => "inbox (new messages)", + 'title_inbox_no_new_messages' => "inbox (no new messages)", + 'text_yes' => "はい", + 'text_no' => "いいえ", + 'text_unknown' => "Unknown", + 'text_welcome_back' => "Welcome", + 'text_staff_panel' => "Staff Panel", + 'text_site_settings' => "Site Settings", + 'text_logout' => "logout", + 'text_bonus' => "Bonus ", + 'text_use' => "Use", + 'text_ratio' => "Ratio:", + 'text_uploaded' => "Uploaded:", + 'text_downloaded' => "Downloaded:", + 'text_active_torrents' => "Active:", + 'title_torrents_seeding' => "Torrents Seeding", + 'title_torrents_leeching' => "Torrents Leeching", + 'text_connectable' => "Connectable: ", + 'text_the_time_is_now' => "Time: ", + 'text_message_new' => " New", + 'title_sentbox' => "sentbox", + 'title_inbox' => "inbox", + 'title_buddylist' => "Buddylist", + 'text_you_have' => "持っている ", + 'text_new_message' => " new message", + 'text_s' => "s", + 'text_click_here_to_read' => "! Click here to read.", + 'text_your_friends' => "Your friend", + 'text_awaiting_confirmation' => " awaiting confirmation from you!", + 'text_website_offline_warning' => "WARNING: The website is currently offline! Click here to change settings.", + 'text_there_is' => "There", + 'text_new_report' => " new report", + 'text_new_staff_message' => " new staff message", + 'text_search' => "検索", + 'text_profile' => "Profile", + 'text_chat' => "Chat", + 'text_dox' => "DOX", + 'text_links' => "Links", + 'text_username' => "Username: ", + 'text_password' => "Password: ", + 'submit_log_in' => "Log in!", + 'text_register' => "Register", + 'text_rules_link' => "ルール", + 'text_faq_link' => "FAQ", + 'text_useragreement' => "Useragreement", + 'text_prev' => "前", + 'text_next' => "次へ", + 'text_by' => " by ", + 'text_orphaned' => "(orphaned)", + 'text_at' => " に ", + 'text_edit' => "編集", + 'text_delete' => "削除", + 'text_view_original' => "View original", + 'text_last_edited_by' => "最終編集者: ", + 'text_edited_at' => " に ", + 'col_type' => "タイプ", + 'col_name' => "Name", + 'col_dl' => "DL", + 'col_wait' => "Wait", + 'col_edit' => "編集", + 'col_visible' => "表示", + 'title_number_of_comments' => "Number of Comments", + 'title_time_added' => "Time Added", + 'title_size' => "サイズ", + 'title_number_of_seeders' => "Number of Seeders", + 'title_number_of_leechers' => "Number of Leechers", + 'title_number_of_snatched' => "Number of Snatched", + 'col_uploader' => "Uploader", + 'col_action' => "Act", + 'text_normal' => "Normal", + 'text_free' => "無料", + 'text_two_times_up' => "2X", + 'text_free_two_times_up' => "2倍無料", + 'text_half_down' => "50%", + 'text_half_down_two_up' => "2X 50%", + 'text_new_uppercase' => "NEW", + 'text_sticky' => "Sticky", + 'title_download_torrent' => "Download Torrent", + 'text_h' => " h", + 'text_none' => "なし", + 'text_anonymous' => "Anonymous", + 'text_promoted_torrents_note' => "Those highlighted are:   Free | 2x up | 2x up and free | 50% down | 2x up and 50% down | 30% down torrents
        Leeching them is the best way to fix your ratio!", + 'std_file' => "File ", + 'std_does_not_exist' => " doesn't exist", + 'std_access_permission_note' => "!
        Before the setup starts, please ensure that you have properly configured file and directory access permissions. Please see below.

        chmod -R 777 config (config directory).", + 'std_cannot_read_file' => "Cannot read file ", + 'std_cannot_serialize_file' => "Cannot serialize file ", + 'std_cannot_open_file' => "Cannot open file ", + 'std_to_save_info' => " to save info", + 'text_cannot_save_info_in' => "Cannot save info in file (error in serialisation) ", + 'std_your_account_parked' => "Your account is parked.", + 'title_online' => "オンライン", + 'title_offline' => "オフライン", + 'title_send_message_to' => "Send message to ", + 'title_report_this_comment' => "Report this comment", + 'text_bookmarks' => "Bookmarks", + 'title_bookmark_torrent' => "ブックマーク", + 'title_delbookmark_torrent' => "Unbookmark", + 'text_mark' => "Mark", + 'text_unmark' => "Unmark", + 'text_award' => "Bonus Award: ", + 'text_additional_notes' => "Additional Notes: ", + 'title_view_reviews' => "Click to view reviews", + 'title_has_new_comment' => "Has new comment", + 'title_no_new_comment' => "No new comment", + 'row_external_info' => "External Info", + 'row_imdb_url' => "IMDb URL", + 'text_imdb_url_note' => "(URL taken from IMDb. e.g. for movie The Dark Knight the URL is https://www.imdb.com/title/tt0468569/)", + 'text_artist' => " Artist: ", + 'text_album' => "Album: ", + 'title_get_rss' => "Get RSS", + 'text_hot' => "Hot", + 'text_classic' => "Classic", + 'text_recommended' => "Good", + 'title_view_nfo' => "View NFO file", + 'title_edit_torrent' => "Edit or delete torrent", + 'title_time_alive' => "Time Alive", + 'title_add_comments' => "Add comment", + 'text_at_time' => " に ", + 'text_blank' => " ", + 'text_ago' => " 前", + 'text_last_commented_by' => "Last commented by ", + 'text_imdb' => "IMDb", + 'text_votes' => " 投票", + 'text_country' => "Country", + 'text_genres' => "Genres", + 'text_director' => "Director", + 'text_starring' => "Starring", + 'text_runtime' => "Runtime", + 'text_language' => "言語", + 'text_douban' => "Douban", + 'text_region' => "Region", + 'text_creator' => "Creator", + 'text_awaiting_five_votes' => "awaiting 5 votes", + 'text_invite' => "Invite ", + 'text_send' => "Send", + 'text_tracks' => "Tracks", + 'text_label' => "Label", + 'text_tags' => "タグ", + 'text_user_ip' => "User IP", + 'text_location_main' => "Location Main", + 'text_location_sub' => "Location Sub", + 'text_ip_range' => "IP Range", + 'text_min' => " min", + 'text_music' => "Music", + 'text_special' => "Special", + 'title_reply_with_quote' => "引用", + 'title_add_reply' => "Add Reply", + 'title_delete' => "削除", + 'title_edit' => "編集", + 'title_reportbox' => "reportbox", + 'title_staffbox' => "staffbox", + 'title_sticky' => "Sticky", + 'text_new_news' => " unread important news", + 'std_no_user_named' => "There is no user named ", + 'text_banned' => "禁止", + 'text_are' => " are ", + 'text_is' => " is ", + 'select_choose_one' => "一つ選んでください", + 'text_space' => " ", + 'text_day' => "d ", + 'text_new_suspected_cheater' => " new suspected cheater", + 'title_cheaterbox' => "cheaterbox", + 'text_will_end_in' => " will end in ", + 'text_alt_pageup_shortcut' => "Alt+Pageup", + 'text_alt_pagedown_shortcut' => "Alt+Pagedown", + 'text_shift_pageup_shortcut' => "Shift+Pageup", + 'text_shift_pagedown_shortcut' => "Shift+Pagedown", + 'text_quote' => "引用", + 'text_code' => "CODE", + 'std_invalid_id' => "Invalid ID! For security reason, we have logged this action.", + 'text_smilies' => "スマイリー", + 'col_type_something' => "Type...", + 'col_to_make_a' => "To make a...", + 'text_year' => " year", + 'text_month' => " month", + 'text_day' => " day", + 'text_hour' => " hour", + 'text_min' => " min", + 'select_color' => "Color", + 'select_font' => "Font", + 'select_size' => "サイズ", + 'text_subject' => "Subject:", + 'text_more_smilies' => "More Smilies", + 'js_prompt_enter_url' => "You must enter a URL", + 'js_prompt_enter_title' => "You must enter a title", + 'js_prompt_error' => "Error!", + 'js_prompt_enter_item' =>"Enter item of the list. For end of the list, press 'cancel' or leave the next field empty ", + 'js_prompt_enter_image_url' => "You must enter a full image URL", + 'js_prompt_enter_email' => "You must enter a E-mail", + 'text_new' => "New", + 'text_reply' => "返信", + 'submit_submit' => "Submit", + 'submit_preview' => "プレビュー", + 'row_subject' => "件名", + 'row_body' => "本文", + 'text_peasant' => "Peasant", + 'text_user' => "User", + 'text_power_user' => "Power User", + 'text_elite_user' => "Elite User", + 'text_crazy_user' => "Crazy User", + 'text_insane_user' => "Insane User", + 'text_veteran_user' => "Veteran User", + 'text_extreme_user' => "Extreme User", + 'text_ultimate_user' => "Ultimate User", + 'text_nexus_master' => "Nexus Master", + 'text_vip' => "VIP", + 'text_uploader' => "Uploader", + 'text_retiree' => "Retiree", + 'text_forum_moderator' => "Forum Moderator", + 'text_moderators' => "モデレーター", + 'text_administrators' => "Administrator", + 'text_sysops' => "SysOp", + 'text_staff_leader' => "Staff Leader", + 'text_short_year'=> "Y", + 'text_short_month' => "MON", + 'text_short_day' => "D", + 'text_short_hour' => "H", + 'text_short_min' => "M", + 'submit_edit' => "編集", + 'text_banned_client_warning' => "You were using a banned BitTorrent client the last time connecting the tracker! Click here.", + 'text_please_improve_ratio_within' => "Please improve your ratio within ", + 'text_or_you_will_be_banned' =>", or your account will be banned! Click here.", + 'text_size' => "サイズ", + 'text_downloads' => "Downloads", + 'text_attachment_key' => "Attachment for key ", + 'text_not_found' => " not found", + 'text_thirty_percent_down' => "30%", + 'text_please_download_something_within' => "Please download something within ", + 'text_inactive_account_be_deleted' => ". Inactive accounts (with no transfer amount) will be deleted.", + 'text_attendance' => '[Attend get bonus]', + 'text_attended' => '[Attend got: %u, card: %d]', + 'row_pt_gen_douban_url' => "PT-Gen douban link", + 'text_pt_gen_douban_url_note' => "(URL taken from douban. e.g. for movie Transformers the URL is https://movie.douban.com/subject/1794171//)", + 'row_pt_gen_imdb_url' => "PT-Gen imdb link", + 'text_pt_gen_imdb_url_note' => "(URL taken from imdb. e.g. for movie Transformers the URL is https://www.imdb.com/title/tt0418279/)", + 'row_pt_gen_bangumi_url' => "PT-Gen bangumi link", + 'text_pt_gen_bangumi_url_note' => "(URL taken from bangumi. e.g. for animation Cowboy Bebop the URL is https://bangumi.tv/subject/253/)", + 'imdb_cache_dir_can_not_create' => 'imdb cache dir can not create', + 'imdb_cache_dir_is_not_writeable' => 'imdb cache dir is not writeable', + 'imdb_photo_dir_can_not_create' => 'imdb photo dir can not create', + 'imdb_photo_dir_is_not_writeable' => 'imdb photo dir is not writeable', + 'text_tag_no_release_to_any_other' => 'No release to any other', + 'text_tag_first_release' => 'First release', + 'text_tag_official' => 'Official', + 'text_tag_diy' => 'DIY', + 'text_tag_mother_language' => 'Mother language', + 'text_tag_mother_language_subtitle' => 'Mother language subtitle', + 'text_tag_hdr' => 'HDR', + 'text_required' => '必須', + 'text_invalid' => 'Invalid', + 'text_technical_info' => 'MediaInfo', + 'text_technical_info_help_text' => 'MediaInfo comes from software MediaInfo,open file, language select english, click the view menu > text > right click in the box > select all > copy > past into this box.', + 'text_management_system' => 'Management', + 'text_seed_points' => 'Seed points', + 'spoiler_expand_collapse' => 'Click to expand/collapse', + 'spoiler_default_title' => 'Collapse content', + 'menu_claim' => 'Claim: ', + 'text_complains' => 'There %s %u pending complaint%s.', + 'text_contactstaff' => 'Contact staff', + 'full_site_promotion_in_effect' => 'Full site [%s] in effect!', + 'full_site_promotion_time_range' => 'Time range: %s ~ %s', + 'text_torrent_to_approval' => 'There %s%u not approval torrent%s.', + 'std_confirm_remove' => 'Are you sure you want to delete it?', + 'select_an_user_class' => 'Select an user class', + 'input_check_all' => "Check All", + 'input_uncheck_all' => "Uncheck All", + 'select_at_least_one_record' => 'Select at least one record!', + 'text_seed_box_record_to_approval' => 'There %s%u not approval seed box record%s.', + 'approval_deny_reach_upper_limit' => 'The number of torrents whose current approval was denied: %s reached the upper limit and is not allowed to be upload.', ); + +?> diff --git a/lang/ja/lang_getrss.php b/lang/ja/lang_getrss.php index 2104c5a8..8eefe098 100644 --- a/lang/ja/lang_getrss.php +++ b/lang/ja/lang_getrss.php @@ -1,48 +1,51 @@ 'RSSサブスクリプション', - 'head_rss_feeds' => 'RSSサブスクリプション', - 'std_error' => '間違い', - 'std_no_row' => '各ページに表示されるピースの数を選択してください!', - 'std_done' => '仕上げる!', - 'std_use_following_url' => 'Google ReaderなどのRSSリーダーで次のURLを使用できます。', - 'std_utorrent_feed_url' => 'RSSサブスクリプション機能(Utorrentなど)をサポートするBTクライアントで次のURLを使用できます。', - 'row_categories_to_retrieve' => '検索カテゴリ', - 'row_feed_type' => 'リンクタイプ', - 'text_web_link' => 'Webリンク', - 'text_download_link' => 'ダウンロードリンク', - 'row_rows_per_page' => 'ページごとのバー数', - 'submit_generatte_rss_link' => 'RSSリンクを生成します', - 'text_category' => 'タイプ', - 'text_source' => 'ソース', - 'text_codec' => 'コーディング', - 'text_standard' => '解決', - 'text_processing' => '対処する', - 'text_medium' => '中くらい', - 'text_team' => '制作チーム', - 'text_audio_codec' => 'オーディオエンコーディング', - 'row_item_title_type' => 'プロジェクトタイトル形式', - 'text_item_category' => '[タイプ] +', - 'text_item_title' => 'タイトル +', - 'text_item_small_description' => '[サブタイトル] +', - 'text_item_size' => '[サイズ] +', - 'text_item_uploader' => '[出版]', - 'row_show_bookmarked' => 'お気に入りを見せます', - 'text_all' => '全て', - 'text_only_bookmarked' => 'コレクションのみ', - 'text_show_bookmarked_note' => 'BTクライアントのみに適用できます', - 'row_keyword' => 'キーワード', - 'text_with' => 'マッチングパターン:', - 'select_and' => 'そして', - 'select_or' => 'または', - 'select_exact' => '正確な', - 'text_mode' => '', - 'text_keyword_note' => 'タイトルにこのキーワードを含むアイテムにのみ購読します', - 'row_sticky' => 'トップ', - 'row_paid' => '魔法はダウンロードから控除する必要があります', - 'row_paid_help' => '注:これは、無料/50%などのプロモーションタイプではありません。出版社がシード料金を設定する場合、ダウンロードは対応する魔法の力を差し引く必要があります。', - 'paid_no' => '不要', - 'paid_yes' => '必要', - 'paid_all' => '全て', +$lang_getrss = array +( + 'text_rss_feeds' => "RSSフィード", + 'head_rss_feeds' => "RSSフィード", + 'std_error' => "エラー", + 'std_no_row' => "行を選択してください!", + 'std_done' => "完了!", + 'std_use_following_url' => "RSSリーダーで次のURLを使用してください。例:Google Reader: ", + 'std_utorrent_feed_url' => "RSSフィードをサポートするBitTorrentクライアントでは、次のURLを使用してください。例: uTorrent: ", + 'row_categories_to_retrieve' => "取得するカテゴリ", + 'row_feed_type' => "フィードの種類", + 'text_web_link' => "ウェブリンク", + 'text_download_link' => "リンクをダウンロード", + 'row_rows_per_page' => "ページあたりの行数", + 'submit_generatte_rss_link' => "RSS リンクを生成", + 'text_category' => "カテゴリ", + 'text_source' => "ソース", + 'text_codec' => "コーデック:", + 'text_standard' => "標準", + 'text_processing' => "処理中", + 'text_medium' => "ミディアム", + 'text_team' => "チーム", + 'text_audio_codec' => "オーディオコーデック", + 'row_item_title_type' => "タイトル表示形式", + 'text_item_category' => "[Category] + ", + 'text_item_title' => "タイトル + ", + 'text_item_small_description' => "format@@0 + ", + 'text_item_size' => "[Size] + ", + 'text_item_uploader' => "[Uploader]", + 'row_show_bookmarked' => "ブックマークを表示", + 'text_all' => "すべて", + 'text_only_bookmarked' => "ブックマークされたのみ", + 'text_show_bookmarked_note' => "BitTorrentクライアントのためのOny", + 'row_keyword' => "Keyword", + 'text_with' => "with", + 'select_and' => "AND", + 'select_or' => "OR", + 'select_exact' => "正確な", + 'text_mode' => "一致モード ", + 'text_keyword_note' => "Ony subscribe to items with these keyword in titles.", + 'row_sticky' => 'Sticky', + 'row_paid' => 'マジックはダウンロードのために差し引かれます', + 'row_paid_help' => '注意: これは無料/50%のプロモーションタイプではありません。アップローダーがトレントの支払いを設定した場合、ダウンロードにはボーナスが必要です', + 'paid_no' => '無料', + 'paid_yes' => '支払い済み', + 'paid_all' => 'すべて', ); + +?> diff --git a/lang/ja/lang_getusertorrentlistajax.php b/lang/ja/lang_getusertorrentlistajax.php index 3783e06e..4d832fa4 100644 --- a/lang/ja/lang_getusertorrentlistajax.php +++ b/lang/ja/lang_getusertorrentlistajax.php @@ -1,21 +1,23 @@ 'タイプ', - 'col_name' => 'タイトル', - 'title_size' => 'サイズ', - 'title_seeders' => '種子の数', - 'title_leechers' => 'ダウンロード数', - 'col_uploaded' => 'アップロード', - 'col_downloaded' => 'ダウンロード', - 'col_ratio' => '共有率', - 'col_anonymous' => '匿名', - 'col_time_completed' => '完成時間', - 'col_se_time' => '種子生産時間', - 'col_le_time' => 'ダウンロード時間', - 'text_record' => '記録', - 'text_no_record' => '記録はありません', - 'text_total_size' => '|合計サイズ:', - 'col_added' => 'リリース時間', - 'col_client' => 'クライアント', +$lang_getusertorrentlistajax = array +( + 'col_type' => "タイプ", + 'col_name' => "名前", + 'title_size' => "サイズ", + 'title_seeders' => "Seeders", + 'title_leechers' => "Leechers", + 'col_uploaded' => "Ul.", + 'col_downloaded' => "Dl.", + 'col_ratio' => "Ratio", + 'col_anonymous' => "Anonym.", + 'col_time_completed' => "Sna.", + 'col_se_time' => "Se. Time", + 'col_le_time' => "経過時間", + 'text_record' => " レコード", + 'text_no_record' => "レコードがありません。", + 'text_total_size' => " | 合計サイズ: ", + 'col_added' => "追加しました", + 'col_client' => 'クライアント', ); +?> diff --git a/lang/ja/lang_increment-bulk.php b/lang/ja/lang_increment-bulk.php index fd51477d..b914b8cf 100644 --- a/lang/ja/lang_increment-bulk.php +++ b/lang/ja/lang_increment-bulk.php @@ -1,26 +1,27 @@ 'バッチにマジックを追加/カード/招待状の再署名/ボリューム/一時的な招待状をアップロードします', - 'sent_success' => 'プライベートメッセージを正常に追加して送信しました', - 'types' => - array ( - 'seedbonus' => '魔法', - 'attendance_card' => 'カードを再署名します', - 'invites' => '招待する', - 'uploaded' => 'ボリュームをアップロードします', - 'tmp_invites' => '一時的な招待', - ), - 'labels' => - array ( - 'type' => 'タイプ', - 'amount' => '量', - 'duration' => '有効期間', - 'duration_help' => 'タイプが[一時的な招待]である場合にのみ必要です、ユニット:日', - 'user_class' => 'ユーザーレベル', - 'roles' => '役割', - 'msg_subject' => 'プライベートメッセージトピック', - 'msg_body' => 'プライベートメッセージコンテンツ', - 'operator' => 'オペレーター', - ), +$lang_incrementbulk = array +( + 'page_title' => '一括追加ボーナス/出席カード/招待/アップロード/一時的な招待', + 'sent_success' => ' が追加され、通知メッセージが送信されました', + 'types' => [ + 'seedbonus' => 'ボーナス', + 'attendance_card' => '出欠カード', + 'invites' => '招待', + 'uploaded' => 'アップロード', + 'tmp_invites' => '一時的な招待', + ], + 'labels' => [ + 'type' => 'タイプ', + 'amount' => '金額', + 'duration' => '期間', + 'duration_help' => '[Temporary Invitation]の場合にのみ必要です', + 'user_class' => 'ユーザクラス', + 'roles' => 'ロール', + 'msg_subject' => 'メッセージの件名', + 'msg_body' => 'メッセージの内容', + 'operator' => '演算子', + ], ); + +?> diff --git a/lang/ja/lang_index.php b/lang/ja/lang_index.php index d23c8a3c..79ed7159 100644 --- a/lang/ja/lang_index.php +++ b/lang/ja/lang_index.php @@ -1,109 +1,111 @@ '調査はありません', - 'std_error' => '間違い', - 'std_duplicate_votes_denied' => 'まったく同じ投票オプションは許可されていません!', - 'std_vote_not_counted' => 'エラーが発生しました。あなたの投票は受け入れられませんでした。', - 'std_option_unselected' => 'アイテムを選択してください。', - 'text_news_page' => 'リリース', - 'text_recent_news' => '最近のニュース', - 'text_e' => '編集', - 'text_d' => '消去', - 'text_hotmovies' => '人気のある', - 'text_classicmovies' => 'クラシック', - 'text_free' => '無料', - 'text_two_times_up' => '2x', - 'text_free_two_times_up' => '2x無料', - 'text_shoutbox' => 'グループチャットエリア', - 'text_message' => 'チャット:', - 'sumbit_shout' => '私は叫んだ', - 'submit_clear' => 'クリア', - 'text_last_five_posts' => 'フォーラムの最新の投稿', - 'col_topic_title' => 'タイトル', - 'col_view' => 'チェック', - 'col_author' => '著者', - 'col_posted_at' => '出版時間', - 'text_in' => 'セクション:', - 'std_no_torrent_found' => '種はありません', - 'text_last_five_torrent' => '最後の5つのアップロードされた種子', - 'col_name' => 'タイトル', - 'col_seeder' => '種を作る', - 'col_leecher' => 'ダウンロード', - 'text_polls' => '投票する', - 'text_new' => '新しい投票', - 'text_edit' => '編集', - 'text_delete' => '消去', - 'text_votes' => '投票数:', - 'radio_blank_vote' => 'abstain(「結果を覗きたい!」)', - 'submit_vote' => '投票する', - 'text_previous_polls' => '以前の投票', - 'text_tracker_statistics' => 'サイトデータ', - 'row_registered_users' => '登録ユーザー/UP', - 'row_unconfirmed_users' => '未検証ユーザー', - 'row_vips' => 'VIP', - 'row_donors' => 'ドナー', - 'row_warned_users' => 'ユーザーに警告しました', - 'row_banned_users' => '禁止されたユーザー', - 'row_male_users' => '男の子', - 'row_female_users' => '女の子', - 'row_torrents' => 'シード', - 'row_dead_torrents' => '種子が切り取られます', - 'row_seeders' => '種子の数', - 'row_leechers' => 'ダウンロード数', - 'row_peers' => '仲間', - 'row_seeder_leecher_ratio' => '種子の数 /ダウンロード比', - 'row_total_size_of_torrents' => '総種子サイズ', - 'row_total_uploaded' => '合計アップロード', - 'row_total_downloaded' => '総ダウンロード', - 'row_total_data' => '総データボリューム', - 'text_no_users_day' => '過去24時間にアクティブユーザーはいません。', - 'text_no_active_users_now' => '現在、アクティブユーザーはいません。', - 'text_no_user_torrenting' => 'なし :(', - 'text_tracker_load' => 'サーバーの負荷', - 'text_our_tracker_load' => 'ウェブサイトの仲間のロード:', - 'text_global_server_load' => 'サーバーの負荷:', - 'text_whats_going_on' => '現在の状況', - 'text_members_have_visited' => 'ユーザーは過去24時間で訪問しました。最新のユーザーを歓迎します。', - 'text_users_browsing_now' => '最後の15分のオンラインユーザー。', - 'text_peers_active_now' => '現在行っている、またはダウンロードしているユーザー。', - 'text_disclaimer' => '免責事項', - 'text_disclaimer_content' => 'このサイトにリストされているファイルは、このサイトのサーバーに保存されません。このサイトは接続のみを担当しており、スプレッドファイルのコンテンツについては何も知りません。このサイトへのリンクは、ユーザーによって自発的に提供されます。 %Sの管理者は、ユーザーの提出またはその他のアクションについて責任を負いません。 %sを使用して、使用するライセンスがないドキュメントや資料を広めたり、ダウンロードしたりすることはできません。そこから生じる結果は、あなた自身の責任であります。', - 'text_browser_note' => ' qbittrent href = "https://transmissionbt.com/download/"ターゲット= "_ blank"> inssomising ', - 'title_show_or_hide' => '表示/非表示', - 'text_links' => 'フレンドリーなリンク', - 'text_manage_links' => '管理リンク', - 'text_author' => '著者:', - 'text_datetime' => '時間:', - 'p_critic_reviews' => '映画批評家によるレビュー', - 'p_user_reviews' => 'ユーザーレビュー', - 'head_home' => 'フロントページ', - 'sumbit_to_guest' => '観光客に', - 'text_apply_for_link' => 'アプリケーションリンク', - 'text_ago' => '前に', - 'text_auto_refresh_after' => '', - 'text_seconds' => '数秒で自動的に更新します', - 'text_funbox' => '楽しい箱', - 'text_more_fun' => 'もっと', - 'text_new_fun' => 'リリース', - 'text_ban' => '禁止する', - 'submit_fun' => '面白い', - 'submit_dull' => 'つまらない', - 'text_out_of' => 'ユーザー(合計', - 'text_people_found_it' => '投票)面白いと思います。', - 'text_your_opinion' => 'どう思いますか?', - 'text_vote_accepted' => 'ありがとう!あなたの投票が提出されました。', - 'row_users_active_today' => '今日訪問しているユーザーの数', - 'row_users_active_this_week' => '今週訪問したユーザーの数', - 'row_active_browsing_users' => '訪問したユーザーの現在の数', - 'row_tracker_active_users' => '現在のトラッカーユーザーの数', - 'text_detail' => '詳細', - 'top_uploader_title' => '最大アップロード(種子の数)', - 'col_counts' => '量', - 'col_ranking' => 'ランキング', - 'top_uploader_toggle_time_range_tab' => 'クリックして時間範囲を切り替えます', - 'top_uploader_toggle_time_range_recently' => '過去30日間', - 'top_uploader_toggle_time_range_all' => 'いつも', - 'clear_shout_box' => 'グループチャットエリアをクリアします', - 'sure_to_clear_shout_box' => 'グループチャットエリアをクリアしたいですか?', +$lang_index = array +( + 'std_no_poll' => "アンケートなし", + 'std_error' => "エラー", + 'std_duplicate_votes_denied' => "重複した投票は許可されていません!", + 'std_vote_not_counted' => "エラーが発生しました。投票はカウントされませんでした。", + 'std_option_unselected' => "オプションを選択してください。", + 'text_news_page' => "新規作成", + 'text_recent_news' => "最新のニュース", + 'text_e' => "編集", + 'text_d' => "削除", + 'text_hotmovies' => "ホット", + 'text_classicmovies' => "クラシック", + 'text_free' => "無料", + 'text_two_times_up' => "2X", + 'text_free_two_times_up' => "2倍無料", + 'text_shoutbox' => "Shoutbox", + 'text_message' => "メッセージ: ", + 'sumbit_shout' => "叫んでください", + 'submit_clear' => "クリア", + 'text_last_five_posts' => "直近の5件のフォーラム投稿", + 'col_topic_title' => "トピックタイトル", + 'col_view' => "ビュー", + 'col_author' => "作成者", + 'col_posted_at' => "投稿日時", + 'text_in' => "in ", + 'std_no_torrent_found' => "Torrent が見つかりません", + 'text_last_five_torrent' => "最近の5件のトレントアップロード", + 'col_name' => "名前", + 'col_seeder' => "シーダー", + 'col_leecher' => "Leecher", + 'text_polls' => "意識調査 ", + 'text_new' => "新規作成", + 'text_edit' => "編集", + 'text_delete' => "削除", + 'text_votes' => "投票:", + 'radio_blank_vote' => "空白の投票 (別名: \"結果を見たいだけです!\")", + 'submit_vote' => "投票!", + 'text_previous_polls' => "以前の投票", + 'text_tracker_statistics' => "トラッカーの統計", + 'row_registered_users' => "登録ユーザー/制限", + 'row_unconfirmed_users' => "未確認のユーザー", + 'row_vips' => "VIPs", + 'row_donors' => "Donors", + 'row_warned_users' => "警告されたユーザー", + 'row_banned_users' => "禁止されたユーザー", + 'row_male_users' => "男性ユーザー", + 'row_female_users' => "女性ユーザー", + 'row_torrents' => "Torrent", + 'row_dead_torrents' => "死んだTorrent", + 'row_seeders' => "シード中のピア", + 'row_leechers' => "Leeching Peers", + 'row_peers' => "ピア", + 'row_seeder_leecher_ratio' => "シード/リーチ率", + 'row_total_size_of_torrents' => "Torrent の合計サイズ", + 'row_total_uploaded' => "合計アップロード数", + 'row_total_downloaded' => "ダウンロード合計", + 'row_total_data' => "合計データ", + 'text_no_users_day' => "過去24時間以内にアクティブなユーザーはいません。", + 'text_no_active_users_now' => "アクティブなユーザーはいません。", + 'text_no_user_torrenting' => "シードやリーチはありません。 :(", + 'text_tracker_load' => "トラッカーの読み込み", + 'text_our_tracker_load' => "トラッカーピアロード: ", + 'text_global_server_load' => "グローバルサーバー負荷: ", + 'text_whats_going_on' => "何が起きているのか?", + 'text_members_have_visited' => " メンバーが24時間以内に訪問しました。最新のメンバーにようこそ ", + 'text_users_browsing_now' => " ユーザーは過去15分でサイトを閲覧しています。 ", + 'text_peers_active_now' => " 利用者は種まきやリーチをしています ", + 'text_disclaimer' => "免責事項", + 'text_disclaimer_content' => "None of the files shown here are actually hosted on this server. The tracker only manages connections, it does not have any knowledge of the contents of the files being distributed. The links are provided solely by this site's users. The administrator of this site %s cannot be held responsible for what its users post, or any other actions of its users. You may not use this site %s to distribute or download any material when you do not have the legal rights to do so. It is your own responsibility to adhere to these terms.", + 'text_browser_note' => "This site is best viewed with \"Googleor\"Firefox\" and with resolution above 1024*768. Recommended BitTorrent clients: \"qBittorrent\"or\"Transmission\"", + 'title_show_or_hide' => "表示/非表示", + 'text_links' => "リンク", + 'text_manage_links' => "リンクの管理", + 'text_author' => "作成者:", + 'text_datetime' => "時間:", + 'p_critic_reviews' => "映画批評家のレビュー", + 'p_user_reviews' => "選択したユーザーのレビュー", + 'head_home' => "ホーム", + 'sumbit_to_guest' => " ゲストへ", + 'text_apply_for_link' => "リンクに適用", + 'text_ago' => " 前", + 'text_auto_refresh_after' => "次に自動更新 ", + 'text_seconds' => " 秒", + 'text_funbox' => "Funbox", + 'text_more_fun' => "もっと見る", + 'text_new_fun' => "新規作成", + 'text_ban' => "アクセス禁止", + 'submit_fun' => "楽しい", + 'submit_dull' => "", + 'text_out_of' => " のうち ", + 'text_people_found_it' => " 人々はそれを楽しく見つけた。 ", + 'text_your_opinion' => "どう思いますか? ", + 'text_vote_accepted' => "ありがとうございます!投票が承認されました。", + 'row_users_active_today' => "今日アクティブなユーザー", + 'row_users_active_this_week' => "今週アクティブなユーザー", + 'row_active_browsing_users' => "アクティブなブラウジングユーザー", + 'row_tracker_active_users' => "トラッカーアクティブユーザー", + 'text_detail' => "詳細", + 'top_uploader_title' => 'トップアップローダー(トレント数)', + 'col_counts' => 'カウント', + 'col_ranking' => 'ランキング', + 'top_uploader_toggle_time_range_tab' => 'クリックして時間範囲を切り替えます', + 'top_uploader_toggle_time_range_recently' => '過去 30 日間', + 'top_uploader_toggle_time_range_all' => 'すべて', + 'clear_shout_box' => 'シャウトボックスをクリア', + 'sure_to_clear_shout_box' => 'シャウトボックスをクリアしてもよろしいですか?', ); + +?> diff --git a/lang/ja/lang_invite.php b/lang/ja/lang_invite.php index 77816680..65e5b2cc 100644 --- a/lang/ja/lang_invite.php +++ b/lang/ja/lang_invite.php @@ -1,62 +1,70 @@ 'ごめん', - 'std_permission_denied' => '許可なし!', - 'head_invites' => '招待する', - 'std_no_invites_left' => '残りの招待スロットはありません。 :(

        クリックします', - 'here_to_go_back' => 'ここに戻ります。', - 'text_invite_code_sent' => '招待コードが送信されました!
        ', - 'text_invite_someone' => '他の人に参加するよう招待してください', - 'text_s' => '', - 'text_invitation' => '残りの招待状', - 'text_left' => '', - 'text_email_address' => '電子メールアドレス', - 'text_email_address_note' => 'メールアドレスは有効でなければなりません。招待者はあなたの招待状を受け取ります。', - 'text_message' => '情報', - 'submit_invite' => '招待する', - 'text_invite_status' => '招待者の現在のステータス', - 'text_no_invites' => '招待されていません', - 'text_username' => 'ユーザー名', - 'text_email' => '郵便', - 'text_uploaded' => 'アップロード', - 'text_downloaded' => 'ダウンロード', - 'text_ratio' => '共有率', - 'text_status' => '州', - 'text_confirm' => '確認する', - 'text_confirmed' => '確認済み', - 'text_pending' => '決定される', - 'submit_confirm_users' => 'ユーザーを確認します', - 'sumbit_invite_someone' => '他の人を招待します', - 'text_sent_invites_status' => '招待状のステータスを送信しました', - 'text_no_invitation_sent' => '現在、招待状は送信されていません', - 'text_hash' => 'ハッシュ', - 'text_send_date' => '日付を送信します', - 'text_hash_status' => 'ハッシュは機能します', - 'text_invitee_user' => '招待', - 'text_invitation_body' => 'こんにちは、 +$lang_invite = array +( + 'std_sorry' => "申し訳ありません", + 'std_permission_denied' => "アクセスが拒否されました!", + 'head_invites' => "招待", + 'std_no_invites_left' => "招待状が残っていません。:(

        をクリックしてください ", + 'here_to_go_back' => "here to go back.", + 'text_invite_code_sent' => "招待コードが送信されました!
        ", + 'text_invite_someone' => "誰かを招待する ", + 'text_s' => "s", + 'text_invitation' => " 招待状", + 'text_left' => " 左", + 'text_email_address' => "メールアドレス", + 'text_email_address_note' => "メールアドレスは有効でなければなりません。招待状についてのメールが届きます。", + 'text_message' => "メッセージ", + 'submit_invite' => "招待", + 'text_invite_status' => "招待状の状態", + 'text_no_invites' => "招待はまだありません。", + 'text_username' => "ユーザー名", + 'text_email' => "Eメールアドレス", + 'text_uploaded' => "アップロードしました", + 'text_downloaded' => "ダウンロード済み", + 'text_ratio' => "Ratio", + 'text_status' => "ステータス", + 'text_confirm' => "確認する", + 'text_confirmed' => "確認済み", + 'text_pending' => "保留中", + 'submit_confirm_users' => "Confirm Users", + 'sumbit_invite_someone' => "Invite Someone", + 'text_sent_invites_status' => "招待状の現在の状態", + 'text_no_invitation_sent' => "現在招待状は送信されていません。", + 'text_hash' => "ハッシュ", + 'text_send_date' => "送信日", + 'text_hash_status' => 'Hash valid', + 'text_invitee_user' => '招待ユーザー', -豊富なリソースを持つ非開催されていないコミュニティである%Sに参加することをお勧めします。 -ご参加に興味がある場合は、ルールを読んで招待状を確認してください。最後に、良い共有率を維持してください -許可されたリソースを共有します。 + 'text_invitation_body' => " +Hi Buddy, -いらっしゃいませ! :)', - 'text_invite_system' => '招待システム', - 'std_only' => 'のみ', - 'std_or_above_can_invite' => '上記のユーザーのみが招待状を送信できます。', - 'text_email_restriction_note' => '次のメールに招待状のみを送信できます。', - 'harem_addition' => 'ハーレムボーナス', - 'signup_link_help' => '右クリックしてコピーします', - 'signup_link' => '登録リンク', - 'text_seed_torrent_count' => '現在の種子数', - 'text_seed_torrent_size' => '現在のシードボリューム', - 'text_seed_torrent_bonus_per_hour' => '現在、純粋に細工された悪魔', - 'text_seed_torrent_bonus_per_hour_help' => 'つまり、種子を作ることの価値は、寄付、公式の種、ハーレムなどのボーナスを考慮せずに、単に種を作ることです。', - 'text_seed_torrent_last_announce_at' => '前回のレポート', - 'text_enabled' => '有効にする', - 'text_tmp_status' => '一時的な招待状のステータス', - 'text_expired_at' => 'ハッシュの有効期限', - 'text_permanent' => '恒久的な有効な招待', - 'text_consume_invite' => '招待状を使用してください', - 'text_temporary_left' => '%S一時的な招待状', +I am inviting you to join %s which is a private community that have the finest +and most abundant stuff. If you are interested in joining us please read over +the rules and confirm the invite. Finally, please make sure you keep a nice ratio and +only upload content that follows rules of the site. + +Welcome aboard! :) +Best Regards, +", + 'text_invite_system' => "招待システム", + 'std_only' => "のみ ", + 'std_or_above_can_invite' => " またはそれ以上の招待状を送ることができます", + 'text_email_restriction_note' => "これらのドメインからのみ招待状を送信できます: ", + 'harem_addition' => 'ハーレムの追加', + 'signup_link_help' => '右クリックでコピー', + 'signup_link' => 'サインアップリンク', + 'text_seed_torrent_count' => 'シード数', + 'text_seed_torrent_size' => 'シードサイズ', + 'text_seed_torrent_bonus_per_hour' => '1時間あたりのシードボーナス', + 'text_seed_torrent_bonus_per_hour_help' => 'すなわち、シードポイントは、寄付、公式トレント、ハーレム、その他の追加を考慮しないでください', + 'text_seed_torrent_last_announce_at' => '最終発表日時', + 'text_enabled' => '有効', + 'text_tmp_status' => '一時招待状態', + 'text_expired_at' => '有効期限:', + 'text_permanent' => '永久招待を使用する', + 'text_consume_invite' => '招待を使用する', + 'text_temporary_left' => '%s 一時招待', ); + +?> diff --git a/lang/ja/lang_iphistory.php b/lang/ja/lang_iphistory.php index 170667b6..86b1e28e 100644 --- a/lang/ja/lang_iphistory.php +++ b/lang/ja/lang_iphistory.php @@ -1,14 +1,16 @@ '間違い', - 'std_invalid_id' => '無効なID', - 'text_user_not_found' => 'ユーザーはいません', - 'head_ip_history_log_for' => 'ユーザーIP履歴 - ', - 'text_historical_ip_by' => 'ユーザーIPアドレス履歴 - ', - 'col_last_access' => '最近の訪問', - 'col_ip' => 'IP', - 'col_hostname' => 'ホスト名', - 'text_not_available' => 'なし', - 'text_duplicate' => '繰り返す', +$lang_iphistory = array +( + 'std_error' => "エラー", + 'std_invalid_id' => "Invalid ID", + 'text_user_not_found' => "ユーザーが見つかりません", + 'head_ip_history_log_for' => "IP履歴ログ ", + 'text_historical_ip_by' => "Historical IP address used by ", + 'col_last_access' => "最終アクセス", + 'col_ip' => "IP", + 'col_hostname' => "Hostname", + 'text_not_available' => "該当なし", + 'text_duplicate' => "Dupe", ); +?> diff --git a/lang/ja/lang_ipsearch.php b/lang/ja/lang_ipsearch.php index e5539ca1..6453b433 100644 --- a/lang/ja/lang_ipsearch.php +++ b/lang/ja/lang_ipsearch.php @@ -1,22 +1,24 @@ '間違い', - 'std_invalid_ip' => '無効なIPアドレス。', - 'std_invalid_subnet_mask' => '無効なサブネットマスク。', - 'head_search_ip_history' => 'IP履歴を検索します', - 'text_search_ip_history' => 'IP履歴を検索します', - 'row_ip' => 'IP', - 'row_subnet_mask' => 'サブネットマスク', - 'submit_search' => '私を探してください', - 'text_no_users_found' => 'ユーザーは見つかりませんでした', - 'text_users_used_the_ip' => 'ユーザーがこのIPを使用しました:', - 'col_username' => 'ユーザー名', - 'col_last_ip' => '最近のIP', - 'col_last_access' => '最近の訪問', - 'col_ip_num' => 'IPSの数', - 'col_last_access_on' => 'このIPは最近訪問されました', - 'col_added' => '参加時間', - 'col_invited_by' => '招待者', - 'text_not_available' => 'なし', +$lang_ipsearch = array +( + 'std_error' => "エラー", + 'std_invalid_ip' => "無効なIPです。", + 'std_invalid_subnet_mask' => "サブネットマスクが無効です。", + 'head_search_ip_history' => "IP履歴から検索", + 'text_search_ip_history' => "IP履歴から検索", + 'row_ip' => "IP", + 'row_subnet_mask' => "サブネットマスク", + 'submit_search' => "検索", + 'text_no_users_found' => "ユーザーが見つかりませんでした", + 'text_users_used_the_ip' => " ユーザーは以下のIPを使用しています: ", + 'col_username' => "ユーザー名", + 'col_last_ip' => "最後のIP", + 'col_last_access' => "最終アクセス", + 'col_ip_num' => "IP Nums", + 'col_last_access_on' => "このIPへの最終アクセス", + 'col_added' => "追加しました", + 'col_invited_by' => "招待者", + 'text_not_available' => "該当なし", ); +?> diff --git a/lang/ja/lang_linksmanage.php b/lang/ja/lang_linksmanage.php index 396bb702..f45ad5d7 100644 --- a/lang/ja/lang_linksmanage.php +++ b/lang/ja/lang_linksmanage.php @@ -1,48 +1,51 @@ 'アプリケーションリンク', - 'text_apply_for_links' => 'アプリケーションリンク', - 'text_rules' => '交換リンクルール:', - 'text_rule_one' => '1.申請者は、まずこのウェブサイトのリンクを自分のウェブサイトに配置してから、当社に申請してください。', - 'text_rule_two' => '2。リンクに適用されるWebサイトには、違法なコンテンツは含まれません。 %Sの管理者は、Webサイトに申請するアクションについて責任を負いません。', - 'text_rule_three' => '3.このサイトで作成されたすべてのリンクは、テキストリンクです。', - 'text_rule_four' => '4.アプリケーションWebサイトには、少なくとも200人の登録ユーザーが必要です。または、訪問者の平均1日数は50以上でなければなりません。', - 'text_rule_five' => '5.このWebサイト%Sは、予告なしにこのWebサイトのリンクを自由に変更または削除する権利を留保します。', - 'text_rule_six' => '6.あなたのウェブサイトが上記の条件を満たしている場合は、US%sへのリンクを交換するためにお気軽に申請してください。ただし、すべてのアプリケーションが受け入れられることを保証するものではありません。', - 'text_red_star_required' => '赤いアスタリスクでマークされた領域(*)に入力する必要があります', - 'text_site_name' => 'ウェブサイト名', - 'text_url' => 'リンクアドレス', - 'text_title' => 'スローガン', - 'text_title_note' => 'キャッチフレーズは、 nexusphp など、リンクのプロンプトに表示されます。', - 'text_administrator' => '管理者', - 'text_administrator_note' => '管理者の本名に記入する必要があります', - 'text_email' => '郵便', - 'text_reason' => '理由', - 'submit_okay' => 'もちろん', - 'submit_reset' => 'クリア', - 'std_error' => '間違い', - 'std_no_sitename' => 'ウェブサイト名を空にすることはできません。', - 'std_no_url' => 'リンクアドレスを空にすることはできません。', - 'std_no_admin' => '管理者は空にすることはできません。管理者の名前を記入してください。', - 'std_no_email' => 'メールアドレスを空にすることはできません。', - 'std_invalid_email' => '無効なメールアドレス。', - 'std_no_reason' => '理由は空にすることはできません。アプリケーションの理由を記入してください。', - 'std_reason_too_short' => '理由は短すぎます。詳細に記入してください。', - 'std_success' => '成功', - 'std_success_note' => 'あなたのアプリケーションは正常に提出されました。返信をお待ちください。', - 'text_sitename_note' => ' nexusphp などのアプリケーションWebサイトの名前', - 'text_url_note' => 'たとえば、 https://nexusphp.org ', - 'text_email_note' => '連絡先を容易にするためにウェブサイトに応募する管理者のメールアドレスに記入してください', - 'std_missing_form_data' => '必要なアイテムを入力してください。', - 'std_unable_creating_new_link' => '新しいリンクを作成できません。', - 'std_links_manage' => '管理リンク', - 'text_add_link' => 'リンクを追加します', - 'text_manage_links' => '管理リンク', - 'text_modify' => '改訂', - 'text_edit' => '編集', - 'text_delete' => '消去', - 'text_no_links_found' => '申し訳ありませんが、現時点ではリンクはありません!', - 'text_edit_link' => 'リンクを編集します', - 'js_sure_to_delete_link' => 'このリンクを削除したいですか?', +$lang_linksmanage = array +( + 'head_apply_for_links' => "リンクに適用", + 'text_apply_for_links' => "リンクに適用", + 'text_rules' => "リンク交換のルール:", + 'text_rule_one' => "1. Please make our link %s at your site before ask us to do the same .", + 'text_rule_two' => "2.Your site MUST NOT be involed in any illegal things. The administrators of this site %s take absolutely no responsibily for anything of your site.", + 'text_rule_three' => "3. 当サイト %s で作成したすべてのリンクはテキストのみです。", + 'text_rule_four' => "4. あなたの場所に少なくとも200 人の登録されたユーザーまたは50 の毎日訪問される人々があるべきである。", + 'text_rule_five' => "5. We reserve the rights to MODIFY or delete any LINKS at our site %s without notification.", + 'text_rule_six' => "6.上記のルールに準拠している場合は、 %sのサイトへのリンクを自由に申請してください。 ただし、すべての申請を受け入れる保証はありません。", + 'text_red_star_required' => "赤い星印の付いたフィールド(*)が必要です。", + 'text_site_name' => "サイト名", + 'text_url' => "URL", + 'text_title' => "タイトル", + 'text_title_note' => "タイトルはリンクにツールチップを表示するために使用されます。例: NexusPHP", + 'text_administrator' => "管理者", + 'text_administrator_note' => "We required administrator's TRUE NAME.", + 'text_email' => "Eメールアドレス", + 'text_reason' => "理由:", + 'submit_okay' => "OK", + 'submit_reset' => "Reset", + 'std_error' => "エラー", + 'std_no_sitename' => "サイト名を空にできませんでした。", + 'std_no_url' => "URLは空にできませんでした。", + 'std_no_admin' => "管理者は空にできませんでした。管理者の名前を知っている必要があります。", + 'std_no_email' => "メールアドレスは空にできませんでした。", + 'std_invalid_email' => "メールアドレスが無効です", + 'std_no_reason' => "理由を空にできませんでした。さあ、あなたのサイトをリンクする理由を教えてください。", + 'std_reason_too_short' => "理由が短すぎます。もっと何か言ってください。", + 'std_success' => "成功", + 'std_success_note' => "アプリケーションが正常に送信されました。返信をお待ちください。", + 'text_sitename_note' => "サイト名。例: NexusPHP", + 'text_url_note' => "例: https://nexusphp.org", + 'text_email_note' => "管理者の連絡先メールアドレス", + 'std_missing_form_data' => "フォームデータがありません。", + 'std_unable_creating_new_link' => "新しいリンクを作成できません。", + 'std_links_manage' => "リンク管理", + 'text_add_link' => "リンクを追加", + 'text_manage_links' => "リンクの管理", + 'text_modify' => "変更", + 'text_edit' => "編集", + 'text_delete' => "削除", + 'text_no_links_found' => "申し訳ありませんが、リンクが見つかりませんでした!", + 'text_edit_link' => "リンクを編集", + 'js_sure_to_delete_link' => "このリンクを削除してもよろしいですか?", ); + +?> diff --git a/lang/ja/lang_log.php b/lang/ja/lang_log.php index a3adfd59..46b4db60 100644 --- a/lang/ja/lang_log.php +++ b/lang/ja/lang_log.php @@ -1,63 +1,67 @@ 'ごめん...', - 'std_permission_denied_only' => '許可はありません。のみ', - 'std_or_above_can_view' => '高いレベルのユーザーのみがログを表示できます。

        ユーザーレベルと許可の詳細については、 faq < /b> を確認してください。

        < /p>%s管理グループ< /b>', - 'head_site_log' => '通常のログ', - 'text_search_log' => '通常のログを検索します', - 'submit_search' => '私を探してください', - 'text_log_empty' => '
        no log < /b>

        ', - 'title_time_added' => '時間', - 'col_date' => '日付', - 'col_event' => 'イベント', - 'col_user' => 'ユーザー', - 'time_zone_note' => '

        時間は北京時間です。

        ', - 'text_daily_log' => '従来のログ', - 'text_chronicle' => '歴史', - 'text_code_update' => 'コードが更新されました', - 'text_funbox' => '楽しい箱', - 'text_news' => 'ホームページの発表', - 'text_poll' => '投票', - 'std_error' => '間違い', - 'std_invalid_action' => '無効な動作', - 'head_chronicle' => '歴史', - 'text_search_chronicle' => '履歴書を検索します', - 'text_chronicle_empty' => '歴史の記録はありません< /b>
        ', - 'col_modify' => '行動', - 'text_edit' => '編集', - 'text_delete' => '消去', - 'submit_add' => 'に追加', - 'text_add_chronicle' => '履歴レコードを追加します', - 'std_permission_denied' => 'ごめん!許可はありません。', - 'submit_okay' => 'もちろん', - 'text_edit_chronicle' => '履歴レコードを編集します', - 'head_code_update' => 'コードアップデート', - 'text_search_code_update' => 'コード更新イベントを検索します', - 'text_add_code_update' => 'コード更新レコードを追加します', - 'text_edit_codeupdate' => 'コード更新履歴を編集します', - 'text_codeupdate_empty' => 'コード更新レコードなし< /b>
        ', - 'head_funbox' => '楽しい箱', - 'head_news' => 'ホームページの発表', - 'text_search_news' => 'ホームページの発表を検索します', - 'text_news_empty' => 'ホームページの発表< /b>
        ', - 'col_title' => 'タイトル', - 'col_body' => '文章', - 'std_delete_poll' => '投票を削除します', - 'std_delete_poll_confirmation' => '投票を削除したいですか?クリック', - 'std_here_if_sure' => 'ここで確認してください 。', - 'std_no_polls' => 'まだ投票はありません!', - 'head_previous_polls' => '以前の投票', - 'text_previous_polls' => '以前の投票', - 'text_ago' => '前に', - 'text_votes' => '投票数:', - 'text_in' => '範囲:', - 'text_funbox_empty' => '楽しいボックスは空です< /b>
        ', - 'text_search_funbox' => '楽しい箱を検索します', - 'text_title' => 'タイトル', - 'text_body' => '文章', - 'text_both' => '両方', - 'text_all' => '全て', - 'text_normal' => '普通', - 'text_mod' => '機密', +$lang_log = array +( + 'std_sorry' => "Sorry...", + 'std_permission_denied_only' => "アクセスが拒否されました。のみ ", + 'std_or_above_can_view' => " or above could view LOG.

        Please see the FAQ for more information on different user classes and what they can do.

        The %s Staff
        ", + 'head_site_log' => "デイリーログ", + 'text_search_log' => "毎日のログを検索", + 'submit_search' => "検索", + 'text_log_empty' => "ログが空です
        ", + 'title_time_added' => "時刻", + 'col_date' => "日付", + 'col_event' => "イベント", + 'time_zone_note' => "

        時間はGMT +8:00です。

        ", + 'text_daily_log' => "デイリーログ", + 'text_chronicle' => "クロニクル", + 'text_code_update' => "コードの更新", + 'text_funbox' => " Funbox ", + 'text_news' => "  ニュース  ", + 'text_poll' => "  Poll  ", + 'std_error' => "エラー", + 'std_invalid_action' => "無効なアクション", + 'head_chronicle' => "クロニクル", + 'text_search_chronicle' => "検索クロニクル", + 'text_chronicle_empty'=> "クロニクルが空です
        ", + 'col_modify' => "変更", + 'text_edit' => "編集", + 'text_delete' => "削除", + 'submit_add' => "追加", + 'text_add_chronicle' => "クロニクルイベントを追加", + 'std_permission_denied' => "下がってください!これを行うことはできません。", + 'submit_okay' => "OK", + 'text_edit_chronicle' => "クロニクルイベントを編集", + 'head_code_update' => "コードの更新", + 'text_search_code_update' => "コード更新イベントを検索", + 'text_add_code_update' => "コード更新イベントを追加", + 'text_edit_codeupdate' => "コード更新イベントを編集", + 'text_codeupdate_empty' => "コード更新が
        ", + 'head_funbox' => "Funboxログ", + 'head_news' => "ニュース", + 'text_search_news' => "ニュースを検索", + 'text_news_empty' => "ニュースは空です
        ", + 'col_title' => "タイトル", + 'col_body' => "本文", + 'col_user' => 'ユーザー', + 'std_delete_poll' => "アンケートを削除", + 'std_delete_poll_confirmation' => "投票を削除してもよろしいですか?クリックしてください ", + 'std_here_if_sure' => " を確認してください。", + 'std_sorry' => "Sorry...", + 'std_no_polls' => "アンケートがありません!", + 'head_previous_polls' => "以前の投票", + 'text_previous_polls' => "以前の投票", + 'text_ago' => " 前", + 'text_votes' => "投票: ", + 'text_in' => "in ", + 'text_funbox_empty' => "Funbox が空です
        ", + 'text_search_funbox' => "ファンボックスを検索", + 'text_title' => "タイトル", + 'text_body' => "body", + 'text_both' => "両方とも", + 'text_all' => "すべて", + 'text_normal' => "普通", + 'text_mod' => "mod", ); + +?> diff --git a/lang/ja/lang_login.php b/lang/ja/lang_login.php index 1404ddc2..b277476f 100644 --- a/lang/ja/lang_login.php +++ b/lang/ja/lang_login.php @@ -1,37 +1,40 @@ 'ログインしていません!', - 'p_error' => '間違い:', - 'p_after_logged_in' => 'このページにアクセスする前にログインする必要があります', - 'p_need_cookies_enables' => ':Cookieが言語をログインまたは切り替えることを有効にする必要があります', - 'p_fail_ban' => '連続したログインが失敗すると、IPアドレスが無効になります!', - 'p_you_have' => 'あなたはまだ持っています', - 'p_remaining_tries' => '試してみるチャンスが1つあります', - 'p_no_account_signup' => 'まだアカウントを持っていませんか?今すぐ登録してください!', - 'p_forget_pass_recover' => 'パスワードをお忘れですか? email 経由でパスワードを取得します', - 'p_account_banned' => 'アカウントは無効になっていますか? ブロックレコード で理由を確認してください', - 'p_resend_confirm' => '確認メールが受信されていませんか、それとも確認リンクを開けませんでしたか? 再送信確認メール ', - 'rowhead_username' => 'ユーザー名:', - 'rowhead_password' => 'パスワード:', - 'button_login' => 'ログイン', - 'button_reset' => 'リセット', - 'text_auto_logout' => '自動ログアウト:', - 'text_restrict_ip' => 'IPを制限:', - 'text_ssl' => 'SSL(HTTPS):', - 'checkbox_auto_logout' => '15分後に自動的にログアウトします', - 'checkbox_restrict_ip' => 'このIPのみを使用してログインします', - 'checkbox_ssl' => 'SSLデータ暗号化プロトコル(ブラウザ)を使用してWebサイトを参照してください', - 'checkbox_ssl_tracker' => 'SSLデータ暗号化プロトコルを使用してトラッカー(BTクライアント)に接続します', - 'text_advanced_options' => '高度なオプション:', - 'text_helpbox' => 'エリアをヘルプします', - 'text_helpbox_note' => '登録やログインに問題がありますか?ここにメッセージを残してください', - 'text_message' => 'メッセージ:', - 'sumbit_shout' => '送信', - 'submit_clear' => 'クリア', - 'text_select_lang' => 'サイト言語を選択します:', - 'head_login' => 'ログイン', - 'rowhead_two_step_code' => '2段階の検証', - 'two_step_code_tooltip' => '設定がある場合は、記入する必要があります', - 'text_complain' => 'アピールチャネル', +$lang_login = array +( + 'h1_not_logged_in' => "ログインしていません!", + 'p_error' => "エラー:", + 'p_after_logged_in' => "表示しようとしているページは、ログイン時にのみ使用できます。", + 'p_need_cookies_enables' => "メモ: ログインまたは言語を切り替えるにはクッキーを有効にする必要があります。", + 'p_fail_ban' => "失敗したログインはあなたのIPを禁止する結果になります!", + 'p_you_have' => "持っている", + 'p_remaining_tries' => "残りの試行だ", + 'p_no_account_signup' => "アカウントをお持ちではありませんか? 今すぐサインアップ!", + 'p_forget_pass_recover' => "パスワードを忘れましたか? メールでパスワード を復元する", + 'p_account_banned' => "アカウントが禁止されていますか?ユーザー禁止のログ の理由を確認する", + 'p_resend_confirm' => "Did not receive confirmation mail or confirmation link is broken? Send confirmation mail again", + 'rowhead_username' => "ユーザー名:", + 'rowhead_password' => "パスワード:", + 'button_login' => "ログイン!", + 'button_reset' => "Reset", + 'text_auto_logout' => "自動ログアウト:", + 'text_restrict_ip' => "制限IP:", + 'text_ssl' => "SSL (HTTPS):", + 'checkbox_auto_logout' => " 15分後にログアウトする", + 'checkbox_restrict_ip' => " セッションを IP に制限する", + 'checkbox_ssl' => " SSL 暗号化を使用してウェブサイトを閲覧する (ウェブブラウザ)", + 'checkbox_ssl_tracker' => " トラッカーとSSL暗号化接続(BitTorrentクライアント)", + 'text_advanced_options' => "高度なオプション:", + 'text_helpbox' => "ヘルプボックス", + 'text_helpbox_note' => "サインアップまたはログインに問題がありますか?ここにメッセージを残してください", + 'text_message' => "メッセージ: ", + 'sumbit_shout' => "叫んでください", + 'submit_clear' => "クリア", + 'text_select_lang' => "サイト言語を選択: ", + 'head_login' => "ログイン", + 'rowhead_two_step_code' => '2要素認証', + 'two_step_code_tooltip' => '有効にする必要がある場合', + 'text_complain' => '苦情チャンネル', ); + +?> diff --git a/lang/ja/lang_mailtest.php b/lang/ja/lang_mailtest.php index cee04f0a..0b58d708 100644 --- a/lang/ja/lang_mailtest.php +++ b/lang/ja/lang_mailtest.php @@ -1,15 +1,18 @@ 'メールテスト', - 'text_mail_test' => 'メールテスト', - 'row_enter_email' => 'メールアドレスを入力してください', - 'text_enter_email_note' => 'yourname@gmail.comなど、テストメールの受信に使用されるメールアドレスを入力してください', - 'submit_send_it' => '送信!', - 'text_smtp_testing_mail' => 'テストメール', - 'std_error' => '間違い', - 'std_invalid_email_address' => '無効なメールアドレス!', - 'mail_test_mail_content' => 'こんにちは、このメッセージが表示されれば、SMTP電子メール送信機能は正常です。幸せな願い!', - 'std_success' => '成功', - 'std_success_note' => 'エラーは発生しませんでしたが、これは電子メールが正常に送信されたに違いないため、意図せずでした。メールアドレスを確認してください。', +$lang_mailtest = array +( + 'head_mail_test' => "メールテスト", + 'text_mail_test' => "メールテスト", + 'row_enter_email' => "メールアドレスを入力してください", + 'text_enter_email_note' => "テストメールを送信するメールアドレスを入力します。例: yourname@gmail.com", + 'submit_send_it' => "送信しよう!", + 'text_smtp_testing_mail' => " SMTPテストメール", + 'std_error' => "エラー", + 'std_invalid_email_address' => "無効なメールアドレスです!", + 'mail_test_mail_content' => "こんにちは、このメッセージが表示された場合、あなたのSMTP機能は素晴らしい機能です。", + 'std_success' => "成功", + 'std_success_note' => "エラーは見つかりませんでした。しかしこれはメールが100%到着したことを意味するものではありません。メールを確認してください。" ); + +?> diff --git a/lang/ja/lang_makepoll.php b/lang/ja/lang_makepoll.php index 942f1752..7746337a 100644 --- a/lang/ja/lang_makepoll.php +++ b/lang/ja/lang_makepoll.php @@ -1,21 +1,24 @@ '間違い', - 'std_no_poll_id' => 'この投票IDは存在しません', - 'std_missing_form_data' => '必要なアイテムに記入してください!', - 'head_edit_poll' => '投票を編集します', - 'text_edit_poll' => '投票を編集します', - 'head_new_poll' => '新しい票', - 'text_day' => '空', - 'text_hour' => '時間', - 'text_current_poll' => '注:現在の投票', - 'text_is_only' => '投稿のみ', - 'text_old' => '。', - 'text_make_poll' => '新しい票', - 'text_question' => '質問', - 'text_option' => 'オプション', - 'submit_edit_poll' => '投票を編集します', - 'submit_create_poll' => '投票を作成します', - 'text_required' => '記入する必要があります', +$lang_makepoll = array +( + 'std_error' => "エラー", + 'std_no_poll_id' => "このIDの投票は見つかりませんでした。", + 'std_missing_form_data' => "フォームデータがありません!", + 'head_edit_poll' => "投票の編集", + 'text_edit_poll' => "投票の編集", + 'head_new_poll' => "新しい投票", + 'text_day' => " 日", + 'text_hour' => " 時", + 'text_current_poll' => "注: 現在の意識調査 ", + 'text_is_only' => " のみです ", + 'text_old' => " 年寄りだ", + 'text_make_poll' => "投票を作成", + 'text_question' => "質問", + 'text_option' => "Option ", + 'submit_edit_poll' => "投票の編集", + 'submit_create_poll' => "アンケートを作成", + 'text_required' => " 必須" ); + +?> diff --git a/lang/ja/lang_messages.php b/lang/ja/lang_messages.php index 8ef4f2d4..e8188462 100644 --- a/lang/ja/lang_messages.php +++ b/lang/ja/lang_messages.php @@ -1,78 +1,81 @@ '間違い', - 'std_invalid_mailbox' => '無効なSMSボックス', - 'text_inbox' => '受信トレイ', - 'text_sentbox' => 'アウトボックス', - 'text_sender' => '送信者', - 'text_receiver' => 'メッセージ受信者', - 'col_status' => '州', - 'col_subject' => 'テーマ', - 'col_date' => '日付', - 'col_act' => '行動', - 'text_no_messages' => 'テキストメッセージはありません', - 'text_remove_from_friends' => '[友達を削除]', - 'text_add_to_friends' => '[友達として追加]', - 'submit_move_to' => 'に移動します', - 'text_or' => 'または', - 'submit_delete' => '消去', - 'text_unread_messages' => '未読メッセージ', - 'text_read_messages' => 'メッセージを読んでください', - 'text_mailbox_manager' => 'SMSボックス管理', - 'std_no_permission' => 'メッセージを読む許可はありません。', - 'text_to' => 'に', - 'text_from' => '以来', - 'text_new' => '(新しい)', - 'text_reply' => '返事', - 'text_delete' => '消去', - 'text_forward_pm' => 'メッセージを転送します', - 'std_cannot_move_messages' => 'テキストメッセージを移動できません!', - 'std_cannot_delete_messages' => 'テキストメッセージを削除できません!', - 'std_no_action' => '動作なし', - 'std_no_permission_forwarding' => 'メッセージを転送する許可はありません。', - 'row_to' => 'に:', - 'row_original_receiver' => '元のレシーバー:', - 'row_original_sender' => '元のメッセージ:', - 'row_subject' => 'テーマ:', - 'row_message' => '文章:', - 'checkbox_save_message' => 'メッセージを保存します', - 'submit_forward' => 'フォワード', - 'std_no_such_user' => '申し訳ありませんが、ユーザー名アカウントは存在しません。', - 'std_rufused' => '拒否する', - 'std_user_blocks_your_pms' => 'このユーザーはあなたのメッセージを受け入れることを拒否します。', - 'std_user_accepts_friends_pms' => 'このユーザーは、友人からのテキストメッセージのみを受け入れます。', - 'std_user_blocks_all_pms' => 'ユーザーはすべてのテキストメッセージを受け入れることを拒否しました。', - 'std_success' => '成功', - 'std_pm_forwarded' => '正常に再投稿します', - 'head_editing_mailboxes' => 'SMSボックスを編集します', - 'text_editing_mailboxes' => 'SMSボックスを編集します', - 'text_add_mailboxes' => 'メッセージボックスを追加します', - 'text_extra_mailboxes_note' => '追加のメッセージボックスを追加できます。受信トレイを使用する必要はありません。', - 'submit_add' => 'に追加', - 'text_edit_mailboxes' => 'SMSボックスを編集します', - 'text_edit_mailboxes_note' => '名前を編集したり、SMSボックスを削除したりできます。
        注:SMSボックスを削除すると、すべてのSMSメッセージが削除されます。', - 'text_no_mailboxes_to_edit' => '編集可能なSMSボックスはありません。', - 'submit_edit' => '編集', - 'std_no_message_id' => 'このIDにテキストメッセージはありません。', - 'std_could_not_delete_message' => 'メッセージを削除することはできません。', - 'text_jump_to' => 'SMSボックス:', - 'select_inbox' => '受信トレイ', - 'select_sentbox' => 'アウトボックス', - 'submit_go' => '私を探してください', - 'input_check_all' => 'すべてを選択します', - 'input_uncheck_all' => '何も選択しないでください', - 'title_unread' => '読まないでください', - 'title_read' => '読む', - 'text_system' => 'システム', - 'text_no_subject' => 'トピックはありません', - 'col_search_message' => '短いメッセージを検索します', - 'text_search' => '検索:', - 'text_in' => '範囲:', - 'select_title' => 'タイトル', - 'select_body' => '文章', - 'select_both' => '両方', - 'submit_mark_as_read' => '読み取りとして設定します', - 'std_cannot_mark_messages' => 'メッセージを読むように設定することはできません。', - 'std_no_message_selected' => '操作するメッセージを選択してください。', +$lang_messages = array +( + 'std_error' => "エラー", + 'std_invalid_mailbox' => "無効なメールボックス", + 'text_inbox' => "受信トレイ", + 'text_sentbox' => "Sentbox", + 'text_sender' => "送信者", + 'text_receiver' => "受信者", + 'col_status' => "ステータス", + 'col_subject' => "件名", + 'col_date' => "日付", + 'col_act' => "Act.", + 'text_no_messages' => "メッセージはありません。", + 'text_remove_from_friends' => "[Remove from friends]", + 'text_add_to_friends' => "[フレンドに追加]", + 'submit_move_to' => "Move to", + 'text_or' => " または ", + 'submit_delete' => "削除", + 'text_unread_messages' => " 未読のメッセージ", + 'text_read_messages' => " メッセージを読む。", + 'text_mailbox_manager' => "メールボックスの管理", + 'std_no_permission' => "メッセージを表示する権限がありません.", + 'text_to' => "終了日", + 'text_from' => "差出人:", + 'text_new' => "(新規)", + 'text_reply' => "返信", + 'text_delete' => "削除", + 'text_forward_pm' => "PMを転送", + 'std_cannot_move_messages' => "メッセージを移動できませんでした! ", + 'std_cannot_delete_messages' => "メッセージを削除できませんでした! ", + 'std_no_action' => "アクションなし", + 'std_no_permission_forwarding' => "メッセージを転送する権限がありません.", + 'row_to' => "宛先: ", + 'row_original_receiver' => "Orignal Receiver:", + 'row_original_sender' => "Orignal Sender:", + 'row_subject' => "件名:", + 'row_message' => "メッセージ:", + 'checkbox_save_message' => "メッセージを保存 ", + 'submit_forward' => "転送", + 'std_no_such_user' => "申し訳ありませんが、そのユーザー名のユーザーはありません。", + 'std_rufused' => "拒否", + 'std_user_blocks_your_pms' => "このユーザーはあなたからのPMをブロックしました。", + 'std_user_accepts_friends_pms' => "このユーザーはフレンドリストのユーザーからのPMのみ受け付けます。", + 'std_user_blocks_all_pms' => "このユーザーはPMを受け入れません。", + 'std_success' => "成功", + 'std_pm_forwarded' => "PM転送済み", + 'head_editing_mailboxes' => "メールボックスの編集", + 'text_editing_mailboxes' => "メールボックスの編集", + 'text_add_mailboxes' => "メールボックスを追加", + 'text_extra_mailboxes_note' => "追加のメールボックスを追加できます。すべての入力ボックスを使用する必要はありません。", + 'submit_add' => "追加", + 'text_edit_mailboxes' => "メールボックスの編集", + 'text_edit_mailboxes_note' => "名前を編集したり、この仮想ディレクトリを削除したりすることができます。
        このディレクトリを削除すると、このディレクトリ内のすべてのメッセージが失われますのでご注意ください。 ", + 'text_no_mailboxes_to_edit' => "編集するメールボックスがありません。", + 'submit_edit' => "編集", + 'std_no_message_id' => "このIDのメッセージはありません。", + 'std_could_not_delete_message' => "メッセージを削除できませんでした。", + 'text_jump_to' => " に ", + 'select_inbox' => "受信トレイ", + 'select_sentbox' => "Sentbox", + 'submit_go' => "移動", + 'input_check_all' => "すべてチェック", + 'input_uncheck_all' => "すべてのチェックを外す", + 'title_unread' => "未読です", + 'title_read' => "既読にする", + 'text_system' => "システム", + 'text_no_subject' => "件名なし", + 'col_search_message' => "メッセージを検索", + 'text_search' => "検索: ", + 'text_in' => "in", + 'select_title' => "タイトル", + 'select_body' => "body", + 'select_both' => "両方とも", + 'submit_mark_as_read' => "Mark as read", + 'std_cannot_mark_messages' => "メッセージを既読としてマークできませんでした。", + 'std_no_message_selected' => "メッセージが選択されていません。" ); + +?> diff --git a/lang/ja/lang_moforums.php b/lang/ja/lang_moforums.php index 31f05c5b..b3333ed3 100644 --- a/lang/ja/lang_moforums.php +++ b/lang/ja/lang_moforums.php @@ -1,23 +1,26 @@ 'フォーラムパーティション管理', - 'text_forum_management' => 'フォーラム管理', - 'text_overforum_management' => 'フォーラムパーティション管理', - 'col_name' => '名前', - 'col_viewed_by' => '最小許容表示レベル', - 'col_modify' => '改訂', - 'text_edit' => '編集', - 'text_delete' => '消去', - 'js_sure_to_delete_overforum' => 'このフォーラムパーティションを削除したいですか?', - 'text_no_records_found' => '申し訳ありませんが、記録はありません!', - 'text_new_overforum' => '新しいフォーラムパーティション', - 'text_overforum_name' => '名前', - 'text_overforum_description' => '説明する', - 'text_minimum_view_permission' => '最小許可読み取りレベル', - 'text_overforum_order' => 'フォーラムパーティションソート', - 'text_overforum_order_note' => '数字の昇順でアレンジ、つまり、0が上部に表示されます。', - 'submit_make_overforum' => '新しいパーティションを作成します', - 'text_edit_overforum' => 'パーティションを編集します', - 'submit_edit_overforum' => 'パーティションを編集します', +$lang_moforums = array +( + 'head_overforum_management' => "オーバーフォーラム管理", + 'text_forum_management' => "フォーラム管理", + 'text_overforum_management' => "オーバーフォーラム管理", + 'col_name' => "名前", + 'col_viewed_by' => "閲覧者", + 'col_modify' => "変更", + 'text_edit' => "編集", + 'text_delete' => "削除", + 'js_sure_to_delete_overforum' => "このオーバーフォーラムを削除してもよろしいですか?", + 'text_no_records_found' => "申し訳ありませんが、レコードが見つかりませんでした!", + 'text_new_overforum' => "New Overforum", + 'text_overforum_name' => "オーバーフォーラム名", + 'text_overforum_description' => "フォーラムの説明を上書き", + 'text_minimum_view_permission' => "最小表示権限", + 'text_overforum_order' => "オーバフォーラムの注文", + 'text_overforum_order_note' => "上位順。つまり、0が最上位に表示されます。", + 'submit_make_overforum' => "オーバーフォーラムを作成", + 'text_edit_overforum' => "オーバーフォーラムを編集", + 'submit_edit_overforum' => "オーバーフォーラムを編集" ); + +?> diff --git a/lang/ja/lang_moresmilies.php b/lang/ja/lang_moresmilies.php index 3c9f2379..20cc3582 100644 --- a/lang/ja/lang_moresmilies.php +++ b/lang/ja/lang_moresmilies.php @@ -1,6 +1,9 @@ 'より多くの表現', - 'text_close' => '閉鎖', +$lang_moresmilies = array +( + 'head_more_smilies' => "より多くのクリック可能なスマイリー", + 'text_close' => "閉じる", ); + +?> diff --git a/lang/ja/lang_mybonus.php b/lang/ja/lang_mybonus.php index 809a9e88..73ad060b 100644 --- a/lang/ja/lang_mybonus.php +++ b/lang/ja/lang_mybonus.php @@ -1,173 +1,173 @@ 'ごめん!', - 'std_karma_system_disabled' => 'Magic Valueシステムは現在シャットダウンされています。', - 'std_points_active' => 'しかし、あなたの魔法の価値はまだ計算されています。', - 'text_success_upload' => 'おめでとうございます、アップロード値を正常に増やしました!', - 'text_success_download' => 'おめでとうございます、あなたはダウンロード値を正常に増やしました!', - 'text_success_invites' => 'おめでとうございます、あなたは 1 新しい招待スロットを入手しました!', - 'text_success_vip' => 'おめでとうございます、あなたは月を稼ぎました', - 'text_success_vip_two' => '資格!', - 'text_no_permission' => 'エラー! 許可はありません。', - 'text_success_custom_title' => '%s のタイトルを獲得してくれておめでとうございます。', - 'text_success_gift' => 'あなたは私に魔法の価値を私に与えてくれました。', - 'head_karma_page' => '魔法の価値', - 'text_karma_system' => 'マジックバリューシステム', - 'text_exchange_your_karma' => '魔法の価値を使用してください(現在', - 'text_for_goodies' => ')何かを変える!', - 'text_no_buttons_note' => 'ボタンがクリックできない場合、魔法の価値はアイテムを交換するのに十分ではありません。', - 'col_option' => 'プロジェクト', - 'col_description' => '導入', - 'col_points' => '価格', - 'col_trade' => '交換', - 'text_username' => 'ユーザー名:', - 'text_to_be_given' => 'ギフト:', - 'text_karma_points' => '魔法の価値!', - 'text_enter_titile' => '特別タイトルを入力してください', - 'text_click_exchange' => 'クリックして交換してください!', - 'text_enter_receiver_name' => 'Gift Magic Valueオブジェクトの username を入力し、ギフトの金額を選択してギフトをクリックしてください!', - 'text_min' => '少しでも', - 'text_max' => 'ほとんど', - 'submit_karma_gift' => '贈り物', - 'text_plus_only' => '上だけ!', - 'submit_exchange' => '交換', - 'text_unavailable' => '現在利用できません!', - 'text_more_points_needed' => 'もっと魔法のポイントが必要です', - 'text_what_is_karma' => '魔法の価値は何ですか、そしてどうすればそれを手に入れることができますか?', - 'text_get_by_seeding' => '1時間ごとに、次の魔法の価値が得られます', - 'text_for_seeding_torrent' => '* シード番号(シード番号の最大数', - 'text_torrent' => '個々', - 'text_donors_always_get' => '寄付者は得られます', - 'text_times_of_bonus' => '魔法の価値の時代', - 'text_other_things_get_bonus' => '取得する他の方法', - 'text_point' => '魔法の価値', - 'text_upload_torrent' => '新しい種子をリリース=', - 'text_upload_subtitle' => 'subtitle =をアップロードします', - 'text_start_topic' => '新しいトピックを公開=', - 'text_make_post' => 'post =に返信します', - 'text_add_comment' => 'シードを投稿してください、候補コメント=', - 'text_poll_vote' => '世論調査に参加します=', - 'text_offer_vote' => '候補者の投票=に参加します', - 'text_funbox_vote' => '楽しいボックス投票=に参加します', - 'text_rate_torrent' => 'rating seed =', - 'text_say_thanks' => 'ありがとう=', - 'text_receive_thanks' => '受信した感謝=', - 'text_funbox_reward' => 'Fun Boxが公開したコンテンツは、ユーザーのレビューが高いことを受け取りました(詳細についてはルールを参照)', - 'text_howto_get_karma_four' => '
      -

      -
        ', - 'text_howto_get_karma_five' => '
      • 同じものを取得するのとは反対のイベントも、魔法の価値を消費します。
        たとえば、シードをアップロードして削除すると、最初に入手してから失います', - 'text_howto_get_karma_six' => '。
      • -
      • サイトに魔法の値を取得する他のことがあります。ゆっくりと探索してください。 :)
      • -
      • 管理グループは、ユーザーがルールに違反するか、貢献をするかに応じて、魔法の値を奪うか、発行できます。
      • -
      ', - 'std_no_permission' => '許可なし', - 'std_class_above_vip' => 'あなたのレベルはあなたのVIPよりも高いです!', - 'text_wasted_karma' => '魔法の価値を無駄にしました', - 'text_huh' => '親切?', - 'text_karma_self_giving_warning' => '兄弟、あなたは十分にプレイしましたか...
      あなたは自分自身に魔法の価値を与えることはできません...
      あなたがそれを与えたいなら、別のユーザーを選択してください!

      クリックしてマジック値ページに戻ります。', - 'text_receiver_not_exists' => '申し訳ありません...
      このユーザーは存在しません。

      クリックしてマジック値ページ。', - 'text_oups' => 'ああ!', - 'text_not_enough_karma' => 'ごめんなさい、あなたは十分な魔法を持っていません!
      マジック値ページをクリックしてください。', - 'text_cheat_alert' => 'チートしたいですか?とんでもない!', - 'text_not_enough_bonus' => '申し訳ありませんが、十分な魔法がありません。また、どうやってここに来たのですか?', - 'text_uploaded_one' => '1.0 GBアップロードボリューム', - 'text_uploaded_note' => '十分な魔法の価値がある場合は、アップロードと交換できます。トランザクションが完了すると、魔法の価値が低下し、アップロード量が増加します。', - 'text_download_note' => '十分な魔法の価値がある場合は、ダウンロードと引き換えに使用できます。トランザクションが完了すると、魔法の価値が低下し、ダウンロードボリュームが増加します。', - 'text_uploaded_two' => '5.0 GBアップロードボリューム', - 'text_uploaded_three' => '10.0 GBアップロードボリューム', - 'text_uploaded_four' => '100.0 GBアップロードボリューム', - 'text_downloaded_ten_gb' => '10.0 gb ダウンロード', - 'text_downloaded_hundred_gb' => '100.0 gb ダウンロード', - 'text_buy_invite' => '1つの招待状の割り当て', - 'text_buy_invite_note' => '十分な魔法の価値がある場合は、招待スロットと交換できます。トランザクションが完了すると、魔法の価値が低下し、招待の数が増加します。', - 'text_custom_title' => 'カスタムタイトル', - 'text_custom_title_note' => '十分な魔法がある場合は、自分にタイトルを与えることができます。注:宣誓、積極的な語彙、またはユーザーランクは禁止されています。トランザクションが完了すると、魔法の価値が低下し、タイトルがカスタムの価値になります。', - 'text_vip_status' => 'VIP治療', - 'text_vip_status_note' => '十分な魔法がある場合は、1か月のVIP治療と交換できます。トランザクションが完了すると、魔法の価値が低下し、レベルがVIPになります。', - 'text_bonus_gift' => 'ギフトの魔法の価値', - 'text_bonus_gift_note' => 'たぶんあなたは魔法の価値を必要としないので、それを必要とする人にそれを与えてみませんか?あなたは贈り物として他の人にあなたの魔法の価値を与えることができます。トランザクションが完了すると、魔法の価値が低下し、ギフト受信者の魔法の価値が増加します。同時に、受信者はあなたのギフトに関するテキストメッセージを受け取ります。', - 'text_error' => '間違い', - 'text_ratio_too_high' => '共有率はすでに非常に高いです', - 'text_bonus_formula_one' => '1時間あたり得られた魔法のポイントの数は、以下の式で与えられます


      -ここで、
      • a は中間変数
      • ti は最初の種の生存時間、つまりシードのリリースから現在までの時間であり、ユニットはパラメーターとして週T0 です。 t0 =', - 'text_bonus_formula_two' => '
      • si i 3番目の種のサイズであり、ユニットはgb
      • ni は、パラメーターとしての現在のシードメーカーの数です
      • n0 n0 =', - 'text_bonus_formula_three' => '
      • b は、ユーザーが1時間で得た魔法の値ポイントの数
      • は、1時間でユーザーが取得した魔法の値の上限を表します。 b0 =', - 'text_bonus_formula_four' => '
      • l はパラメーターです。 l =', - 'text_bonus_formula_five' => '
      要するに、少数の種子と大きなファイルサイズを備えた種子を作ると、より多くの魔法の価値が得られます。', - 'text_bonus_formula_wi' => '
    • wi i thシードの重量係数、デフォルトは1、ゼロマジックシードは', - 'text_user_with_ratio_above' => 'より高い共有率', - 'text_and_uploaded_amount_above' => 'そして、アップロードボリュームはより大きくなります', - 'text_cannot_exchange_uploading' => 'GBユーザーは、より多くのアップロードと交換できません。', - 'text_you_are_currently_getting' => 'あなたはそれを1時間ごとに入手できます', - 'text_per_hour' => '', - 'text_custom' => 'カスタマイズ', - 'bonus_amount_not_allowed' => '魔法の価値は許可されていません。毎回25.0〜1000.0のマジックポイントしか渡すことができません。', - 'text_system_charges_receiver' => '注:システムは、システムからギフト受信者を要求します', - 'text_tax_bonus_point' => '魔法の価値', - 'text_tax_plus' => '+', - 'text_percent_of_transfered_amount' => '% *ギフト額の魔法の価値', - 'text_as_tax' => '税として。たとえば、100個の魔法の値を配ることを選択した場合、受信者は実際にそれを受け取るだけです。', - 'text_tax_example_note' => '魔法の価値。', - 'text_no_advertisements' => '広告は表示されません', - 'text_no_advertisements_note' => '十分な魔法の価値がある場合は、特定の期間広告を表示しない許可と交換できます。トランザクションが完了した後、魔法の価値が低下し、一定期間ウェブサイトに広告が表示されません。この時間に広告を表示する必要がある場合は、いつでもコントロールパネルでオンにすることができます。', - 'text_success_no_ad' => '広告なしの時間をお楽しみください!', - 'submit_class_above_no_ad' => 'コントロールパネルの広告を閉じることができます', - 'submit_already_disabled' => '広告は閉じることができます', - 'text_click_on_ad' => '広告に対して1回クリックします(広告ごとに1回だけカウント)=', - 'text_promotion_link_clicked' => 'プロモーションリンクはクリックします(IPごとに1回だけカウントされます)=', - 'text_charity_giving' => '慈善寄付', - 'text_charity_giving_note' => '困っているユーザーとの慈善寄付を通じて、魔法の価値を与えることができます。さらに、ギフトグループの条件を決定するのは完全にあなた次第です。', - 'text_ratio_below' => 'ユーザーに均等に割り当てられます:共有率はより低いです', - 'text_and_downloaded_above' => 'そして、ダウンロードボリュームはより大きくなっています', - 'text_select_receiver_ratio' => '寄付するユーザーグループの共有率を選択し、提供する総魔法の価値を選択し、チャリティ寄付をクリックします!', - 'submit_charity_giving' => '慈善寄付', - 'text_message' => 'メッセージ:', - 'bonus_amount_not_allowed_two' => '魔法の価値は許可されていません。毎回1000.0〜50000.0の魔法の値しか与えません。', - 'bonus_ratio_not_allowed' => '共有率は要件を満たしていません! 0.8未満の共有率を持つユーザーのみが慈善援助が必要です。', - 'std_no_users_need_charity' => '当面の間慈善援助を必要とするユーザーはいません。', - 'text_success_charity' => 'ありがとう!寛大な寄付ありがとうございます。', - 'text_cancel_hr_title' => 'H&Rエリミネーション', - 'text_cancel_hr_label' => '排除するH&R IDを入力してください:', - 'text_success_cancel_hr' => 'H&Rは正常に排除されました。', - 'text_success_buy_medal' => 'メダルを正常に購入しました。', - 'text_attendance_card' => '再署名に購入してサインアップします', - 'text_attendance_card_note' => '1枚のカードは、再署名のために1日で消費されます。ターゲット日付の再署名から得られた魔法の報酬は、通常の計算に従って計算されます。つまり、目標日は、報酬を受け取るために連続日数を計算するために転送されます。', - 'text_success_buy_attendance_card' => '再署名カードを正常に購入しました。', - 'text_harem_addition_get' => '現在のハーレムボーナスは、1時間あたり%Sマジックを獲得しています', - 'reward_type' => '報酬タイプ', - 'factor' => '係数', - 'got_bonus' => '魔法を獲得します', - 'total' => '合計', - 'reward_type_basic' => '基本的な報酬', - 'reward_type_harem_addition' => 'ハーレムボーナス', - 'bonus_base' => '基本的な魔法', - 'lock_text' => 'システム制限%sスワップボタンを1秒単位でクリックしてください!', - 'text_get_by_seeding_official' => '公式ボーナスは1時間ごとに次の魔法の価値を得るでしょう', - 'official_calculate_method' => '公式タイプの報酬を計算するための式は上記と同じですが、公式タイプに対して計算のみが行われ、最小の生活セキュリティは考慮されません', - 'official_tag_bonus_additional_factor' => '最終報酬は、計算された公式タイプの報酬に公式タイプ係数を掛けたことです。現在の公式タイプ係数は次のとおりです。', - 'reward_type_official_addition' => '公式ボーナス', - 'text_get_by_harem' => 'ハーレムボーナスは1時間ごとに次の魔法の価値を取得します', - 'harem_additional_desc' => 'ハーレムは直接のハーレムのみを考慮します。各ハーレムボーナス値はここで見ることができます。', - 'harem_additional_note' => '注:自分でシードを作成しない場合、このボーナスはユーザーアカウントに増加しません。', - 'harem_additional_factor' => '受け取った報酬は、すべてのハーレムの時間悪魔(ボーナスなし)の合計であり、ハーレムのボーナス係数を掛け、現在の値は次のとおりです。', - 'text_bonus_summary' => '1時間あたりの総魔法の価値', - 'col_count' => '量', - 'col_size' => '音量', - 'col_a' => '値', - 'text_buy_tmp_invite' => '1一時的な招待クォータ', - 'text_buy_tmp_invite_note' => '十分な魔法の価値がある場合は、7日間有効な一時的な招待スロットと交換できます。トランザクションが完了すると、魔法の価値が低下し、招待される一時的な場所の数が増加します。', - 'text_success_tmp_invites' => 'おめでとうございます、あなたは 1 新しい一時的な招待スロットを入手しました!', - 'text_buy_rainbow_id' => 'レインボーIDを購入します', - 'text_buy_rainbow_id_note' => '30日間の有効期間で、ユーザー名に虹のような効果を追加し、繰り返し購入時間が蓄積されます。', - 'text_success_buy_rainbow_id' => 'おめでとうございます、レインボーIDは30日間増加しました!', - 'text_buy_change_username_card' => '名前変更カードを購入します', - 'text_buy_change_username_card_note' => 'ユーザー名を一度変更すると、永久に有効になります。', - 'text_success_buy_change_username_card' => ' name Change Card の購入に成功したことをおめでとうございます!', - 'text_change_username_card_already_has' => 'すでに名前の変更カードを持っています', - 'text_rainbow_id_already_valid_forever' => 'Rainbow IDを永久に所有しています', - 'text_get_by_medal' => 'メダルボーナスは1時間ごとに次の魔法の価値を得る', - 'medal_additional_desc' => 'メダル報酬を計算するための公式は上記と同じであり、最小限の生活セキュリティは考慮されていません', - 'medal_additional_factor' => '最終報酬は、計算されたメダル報酬にメダルボーナス係数を掛けたことです。現在のメダルボーナス係数は次のとおりです。', +$lang_mybonus = array +( + 'std_sorry' => "申し訳ありません。", + 'std_karma_system_disabled' => "カルマボーナスポイントシステムは現在無効です。 ", + 'std_points_active' => "しかし、あなたのポイントはまだアクティブです。", + 'text_success_upload' => "Congratulations! You have just increased your Uploaded Amount!", + 'text_success_download' => "おめでとうございます! ダウンロード数が増加しました!", + 'text_success_invites' => "おめでとうございます! 新しい招待状を取得しました!", + 'text_success_vip' => "おめでとうございます!自分自身を手に入れました。 ", + 'text_success_vip_two' => " 1か月間の状況を!", + 'text_no_permission' => "エラー! 権限がありません。", + 'text_success_custom_title' => "おめでとうございます!あなたは %s として知られています!", + 'text_success_gift' => " あなたは カルマ をよく広めました。", + 'head_karma_page' => "'s Karma Bonus Page", + 'text_karma_system' => " カルマボーナスポイントシステム", + 'text_exchange_your_karma' => "カルマボーナスポイントを交換(現在) ", + 'text_for_goodies' => " )グッズ用!", + 'text_no_buttons_note' => "ボタンが無効の場合、取引するための十分なボーナスポイントを獲得していません。 ", + 'col_option' => "Option", + 'col_description' => "説明", + 'col_points' => "制御点", + 'col_trade' => "取引", + 'text_username' => "ユーザー名: ", + 'text_to_be_given' => "与えられる: ", + 'text_karma_points' => " カルマポイント!", + 'text_enter_titile' => "希望する 特別称号 を入力してください ", + 'text_click_exchange' => " エクスチェンジをクリック! ", + 'text_enter_receiver_name' => "カルマを送信したい人の ユーザー名 を入力してください そして、どれだけのポイントを送るかを選択し、カルマギフトをクリックしてください!", + 'text_min' => "分", + 'text_max' => "マックス", + 'submit_karma_gift' => "Karma Gift!", + 'text_plus_only' => "+ のみ!", + 'submit_exchange' => "Exchange!", + 'text_unavailable' => "現在利用できません!", + 'text_more_points_needed' => "もっと ポイントが必要", + 'text_what_is_karma' => "このカルマボーナスポイントは何ですか?どうやって手に入れるのですか?", + 'text_get_by_seeding' => "1時間あたりのカルマポイントを種付けることによって得られます:", + 'text_for_seeding_torrent' => " あなたが種付けしている各トレントについて(最大: ", + 'text_torrent' => " Torrent", + 'text_donors_always_get' => "寄付者は常に獲得する ", + 'text_times_of_bonus' => "xのボーナスポイント。", + 'text_other_things_get_bonus' => "カルマポイントを得る他のもの:", + 'text_point' => " ポイント", + 'text_upload_torrent' => "新しいTorrent をアップロードしています ", + 'text_upload_subtitle' => "字幕をアップロード中 = ", + 'text_start_topic' => "トピックの開始 = ", + 'text_make_post' => "投稿の作成 = ", + 'text_add_comment' => "Torrent またはオファーへのコメント = ", + 'text_poll_vote' => "vote on poll = ", + 'text_offer_vote' => "オファーに投票する = ", + 'text_funbox_vote' => "funbox に投票する = ", + 'text_rate_torrent' => "Torrent を評価 = ", + 'text_say_thanks' => "「ありがとう」= ", + 'text_receive_thanks' => "感謝を受け取る= ", + 'text_funbox_reward' => "高い評価を受けたファンボックスのものを投稿する (ルールを参照)", + 'text_howto_get_karma_four' => "
    +

    心に留めておくべきこと:

    +
      ", + 'text_howto_get_karma_five' => "
    • カルマを手に入れられるものはすべて失われることもある。
      i. をクリックします。トレントをアップロードした場合、削除するとゲインが得られて失われます。 ", + 'text_howto_get_karma_six' => ".
    • +
    • There are always other hidden bonus karma points over the site. Try to find them :)
    • +
    • Staff can give or take away points for breaking the rules, or doing good for the community.
    • +
    ", + 'std_no_permission' => "権限がありません", + 'std_class_above_vip' => "VIP以上のクラス!", + 'text_wasted_karma' => "私は自分のカルマを無駄にした", + 'text_huh' => "は?", + 'text_karma_self_giving_warning' => "Not so fast there Mr. fancy pants...
    You can not spread the karma to yourself...
    If you want to spread the love, pick another user!

    click to go back to your Karma Bonus Point page.", + 'text_receiver_not_exists' => "申し訳ありません...
    そのユーザー名

    クリックして Karma Bonus Point ページに戻ります。", + 'text_oups' => "OUPS!", + 'text_not_enough_karma' => "申し訳ありませんが、カルマポイントが足りません!
    カルマボーナスポイント ページに戻ります。", + 'text_cheat_alert' => "ふざけるな!お前がズルをしようとしているのは知っている!", + 'text_not_enough_bonus' => "申し訳ありませんが、あなたは十分なボーナスを持っていません。BTW、あなたはここでどのように得るのですか?", + 'text_uploaded_one' => "1.0 GB アップロード済み", + 'text_uploaded_note' => "十分なボーナスポイントを取得すると、アップロードクレジットと交換できます。 ポイントがボーナスバンクから削除され、クレジットが合計アップロードされた金額に追加されます。", + 'text_download_note' => "With enough bonus points acquired, you are able to exchange them for an Download Credit. The points are then removed from your Bonus Bank and the credit is added to your total downloaded amount.", + 'text_uploaded_two' => "5.0 GB アップロードしました", + 'text_uploaded_three' => "10.0 GB アップロードしました", + 'text_uploaded_four' => "100.0 GB アップロードしました", + 'text_downloaded_ten_gb' => "10.0 GB Downloaded", + 'text_downloaded_hundred_gb' => "100.0 GB Downloaded", + 'text_buy_invite' => "1人の招待", + 'text_buy_invite_note' => "十分なボーナスポイントを取得すると、いくつかの招待のために交換することができます。 ポイントがボーナスバンクから削除され、招待状が招待金額に追加されます。", + 'text_custom_title' => "カスタムタイトル", + 'text_custom_title_note' => "十分なボーナスポイントを取得すると、カスタムタイトルを購入することができます。 唯一の制限は、悪質または攻撃的な言語、またはユーザークラスの名前ではありません。 ポイントがボーナスバンクから削除され、特別なタイトルが選択したタイトルに変更されます。", + 'text_vip_status' => "VIPステータス", + 'text_vip_status_note' => "十分なボーナスポイントを獲得すると、1ヶ月間VIPステータスを購入できます。 ポイントがボーナスバンクから削除され、ステータスが変更されます。", + 'text_bonus_gift' => "カルマギフトを与える", + 'text_bonus_gift_note' => "おそらくアップロードクレジットは必要ありませんが、Karmaブーストを使用できる人を知っています! これで、カルマのクレジットを贈ることができます! ポイントはボーナスバンクから削除され、ユーザーのアカウントに追加されます! そして、彼らはすべての情報とそれが誰から来たのかと同様に、PMを受け取ります...", + 'text_error' => "エラー", + 'text_ratio_too_high' => "比率が高いです。", + 'text_bonus_formula_one' => "The number of karma points gained per hour is given by the following formula

        
        
    +where
    • A is an intermediate variable
    • Ti is the ith torrent's Time Alive (TA), i.e. time elapsed since the torrent was uploaded, in weeks
    • T0 is a parameter. T0 = ", + 'text_bonus_formula_two' => "
    • Si is the ith torrent's size, in GB
    • Ni is the number of current seeders of the ith torrent
    • N0 is a parameter. N0 = ", + 'text_bonus_formula_three' => "
    • B is the number of karma points gained by seeding in an hour
    • B0 is a parameter, which stands for the maximum bonus points per hour a user can get by seeding. B0 = ", + 'text_bonus_formula_four' => "
    • L はパラメータです。 L= ", + 'text_bonus_formula_five' => "
    一言で言えば、シードが少なく、より大きなトレントを種まきすることで、より多くのボーナスを得ることができます。", + 'text_bonus_formula_wi' => "
  • Wi is the ith torrent's weight, default is 1, zero bonus torrent is ", + 'text_user_with_ratio_above' => "上記の比率を持つユーザー ", + 'text_and_uploaded_amount_above' => " アップロードされた金額 ", + 'text_cannot_exchange_uploading' => " GBはこれ以上のクレジットのアップロードと交換できません。", + 'text_you_are_currently_getting' => "現在取得しています ", + 'text_per_hour' => " 1時間あたり", + 'text_custom' => "カスタム", + 'bonus_amount_not_allowed' => "ボーナス額は許可されていません!毎回25.0ポイントから1000.0ポイントしか与えられません。", + 'text_system_charges_receiver' => "注意: ギフト受信者に請求します ", + 'text_tax_bonus_point' => " ボーナスポイント", + 'text_tax_plus' => " + ", + 'text_percent_of_transfered_amount' => "送金額の%", + 'text_as_tax' => " を税として入力します。例えば受信者は、 ", + 'text_tax_example_note' => " ギフトとして彼に100ポイントのボーナスポイントを送った時のポイント。", + 'text_no_advertisements' => " 広告なしの日数", + 'text_no_advertisements_note' => "十分なボーナスポイントを取得すると、あなたはこのサイトで広告を見ないことを選択することができます中に自分自身にいくつかの時間を購入することができます。 ポイントはボーナスバンクから削除され、一定期間広告は表示されません。 ただし、ユーザーCPでいつでも広告を再び有効にすることができます。 ", + 'text_success_no_ad' => "広告なしであなたの時間をお楽しみください!", + 'submit_class_above_no_ad' => "ユーザーCPの広告を無効にする", + 'submit_already_disabled' => "広告は既に無効になっています", + 'text_click_on_ad' => "広告をクリックしてください (各広告は1回のみカウントされます) = ", + 'text_promotion_link_clicked' => "プロモーションリンクがクリックされます(各IPは1回のみカウントされます) = ", + 'text_charity_giving' => "チャリティー寄付", + 'text_charity_giving_note' => "チャリティーは困っている人々に直接向かいます誰が寛大に恩恵を受けるかはあなた次第です", + 'text_ratio_below' => "以下の比率を持つ人に与える ", + 'text_and_downloaded_above' => " 上にダウンロードしました ", + 'text_select_receiver_ratio' => "慈善団体を希望する人々の 比率 を選択してください そして、送付したいポイントを選択し、「チャリティープレゼント」をクリックします。", + 'submit_charity_giving' => "チャリティープレゼント!", + 'text_message' => "メッセージ: ", + 'bonus_amount_not_allowed_two' => "ボーナス額は許可されていません!毎回1000.0から50000.0ポイントしか与えられません。", + 'bonus_ratio_not_allowed' => "ボーナス比率は許可されていません! チャリティーが0.8未満のユーザーのみが必要です。", + 'std_no_users_need_charity' => "現在、ユーザーは慈善団体を必要としません。", + 'text_success_charity' => "ありがとうございます!あなたの寛大さに感謝します。", + 'text_cancel_hr_title' => 'キャンセル(&R)', + 'text_cancel_hr_label' => 'H&R IDを入力:', + 'text_success_cancel_hr' => "成功したH&Rをキャンセルします。", + 'text_success_buy_medal' => '成功がメダルを買う。', + 'text_attendance_card' => '出席カードを購入する', + 'text_attendance_card_note' => '出席を構成するある日は、通常の計算に従ってボーナス報酬の目標日付の出席を消費します。 つまり連続日数を計算することで報酬を得ることができます', + 'text_success_buy_attendance_card' => '成功は1つの出席カードを購入します。', + 'text_harem_addition_get' => '現在のハーレム追加で1時間あたり %s ボーナスが手に入ります', + 'reward_type' => '報酬タイプ', + 'factor' => '係数', + 'got_bonus' => 'ボーナス獲得', + 'total' => '合計', + 'reward_type_basic' => '基本報酬', + 'reward_type_harem_addition' => 'ハーレムの追加', + 'bonus_base' => 'Base ボーナス', + 'lock_text' => 'The system limits you to one click on the exchange button within %s seconds!', + 'text_get_by_seeding_official' => '公式トレントは1時間あたり以下の追加ボーナスを受け取ります', + 'official_calculate_method' => '官報の計算式は上記と同じであるが、官種のみの計算式であり、低所得に対する考慮はない', + 'official_tag_bonus_additional_factor' => '最終的な報酬は、計算された公式のタイプ報酬に公式のタイプファクターを掛けたものです、現在の公式のタイプファクターは次のとおりです: ', + 'reward_type_official_addition' => '公式追加', + 'text_get_by_harem' => 'ハーレムを追加すると、1時間あたり以下の追加ボーナスが付与されます', + 'harem_additional_desc' => "Only direct harems will be considered for the harem. Each harem's bonus addition value can be viewed here", + 'harem_additional_note' => '注意:シードを自分で行わない場合、このボーナス値はユーザーアカウントに追加されません。', + 'harem_additional_factor' => '得られた報酬は、(追加に関係なく)すべてのハーレムの時給ボーナスの合計です。 ハーレムボーナス因子と現在の値を掛けたもの ', + 'text_bonus_summary' => '1時間あたり獲得したボーナスの合計', + 'col_count' => 'カウント', + 'col_size' => 'サイズ', + 'col_a' => '値', + 'text_buy_tmp_invite' => '1 Temporary Invite', + 'text_buy_tmp_invite_note' => "十分なボーナスポイントを取得すると、7日間有効ないくつかの一時的な招待のために交換することができます。 その後、ポイントがボーナスバンクから削除され、一時招待金額に一時招待金が追加されます。", + 'text_success_tmp_invites' => "おめでとうございます! 新しい一時招待状を取得しました!", + 'text_buy_rainbow_id' => "レインボーIDを購入", + 'text_buy_rainbow_id_note' => 'ユーザー名に虹のようなきらめく効果を追加します。30日間有効で、繰り返し購入で累積されます。', + 'text_success_buy_rainbow_id' => "おめでとうございます。Rainbow IDが 30 日追加されました!", + 'text_buy_change_username_card' => "ユーザー名カードの変更を購入する", + 'text_buy_change_username_card_note' => 'ユーザー名を一度変更すると永遠に有効になります。', + 'text_success_buy_change_username_card' => "変更ユーザー名カード の購入が完了しました!", + 'text_change_username_card_already_has' => 'すでにユーザー名カードを変更しています', + 'text_rainbow_id_already_valid_forever' => 'すでに恒久的なレインボーIDを持っています', ); + +?> diff --git a/lang/ja/lang_myhr.php b/lang/ja/lang_myhr.php index 3eb49387..57c7cbba 100644 --- a/lang/ja/lang_myhr.php +++ b/lang/ja/lang_myhr.php @@ -1,14 +1,14 @@ 'H&rid', - 'th_torrent_name' => 'シード名', - 'th_uploaded' => 'ボリュームをアップロードします', - 'th_downloaded' => 'ダウンロード', - 'th_share_ratio' => '共有率', - 'th_seed_time_required' => 'まだ植える必要があります', - 'th_completed_at' => '完了時間をダウンロードします', - 'th_ttl' => '残りの検査時間', - 'th_comment' => '述べる', - 'action_remove' => 'なくす', -); +$lang_myhr = [ + 'th_hr_id' => 'H&R ID', + 'th_torrent_name' => 'Torrent', + 'th_uploaded' => 'アップロードしました', + 'th_downloaded' => 'ダウンロード済み', + 'th_share_ratio' => 'シェア率', + 'th_seed_time_required' => 'シード時間が必要です', + 'th_completed_at' => '完了日時', + 'th_ttl' => '残り時間の検査', + 'th_comment' => 'コメント', + 'action_remove' => '削除', +]; diff --git a/lang/ja/lang_news.php b/lang/ja/lang_news.php index ea04593e..dafecf6a 100644 --- a/lang/ja/lang_news.php +++ b/lang/ja/lang_news.php @@ -1,18 +1,21 @@ '最新のメッセージを削除します', - 'std_are_you_sure' => 'あなたは本当に最近のメッセージを削除したいですか?確かな場合は、クリックしてください', - 'std_here' => 'ここ', - 'std_if_sure' => '。', - 'std_error' => '間違い', - 'std_news_body_empty' => '最新のニュースのテキストは空にすることはできません!', - 'std_news_title_empty' => '最新のニュースのタイトルは空にすることはできません!', - 'std_something_weird_happened' => '奇妙なことが起こりました。', - 'std_invalid_news_id' => '最新のメッセージのIDは存在しません。', - 'head_edit_site_news' => '最近のニュースを編集します', - 'text_edit_site_news' => '最近のニュースを編集します', - 'text_notify_users_of_this' => 'このメッセージを表示するようにユーザーに思い出させます。', - 'head_site_news' => '最近のニュース', - 'text_submit_news_item' => '新しいメッセージを送信します', +$lang_news = array +( + 'std_delete_news_item' => "ニュース項目を削除", + 'std_are_you_sure' => "ニュース項目を削除してもよろしいですか? ", + 'std_here' => "ここ", + 'std_if_sure' => " 確信があるなら", + 'std_error' => "エラー", + 'std_news_body_empty' => "ニュース本文は空白にできません!", + 'std_news_title_empty' => "ニュースのタイトルは空欄にできません!", + 'std_something_weird_happened' => "奇妙なことが起こりました。", + 'std_invalid_news_id' => "ID のニュース項目はありません ", + 'head_edit_site_news' => "サイトのニュースを編集", + 'text_edit_site_news' => "サイトのニュースを編集", + 'text_notify_users_of_this' => "ユーザーに通知する", + 'head_site_news' => "Site News", + 'text_submit_news_item' => "ニュース項目を送信" ); + +?> diff --git a/lang/ja/lang_offers.php b/lang/ja/lang_offers.php index 21ab50b3..f8d873f9 100644 --- a/lang/ja/lang_offers.php +++ b/lang/ja/lang_offers.php @@ -1,138 +1,143 @@ 'による', - 'text_inf' => '無制限', - 'text_ratio' => '共有率:', - 'text_orphaned' => '(そのようなアカウントはありません)', - 'text_at' => '提出', - 'text_edit' => '編集', - 'text_delete' => '消去', - 'text_profile' => '個人的なプロフィール', - 'text_pm' => 'SMS', - 'text_report' => '報告', - 'text_last_edited_by' => 'ついに', - 'text_edited_at' => '編集', - 'head_offer_error' => '候補エラー', - 'std_error' => '間違い!', - 'std_smell_rat' => '何かがおかしい!', - 'head_offer' => '候補者', - 'submit_search' => '私を探してください', - 'text_red_star_required' => '赤いアスタリスクでマークされた領域(*)に入力する必要があります', - 'text_offers_open_to_all' => '候補者はすべてのユーザーに開かれています...共有率を上げる素晴らしい方法です!', - 'select_type_select' => '(選択してください)', - 'row_type' => 'タイプ', - 'row_title' => 'タイトル', - 'row_post_or_photo' => 'ポスターまたは写真', - 'text_link_to_picture' => '(アイコンリンク。 tag code!show introduting)を追加しないでください)', - 'row_description' => '導入', - 'submit_add_offer' => 'に追加', - 'col_type' => 'タイプ', - 'col_title' => 'タイトル', - 'title_time_added' => '時間を追加します', - 'col_offered_by' => '追加された', - 'submit_show_all' => 'すべてを表示します', - 'std_must_enter_name' => 'タイトルを入力する必要があります!', - 'std_must_select_category' => '候補者タイプを選択する必要があります!', - 'stdst_enter_description' => 'はじめに記入する必要があります!', - 'std_wrong_image_format' => '画像はJPG、GIF、またはPNG形式である必要があります。', - 'head_success' => '成功!', - 'head_error' => '間違い!', - 'std_offer_exists' => '候補者はすでに存在します!', - 'text_view_all_offers' => 'すべての候補者を表示します', - 'head_offer_detail_for' => '候補者の詳細', - 'text_offer_detail' => '候補者の詳細', - 'row_time_added' => '時間を追加します', - 'row_status' => '州', - 'text_pending' => '決定される', - 'text_allowed' => '許可する', - 'text_denied' => '拒否する', - 'text_delete_offer' => '候補者を削除します', - 'report_offer' => '候補者を報告します', - 'row_allow' => '許可する', - 'submit_allow' => '許可する', - 'submit_let_votes_decide' => '投票を決定させてください', - 'row_vote' => '投票する', - 'text_for' => 'サポート', - 'text_against' => '反対してください', - 'row_offer_allowed' => '候補者は許可されています', - 'text_voter_receives_pm_note' => '有権者は、候補者がアップロードされたときに通知テキストを受け取ります!', - 'text_urge_upload_offer_note' => 'この候補者は許可されました!できるだけ早く種子をアップロードしてください。', - 'row_vote_results' => '投票ステータス', - 'text_see_vote_detail' => '[投票の詳細を見る]', - 'row_report_offer' => '候補者を報告します', - 'text_for_breaking_rules' => '候補者は規則に違反しました', - 'submit_report_offer' => '報告', - 'text_add_comment' => 'コメントを追加します', - 'text_no_comments' => 'コメントはありません', - 'std_access_denied' => 'アクセスが拒否されました!', - 'std_mans_job' => 'これは人間の仕事です', - 'std_have_no_permission' => '許可はありません', - 'std_sorry' => 'ごめん', - 'std_no_votes_yet' => 'まだ投票はありません...', - 'std_cannot_edit_others_offer' => '他の人の候補者を編集する許可がありません', - 'head_edit_offer' => '編集候補者', - 'text_edit_offer' => '編集候補者', - 'submit_edit_offer' => '編集候補者', - 'head_offer_voters' => '候補者の有権者', - 'text_vote_results_for' => '候補者の投票ステータス', - 'col_user' => 'ユーザー', - 'col_uploaded' => 'ボリュームをアップロードします', - 'col_downloaded' => 'ダウンロード', - 'col_ratio' => '共有率', - 'col_vote' => '投票する', - 'std_already_voted' => 'あなたは投票しました', - 'std_already_voted_note' => '

    あなたは投票しました、そして、各候補者は一度しか投票できません。

    に戻ります', - 'std_back_to_offer_detail' => ' Caniblationの詳細

    ', - 'head_vote_for_offer' => '候補者投票', - 'std_vote_accepted' => '成功して投票', - 'std_vote_accepted_note' => '

    あなたの投票は成功しました。

    に戻ります', - 'std_cannot_delete_others_offer' => '他の人の候補者を削除する許可がありません', - 'std_delete_offer' => '候補者を削除します', - 'std_delete_offer_note' => '候補者を削除する必要があります。', - 'head_offers' => '候補者', - 'text_offers_section' => '候補エリア', - 'text_add_offer' => '候補者を追加します', - 'text_view_request' => '種を見る', - 'select_show_all' => '(すべてを表示)', - 'submit_view_only_selected' => '選択を表示します', - 'text_search_offers' => '検索:', - 'title_comment' => 'コメント', - 'col_vote_results' => '投票する', - 'text_nothing_found' => 'ヌル!', - 'text_yep' => 'はい', - 'text_nah' => 'いいえ', - 'title_show_vote_details' => '投票の詳細を表示します', - 'title_i_want_this' => '欲しい!', - 'title_do_not_want_it' => '興味がありません', - 'row_action' => '行動', - 'text_quick_comment' => '簡単なコメント', - 'submit_add_comment' => 'に追加', - 'text_blank' => '提出', - 'col_act' => '行動', - 'title_delete' => '消去', - 'title_edit' => '編集', - 'col_timeout' => '期限切れ', - 'row_info' => '情報', - 'text_reason_is' => '理由:', - 'submit_confirm' => 'もちろん', - 'title_add_comments' => 'コメントを追加します', - 'text_at_time' => '投稿しました', - 'text_blank_two' => '投稿されました', - 'text_last_commented_by' => 'による最新のコメント', - 'title_has_new_comment' => '新しいコメントがあります', - 'title_no_new_comment' => '新しいコメントはありません', - 'text_new' => '新しい', - 'std_cannot_vote_youself' => '提出するために自分自身に投票することはできません。', - 'text_rules' => 'ルール:', - 'text_rule_one_one' => '', - 'text_rule_one_two' => '上記のレベルのユーザーは、候補者を通過せずに種子を直接公開できます。', - 'text_rule_one_three' => 'レベル以上のユーザーは候補者を追加できます。', - 'text_rule_two_one' => '候補者が反対よりも多くの票を持っている場合', - 'text_rule_two_two' => '投票が行われると、候補者は可決されます。', - 'text_rule_three_one' => '候補者が追加された場合', - 'text_rule_three_two' => '営業時間外に渡されない場合、削除されます。', - 'text_rule_four_one' => '候補者が通過した後', - 'text_rule_four_two' => 'ユーザーは1時間以内に種子を公開せず、合格する候補者は削除されます。', - 'text_rule_skip_offer' => 'ユーザーが通過した候補者の数が%d 以上の場合、候補者を通過せずにシードを直接公開できます。', +$lang_offers = array +( + 'text_offered_by' => "提供者: ", + 'text_inf' => "Inf ファイル.", + 'text_ratio' => "比率:", + 'text_orphaned' => "(孤児)", + 'text_at' => " に ", + 'text_edit' => "編集", + 'text_delete' => "削除", + 'text_profile' => "プロフィール", + 'text_pm' => "PM", + 'text_report' => "レポート", + 'text_last_edited_by' => "最終編集者: ", + 'text_edited_at' => " に ", + 'head_offer_error' => "オファーエラー", + 'std_error' => "エラー!", + 'std_smell_rat' => "ネズミの匂いがする!", + 'head_offer' => "オファー", + 'submit_search' => "Go!", + 'text_red_star_required' => "赤い星印の付いたフィールド(*)が必要です。", + 'text_offers_open_to_all' => "オファーはすべてのユーザーに開放されています...素晴らしい比率のブースト!", + 'select_type_select' => "(選択)", + 'row_type' => "タイプ", + 'row_title' => "タイトル", + 'row_post_or_photo' => "ポスターまたは写真", + 'text_link_to_picture' => "(画像への直接リンク。タグ タグ 必要ありません!説明に表示されます)", + 'row_description' => "説明", + 'submit_add_offer' => "Add Offer!", + 'col_type' => "タイプ", + 'col_title' => "タイトル", + 'title_time_added' => "時間が追加されました", + 'col_offered_by' => "Added By", + 'submit_show_all' => "Show All", + 'std_must_enter_name' => "名前を入力してください!", + 'std_must_select_category' => "オファーを入れるカテゴリを選択する必要があります!", + 'std_must_enter_description' => "説明を入力する必要があります!", + 'std_wrong_image_format' => "画像は jpg、gif または png 形式でなければなりません。", + 'head_success' => "成功!", + 'head_error' => "エラー!", + 'std_offer_exists' => "すべての準備ができている存在を提供してください!", + 'text_view_all_offers' => "すべてのオファーを表示します。", + 'head_offer_detail_for' => "オファーの詳細 ", + 'text_offer_detail' => "オファー詳細", + 'row_time_added' => "時間が追加されました", + 'row_status' => "ステータス", + 'text_pending' => "保留中", + 'text_allowed' => "許可", + 'text_denied' => "拒否しました", + 'text_edit_offer' => "オファーを編集", + 'text_delete_offer' => "オファーを削除", + 'report_offer' => "オファーを報告", + 'row_allow' => "許可する", + 'submit_allow' => "許可する", + 'submit_let_votes_decide' => "Let votes decide", + 'row_vote' => "投票", + 'text_for' => "対象:", + 'text_against' => "", + 'row_offer_allowed' => "オファーを許可", + 'text_voter_receives_pm_note' => "このオファーに投票した場合、アップグレードされるとPMされます!", + 'text_urge_upload_offer_note' => "このオファーは許可されています!できるだけ早くアップロードしてください。", + 'row_vote_results' => "Vote Results", + 'text_see_vote_detail' => "format@@0", + 'row_report_offer' => "オファーを報告", + 'text_for_breaking_rules' => " ルールを破って ", + 'submit_report_offer' => "Report Offer", + 'text_add_comment' => "コメントを追加", + 'text_no_comments' => "コメントはありません", + 'std_access_denied' => "アクセスが拒否されました", + 'std_mans_job' => "これは男の仕事だ!", + 'std_have_no_permission' => "権限がありません", + 'std_sorry' => "申し訳ありません", + 'std_no_votes_yet' => "まだ投票がありません... ", + 'std_back_to_offer_detail' => "オファーの詳細に戻る", + 'std_cannot_edit_others_offer' => "これは編集へのオファーではありません。", + 'head_edit_offer' => "オファーを編集 ", + 'text_edit_offer' => "オファーを編集", + 'submit_edit_offer' => "Edit Offer", + 'head_offer_voters' => "投票者のオファー", + 'text_vote_results_for' => "投票結果を提示する", + 'col_user' => "ユーザー", + 'col_uploaded' => "アップロードしました", + 'col_downloaded' => "ダウンロード済み", + 'col_ratio' => "Ratio", + 'col_vote' => "投票", + 'std_already_voted' => "すでに投票済みです", + 'std_already_voted_note' => "

    あなたはすでに投票しています。1回のオファー

    に戻る ", + 'std_back_to_offer_detail' => "提供の詳細

    ", + 'head_vote_for_offer' => "オファーに投票する", + 'std_vote_accepted' => "投票が承認されました", + 'std_vote_accepted_note' => "

    あなたの投票は

    に戻る ", + 'std_cannot_delete_others_offer' => "これは削除するオファーではありません!", + 'std_delete_offer' => "オファーを削除", + 'std_delete_offer_note' => "このオファーを削除しようとしています。", + 'head_offers' => "オファー", + 'text_offers_section' => "「オファー」セクション", + 'text_add_offer' => "オファーを追加", + 'text_view_request' => "リクエストを表示", + 'select_show_all' => "(すべて表示)", + 'submit_view_only_selected' => "view only selected", + 'text_search_offers' => "検索: ", + 'title_comment' => "コメント", + 'col_vote_results' => "投票", + 'text_nothing_found' => "何も見つかりません!", + 'text_yep' => "yep", + 'text_nah' => "nah", + 'title_show_vote_details' => " 投票 詳細を表示", + 'title_i_want_this' => "I want this!", + 'title_do_not_want_it' => "I not like this", + 'row_action' => "アクション", + 'text_quick_comment' => "クイックコメント", + 'submit_add_comment' => "Add Comment", + 'text_blank' => " ", + 'col_act' => "Act.", + 'title_delete' => "削除", + 'title_edit' => "編集", + 'col_timeout' => "タイムアウト", + 'row_info' => "情報", + 'text_reason_is' => "理由: ", + 'submit_confirm' => "確認する", + 'title_add_comments' => "Add comment", + 'text_at_time' => " に ", + 'text_blank_two' => " ", + 'text_last_commented_by' => "最終コメント者: ", + 'title_has_new_comment' => "Has new comment", + 'title_no_new_comment' => " 新しい コメント", + 'text_new' => "新規", + 'std_cannot_vote_youself' => "あなた自身のオファーに投票することはできません。", + 'text_rules' => "ルール: ", + 'text_rule_one_one' => "", + 'text_rule_one_two' => " または上記のオファーセクションを経由せずに直接トレントをアップロードできます。 ", + 'text_rule_one_three' => " またはそれ以上のオファーを追加することができます", + 'text_rule_two_one' => "投票を支持する場合、オファーが承認されます ", + 'text_rule_two_two' => " 異議を唱えるよりも", + 'text_rule_three_one' => "承認されていない場合、オファーは削除されます ", + 'text_rule_three_two' => " 追加後の時間", + 'text_rule_four_one' => "未アップロードの場合、オファーは削除されます ", + 'text_rule_four_two' => " 承認されてから何時間も", + 'text_rule_skip_offer' => "ユーザーによって渡されたオファーの数が %d以上の場合 ユーザーはオファーセクションを通らずに直接トレントをアップロードできます。", ); + +?> diff --git a/lang/ja/lang_ok.php b/lang/ja/lang_ok.php index b3f1d39b..97090106 100644 --- a/lang/ja/lang_ok.php +++ b/lang/ja/lang_ok.php @@ -1,21 +1,24 @@ 'ユーザー登録', - 'std_account_activated' => '正常に登録されていますが、アカウントはアクティブ化されていません!', - 'account_activated_note' => 'アカウントが正常に作成されました。ただし、新しいユーザーは、登録ユーザーになり、サイトにアクセスする前に、管理者によって承認される必要があります。ご理解いただきありがとうございます。', - 'account_activated_note_two' => 'アカウントが正常に作成されました。ただし、新しいユーザーは、登録ユーザーになり、サイトにアクセスする前に、Inviterによって承認される必要があります。ご理解いただきありがとうございます。', - 'std_signup_successful' => '正常に登録!', - 'std_confirmation_email_note' => '確認されたメールアドレスに確認メールが送信されました(', - 'std_confirmation_email_note_end' => ')。アカウントを使用する前に、検証を渡すために電子メールの指示に従う必要があります。これを行わない場合、登録された新しいアカウントは短期間後に削除されます。', - 'head_sysop_activation' => 'システムオペレーターアカウントのアクティベーション', - 'std_sysop_activation_note' => '

    システムオペレーターアカウントが正常にアクティブ化されています!

    ', - 'std_auto_logged_in_note' => '

    アカウントが正常にアクティブ化されました!自動的にログインします。これで、 home にアクセスし、アカウントを使用できます。

    ', - 'std_cookies_disabled_note' => '

    アカウントが正常にアクティブ化されました!ただし、自動的にログインすることはありません。ログインするには、ブラウザ内の新しいウィンドウを開く必要がある場合があります。
    またはブラウザCookieを無効にしたためです。 Cookieがアカウントを使用できるようにする必要があります。 Cookieを有効にして、 login を試してください。

    ', - 'head_already_confirmed' => '検証', - 'std_already_confirmed' => '

    検証

    ', - 'std_already_confirmed_note' => '

    このアカウントは検証されています。 login に使用できます。

    ', - 'head_signup_confirmation' => '登録確認', - 'std_account_confirmed' => '

    アカウントが正常に検証されました!

    ', - 'std_read_rules_faq' => '

    %sを使用する前に、サイトの ルール および faq を読んで精通していることを確認してください。

    ', +$lang_ok = array +( + 'head_user_signup' => "ユーザーの登録", + 'std_account_activated' => "サインアップに成功しましたが、アカウントが有効になっていません!", + 'account_activated_note' => "あなたのアカウントは正常に作成されましたが、管理者は登録メンバーとして分類され、サイトにアクセスできるようになる前に新しいメンバーを検証する必要があります。 ご理解いただきありがとうございます", + 'account_activated_note_two' => "あなたのアカウントは正常に作成されましたが、招待者は登録されたメンバーとして分類され、サイトにアクセスすることが許可される前に、新しいメンバーを検証する必要があります。 ご理解いただきありがとうございます", + 'std_signup_successful' => "サインアップに成功しました!", + 'std_confirmation_email_note' => "指定したアドレスに確認メールが送信されました (" , + 'std_confirmation_email_note_end' => "). アカウントを使用する前に、このメールを読んで返信する必要があります。 これを行わない場合は、しばらくすると新しいアカウントが自動的に削除されます。", + 'head_sysop_activation' => "Sysop アカウントの有効化", + 'std_sysop_activation_note' => "

    Sysop Account successfully activated !

    \n", + 'std_auto_logged_in_note' => "

    Your account has been activated!\n You have been automatically logged in. You can now continue to the main page and start using your account.

    \n", + 'std_cookies_disabled_note' => "

    Your account has been activated! However, it appears that you could not be logged in automatically. Maybe you need to open a new window in your browser.
    Another possible reason is that you disabled cookies in your browser. You have to enable cookies to use your account. Please do that and then log in and try again.

    \n", + 'head_already_confirmed' => "すでに確認済みです", + 'std_already_confirmed' => "

    既に

    \n を確認しています", + 'std_already_confirmed_note' => "

    このユーザーアカウントは既に確認されています。

    \nにログインできます。", + 'head_signup_confirmation' => "サインアップの確認", + 'std_account_confirmed' => "

    アカウントが正常に確認されました!

    \n", + 'std_read_rules_faq' => "

    Before you start using %s we urge you to read the RULES and the FAQ.

    \n" ); + +?> diff --git a/lang/ja/lang_polloverview.php b/lang/ja/lang_polloverview.php index b61ffb07..44234620 100644 --- a/lang/ja/lang_polloverview.php +++ b/lang/ja/lang_polloverview.php @@ -1,18 +1,21 @@ '間違い', - 'head_poll_overview' => '投票の概要', - 'text_polls_overview' => '投票の概要', - 'col_id' => 'id', - 'col_added' => '時間を追加します', - 'col_question' => '質問', - 'text_no_users_voted' => '申し訳ありません...まだ投票していません!', - 'text_no_poll_id' => '申し訳ありません...そのIDなしで投票してください!', - 'text_poll_question' => '投票の質問', - 'col_option_no' => 'シリアルナンバー', - 'col_options' => 'オプション', - 'text_polls_user_overview' => '投票ユーザーの状況', - 'col_username' => 'ユーザー名', - 'col_selection' => 'オプション', +$lang_polloverview = array +( + 'std_error' => "エラー", + 'head_poll_overview' => "アンケート概要", + 'text_polls_overview' => "アンケート概要", + 'col_id' => "ID", + 'col_added' => "追加しました", + 'col_question' => "質問", + 'text_no_users_voted' => "申し訳ありません。投票したユーザーがいません!", + 'text_no_poll_id' => "申し訳ありません。そのIDの投票はありません!", + 'text_poll_question' => "アンケートの質問", + 'col_option_no' => "オプションいいえ", + 'col_options' => "オプション", + 'text_polls_user_overview' => "アンケートのユーザー概要", + 'col_username' => "ユーザー名", + 'col_selection' => "選択", ); + +?> diff --git a/lang/ja/lang_polls.php b/lang/ja/lang_polls.php index 175b85f9..881e645d 100644 --- a/lang/ja/lang_polls.php +++ b/lang/ja/lang_polls.php @@ -1,17 +1,20 @@ '間違い', - 'std_permission_denied' => '許可はありません', - 'std_delete_poll' => '投票を削除します', - 'std_delete_poll_confirmation' => '投票を削除したいですか?クリック', - 'std_here_if_sure' => 'ここで確認してください 。', - 'std_sorry' => 'ごめん...', - 'std_no_polls' => 'まだ投票はありません!', - 'head_previous_polls' => '以前の投票', - 'text_previous_polls' => '以前の投票', - 'text_ago' => '前に', - 'text_edit' => '編集', - 'text_delete' => '消去', - 'text_votes' => '投票数:', +$lang_polls = array +( + 'std_error' => "エラー", + 'std_permission_denied' => "アクセスが拒否されました。", + 'std_delete_poll' => "アンケートを削除", + 'std_delete_poll_confirmation' => "Do you really want to delete a poll? Click\n", + 'std_here_if_sure' => " を確認してください。", + 'std_sorry' => "Sorry...", + 'std_no_polls' => "アンケートがありません!", + 'head_previous_polls' => "以前の投票", + 'text_previous_polls' => "以前の投票", + 'text_ago' => " 前", + 'text_edit' => "編集", + 'text_delete' => "削除", + 'text_votes' => "投票: " ); + +?> \ No newline at end of file diff --git a/lang/ja/lang_preview.php b/lang/ja/lang_preview.php index 10b3b45d..ca22c5d7 100644 --- a/lang/ja/lang_preview.php +++ b/lang/ja/lang_preview.php @@ -1,5 +1,8 @@ 'プレビュー', +$lang_preview = array +( + 'text_preview' => "プレビュー" ); + +?> \ No newline at end of file diff --git a/lang/ja/lang_promotionlink.php b/lang/ja/lang_promotionlink.php index d2b1f071..2312095d 100644 --- a/lang/ja/lang_promotionlink.php +++ b/lang/ja/lang_promotionlink.php @@ -1,27 +1,29 @@ 'プロモーションリンク', - 'text_promotion_link' => 'プロモーションリンク', - 'text_promotion_link_note_one' => 'このサイトがとても気に入っていて、より多くの人々にそれについて知ってほしいなら、あなたはあなたのプロモーションリンクを使用して私たちがそれを宣伝するのを助けることができます。', - 'text_promotion_link_note_two' => '各ユーザーには、システムによってランダムに生成されるアイデンティティを決定する独自のプロモーションリンクがあります。ネチズンがあなたのプロモーションリンクをクリックすると、彼はこのサイトに頼られ、システムはあなたに報酬を与えます。', - 'text_you_would_get' => 'あなたは得るでしょう', - 'text_bonus_points' => 'プロモーションリンクが録画されていないIPからクリックされた場合、マジック値。', - 'text_seconds' => '1秒以内にワンクリックまで報酬を与えます。', - 'text_your_promotion_link_is' => 'プロモーションリンクは次のとおりです。', - 'text_promotion_link_note_four' => 'プロモーションリンクをさまざまな方法で広めることができます。いくつかの例があります。', - 'col_type' => 'タイプ', - 'col_code' => 'コード', - 'col_result' => '効果', - 'col_note' => 'コメント', - 'row_xhtml' => 'XHTML 1.0', - 'text_xhtml_note' => '個人のWebサイトがある場合は、ページでXHTMLコードを使用できます。', - 'row_html' => 'HTML 4.01', - 'text_html_note' => '個人Webサイトがある場合は、ページでHTMLコードを使用できます。', - 'row_bbcode' => 'BBCodeフォーラムコード', - 'text_bbcode_note' => 'ほとんどのフォーラムプログラム(Vbulletin、Discuz!、Phpwindなど)は、BBCodeと呼ばれるフォーラムコードをサポートしています。このコードを署名ファイルに配置できます。', - 'row_bbcode_userbar' => 'フォーラムコード - パーソナリティバー', - 'text_bbcode_userbar_note' => 'あなたの性格バーを手に入れてください。コントロールパネルでプライバシーレベルを「高」に設定した場合、パーソナリティバーを使用することはできません。', - 'row_bbcode_userbar_alt' => 'フォーラムコード - パーソナリティバー(別の方法)', - 'text_bbcode_userbar_alt_note' => '上記の方法が利用できない場合は、この方法を使用します。コントロールパネルでプライバシーレベルを「高」に設定した場合、パーソナリティバーを使用することはできません。', -); +$lang_promotionlink = array +( + 'head_promotion_link' => "プロモーションリンク", + 'text_promotion_link' => "プロモーションリンク", + 'text_promotion_link_note_one' => "あなたが本当にこのサイトが好きなら、なぜより多くの人々にそれについて知ってもらうのを助けませんか? あなたはあなたのプロモーションリンクを広げることによってこれを行うことができます。 ", + 'text_promotion_link_note_two' => "すべてのユーザーは、独自のプロモーションリンクを持っています。これは、システムによって生成されたランダムなURLで、彼を識別します。 誰かがあなたのプロモーションリンクをクリックすると、彼はこのサイトにリダイレクトされ、システムはURLを広めるのを助けてあなたに報酬を与えます。", + 'text_you_would_get' => "あなたが受け取るでしょう ", + 'text_bonus_points' => " あなたのプロモーションリンクが未記録のIPによってクリックされるたびにボーナスポイント。1クリックのみにカウントされます ", + 'text_seconds' => " 秒", + 'text_your_promotion_link_is' => "あなたのプロモーションリンク: ", + 'text_promotion_link_note_four' => "プロモーションリンクを使用したい場合は、とにかく選択することができます。以下はいくつかの例です。 ", + 'col_type' => "タイプ", + 'col_code' => "コード", + 'col_result' => "結果", + 'col_note' => "メモ", + 'row_xhtml' => "XHTML 1.0", + 'text_xhtml_note' => "個人サイトをお持ちの場合は、ページ内でXHTMLコードを使用できます。", + 'row_html' => "HTML 4.01", + 'text_html_note' => "個人サイトをお持ちの場合は、HTMLコードをご利用いただけます。", + 'row_bbcode' => "BBCode", + 'text_bbcode_note' => "ほとんどのインターネットフォーラムソフトウェア(例えば、vBulletin、Discuz!、PHPWind) サポートBBCode. それはあなたの署名であなたのプロモーションリンクを置くことをお勧めします。", + 'row_bbcode_userbar' => "BBCodeユーザーバー", + 'text_bbcode_userbar_note' => "Get your personal userbar. For userbar to work, you must NOT set your privacy level to 'strong' (at User CP).", + 'row_bbcode_userbar_alt' => "BBCodeのユーザーバーのalt。", + 'text_bbcode_userbar_alt_note' => "Use this if the above one doesn't work. For userbar to work, you must NOT set your privacy level to 'strong' (at User CP)." +) +?> diff --git a/lang/ja/lang_recover.php b/lang/ja/lang_recover.php index 5a3a0784..b2d09004 100644 --- a/lang/ja/lang_recover.php +++ b/lang/ja/lang_recover.php @@ -1,34 +1,39 @@ 'パスワードの取得に失敗しました! (以下をご覧ください)', - 'std_missing_email_address' => 'メールアドレスを入力する必要があります!', - 'std_invalid_email_address' => '無効なメールアドレス!', - 'std_email_not_in_database' => 'メールアドレスはデータベースには存在しません。', - 'std_error' => '間違い', - 'std_database_error' => 'データベースエラー。管理者にエラーを伝えてください。', - 'std_unable_updating_user_data' => 'ユーザーデータを更新できません。このエラーを管理者に報告してください。', - 'text_recover_user' => 'ユーザー名またはパスワードを取得します', - 'text_use_form_below' => '次のフォームを使用してパスワードをリセットすると、更新されたアカウント情報がメールアドレスに送信されます。', - 'text_reply_to_confirmation_email' => '(電子メールの指示に従ってください)', - 'text_note' => '注:連続', - 'text_ban_ip' => '間違った試行により、IPアドレスが無効になります!', - 'row_registered_email' => '登録メール:', - 'submit_recover_it' => 'もちろん', - 'text_you_have' => 'あなたはまだ持っています', - 'text_remaining_tries' => '試してみるチャンス。', - 'mail_this_link' => 'このリンク', - 'mail_here' => 'ここ', - 'mail_title' => 'ウェブサイトのパスワードリセット確認', - 'mail_one' => 'こんにちは、

    %sのウェブサイトアカウントでパスワードをリセットするようにリクエストしました。
    このアカウントのメールアドレスはです', - 'mail_two' => '。

    リクエストを送信するためのIPアドレスはです', - 'mail_three' => '。

    このリクエストを送信していない場合は、このメールを無視してください。このメールに返信しないでください。

    実際にこのリクエストを送信した場合は、このリンクをクリックして確認してください。', - 'mail_four' => '
    確認後、パスワードがリセットされ、別のメールで送信されます。

    ------
    %sウェブサイト', - 'mail_two_title' => 'ウェブサイトアカウント情報', - 'mail_two_one' => 'こんにちは、

    あなたの要求に応じて、私たちはあなたのアカウントの新しいパスワードを生成しました。

    以下は、アカウントがリセットされた後の情報です:

    username:', - 'mail_two_two' => '
    パスワード:', - 'mail_two_three' => '

    ここからログインできます:', - 'mail_two_four' => '

    ログインした後、コントロールパネルのセキュリティ設定でパスワードを変更できます。
    ------
    %sウェブサイト', - 'text_select_lang' => 'サイト言語を選択します:', - 'std_user_account_unconfirmed' => 'アカウントはまだ検証されていません。確認メールが届かない場合は、 再送信確認メール を試してください。', +$lang_recover = array +( + 'std_recover_failed' => "回復に失敗しました!(下記参照)", + 'std_missing_email_address' => "メールアドレスを入力する必要があります!", + 'std_invalid_email_address' => "無効なメールアドレスです!", + 'std_email_not_in_database' => "メールアドレスがデータベースに見つかりませんでした。\n", + 'std_error' => "エラー", + 'std_database_error' => "データベース エラー。管理者に問い合わせてください。", + 'std_unable_updating_user_data' => "ユーザーデータを更新できません。このエラーについて管理者に問い合わせてください。", + 'text_recover_user' => "紛失したユーザー名またはパスワードを回復します。", + 'text_use_form_below' => "以下のフォームを使用してパスワードをリセットし、アカウントの詳細をメールで返信します。", + 'text_reply_to_confirmation_email' => "(確認メールに返信する必要があります。", + 'text_note' => "メモ: ", + 'text_ban_ip' => " 失敗した試みはあなたのipを禁止する結果になります!", + 'row_registered_email' => "登録メールアドレス: ", + 'submit_recover_it' => "回復しましょう!", + 'text_you_have' => "持っている ", + 'text_remaining_tries' => " 残りの試行だ", + + 'mail_this_link' => "このリンク", + 'mail_here' => "ここ", + + 'mail_title' => " パスワードリセットの確認", + 'mail_one' => "こんにちは、

    誰かが、このメールアドレスに関連付けられているアカウント
    のパスワードを要求しました。 ", + 'mail_two' => " リセットされます。

    リクエストは ", + 'mail_three' => ".

    If you did not do this ignore this email. Please do not reply.

    Should you wish to confirm this request, please follow ", + 'mail_four' => "
    これを行うと、パスワードがリセットされ、メールで返信されます。



    %s チーム。", + + 'mail_two_title' => " アカウントの詳細", + 'mail_two_one' => "Hi,

    As per your request we have generated a new password for your account.

    Here is the information we now have on file for this account:

    User name: ", + 'mail_two_two' => "
    パスワード: ", + 'mail_two_three' => "

    からログインできます ", + 'mail_two_four' => "

    ログイン後のユーザー CP - セキュリティ設定でパスワードを変更できます。
    ------
    あなたの,
    %s チーム.", + 'text_select_lang' => "サイト言語を選択: ", + 'std_user_account_unconfirmed' => "The account has not been verified yet. If you don't receive the confirmation email, try to reseed it.", ); +?> diff --git a/lang/ja/lang_report.php b/lang/ja/lang_report.php index 82246430..1819d50e 100644 --- a/lang/ja/lang_report.php +++ b/lang/ja/lang_report.php @@ -1,38 +1,42 @@ '間違い', - 'std_missing_reason' => '理由を記入する必要があります!', - 'std_message' => '情報', - 'std_successfully_reported' => '正常に報告されました!', - 'std_already_reported_this' => 'このプロジェクトを報告しました!', - 'std_sorry' => 'ごめん', - 'std_cannot_report_oneself' => 'あなたは自分自身を報告することはできません!', - 'std_invalid_user_id' => '無効なユーザーID!', - 'std_cannot_report' => '報告できません', - 'std_are_you_sure' => '確認する', - 'text_are_you_sure_user' => 'ユーザーは確信しています', - 'text_to_staff' => '規則に違反している場合、管理チームに報告する必要がありますか?', - 'text_not_for_leechers' => ' を報告するために、システムにはそれらに対処するスクリプトがあります。', - 'text_reason_is' => '理由(必須)', - 'submit_confirm' => '確認する', - 'text_reason_note' => ' 注意してください! ランダムに報告する理由がない場合は、警告されます。', - 'std_invalid_torrent_id' => '無効なシードID!', - 'text_are_you_sure_torrent' => 'あなたは確かに種です', - 'std_invalid_forum_id' => '無効なフォーラムの投稿ID!', - 'text_are_you_sure_post' => 'あなたはフォーラムの投稿を確信しています(投稿ID:', - 'text_of_topic' => ';テーマ:', - 'text_of_torrent' => ';シード:', - 'text_of_offer' => ';候補者:', - 'text_of_request' => ';探している:', - 'text_by' => 'の出版社)', - 'std_invalid_comment_id' => '無効なコメントID!', - 'std_orphaned_comment' => 'コメントは何にも属していません。これを管理者に報告してください。', - 'text_are_you_sure_comment' => 'あなたはコメントを確信しています(ID:', - 'std_invalid_offer_id' => '無効な候補ID!', - 'text_are_you_sure_offer' => 'あなたは候補者を確信しています', - 'std_invalid_request_id' => '無効なシードID!', - 'std_are_you_sure_request' => 'あなたは確かに種を求めます', - 'std_invalid_action' => '無効な動作。', - 'text_are_you_sure_subtitle' => '字幕について確信しています', +$lang_report = array +( + 'std_error' => "エラー", + 'std_missing_reason' => "不明な理由!", + 'std_message' => "メッセージ", + 'std_successfully_reported' => "正常に報告されました!", + 'std_already_reported_this' => "既に報告済みです!", + 'std_sorry' => "申し訳ありません", + 'std_cannot_report_oneself' => "自分自身を報告することはできません!", + 'std_invalid_user_id' => "無効なユーザーIDです!", + 'std_cannot_report' => "報告できません ", + 'std_are_you_sure' => "よろしいですか?", + 'text_are_you_sure_user' => "この利用者を報告してもよろしいですか? ", + 'text_to_staff' => " 規則違反のためにスタッフに?", + 'text_not_for_leechers' => "Please note, this is not to be used to report leechers, we have scripts in place to deal with them!", + 'text_reason_is' => "理由 (必須): ", + 'submit_confirm' => "確認する", + 'text_reason_note' => " ご注意ください!  理由がない場合は、ご自身で警告が表示されます。", + 'std_invalid_torrent_id' => "無効な Torrent ID です!", + 'text_are_you_sure_torrent' => "このトレントを報告してもよろしいですか? ", + 'std_invalid_post_id' => "無効な投稿ID!", + 'text_are_you_sure_post' => "フォーラムの記事を報告してもよろしいですか(ID) ", + 'text_of_topic' => " トピックの ", + 'text_of_torrent' => " トレントの ", + 'text_of_offer' => " 提案の|提案の ", + 'text_of_request' => " のリクエスト ", + 'text_by' => ") ", + 'std_invalid_comment_id' => "無効なコメント ID!", + 'std_orphaned_comment' => "孤立したコメント。管理者に報告してください。", + 'text_are_you_sure_comment' => "このコメントを報告してもよろしいですか(ID) ", + 'std_invalid_offer_id' => "無効なオファーID!", + 'text_are_you_sure_offer' => "次のオファーを報告してもよろしいですか? ", + 'std_invalid_request_id' => "無効なリクエストID!", + 'std_are_you_sure_request' => "次のリクエストを報告してもよろしいですか? ", + 'std_invalid_action' => "無効なアクションです。", + 'std_invalid_subtitle_id' => "無効な字幕ID!", + 'text_are_you_sure_subtitle' => "字幕を報告してもよろしいですか? ", ); + +?> diff --git a/lang/ja/lang_reports.php b/lang/ja/lang_reports.php index b6c1029a..91015884 100644 --- a/lang/ja/lang_reports.php +++ b/lang/ja/lang_reports.php @@ -1,38 +1,41 @@ 'ああ!', - 'std_no_report' => '報告情報はありません。', - 'head_reports' => '報告', - 'text_reports' => '報告', - 'col_added' => '時間', - 'col_reporter' => 'レポーター', - 'col_reporting' => 'レポートコンテンツ', - 'col_type' => 'タイプ', - 'col_reason' => '理由', - 'col_dealt_with' => '対処する', - 'col_action' => '行動', - 'text_yes' => 'はい', - 'text_no' => 'いいえ', - 'text_torrent' => 'シード', - 'text_torrent_does_not_exist' => '種子は存在しないか、削除されていません。', - 'text_user' => 'ユーザー', - 'text_user_does_not_exist' => 'ユーザーは存在しないか、削除されていません。', - 'text_offer' => '候補者', - 'text_offer_does_not_exist' => '候補者は存在しないか、削除されていません。', - 'text_forum_post' => 'フォーラム投稿', - 'text_post_does_not_exist' => 'フォーラムの投稿は存在しないか、削除されていません。', - 'text_post_id' => 'IDの投稿:', - 'text_of_topic' => ';テーマ:', - 'text_by' => ';著者:', - 'text_comment' => 'コメント', - 'text_comment_does_not_exist' => 'コメントは存在しないか、削除されていません。', - 'text_of_torrent' => ';シード:', - 'text_of_offer' => ';候補者:', - 'text_comment_id' => 'コメントID:', - 'text_subtitle' => '字幕', - 'text_subtitle_does_not_exist' => '字幕は存在しないか、削除されていません。', - 'text_for_torrent_id' => ';シードID:', - 'submit_set_dealt' => '処理されたまま設定します', - 'submit_delete' => '消去', +$lang_reports = array +( + 'std_oho' => "Oho!", + 'std_no_report' => "レポートはありません。", + 'head_reports' => "レポート", + 'text_reports' => "レポート", + 'col_added' => "追加しました", + 'col_reporter' => "Reporter", + 'col_reporting' => "レポート", + 'col_type' => "タイプ", + 'col_reason' => "理由:", + 'col_dealt_with' => "送金する", + 'col_action' => "Act.", + 'text_yes' => "はい", + 'text_no' => "いいえ", + 'text_torrent' => "Torrent", + 'text_torrent_does_not_exist' => "Torrent が存在しないか削除されます。", + 'text_user' => "ユーザー", + 'text_user_does_not_exist' => "ユーザーが存在しないか、削除されます。", + 'text_offer' => "オファー", + 'text_offer_does_not_exist' => "オファーは存在しないか削除されました。", + 'text_forum_post' => "フォーラム投稿", + 'text_post_does_not_exist' => "フォーラム投稿が存在しないか、削除されました。", + 'text_post_id' => "投稿ID ", + 'text_of_topic' => " トピックの ", + 'text_by' => " 作成者: ", + 'text_comment' => "コメント", + 'text_comment_does_not_exist' => "コメントが存在しないか、削除されています。", + 'text_of_torrent' => " トレントの ", + 'text_of_offer' => " 提案の|提案の ", + 'text_comment_id' => "コメント ID ", + 'text_subtitle' => "サブタイトル", + 'text_subtitle_does_not_exist' => "字幕が存在しないか、削除されます。", + 'text_for_torrent_id' => " Torrent ID ", + 'submit_set_dealt' => "送信済みを設定", + 'submit_delete' => "削除", ); + +?> diff --git a/lang/ja/lang_rules.php b/lang/ja/lang_rules.php index e779cec3..f0959e71 100644 --- a/lang/ja/lang_rules.php +++ b/lang/ja/lang_rules.php @@ -1,5 +1,8 @@ 'ルール', +$lang_rules = array +( + 'head_rules' => "ルール" ); + +?> \ No newline at end of file diff --git a/lang/ja/lang_sendmessage.php b/lang/ja/lang_sendmessage.php index eefcba86..8903c4ad 100644 --- a/lang/ja/lang_sendmessage.php +++ b/lang/ja/lang_sendmessage.php @@ -1,21 +1,24 @@ '間違い', - 'std_permission_denied' => '許可なし', - 'head_send_message' => 'メッセージを送信します', - 'text_mass_message' => 'に大量のテキストメッセージを送信します', - 'text_users' => 'ユーザー', - 'text_subject' => 'テーマ:', - 'text_comment' => 'コメント:', - 'text_from' => '送信者:', - 'text_take_snapshot' => 'スナップショットを使用します:', - 'submit_send_it' => '送信', - 'submit_preview' => 'プレビュー', - 'text_templates' => 'ステンシル:', - 'submit_use' => '使用', - 'std_no_user_id' => 'このIDのないユーザー。', - 'text_message_to' => 'にテキストメッセージを送信します', - 'checkbox_delete_message_replying_to' => '返信後に削除します', - 'checkbox_save_message_to_sendbox' => 'アウトボックスに保存します', +$lang_sendmessage = array +( + 'std_error' => "エラー", + 'std_permission_denied' => "権限がありません", + 'head_send_message' => "メッセージを送信", + 'text_mass_message' => "Mass Message to ", + 'text_users' => "ユーザー", + 'text_subject' => "件名:", + 'text_comment' => "コメント:", + 'text_from' => "差出人:", + 'text_take_snapshot' => "スナップショットを撮影:", + 'submit_send_it' => "送信しよう!", + 'submit_preview' => "プレビュー", + 'text_templates' => "テンプレート:", + 'submit_use' => "使用", + 'std_no_user_id' => "そのIDを持つユーザーはいません。", + 'text_message_to' => "メッセージ先 ", + 'checkbox_delete_message_replying_to' => "返信先のメッセージを削除", + 'checkbox_save_message_to_sendbox' => "メッセージを送信ボックスに保存" ); + +?> \ No newline at end of file diff --git a/lang/ja/lang_settings.php b/lang/ja/lang_settings.php index 5606a492..2c0ff176 100644 --- a/lang/ja/lang_settings.php +++ b/lang/ja/lang_settings.php @@ -1,816 +1,821 @@ 'はい', - 'text_no' => 'いいえ', - 'text_website_settings' => 'サイト設定', - 'text_configuration_file_saving_note' => '設定を保存する前に、構成ファイルとそのディレクトリアクセス権が正しく構成されていることを確認してください。', - 'head_save_main_settings' => 'メイン設定を保存します', - 'std_message' => '情報', - 'std_click' => 'クリック', - 'std_here' => 'ここ', - 'std_to_go_back' => '戻る。', - 'head_save_basic_settings' => '基本設定を保存します', - 'head_save_code_settings' => 'コード設定を保存します', - 'head_save_bonus_settings' => '魔法の価値設定を保存します', - 'head_save_account_settings' => 'アカウント設定を保存します', - 'head_save_torrent_settings' => 'シード設定を保存します', - 'head_save_smtp_settings' => 'SMTP設定を保存します', - 'head_save_security_settings' => 'セキュリティ設定を保存します', - 'head_save_authority_settings' => '許可設定を保存します', - 'head_save_tweak_settings' => 'セカンダリ設定を保存します', - 'head_save_bot_settings' => 'ロボット設定を保存します', - 'head_bot_settings' => 'ロボット設定', - 'head_tweak_settings' => '二次設定', - 'row_save_user_location' => 'ユーザーの場所を保存します', - 'text_save_user_location_note' => 'デフォルト「いいえ」。ユーザーの最新の訪問場所を保存します。', - 'row_log_user_ips' => 'ユーザーIPアドレスを記録します', - 'text_store_user_ips_note' => 'デフォルト「はい」。ユーザーがIPアドレスを変更したときの記録。', - 'row_kps_enabled' => 'マジックバリューシステムをオンにします', - 'text_enabled' => '開ける', - 'text_disabled_but_save' => '閉じますが、それでも値を記録します', - 'text_disabled_no_save' => '完全に閉じた', - 'text_kps_note' => 'デフォルトは「オープン」です。魔法の価値システムと価値を記録するかどうかをオンまたはオフにします。', - 'row_tracker_founded_date' => 'ウェブサイトの作成時間', - 'text_tracker_founded_date_note' => 'タイムフォーマットは「年間数日」であり、Webサイトが作成された時期として設定します。', - 'row_save_settings' => '設定を保存します', - 'submit_save_settings' => '設定を保存! (1回だけクリックしてください)', - 'head_smtp_settings' => 'SMTP設定', - 'row_mail_function_type' => 'メール関数タイプ', - 'head_security_settings' => '安全設定', - 'row_enable_ssl' => 'SSL(Webページ)の使用', - 'row_enable_ssl_tracker' => 'SSL(トラッカー)の使用', - 'text_optional' => 'オプション(ユーザーが選択できる)', - 'text_ssl_note' => 'デフォルト「いいえ」。 HTTPサーバーは、SSLをサポートするために追加の構成が必要です。また、証明書が必要です(証明書発行機関または自己署名から申請)。', - 'row_enable_image_verification' => '画像検証コードをオンにします', - 'text_image_verification_note' => 'デフォルト「いいえ」。ユーザーは、パスワードの登録/ログイン/検索中に確認コードを入力する必要があります', - 'row_allow_email_change' => 'ユーザーがメールボックスを変更できるようにします', - 'text_email_change_note' => 'デフォルト「いいえ」。 「いいえ」に設定すると、ユーザーがメールアドレスの変更を禁止します。', - 'row_cheater_detection_level' => '詐欺師の検出レベル', - 'select_none' => 'なし', - 'select_conservative' => '保つ', - 'select_normal' => '普通', - 'select_strict' => '厳しい', - 'select_paranoid' => '疑わしい', - 'text_cheater_detection_level_note' => 'デフォルト「通常」。あなたのウェブサイトに最適なレベルに設定してください。より厳しいレベルで、ピアレポート速度が遅くなります。', - 'text_never_suspect' => '疑うことはありません', - 'text_or_above' => 'より高いレベルのユーザーはテストされません。デフォルト', - 'row_max_ips' => '許可されているIPSの最大数', - 'text_max_ips_note' => '同じIPアドレスの登録の最大数。', - 'row_max_login_attemps' => '最大登录尝试', - 'text_max_login_attemps_note' => 'この制限を超えるIPアドレスは無効になります。', - 'head_authority_settings' => '許可設定', - 'row_default_class' => 'デフォルトレベル', - 'text_default_user_class' => 'デフォルトのユーザーレベル:', - 'text_default' => 'デフォルトはです', - 'text_default_class_note' => '。登録時に得られたレベル。', - 'row_staff_member' => '管理グループメンバー', - 'text_minimum_class' => '最小許容レベル:', - 'text_staff_member_note' => '。管理グループのメールボックスの表示など、管理グループのメンバーと見なされるレベル。', - 'row_news_management' => '最近のニュースを管理してください', - 'text_news_management_note' => '。追加、編集、最近のメッセージを削除します。', - 'row_post_funbox_item' => '楽しいボックスコンテンツを投稿します', - 'text_post_funbox_item_note' => '。新しい楽しいボックスコンテンツを公開し、独自の楽しいボックスコンテンツを編集します。', - 'row_funbox_management' => '管理の楽しいボックス', - 'text_funbox_management_note' => '。誰もが興味深いボックスコンテンツを公開することを編集、削除、禁止します。', - 'row_shoutbox_management' => 'グループチャットエリアを管理します', - 'text_shoutbox_management_note' => '。グループチャットエリアとレスキューエリアから情報を削除します。', - 'row_poll_management' => '投票を管理します', - 'text_poll_management_note' => '。追加、編集、削除投票。', - 'row_apply_for_links' => 'アプリケーションリンク', - 'text_apply_for_links_note' => '。ホームページでフレンドリーなリンクを申請してください。', - 'row_link_management' => 'リンクを管理します', - 'text_link_management_note' => '。フレンドリーなリンクを追加、編集、削除します。', - 'row_forum_post_management' => '管理フォーラムの投稿', - 'text_forum_post_management_note' => '。編集、削除、移動、トップ、ロックフォーラムの投稿。', - 'row_comment_management' => '管理コメント', - 'text_comment_management_note' => '。編集、シードと候補者のコメントを削除します。', - 'row_forum_management' => '管理フォーラムセクション', - 'text_forum_management_note' => '。フォーラムのセクションを追加、編集、削除、および移動します。', - 'row_view_userlist' => 'ユーザーリストを表示します', - 'text_view_userlist_note' => '。ユーザーリストを表示および検索します。', - 'row_torrent_management' => '種子を管理します', - 'text_torrent_management_note' => '。シードを編集しますが、シードを上部またはプロモーション、または削除することはできません。', - 'row_torrent_sticky' => 'シードトップを設定します', - 'text_torrent_sticky_note' => '。シードを上に設定します', - 'row_torrent_on_promotion' => '種子をプロモーションとして設定します', - 'text_torrent_promotion_note' => '。種子をプロモーションとして設定します。', - 'row_ask_for_reseed' => '更新のリクエスト', - 'text_ask_for_reseed_note' => '。種子が切断されたら、種子を更新するようリクエストしてください。', - 'row_view_nfo' => 'NFOを表示します', - 'text_view_nfo_note' => '。 NFOファイルを表示します。', - 'row_view_torrent_structure' => 'シード構造を表示します', - 'text_view_torrent_structure_note' => '。シードファイルの構造を表示します。', - 'row_send_invite' => '招待状を送信します', - 'text_send_invite_note' => '。他の人にウェブサイトに参加するよう招待状を送ってください。', - 'row_view_history' => '履歴を表示します', - 'text_view_history_note' => '。他のユーザーのコメントを表示し、履歴を投稿します。', - 'row_view_topten' => 'ランキングリストを表示します', - 'text_view_topten_note' => '。ランキングを確認してください。', - 'row_view_general_log' => '一般ログを表示します', - 'text_view_general_log_note' => '。一般ログを確認しますが、機密ログを表示できません。', - 'row_view_confidential_log' => '機密ログを表示します', - 'text_view_confidential_log_note' => '。サイト設定の変更などの機密ログを表示します。', - 'row_view_user_confidential' => 'ユーザーの機密プロファイルを表示します', - 'text_view_user_confidential_note' => '。 IPアドレスやメールアドレスなど、ユーザーの機密プロファイルを表示します。', - 'row_view_user_torrent' => 'ユーザーシード履歴を表示します', - 'text_view_user_torrent_note' => '。種子をダウンロードする歴史など、ユーザーの種子履歴を表示します。
    ユーザーのプライバシーレベルが「強い」ように設定されていない場合のみ。', - 'row_general_profile_management' => 'ユーザーの基本プロファイルを管理します', - 'text_general_profile_management_note' => '。ユーザーの基本プロファイルを変更しますが、電子メールアドレス、ユーザー名、アップロードボリューム、ダウンロードボリューム、マジック値などの重要なアイテムは変更しません。', - 'row_crucial_profile_management' => '重要なユーザープロファイル情報を管理します', - 'text_crucial_profile_management_note' => '。寄付情報を除くすべてのユーザープロファイル情報を変更します(のみ', - 'text_can_manage_donation' => '寄付情報を管理できます)。', - 'row_upload_subtitle' => '字幕をアップロードします', - 'text_upload_subtitle_note' => '。シードに対応する字幕をアップロードします。', - 'row_delete_own_subtitle' => '字幕を削除します', - 'text_delete_own_subtitle_note' => '。アップロードした字幕を削除します。', - 'row_subtitle_management' => '字幕を管理します', - 'text_subtitle_management' => '。字幕を削除します。', - 'row_update_external_info' => '外部情報を更新します', - 'text_update_external_info_note' => '。 IMDB情報などの外部情報を更新します。', - 'row_view_anonymous' => '匿名を見る', - 'text_view_anonymous_note' => '。匿名の人の本当の身元を確認してください。', - 'row_be_anonymous' => '匿名として', - 'text_be_anonymous_note' => '。シードを投稿し、字幕をアップロードするときに匿名を選択します。', - 'row_add_offer' => '候補者を追加します', - 'text_add_offer_note' => '。候補者が開始できるようにします。', - 'row_offer_management' => '管理候補者', - 'text_offer_management_note' => '。候補者を合格、編集、削除します。', - 'row_upload_torrent' => '種子を放出します', - 'text_upload_torrent_note' => '。種子をシードエリアに公開します。', - 'row_upload_special_torrent' => '特別なゾーンに種を公開します', - 'text_upload_special_torrent_note' => '。特別ゾーンにシードを公開します。', - 'row_view_special_torrent' => '特別なエリアの種子を表示します', - 'text_view_special_torrent_note' => '特別なエリアシードをご覧ください。', - 'row_move_torrent' => '種子を移動します', - 'text_move_torrent_note' => '。各間隔で種子を移動します。', - 'row_chronicle_management' => '管理履歴', - 'text_chronicle_management_note' => '。履歴コンテンツを追加、編集、削除します。', - 'row_view_invite' => '招待状を表示します', - 'text_view_invite_note' => '。ユーザーの招待状の履歴を表示します。', - 'row_buy_invites' => '招待状を購入します', - 'text_buy_invites_note' => '。マジックセンターでの招待状を購入できます。', - 'row_see_banned_torrents' => '禁止された種子を表示します', - 'text_see_banned_torrents_note' => '。禁止された種子を表示およびダウンロードします。', - 'row_vote_against_offers' => '候補者に反対票を投じます', - 'text_vote_against_offers_note' => '。候補者にノーを投票してください。', - 'row_allow_userbar' => '性格バーを許可します', - 'text_allow_userbar_note' => '。ユーザーがパーソナリティバーを使用できるようにします。', - 'head_basic_settings' => '基本設定', - 'row_site_name' => 'ウェブサイト名', - 'text_site_name_note' => 'あなたのウェブサイトの名前。', - 'row_base_url' => '基本URL', - 'text_it_should_be' => 'として設定する必要があります', - 'text_base_url_note' => '。 最後にスラッシュ(/)を追加しないでください! ', - 'row_announce_url' => 'トラッカーアドレス', - 'row_mysql_host' => 'mysqlホスト', - 'text_mysql_host_note' => 'MySQLホストアドレスを入力してください。 MySQLとHTTPサーバーが同じサーバーで実行されている場合は、「localhost」を入力してください。それ以外の場合は、MySQLを実行しているホストのIPアドレスに記入してください。', - 'row_mysql_user' => 'mysqlユーザー名', - 'text_mysql_user_note' => 'mysqlユーザー名を入力してください。 MySQLのデフォルトのユーザー名は「root」です。ただし、セキュリティ上の理由から、このWebサイトのデータベース用に別のユーザーを作成することをお勧めします。', - 'row_mysql_password' => 'mysqlパスワード', - 'text_mysql_password_note' => 'セキュリティ上の理由から、現在のMySQLユーザーパスワードはここには表示されません。 基本設定を変更する場合は、毎回MySQLパスワードに入力する必要があります。', - 'row_mysql_database_name' => 'MySQLデータベース名', - 'row_mysql_database_port' => 'MySQLデータベースポート', - 'text_mysql_database_name_note' => 'WebサイトのMySQLデータベース名を入力してください。', - 'text_mysql_database_port_note' => 'WebサイトのMySQLデータベースポートに入力してください。', - 'head_code_settings' => 'コード設定', - 'row_main_version' => 'メインバージョン', - 'text_main_version_note' => 'コードのメインバージョン。', - 'row_sub_version' => '2番目のバージョン', - 'text_sub_version_note' => 'コードの転換', - 'row_release_date' => 'リリース時間', - 'text_release_date_note' => '時間形式は「年間数日」です。コードが公開された時間。', - 'row_authorize_to' => '認定者', - 'text_authorize_to_note' => '認可されたウェブサイトまたは個人の名前。', - 'row_authorization_type' => '承認タイプ', - 'text_free' => '無料の承認', - 'text_commercial' => '商業ライセンス', - 'row_web_site' => 'Webサイト', - 'text_web_site_note' => '', - 'text_web_site_note_two' => 'ウェブサイトURL。', - 'row_email' => '郵便', - 'text_email_note_one' => '', - 'text_email_note_two' => 'メールにお問い合わせください。', - 'row_msn' => 'MSN', - 'text_msn_note_one' => '', - 'text_msn_note_two' => 'MSNに連絡してください。', - 'row_qq' => 'QQ', - 'text_qq_note_one' => '', - 'text_qq_note_two' => 'QQにお問い合わせください。', - 'row_telephone' => '電話', - 'text_telephone_note_one' => '', - 'text_telephone_note_two' => '連絡先番号。', - 'head_bonus_settings' => '魔法の価値の設定', - 'text_bonus_by_seeding' => '種を作ることで魔法の価値を取得します', - 'row_donor_gets_double' => 'ダブラーはダブル', - 'text_donor_gets' => 'ドナーは、種子を作ることで通常の状態を得ることができます', - 'text_times_as_many' => '魔法の価値があります。デフォルト「2」。 「0」に設定すると、ドナーを他のユーザーと等しく扱います。', - 'row_basic_seeding_bonus' => '基本的な魔法の価値', - 'text_user_would_get' => '種子内の各シードについて、ユーザーは', - 'text_bonus_points' => '魔法の価値、最大計算', - 'text_torrents_default' => '種。デフォルト \'1\'、 \'7\'。魔法の値を「0」に設定して、このルールを無効にします。', - 'row_seeding_formula' => 'フォーミュラを作成します', - 'text_bonus_formula_one' => '1時間あたりの魔法のポイントの数は、次の式で与えられます', - 'text_where' => 'どこ', - 'text_bonus_formula_two' => ' a は中間変数
  • ti i の生存時間、つまり、種のリリースから現在まで経過した時間、ユニットは週です', - 'text_bonus_formula_three' => ' t0 はパラメーターです。 t0 =', - 'text_bonus_formula_four' => '。デフォルトは「4」です', - 'text_bonus_formula_five' => ' si i th種子のサイズ、ユニットはgbです', - 'text_bonus_formula_six' => ' ni は、パラメーターとしての i
  • n0 のシードメーカーの現在の数です。 n0 =', - 'text_bonus_formula_zero_bonus_factor' => ' wi は、 i Th種子重量係数です。デフォルトは1で、ゼロデーモンシードはです', - 'text_bonus_formula_seven' => '。デフォルトは「7」です', - 'text_bonus_formula_eight' => ' b は、1時間でユーザーが取得したマジックポイントの数です', - 'text_bonus_formula_nine' => ' b0 はパラメーターであり、1時間でユーザーが取得した魔法の値の上限を表します。 b0 =', - 'text_bonus_formula_ten' => '。デフォルトは「100」です', - 'text_bonus_formula_eleven' => ' l はパラメーターです。 l =', - 'text_bonus_formula_twelve' => '。デフォルトは「300」です', - 'text_misc_ways_get_bonus' => '取得する他の方法', - 'row_uploading_torrent' => '新しい種子をリリースします', - 'text_uploading_torrent_note' => '彼が新しい種をリリースした場合、魔法の価値。デフォルト「15」。', - 'row_uploading_subtitle' => 'サブタイトルをアップロードします', - 'text_uploading_subtitle_note' => '彼がサブタイトルをアップロードする場合、魔法の価値。デフォルト「5」。', - 'row_starting_topic' => '新しいトピックをリリースします', - 'text_starting_topic_note' => '彼がフォーラムに新しいトピックを投稿した場合、魔法の価値。デフォルト「2」。', - 'row_making_post' => '投稿に返信してください', - 'text_making_post_note' => '彼がフォーラムに投稿を投稿した場合、魔法の価値。デフォルト「1」。', - 'row_adding_comment' => 'コメントを投稿してください', - 'text_adding_comment_note' => '彼が種と候補者についてコメントする場合、魔法の価値。デフォルト「1」。', - 'row_voting_on_poll' => '調査と投票に参加します', - 'text_voting_on_poll_note' => '彼が世論調査に参加した場合、魔法の価値。デフォルト「1」。', - 'row_voting_on_offer' => '候補者の投票に参加します', - 'text_voting_on_offer_note' => '彼が候補者の投票に参加した場合、魔法の価値。デフォルト「1」。', - 'row_voting_on_funbox' => '楽しいボックス投票', - 'text_voting_on_funbox_note' => '彼が楽しいボックス投票に参加した場合、魔法の価値。デフォルト「1」。', - 'row_saying_thanks' => 'ありがとうと言ってください', - 'text_giver_and_receiver_get' => 'Expressorに感謝し、受信者は受け取ります', - 'text_saying_thanks_and' => 'そして', - 'text_saying_thanks_default' => '魔法の価値。デフォルト「0.5」、「0」。', - 'row_funbox_stuff_reward' => '楽しいボックスの報酬', - 'text_funbox_stuff_reward_note' => '彼が投稿した楽しいボックスのコンテンツが「興味深い」と評価されている場合、魔法の価値。デフォルト「5」。', - 'text_things_cost_bonus' => '魔法の価値を消費するアイテム', - 'row_one_gb_credit' => '1.0 GBアップロードボリューム', - 'text_it_costs_user' => 'ユーザーは紛失します', - 'text_one_gb_credit_note' => '彼が1.0 GBのアップロードボリュームを交換することを選択した場合、魔法の価値。デフォルト「300」。', - 'row_five_gb_credit' => '5.0 GBアップロードボリューム', - 'text_five_gb_credit_note' => '5.0 GBのアップロードボリュームを交換することを選択した場合、魔法の価値。デフォルト「800」。', - 'row_ten_gb_credit' => '10.0 GBアップロードボリューム', - 'text_ten_gb_credit_note' => '5.0 GBのアップロードボリュームを交換することを選択した場合、魔法の価値。デフォルト「1200」。', - 'row_ratio_limit' => '株式レートの制限', - 'text_user_with_ratio' => 'ユーザーの共有率がより高い場合', - 'text_uploaded_amount_above' => 'そして、そのアップロードボリュームはより大きくなります', - 'text_ratio_limit_default' => 'GBの場合、彼はさらにアップロードを交換できません。デフォルト「6」、「50」。このルールを無効にするために、株式レートを「0」に設定します。', - 'row_buy_an_invite' => '招待状の割り当てを購入します', - 'text_buy_an_invite_note' => '彼が招待状の割り当てを交換することを選択した場合、魔法の価値。デフォルト「1000」。購入を禁止するには、魔法の値を「0」に設定します。', - 'row_custom_title' => 'カスタムタイトル', - 'text_custom_title_note' => '彼がタイトルを一度カスタマイズすることを選択した場合、魔法の価値。デフォルト「5000」。', - 'row_vip_status' => 'VIP治療', - 'text_vip_status_note' => '彼が1か月のVIPトリートメントに自分自身を交換することを選択した場合、魔法の価値。デフォルト「8000」。', - 'row_allow_giving_bonus_gift' => '魔法の価値が与えられるようにします', - 'text_giving_bonus_gift_note' => 'ユーザーがお互いに魔法の価値を与えることを許可します。デフォルト「はい」。', - 'head_account_settings' => 'アカウント設定', - 'row_never_delete' => '永遠に守ってください', - 'text_delete_inactive_accounts' => '非アクティブアカウントをブロックします', - 'text_never_delete' => 'より高いレベルのアカウントは永遠に保持されます。デフォルト', - 'row_never_delete_if_packed' => '密封後に永遠に維持します', - 'text_never_delete_if_packed' => 'より高いレベルのアカウントは、それらが密封されている場合、永久に保持されます。デフォルト', - 'row_delete_packed' => 'ブロックされたアカウントを禁止します', - 'text_delete_packed_note_one' => 'ブロックされたアカウントが継続的である場合', - 'text_delete_packed_note_two' => 'ログインしないと禁止されます。デフォルトは「400」で、このルールを無効にするために「0」に設定されています。', - 'row_delete_unpacked' => '封印されていないアカウントをブロックします', - 'text_delete_unpacked_note_one' => '封印されていないアカウントが継続的である場合', - 'text_delete_unpacked_note_two' => 'ログインしないと禁止されます。デフォルトは「150」で、このルールを無効にするために「0」に設定されています。', - 'row_delete_no_transfer' => 'トラフィックなしでユーザーをブロックします', - 'text_delete_transfer_note_one' => 'トラフィックのないユーザー(つまり、データのアップロード/ダウンロードはすべて0です)', - 'text_delete_transfer_note_two' => 'ログインや登録時間は終了しません', - 'text_delete_transfer_note_three' => '日、アカウントは禁止されます。デフォルト「60」、「0」。
    注:2つのルールは個別に実行されます。ルールのいずれかを「0」に設定します 1つのルールのみが禁止されています。', - 'text_user_promotion_demotion' => 'ユーザーのアップグレードとダウングレード', - 'row_ban_peasant_one' => '無効', - 'row_ban_peasant_two' => '', - 'text_ban_peasant_note_one' => 'もし', - 'text_ban_peasant_note_two' => '共有率は1日以内に改善されておらず、無効になります。デフォルト「30」、「0」への設定はすぐに無効になります。', - 'row_demoted_to_peasant_one' => 'にダウングレードします', - 'row_demoted_to_peasant_two' => '', - 'text_demoted_peasant_note_one' => 'ユーザーは格下げされます', - 'text_demoted_peasant_note_two' => ':', - 'text_downloaded_amount_larger_than' => 'その他のダウンロード', - 'text_and_ratio_below' => 'GBと株式レートはより低いです', - 'text_demote_peasant_default_one' => '。デフォルト「50」、「0.4」。', - 'text_demote_peasant_default_two' => '。デフォルト「100」、「0.5」。', - 'text_demote_peasant_default_three' => '。デフォルト「200」、「0.6」。', - 'text_demote_peasant_default_four' => '。デフォルト「400」、「0.7」。', - 'text_demote_peasant_default_five' => '。デフォルト「800」、「0.8」。', - 'text_demote_peasant_note' => '注: not 増分ダウンロードの順序を変更します。ダウンロードボリュームを「0」に設定すると、対応するルールが禁止されます。', - 'row_promote_to_one' => 'にアップグレードします', - 'row_promote_to_two' => '', - 'text_member_longer_than' => '登録時間はより大きくなります', - 'text_downloaded_more_than' => '、ダウンロードボリュームはより大きい', - 'text_with_ratio_above' => 'GB、および共有率はより大きくなります', - 'text_seed_points_more_than' => '毎週、種子生産のスコアはより大きくなります', - 'text_be_promoted_to' => 'ユーザーはにアップグレードされます', - 'text_promote_to_default_one' => '。デフォルト', - 'text_promote_to_default_two' => '、彼は降格されます。デフォルト', - 'text_demote_with_ratio_below' => 'ただし、ユーザーの共有率が低い場合', - 'head_torrent_settings' => '種子設定', - 'row_promotion_rules' => 'プロモーションルール', - 'text_promotion_rules_note' => 'いくつかの自動プロモーションルールをオンにします。 コードを改善する必要があります。明確でない場合は、有効にしないでください。 ', - 'row_random_promotion' => 'ランダムプロモーション', - 'text_random_promotion_note_one' => '種子は、リリース時にシステムによって自動的かつランダムに宣伝されます。', - 'text_halfleech_chance_becoming' => '考えられる可能性のある%は 50% です。デフォルト「5」。', - 'text_free_chance_becoming' => '考えられる可能性のある%は free です。デフォルト「2」。', - 'text_twoup_chance_becoming' => '考えられる可能性のある%は 2x です。デフォルト「2」。', - 'text_freetwoup_chance_becoming' => '可能性の%は 2x free になります。デフォルト「1」。', - 'text_twouphalfleech_chance_becoming' => '可能性の%は 2x 50% になります。デフォルト「0」。', - 'text_random_promotion_note_two' => '値を「0」に設定して、対応するルールを無効にします。', - 'row_large_torrent_promotion' => '大量の種子プロモーション', - 'text_torrent_larger_than' => 'より大きい', - 'text_gb_promoted_to' => 'GBシードは自動的に設定されます', - 'text_by_system_upon_uploading' => '。', - 'text_large_torrent_promotion_note' => 'デフォルト「20」、「無料」。このルールを無効にするために、シードボリュームを「0」に設定します。', - 'row_promotion_timeout' => 'プロモーションの時間制限', - 'text_promotion_timeout_note_one' => '種子のプロモーションは、一定期間後に期限切れになります。', - 'text_halfleech_will_become' => ' 50% ', - 'text_after' => '、リリース時間が経過した場合', - 'text_halfleech_timeout_default' => '空。デフォルト「通常」、「150」。', - 'text_free_will_become' => ' 無料 ', - 'text_free_timeout_default' => '空。デフォルトの「通常」、「60」。', - 'text_twoup_will_become' => ' 2x ', - 'text_twoup_timeout_default' => '空。デフォルトの「通常」、「60」。', - 'text_freetwoup_will_become' => ' 2x free はなります', - 'text_freetwoup_timeout_default' => '空。デフォルト「通常」、「30」。', - 'text_halfleechtwoup_will_become' => ' 2x 50% ', - 'text_halfleechtwoup_timeout_default' => '空。デフォルト「通常」、「30」。', - 'text_normal_will_become' => '通常のはなります', - 'text_normal_timeout_default' => '空。デフォルト「通常」、「0」。', - 'text_promotion_timeout_note_two' => 'プロモーションが期限切れにならないように、日数を「0」に設定します。', - 'row_auto_pick_hot' => '人気のある種子を自動的に選択します', - 'text_torrents_uploaded_within' => 'リリース後', - 'text_days_with_more_than' => '数日以内に、種が作られた場合', - 'text_be_picked_as_hot' => '、 とマークされます。', - 'text_auto_pick_hot_default' => 'デフォルト「7」、「10」。このルールを無効にするために、日数を「0」に設定します。', - 'row_uploader_get_double' => 'パブリッシャーはアップロードボリュームを2倍にします', - 'text_torrent_uploader_gets' => '種の場合、その出版社は通常の状況を得るでしょう', - 'text_times_uploading_credit' => 'アップロードボリュームの倍。', - 'text_uploader_get_double_default' => 'デフォルト「1」。 「1」に設定すると、出版社や他のユーザーが均等に扱われます。', - 'row_delete_dead_torrents' => 'カットを削除します', - 'text_torrents_being_dead_for' => '連続した種子カット', - 'text_days_be_deleted' => '空の種は自動的に削除されます。デフォルト「0」。このルールを無効にするために「0」に設定します。', - 'row_delete_dead_torrents_note' => ' 警告 :種子は削除されると復元されません。サイトが長期間閉鎖されている場合は、このルールを禁止してください。', - 'head_main_settings' => 'メイン設定', - 'row_site_online' => 'オンラインサイト', - 'text_site_online_note' => 'デフォルト「はい」。サイトの更新やその他のメンテナンスを行うときは、一時的にサイトを閉じる必要がある場合があります。 :ウェブサイト管理者は、現時点でまだウェブサイトにアクセスできます。', - 'row_enable_invite_system' => '招待システムをオンにします', - 'text_invite_system_note' => 'デフォルト「はい」。新しいユーザーが招待システムを介して登録できるようにします。', - 'row_initial_uploading_amount' => '初期アップロードボリューム', - 'text_initial_uploading_amount_note' => 'ユニットはバイトです。つまり、1073741824は1 GBです。新しく登録されたユーザーの最初のアップロードボリューム。デフォルト「0」。', - 'row_initial_invites' => '最初の招待クォータ', - 'text_initial_invites_note' => '新しく登録されたユーザー向けの最初の招待クォータ。デフォルト「0」。', - 'row_invite_timeout' => '招待状の期限が切れました', - 'text_invite_timeout_note' => 'ユニットは日です。招待状コードが発行後x日から使用されていない場合、削除されます。デフォルト「7」。', - 'row_enable_registration_system' => '登録システムをオンにします', - 'row_allow_registrations' => '有効にすると、無料登録が許可されています。デフォルト「はい」。', - 'row_verification_type' => 'ユーザー検証方法', - 'text_email' => '郵便', - 'text_admin' => '管理者', - 'text_automatically' => '自動', - 'text_verification_type_note' => '電子メール:検証メールを送信します。管理者:管理者が手動で。自動:登録が完了した後に自動的にアクティブ化します。', - 'row_enable_wait_system' => '待機システムをオンにします', - 'text_wait_system_note' => 'デフォルト「いいえ」。待機システムをオンまたはオフにします。 faq を参照してください。', - 'row_enable_max_slots_system' => '接続番号システムをオンにします', - 'text_max_slots_system_note' => 'デフォルト「いいえ」。最大同時ダウンロード制限をオンまたはオフにします。 faq を参照してください。', - 'row_show_polls' => '投票を表示します', - 'text_show_polls_note' => 'デフォルト「はい」。ホームページで投票を表示します。', - 'row_show_stats' => 'サイトデータを表示します', - 'text_show_stats_note' => 'デフォルト「はい」。ホームページにサイトデータを表示します。', - 'row_show_last_posts' => '最近のフォーラムの投稿を表示します', - 'text_show_last_posts_note' => 'デフォルト「いいえ」。ホームページに最近のフォーラムの投稿を表示します。', - 'row_show_last_torrents' => '最新の種を見せてください', - 'text_show_last_torrents_note' => 'デフォルト「いいえ」。最近公開された種子をホームページに表示します。', - 'row_show_server_load' => 'サーバーの負荷を表示します', - 'text_show_server_load_note' => 'デフォルト「はい」。ホームページにサーバーのロードを表示します。', - 'row_show_forum_stats' => 'フォーラムデータを表示します', - 'text_show_forum_stats_note' => 'デフォルト「はい」。フォーラムページにフォーラムデータを表示します。', - 'row_show_hot' => '人気のあるリソースを表示します', - 'text_show_hot_note' => 'デフォルト「はい」。ホームページに人気のあるリソースを表示します。一般的なリソースは、システムによって自動的に選択されるか、管理グループのメンバーによって選択されます。', - 'row_show_classic' => '古典的なリソースを表示します', - 'text_show_classic_note' => 'デフォルト「いいえ」。ホームページに古典的なリソースを表示します。指定された総モデレーター以上のみが一般的なリソースを選択できます。', - 'row_enable_imdb_system' => 'IMDBシステムをオンにします', - 'text_imdb_system_note' => 'デフォルト「はい」。グローバルIMDBシステム設定。', - 'row_enable_pt_gen_system' => 'PT-Genシステムをオンにします', - 'text_enable_pt_gen_system_note' => 'デフォルト「いいえ」。グローバルPT-Genシステム設定。', - 'row_pt_gen_api_point' => 'Pt-Genインターフェイスアドレス', - 'text_pt_gen_api_point_note' => 'デフォルト \'\'、 参照文書 は、必要に応じて自分で構築されます。', - 'row_enable_school_system' => '学校システムを開きます', - 'text_school_system_note' => 'デフォルト「いいえ」。この関数について明確でない場合、 有効にしないでください。', - 'row_restrict_email_domain' => '制限付きメールボックスドメイン', - 'text_restrict_email_domain_note' => 'デフォルト「いいえ」。 「はい」に設定すると、指定されたメールボックスドメインのみがアカウントを登録できます。 ここに を参照してください。', - 'row_show_shoutbox' => 'グループチャットエリアを表示します', - 'text_show_shoutbox_note' => 'デフォルト「はい」。ホームページにグループチャットエリアを表示します。', - 'row_show_funbox' => '楽しい箱を見せます', - 'text_show_funbox_note' => 'デフォルト「いいえ」。ホームページに楽しい箱を表示します。', - 'row_enable_offer_section' => '候補ゾーンを開く', - 'text_offer_section_note' => 'デフォルト「はい」。候補ゾーンをオンまたはオフにします。', - 'row_show_donation' => '寄付を開始します', - 'text_show_donation_note' => '寄付情報と寄付ランキングを示します。', - 'row_show_special_section' => '特別なエリアを開きます', - 'text_show_special_section_note' => 'デフォルト「いいえ」。この関数について明確でない場合、 有効にしないでください。', - 'row_weekend_free_uploading' => '週末の無料リリース', - 'text_weekend_free_uploading_note' => 'デフォルト「いいえ」。 「はい」に設定されると、すべてのユーザーが週末に(土曜日12:00から日曜日23:59まで)自由に種をリリースできます。', - 'row_enable_helpbox' => 'ヘルプエリアを開きます', - 'text_helpbox_note' => 'デフォルト「いいえ」。 「いいえ」に設定すると、訪問者はメッセージの送信を禁止されています。', - 'row_enable_bitbucket' => 'アップローダーをオンにします', - 'text_bitbucket_note' => 'デフォルト「はい」。 「いいえ」に設定されているユーザーは、アバターをWebサイトにアップロードすることを禁止されています。', - 'row_enable_small_description' => 'サブタイトルを開きます', - 'text_small_description_note' => 'デフォルト「はい」。サブタイトルは、シードページのシードタイトルの下に表示されます。', - 'row_ptshow_naming_style' => 'ptshow命名スタイル', - 'text_ptshow_naming_style_note' => 'デフォルト「いいえ」。形式は[月、月、日、年] [元の名前] [中国語名]です。この関数について明確でない場合、 有効にしないでください。', - 'row_use_external_forum' => '外部フォーラムを使用します', - 'text_use_external_forum_note' => 'デフォルト「いいえ」。組み込みフォーラムの代わりに外部フォーラムを使用するように「はい」に設定します。', - 'row_external_forum_url' => '外部フォーラムURL', - 'text_external_forum_url_note' => 'これに類似したアドレスを入力してください:http://www.cc98.org', - 'row_torrents_category_mode' => '種子分類パターン', - 'text_torrents_category_mode_note' => '種子領域の分類パターンを変更します。', - 'row_special_category_mode' => '特別な分類モード', - 'text_special_category_mode_note' => '特別な領域の分類モデルを変更します。', - 'row_default_site_language' => 'デフォルトのサイト言語', - 'text_default_site_language_note' => 'ログインページのデフォルト言語を変更します。', - 'row_default_stylesheet' => 'デフォルトのインターフェイススタイル', - 'text_default_stylesheet_note' => '新しく登録されたユーザーは、デフォルトでこのインターフェイススタイルを使用します。', - 'row_max_torrent_size' => 'シードファイルサイズ制限', - 'text_max_torrent_size_note' => 'ユニットはバイトです。デフォルトは1048576で、これは1 MBです。', - 'row_announce_interval' => '報告間隔', - 'text_announce_interval_note_one' => 'ユニットは秒です。トラッカーは、この間隔で情報を報告するためにBitTorrentクライアントに通知します。 BitTorrentクライアントはこの通知を無視し、ユーザーがトラッカーに手動で接続することを選択できるため、実際の状況でレポート間隔が異なる可能性があることに注意する必要があります。', - 'text_announce_default' => 'デフォルト:', - 'text_announce_default_default' => 'デフォルト「1800」、つまり30分', - 'text_for_torrents_older_than' => 'リリース時間が超えます', - 'text_days' => '空の種:', - 'text_announce_two_default' => 'デフォルト「7」、「2700」(つまり45分)。このルールを無効にするために日数を「0」に設定します', - 'text_announce_three_default' => 'デフォルト「30」、「3600」(つまり、60分)。このルールを無効にするために日数を「0」に設定します', - 'text_announce_interval_note_two' => ' note not 日が増える順序を変更します。
    間隔が短いほど、ピア情報の更新がより正確になり、がより大きなサーバーの負荷をもたらします< /b>。', - 'row_cleanup_interval' => '自動クリーニング間隔', - 'text_cleanup_interval_note_one' => '自動クリーニング作業は、xxx秒ごとに行われます(ユーザーのアップグレード、ダウングレード、マジック値の追加など)。', - 'text_priority_one' => '優先度1:', - 'text_priority_one_note' => 'コンパニオンステータスを更新します。魔法の価値を追加します。デフォルトは「3600」、つまり60分です。', - 'text_priority_two' => '優先度2:', - 'text_priority_two_note' => '種子の可視性を更新します。デフォルトは「5400」で、90分です。', - 'text_priority_three' => '優先度3:', - 'text_priority_three_note' => '種子、ダウンロード、コメントの数を更新します。フォーラムの投稿/トピックの数を更新します。期限切れの候補者を削除します。シードプロモーションは期限切れになります。人気のある種子を自動的に選択します。デフォルト「7200」、つまり2時間。', - 'text_priority_four' => '優先度4:', - 'text_priority_four_note' => '検証に合格していないアカウント、期限切れのログイン試行レコード、期限切れの招待コード、画像検証コードを削除します。ユーザーアカウントをクリーニングします(非アクティブアカウント、アカウントのアップグレード、ダウングレード、および無効)。アップロードされた写真を送信します。ユーザーのシードの合計を更新し、時間をダウンロードします。デフォルトは「86400」で、24時間です。', - 'text_priority_five' => '優先度5:', - 'text_priority_five_note' => 'シードファイルに存在しない種子を削除します。フォーラムの古代のテーマをロックします。古代の報告情報を削除します。デフォルトは「1296000」で、15日です。', - 'text_cleanup_interval_note_two' => ' note 時間の増分の順序を変更しないでください。', - 'row_signup_timeout' => '登録タイムアウト', - 'text_signup_timeout_note' => 'ユニットは秒です。登録情報xxx秒を送信した後、ユーザーが確認に合格しなかった場合、アカウントは削除されます。デフォルトは「259200」で、3日間です。', - 'row_min_offer_votes' => '最低候補者投票', - 'text_min_offer_votes_note' => '候補者が反対票よりも多くの票を投じている場合、候補者は可決されます。デフォルト「15」。', - 'row_offer_vote_timeout' => '候補者投票タイムアウト', - 'text_offer_vote_timeout_note' => 'ユニットは秒です。候補者がxxx秒後に渡されない場合、削除されます。デフォルトは「259200」で、72時間です。 「0」に設定しても、タイムアウト制限は設定されません。', - 'row_offer_upload_timeout' => '候補者のリリースタイムアウト', - 'text_offer_upload_timeout_note' => 'ユニットは秒です。候補者が通過してからxxx秒以内に種子を放出しない場合、削除されます。デフォルトは「86400」で、24時間です。 「0」に設定しても、タイムアウト制限は設定されません。', - 'row_max_subtitle_size' => '最大字幕ボリューム', - 'text_max_subtitle_size_note' => 'ユニットはバイトです。アップロードを許可する最大サブタイトルボリューム。デフォルトは3145728で、3 MBです。 「0」に設定すると、ボリューム制限は設定されていません。', - 'row_posts_per_page' => 'ページごとのデフォルトの投稿数', - 'text_posts_per_page_note' => 'ページフォーラムのトピックごとに表示される投稿の数。デフォルト「10」。
    注:ユーザーの個人設定は、システムのデフォルト設定をオーバーライドします。', - 'row_topics_per_page' => 'ページごとのデフォルトのトピック数', - 'text_topics_per_page_note' => 'フォーラムのページごとに表示されるトピックの数。デフォルト「20」。
    注:ユーザーの個人設定は、システムのデフォルト設定をオーバーライドします。', - 'row_number_of_news' => '最新ニュース', - 'text_number_of_news_note' => '最初に表示された最近のメッセージの数。デフォルト「3」。', - 'row_torrent_dead_time' => '最大種子破損時間', - 'text_torrent_dead_time_note' => 'ユニットは秒です。種子にxxx秒間シーダーがない場合、シードブレイクとしてマークされます。デフォルトは「21600」、つまり6時間です。', - 'row_max_users' => 'ユーザーの最大数', - 'text_max_users' => 'この制限に達すると、無料登録と招待状の登録の両方が閉鎖されます。', - 'row_https_announce_url' => 'HTTPSトラッカーアドレス', - 'text_https_announce_url_note' => 'ウェブサイトがHTTPとHTTPSに同じアドレスを使用している場合は、空白のままにします。として設定する必要があります', - 'row_site_accountant_userid' => 'ウェブサイトアカウンティングユーザーID', - 'text_site_accountant_userid_note' => '「1」などの番号に記入します。寄付者は、このIDを使用してユーザーに寄付メッセージを送信します。', - 'row_alipay_account' => 'Alipayアカウント', - 'text_alipal_account_note' => '「yourname@gmail.com」などの寄付を受け取るために使用するAlipayアカウント。そうでない場合は、空白のままにしておきます。', - 'row_paypal_account' => 'PayPalアカウント', - 'text_paypal_account_note' => '「yourname@gmail.com」などの寄付を受け取るために使用するPayPalアカウント。そうでない場合は、空白のままにしておきます。', - 'row_site_email' => 'ウェブサイトのメールアドレス', - 'text_site_email_note' => 'ウェブサイトのメールアドレス', - 'row_report_email' => 'メールアドレスを報告します', - 'text_report_email_note' => 'ユーザーレポートのメールアドレス', - 'row_site_slogan' => 'ウェブサイトのスローガン', - 'text_site_slogan_note' => 'ウェブサイトのスローガン', - 'row_icp_license' => 'ICP登録情報', - 'text_icp_license_note' => 'これは、中国で運営されているウェブサイトに適用されるライセンスシステムです。そうでない場合は、空白のままにしておきます。', - 'row_torrent_directory' => 'シードディレクトリ', - 'text_torrent_directory' => 'デフォルトの「トレント」。 最後にスラッシュ(/)を追加しないでください! ', - 'row_bitbucket_directory' => 'アップローダーディレクトリ', - 'text_bitbucket_directory_note' => 'デフォルト「Bitbucket」。 最後にスラッシュ(/)を追加しないでください! ', - 'row_cache_directory' => 'キャッシュディレクトリ', - 'text_cache_directory_note' => 'デフォルトの「キャッシュ」。 最後にスラッシュ(/)を追加しないでください! ', - 'row_torrent_name_prefix' => 'シードファイル名プレフィックス', - 'text_torrent_name_prefix_note' => 'ウェブサイトからダウンロードされたシードファイルのファイル名にプレフィックスを追加します。デフォルト \'[nexus]\'。 違法なファイル名文字を使用しないでください! ', - 'row_peering_time_calculation' => 'コンパニオン時間は時間の計算を開始します', - 'text_peering_time_calculation_note' => '空白のままにしてください。この設定は、歴史的な理由で保持されます。', - 'row_new_subtitle_id' => '新しいサブタイトルID', - 'text_new_subtitle_id_note' => '「0」を保持してください。この設定は、歴史的な理由で保持されます。', - 'head_website_settings' => 'サイト設定', - 'row_basic_settings' => '基本設定', - 'submit_basic_settings' => '基本設定', - 'text_basic_settings_note' => '最も基本的なプロジェクト、ウェブサイト名などを設定します。', - 'row_main_settings' => 'メイン設定', - 'submit_main_settings' => 'メイン設定', - 'text_main_settings_note' => 'ウェブサイトにさまざまな主要なプロジェクトを構成します。', - 'row_smtp_settings' => 'SMTP設定', - 'submit_smtp_settings' => 'SMTP設定', - 'text_smtp_settings_note' => 'WebサイトSMTPメールサーバーを構成します。', - 'row_security_settings' => '安全設定', - 'submit_security_settings' => '安全設定', - 'text_security_settings_note' => 'Webサイトのセキュリティを管理します。', - 'row_authority_settings' => '許可設定', - 'submit_authority_settings' => '許可設定', - 'text_authority_settings_note' => '各レベルのユーザーが持っている権限を構成します。', - 'row_tweak_settings' => '二次設定', - 'submit_tweak_settings' => '二次設定', - 'text_tweak_settings_note' => 'ウェブサイトの二次プロジェクトを構成します。', - 'row_bonus_settings' => '魔法の価値の設定', - 'submit_bonus_settings' => '魔法の価値の設定', - 'text_bonus_settings_note' => '魔法の値の取得と使用を構成します。', - 'row_account_settings' => 'アカウント設定', - 'submit_account_settings' => 'アカウント設定', - 'text_account_settings_settings' => 'アカウントのアップグレード、ダウングレード、削除などを構成します。', - 'row_torrents_settings' => '種子設定', - 'submit_torrents_settings' => '種子設定', - 'text_torrents_settings_note' => '構成シード用のプロモーション、スクリーニングなど。', - 'row_bots_settings' => 'ロボット設定', - 'submit_bots_settings' => 'ロボット設定', - 'text_bots_settings_note' => 'ウェブサイトを管理するロボット。設定プロジェクトの機能について明確でない場合は、 変更を加えないでください。', - 'row_code_settings' => 'コード設定', - 'submit_code_settings' => 'コード設定', - 'text_code_settings_note' => '構成コードのバージョン。設定プロジェクトの機能について明確でない場合は、 変更を加えないでください。', - 'text_smtp_default' => 'デフォルト(PHPデフォルトメール関数を使用)', - 'text_smtp_advanced' => 'Advanced(PHPデフォルトのメール関数を使用して追加のヘッダー情報を追加します。スパムフィルタリングと見なされるのを防ぐのに役立ちます)', - 'text_smtp_external' => '外部(外部SMTPサーバーを使用)', - 'text_setting_for_advanced_type' => '高度なタイプ設定', - 'row_smtp_host' => 'SMTPホスト', - 'text_smtp_host_note' => 'デフォルト: \'localhost\'', - 'row_smtp_port' => 'SMTPポート', - 'text_smtp_port_note' => 'デフォルト:25', - 'row_smtp_sendmail_from' => 'SMTP電子メール送信のソース', - 'text_smtp_sendmail_from_note' => 'デフォルト:', - 'row_smtp_sendmail_path' => '送信パス', - 'text_smtp_sendmail_path_note' => 'php.iniにsendmail_pathを設定してください', - 'text_setting_for_external_type' => '外部タイプ設定', - 'row_outgoing_mail_address' => 'SMTPアドレス', - 'row_outgoing_mail_port' => 'SMTPポート', - 'row_outgoing_mail_encryption' => 'SMTP暗号化方法', - 'text_outgoing_mail_address_note' => 'ヒント: smtp.yourisp.com', - 'text_outgoing_mail_port_note' => 'ヒント: 25', - 'row_smtp_account_name' => 'ユーザー名', - 'text_smtp_account_name_note' => 'ヒント: yourname@yourisp.com', - 'row_smtp_account_password' => 'ユーザーパスワード', - 'text_smtp_account_password_note' => 'ヒント:パスワードを入力します', - 'text_mail_test_note' => '送信電子メール機能をテストする方法は?非常にシンプル、クリックしてください', - 'text_here' => 'ここ', - 'std_error' => '間違い', - 'std_mysql_connect_error' => 'MySQLを接続できません。設定を確認してください。', - 'row_enable_location' => 'アドレスを表示します', - 'text_enable_location_note' => 'デフォルト「いいえ」。 IPアドレスに従ってユーザーの地理的位置を表示します。 IPアドレスライブラリをインポートしない場合は、このアイテムを有効にしないでください。', - 'row_torrents_per_page' => 'ページごとのデフォルトシード', - 'text_torrents_per_page_note' => 'シードページのページごとに表示されるシードの数。デフォルト「50」。
    注:ユーザーの個人設定は、システムのデフォルト設定をオーバーライドします。', - 'row_title_keywords' => 'ページタイトルキーワード', - 'text_title_keywords_note' => 'ページタイトルの最後に表示されます。これらのキーワードを入力すると、検索エンジンがサイトを見つけるのに役立ちます。複数のキーワードは、「bt | download | movie」などの「|」で区切られています。ページのタイトルを更新したい場合は、空白のままにしておきます。', - 'row_meta_keywords' => 'メタキーワード', - 'text_meta_keywords_note' => 'ページの頭のメタタグに表示されます。サイトに関連するキーワードを入力します。複数のキーワードは、「bt、download、movie」などの半幅のコンマで区切られています。', - 'row_meta_description' => 'メタ説明', - 'text_meta_description_note' => 'ページの頭のメタタグに表示されます。サイトの概要と説明を記入してください。', - 'row_bonus_gift_tax' => '魔法の価値は税金を与えます', - 'text_system_charges' => 'システムはギフト受信者を要求します', - 'text_bonus_points_plus' => '魔法の価値 +ギフト額', - 'text_bonus_gift_tax_note' => '税金としての魔法の価値。 「5」と「10」に設定されている場合、ギフトギバーは100の魔法の値を送信し、レシーバーは85。デフォルト「5」、「10」のみを取得します。
    注< /b>:2つのルールは個別に実行されます。両方の値を「0」に設定して、税金を完全に免除します。', - 'row_see_sql_debug' => 'デバッグ情報を表示します', - 'text_allow' => '許可する', - 'text_see_sql_list' => '上記のレベルのユーザーは、デバッグ情報を表示します(ページの下部にあるSQLステートメントリストとPHPレポート情報を参照)。デフォルト', - 'text_smtp_none' => 'なし(電子メール送信機能は完全に禁止されます)', - 'row_attachment_settings' => '添付ファイル設定', - 'submit_attachment_settings' => '添付ファイル設定', - 'text_attachment_settings_note' => '添付ファイルを構成します。', - 'head_attachment_settings' => '添付ファイル設定', - 'row_enable_attachment' => '添付ファイルをオンにします', - 'text_enable_attachment_note' => 'グローバルアタッチメント設定。 「いいえ」に設定すると、添付ファイルをアップロードできません。', - 'row_save_directory' => 'アクセサリは場所を節約します', - 'row_http_directory' => '添付URLアドレス', - 'text_http_directory_note' => '現在のURLの下の相対アドレスまたはhttp://で始まる絶対アドレスにすることができます。 最後にスラッシュ(/)を追加しないでください! デフォルト「添付ファイル」。', - 'row_attachment_authority' => 'アタッチメント許可', - 'text_can_upload_at_most' => 'レベル以上のユーザーは最大24時間アップロードできます', - 'text_file_size_below' => '添付ファイル、各添付ファイルのサイズはそれを超えません', - 'text_with_extension_name' => 'KB、許可されたファイル拡張子はです', - 'text_authority_default_one_one' => '。デフォルト', - 'text_authority_default_one_two' => '、 \'5\'、 \'256\'、 \'jpeg、jpg、png、gif。', - 'text_authority_default_two_one' => '。デフォルト', - 'text_authority_default_two_two' => '、 \'10\'、 \'512\'、 \'torrent、zip、rar、7 in gzip、work。', - 'text_authority_default_three_one' => '。デフォルト', - 'text_authority_default_three_two' => '、 \'20\'、 \'1024\'、 \'チケット3、OH GA、OGG、Law。', - 'text_authority_default_four_one' => '。デフォルト', - 'text_authority_default_four_two' => '、 \'500\'、 \'2048\'、 \'\'。', - 'text_attachment_authority_note_two' => '注:
    • インクリメンタルユーザーレベル、ファイル番号制限、ファイルサイズの制限の順序を変更しないでください。
    • ファイルサイズの制限を「0」に設定し、ファイル番号制限は「0」に制限され、許可されたファイル拡張子は「(つまり、空白のまま)に設定され、対応するルールを無効にします。
    • ハイレベルユーザーは、低レベルユーザーの権限を自動的に継承するため、複数のルールで同じ許容ファイル拡張子を入力する必要はありません。
    • 複数の許可されたファイル拡張子は、半幅のコンマで区切られています。
    • どんなに設定されていても、いいえは、5 MBを超えるファイルサイズまたは「exe、com、bat、msi」の拡張機能で添付ファイルをアップロードできます。
    ', - 'text_attachment_authority_note_one' => 'ユーザーレベルに基づいて持っている添付ファイルをアップロードする権限を定義します。', - 'text_save_directory_note' => '添付ファイルを保存するサーバーパス。ディレクトリアクセスが正しく設定されていることを確認してください(777)。 最後にスラッシュ(/)を追加しないでください! default \'./attachments\'。', - 'row_save_directory_type' => '添付ファイルを保存する方法', - 'text_one_directory' => 'すべてのファイルを同じディレクトリに保存します', - 'text_directories_by_monthes' => '月ごとに別のディレクトリに保存します', - 'text_directories_by_days' => '日ごとに別のディレクトリに保存します', - 'text_save_directory_type_note' => 'この設定は、新しくアップロードされた添付ファイルのみに影響します。デフォルトでは、「月ごとに別のディレクトリに保存」。', - 'row_image_thumbnails' => '画像サムネイル', - 'text_no_thumbnail' => '1.サムネイル関数は有効になりません。元の画像のみを保存します。', - 'text_create_thumbnail' => '2。サムネイルと元の画像の両方を保存し、大規模な画像用のサムネイルを生成します。', - 'text_resize_big_image' => '3.大きなサイズで画像を削減し、サムネイルのみを保存します。', - 'text_image_thumbnail_note' => 'デフォルト「2」。', - 'row_thumbnail_quality' => 'サムネイルの品質', - 'text_thumbnail_quality_note' => 'サムネイルの品質を設定します。このパラメーター範囲は1〜100の整数です。値が大きいほど、サムネイルの品質が高く、ファイルサイズが大きくなります。デフォルト「80」。', - 'row_thumbnail_size' => 'サムネイルサイズ', - 'text_thumbnail_size_note' => '幅 *高さ、ピクセル単位。 この制限を超える幅または高さの画像に対してのみサムネイルを作成します。デフォルト「500」、「500」。', - 'row_watermark' => '透かしの場所', - 'text_no_watermark' => '透かし機能は有効になりません', - 'text_left_top' => '#1', - 'text_top' => '#2', - 'text_right_top' => '#3', - 'text_left' => '#4', - 'text_center' => '#5', - 'text_right' => '#6', - 'text_left_bottom' => '#7', - 'text_bottom' => '#8', - 'text_right_bottom' => '#9', - 'text_random_position' => 'ランダムな場所', - 'text_watermark_note' => 'アップロードされた画像ファイル(JPEG/PNG/GIF)に透かしを追加します。 Watermark PNG Imageファイル「PIC/Watermark.png」を交換して、さまざまな透かし効果を実現できます。透かしが追加されている場所を選択します。アニメーションGIFファイルに透かしを追加することはサポートされていません。デフォルトでは、ウォーターマーク機能は有効になりません。', - 'row_image_size_for_watermark' => '透かしの追加条件', - 'text_watermark_size_note' => '幅 *高さ、ピクセル単位。 のみこの制限を超える幅と高さの画像に透かしを追加します。デフォルト「300」、「300」。', - 'row_jpeg_quality_with_watermark' => 'jpeg画像の透かしの品質', - 'text_jpeg_watermark_quality_note' => '透かしを追加した後のJPEGファイルの画質。このパラメーター範囲は1〜100の整数です。値が大きいほど、サムネイルの品質が高く、ファイルサイズが大きくなります。デフォルト \'85\'。', - 'head_save_attachment_settings' => '添付ファイル設定を保存します', - 'row_css_date' => 'CSS日付', - 'text_css_date' => '時間形式は「年、月、月、日、日、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間」時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、時間、年、年、月、月、1か月、月、月、1か月、月、1か月、月、1か月、月、1か月、月、1か月、月、月、1か月、月、月、1か月、月、月、1か月、月月、月、月、月、月、月、月、月、月、月、月、このプロジェクトの変更は、ユーザーのブラウザにCSSキャッシュの更新を強制するのに役立ちます。これは、CSSファイルを変更した後に必要になる場合があります。この目的がわからない場合は、空白のままにしてください。デフォルトは空です。', - 'row_alternative_thumbnail_size' => 'サムネイル別のサイズ', - 'text_alternative_thumbnail_size_note' => 'ユーザーは別のサイズのサムネイルを選択できます。デフォルト「180」、「135」。', - 'row_add_watermark_to_thumbnail' => 'サムネイルに透かしを追加します', - 'text_watermark_to_thumbnail_note' => 'サムネイルにも透かしを追加するかを選択します。デフォルト「いいえ」。アイテムは、グローバルなサムネイル設定が有効になっている場合にのみ有効になります。', - 'row_advertisement_settings' => '広告設定', - 'submit_advertisement_settings' => '広告設定', - 'text_advertisement_settings_note' => 'サイトで広告を構成します。', - 'head_advertisement_settings' => '広告設定', - 'row_enable_advertisement' => '広告を有効にします', - 'text_enable_advertisement_note' => 'グローバル広告設定。', - 'row_no_advertisement' => '広告を閉じることができます', - 'text_can_choose_no_advertisement' => 'レベル以上のユーザーは、コントロールパネルに広告を表示しないことを選択できます。デフォルト', - 'row_bonus_no_advertisement' => '魔法の価値交換は広告を閉じることができます', - 'text_no_advertisement_with_bonus' => 'レベル以上のユーザーは、魔法の値を使用して、特定の期間内に広告を表示しないように許可と交換できます。デフォルト', - 'row_no_advertisement_bonus_price' => '広告なしの魔法の価値', - 'text_bonus_points_to_buy' => '彼が交換することを選択した場合、魔法の価値', - 'text_days_without_advertisements' => '広告を表示する権限はありません。デフォルト「10000」、「15」。', - 'row_click_advertisement_bonus' => '広告をクリックして魔法の価値を取得します', - 'text_points_clicking_on_advertisements' => '彼が初めて広告をクリックした場合、魔法の価値。このルールを無効にするために「0」に設定します。
    注< /b>:一部の広告サービス(Google AdSenseなど)は、サイトがユーザーに広告をクリックするように奨励することを禁止しています。', - 'head_save_advertisement_settings' => '広告設定を保存します', - 'row_enable_tooltip' => '浮揚プロンプトを許可します', - 'text_enable_tooltip_note' => 'ユーザーが中断されたプロンプト機能を使用できるかどうか。デフォルト「はい」。', - 'text_thirtypercentleech_chance_becoming' => '考えられる可能性のある%は、 30% です。デフォルト「0」。', - 'text_thirtypercentleech_will_become' => ' 30% ', - 'text_thirtypercentleech_timeout_default' => '空。デフォルト「通常」、「30」。', - 'row_site_logo' => 'ウェブサイトのロゴ', - 'text_site_logo_note' => 'ウェブサイトのロゴ画像ファイル。推奨される画像サイズは220x70です。記入されていない場合、テキストが使用されます。デフォルト\'\'。', - 'row_promotion_link_click' => 'プロモーションリンクをクリックします', - 'text_promotion_link_note_one' => '彼のプロモーションリンクが録画されていないIPからクリックされた場合、魔法の価値。', - 'text_promotion_link_note_two' => '1秒以内にワンクリックまで報酬を与えます。マジック値を「0」に設定して、プロモーションリンク関数を無効にします。デフォルト「0」、「600」。', - 'row_promotion_link_example_image' => 'プロモーションリンクの例の画像', - 'text_promotion_link_example_note' => ' プロモーションリンクの画像 はじめに例。 「pic/prolink.png」などの相対アドレスが必要です。', - 'row_enable_nfo' => 'NFOを有効にします', - 'text_enable_nfo_note' => 'デフォルト「はい」。グローバルNFO設定。', - 'row_web_analytics_code' => 'ウェブサイト統計コード', - 'text_web_analytics_code_note' => 'Google Analyticsなどの第三者が提供するWebサイト統計コードに記入してください。そうでない場合は、空白のままにしてください。
    注< /b>:コードが安全で信頼できることを確認してください。', - 'row_enable_email_notification' => 'ユーザーが電子メールプロンプトを受信できるようにします', - 'text_email_notification_note' => '新しいテキストメッセージ、コメントなどを受信するときに、ユーザーが電子メールプロンプトを受信できるかどうか。', - 'text_users_get' => 'このレベルに初めてアップグレードしたユーザーが受信します', - 'text_invitations_default' => '招待状の割り当て。デフォルト', - 'row_guest_visit_type' => '訪問者訪問', - 'text_guest_visit_type_normal' => '普通', - 'text_guest_visit_type_static_page' => '指定された静的ページを表示します', - 'text_guest_visit_type_custom_content' => 'カスタムコンテンツを表示します', - 'text_guest_visit_type_redirect' => 'ジャンプしてURLを指定します', - 'row_guest_visit_value_static_page' => '静的ページを指定します', - 'row_guest_visit_value_custom_content' => 'カスタムコンテンツ', - 'row_guest_visit_value_redirect' => 'URLを指定します', - 'text_guest_visit_value_static_page' => '位置するファイル:リソース/静的ページ/ディレクトリ', - 'row_login_type' => 'ログインメソッド', - 'text_login_type_normal' => '普通', - 'text_login_type_secret' => '秘密', - 'text_login_type_warning' => '3つのうち1つだけが効果的です', - 'row_login_secret' => 'ログインキー', - 'text_login_secret_current' => '現在のキー', - 'text_login_url_with_secret' => 'シークレットログインリンク', - 'text_login_url_with_passkey' => 'PassKeyログインリンク', - 'text_login_secret_regenerate_yes' => '再生(保存後に更新および延長されます)', - 'text_login_secret_regenerate_no' => '電流を維持します(保存後は変更されていません)', - 'text_login_secret_lifetime' => '有効期間', - 'text_login_secret_lifetime_unit' => '分', - 'row_login_secret_lifetime' => 'キーの妥当性期間をログインします', - 'text_login_secret_lifetime_deadline' => '現在のキーはまで有効です', - 'row_enable_technical_info' => 'mediainfoを有効にします', - 'text_enable_technical_info' => 'デフォルト「いいえ」。 mediainfoソフトウェアの結果 mediainfo テキストビュー', - 'row_sticky_first_level_background_color' => 'レベル1の上部背景色', - 'text_sticky_first_level_background_color_note' => '最初のレベルのトップバックグラウンドカラーは、設定されていない場合、背景色はありません。', - 'row_sticky_second_level_background_color' => 'セカンダリトップバックグラウンドカラー', - 'text_sticky_second_level_background_color_note' => '2番目のレベルのトップバックグラウンドカラーは、設定されていない場合、背景色はありません。', - 'row_download_support_passkey' => 'Support PassKeyダウンロードシード', - 'text_download_support_passkey_note' => 'PassKeyを介してシードのダウンロードをサポートするかどうか(シードIDも必要です)。', - 'row_torrent_hr' => 'シードH&Rを設定します', - 'text_torrent_hr_note' => '。 H&R調査に参加するように種子を設定します', - 'row_cancel_hr' => 'H&Rを排除します', - 'text_cancel_hr_note' => '彼がH&Rを排除する必要がある場合、魔法の価値。デフォルト「10000」。', - 'text_attendance_get_bonus' => '魔法の価値を得るためにサインインします', - 'text_attendance_initial_reward' => '最初の報酬', - 'text_attendance_initial_reward_input_label' => '最初のサインインを取得します', - 'text_attendance_input_suffix' => '魔法', - 'text_attendance_continuous_increment' => '継続的な報酬', - 'text_attendance_continuous_increment_input_label' => '連続したサインインごとに増加しました', - 'text_attendance_reward_limit' => '報酬キャップ', - 'text_attendance_reward_limit_input_label' => '最高の報酬', - 'text_attendance_continuous' => '連続サインイン', - 'text_attendance_continuous_days' => '連続日', - 'text_attendance_continuous_days_additional_reward' => '追加の報酬', - 'text_attendance_continuous_days_action' => '動作します', - 'text_attendance_continuous_unit' => '空', - 'text_attendance_continuous_item_action_remove' => '消去', - 'text_attendance_continuous_item_action_add' => '増加', - 'text_attendance_continuous_add_rules' => '小規模から大規模にルールを追加してください', - 'row_attendance_card' => '再署名に購入してサインアップします', - 'text_attendance_card_note' => '彼が再署名カードを購入する必要がある場合、魔法の価値。デフォルト「1000」。', - 'row_site_language_enabled' => 'サイトを有効にする言語', - 'text_site_language_enabled_note' => 'サイトが有効になっている言語を選択します', - 'keep_at_least_one' => '少なくとも1つを保管してください', - 'text_alias' => 'レベル名:', - 'row_default_user_one' => 'デフォルトはです', - 'row_default_user_two' => '', - 'row_show_top_uploader' => '最大アップロード(種子の数)を表示する', - 'text_show_top_uploader_note' => 'デフォルト「いいえ」。最もアップロードされたユーザーをホームページに表示します(シードカウントで計算)。', - 'claim_label' => 'シードクレーム', - 'claim_enabled' => '請求を有効にします', - 'claim_torrent_ttl' => 'シードリリース%Sクイーンはそれを主張できます。', - 'claim_torrent_user_counts_up_limit' => 'シードは、最大S%のユーザーが請求できます。', - 'claim_user_torrent_counts_up_limit' => 'ユーザーは最大S種子を請求できます。', - 'claim_remove_deduct_user_bonus' => 'シードが標準を満たすことができない場合、ユーザー%Sマジックが削除され、ユーザーが差し引かれます(最初の月は請求されません)。', - 'claim_give_up_deduct_user_bonus' => 'ユーザーは、ユーザー%の魔法を主張し、控除することを自発的にあきらめました。', - 'claim_reach_standard' => '標準コンプライアンス:毎月の種子の生産時間は%s時間以上です。または、アップロードボリュームはその体積s%よりも大きくなります。', - 'claim_bonus_multiplier' => '標準シードの魔法の報酬を計算すると、通常の魔法の値が%です。', - 'row_misc_settings' => 'その他の設定', - 'submit_misc_settings' => 'その他の設定', - 'text_misc_settings_note' => '他のその他のアイテムを構成します。', - 'row_misc_donation_custom' => 'カスタムコンテンツを寄付します', - 'text_donation_custom_note' => '寄付ページのカスタムコンテンツは、AlipayとPayPalに表示されます。サポート bbcodeタグ ', - 'row_approval_status_icon_enabled' => '監査ステータスアイコンを表示します', - 'text_approval_status_icon_enabled_note' => 'シードリストに監査ステータスアイコンを表示するかどうか、デフォルト:「いいえ」。', - 'row_approval_status_none_visible' => '未検証の種が見えます', - 'text_approval_status_none_visible_note' => 'デフォルト:「はい」。 「いいえ」に変更された場合、監査が[パス]ステータスにない場合に監査ステータスアイコンが表示されることを余儀なくされます。', - 'row_imdb_language' => 'IMDB言語', - 'text_imdb_language_note' => 'IMDBデータをクロールするために使用される言語。', - 'text_login_type_passkey' => 'PassKey', - 'row_harem_addition' => 'ハーレムボーナス', - 'text_user_would_get_by_harem' => 'ユーザーは直接のハーレムの魔法の価値を取得します', - 'text_harem_addition_note' => '報酬としての複数(係数、0.01に記入すると、ハーレムが100の魔法を獲得し、ユーザーは100 * 0.01 = 1に報いられます)', - 'row_offer_skip_approved_count' => '候補者パス番号を直接公開します', - 'text_offer_skip_approved_count_note' => '受け継可能な候補者の数がこの値以上の場合、候補者を提出せずに直接公開できます。', - 'row_torrent_delete' => 'シードを削除します', - 'text_torrent_delete_note' => '。シードを削除します', - 'row_hundred_gb_credit' => '100.0 GBアップロードボリューム', - 'text_hundred_gb_credit_note' => '彼が100.0 GBのアップロードボリュームを交換することを選択した場合、魔法の価値。デフォルト「10000」。', - 'row_ten_gb_download_credit' => '10.0 GBのダウンロード', - 'text_ten_gb_download_credit_note' => '10.0 GBのダウンロードを交換することを選択した場合、魔法の価値。デフォルト「1000」。', - 'row_hundred_gb_download_credit' => '100.0 GBのダウンロード', - 'text_hundred_gb_download_credit_note' => '彼が100.0 GBのダウンロードを交換することを選択した場合、魔法の価値。デフォルト「8000」。', - 'row_official_addition' => '公式ボーナス', - 'text_user_would_get_by_official' => 'ユーザーは公式の魔法の価値を取得します', - 'text_addition_addition_note' => '複数の報酬として(係数、0.01に記入すると、公式タイプが100の魔法のパワーを受け取り、ユーザー100 * 0.01 = 1に報いる)', - 'zero_bonus_factor_default' => '。デフォルトは:0.2です', - 'row_official_tag' => '公式タグ', - 'text_official_tag_note' => '。このラベルの種子は公式の種です', - 'row_zero_bonus_tag' => 'ゼロマジックタグ', - 'text_zero_bonus_tag_note' => '。このタグのある種はゼロマジックシードです', - 'row_upload_deny_approval_deny_count' => 'レビュー障害を公開することの拒否', - 'text_upload_deny_approval_deny_count_note' => 'レビューに合格できない種子の数がこの値以上の場合、公開は許可されていません。 「0」に設定されていると、このルールは使用しません', - 'row_nfo_view_style_default' => 'NFOデフォルト表示スタイル', - 'row_destroy_disabled' => 'アカウントを完全に削除します', - 'text_destroy_disabled_note_one' => '禁止されたアカウントが継続的である場合', - 'text_destroy_disabled_note_two' => 'ログインしないと、データベースから完全に物理的に削除されます。デフォルトは「500」です。上記のいずれよりも大きい値を設定してください。このルールを無効にするために「0」に設定します。', - 'row_enable_global_search_system' => 'サイト全体の検索を有効にします', - 'text_global_search_system_note' => 'デフォルト:「はい」。有効にすると、複数のパーティションがある場合、メインメニューの右下隅にサイト全体の検索ポータルが表示されます。', - 'row_protected_forum' => 'プライバシー保護フォーラムセクション', - 'text_protected_forum' => 'プライバシー保護を可能にするフォーラムセクションIDを入力します。このセクションへの返信は、上記の著者と管理者にのみ表示されます。コンマを使用して分割します(1、2、3など)', - 'forum_format_error' => 'フォーラムID形式が間違っています。入力を確認してください!', - 'row_buy_an_tmp_invite' => '一時的な招待状の割り当てを購入します', - 'text_buy_an_tmp_invite_note' => '彼が一時的な招待クォータを交換することを選択した場合、魔法の価値。デフォルト「500」。購入を禁止するには、魔法の値を「0」に設定します。', - 'row_buy_rainbow_id' => 'レインボーIDを購入します', - 'text_buy_rainbow_id_note' => '魔法の価値、彼が虹のIDを交換することを選択した場合、それは30日間有効になります。デフォルト「5,000」。', - 'row_buy_change_username_card' => '名前変更カードを購入します', - 'text_buy_change_username_card_note' => '魔法の価値、彼が名前の変更カードを交換することを選択した場合、それは永遠に有効になります。デフォルト「100,000」。', - 'row_initial_tmp_invites' => '最初の一時的な招待クォータ', - 'text_initial_tmp_invites_note' => '新しく登録されたユーザーの最初の一時的な招待クォータは、7日間有効です。デフォルト「0」。', - 'row_tax_factor' => '種子を充電するための税係数', - 'text_tax_factor_note' => '価格が100の場合、この係数は0.1の場合、出版社の実際の収入は100〜100 x 0.1 = 90です。', - 'row_max_price' => '種子の最大充電', - 'text_max_price_note' => 'デフォルト:1,000,000、無制限に設定されています', - 'row_paid_torrent_enabled' => '有料の種子を有効にするかどうか', - 'text_paid_torrent_enabled_note' => '有効になった後、ユーザーは許可を得て、発行時に種子をダウンロードするユーザーに一定量の魔法を設定できます。デフォルトは次のとおりです', - 'row_use_challenge_response_authentication' => 'チャレンジ応答認証', - 'text_use_challenge_response_authentication_note' => '有効にした場合、ログインするときにプレーンテキストパスワードは送信されず、有効にすることをお勧めします。この構成は将来のバージョンで削除され、この機能が有効になります。', +$lang_settings = array +( + 'text_yes' => "はい", + 'text_no' => "いいえ", + 'text_website_settings' => "ウェブサイトの設定", + 'text_configuration_file_saving_note' => "設定を保存する前に、ファイルとディレクトリのアクセス権限が正しく設定されていることを確認してください。", + 'head_save_main_settings' => "メイン設定を保存", + 'std_message' => "メッセージ", + 'std_click' => "Click ", + 'std_here' => "ここ", + 'std_to_go_back' => " 戻るために", + 'head_save_basic_settings' => "基本設定を保存", + 'head_save_code_settings' => "コードの設定を保存", + 'head_save_bonus_settings' => "ボーナス設定を保存", + 'head_save_account_settings' => "アカウント設定を保存", + 'head_save_torrent_settings' => "トレント設定を保存", + 'head_save_smtp_settings' => "SMTP設定を保存", + 'head_save_security_settings' => "セキュリティ設定を保存", + 'head_save_authority_settings' => "権限設定を保存", + 'head_save_tweak_settings' => "微調整設定を保存", + 'head_save_bot_settings' => "Botの設定を保存", + 'head_bot_settings' => "Botの設定", + 'head_tweak_settings' => "微調整の設定", + 'row_save_user_location' => "ユーザーの場所を保存", + 'text_save_user_location_note' => "デフォルトの「いいえ」です。ユーザーの最新の閲覧場所を保存します。", + 'row_log_user_ips' => "ユーザーのIPをログに記録", + 'text_store_user_ips_note' => "デフォルトの「はい」です。ユーザーが異なるIPアドレスを持っている場合にIPアドレスを記録します。", + 'row_kps_enabled' => "カルマボーナスポイントシステムを有効にする", + 'text_enabled' => "有効", + 'text_disabled_but_save' => "無効ですがポイントを保存しています", + 'text_disabled_no_save' => "完全に無効", + 'text_kps_note' => "デフォルトの '有効' です。KPS を有効にするか無効にします。ポイントを保持するかどうかを選択します。", + 'row_tracker_founded_date' => "トラッカー作成日時", + 'text_tracker_founded_date_note' => "タイムフォーマットはYYYY-MM-DDです。トラッカーが設立された日付に設定してください", + 'row_save_settings' => "設定を保存", + 'submit_save_settings' => "設定を保存format@@0", + 'head_smtp_settings' => "SMTP設定", + 'row_mail_function_type' => "PHPメール関数のタイプ", + 'head_security_settings' => "セキュリティ設定", + 'row_enable_ssl' => "SSLを使用 (Web)", + 'row_enable_ssl_tracker' => "トラッカーを使用する", + 'text_optional' => "任意(ユーザーによって選択可能)", + 'text_ssl_note' => "デフォルト 'no' SSLを有効にするには、HTTPサーバーと証明書の追加の設定が必要です (認証局または自己署名による)。", + 'row_enable_image_verification' => "画像検証を有効にする", + 'text_image_verification_note' => "デフォルトの「いいえ」です。登録/ログイン/回復するには、Visual Verify Codeを入力する必要があります。", + 'row_allow_email_change' => "ユーザーにメールアドレスの変更を許可", + 'text_email_change_note' => "デフォルトの「いいえ」です。ユーザーが自分のメールアドレスを変更できないようにするには「いいえ」に設定してください。", + 'row_cheater_detection_level' => "チータ検出レベル", + 'select_none' => "なし", + 'select_conservative' => "保守的な", + 'select_normal' => "普通", + 'select_strict' => "厳格な", + 'select_paranoid' => "妄想的", + 'text_cheater_detection_level_note' => "デフォルトの「ノーマル」。トラッカーに最適なレベルに設定します。発表スピードがより厳しく、遅くなります。 ", + 'text_never_suspect' => "疑わない ", + 'text_or_above' => " または、上記、つまり検出が行われません。デフォルト ", + 'row_max_ips' => "最大 IP", + 'text_max_ips_note' => "同じIPアドレスの登録を無効にします。", + 'row_max_login_attemps' => "最大ログイン試行回数", + 'text_max_login_attemps_note' => "この制限を超えるIPアドレスを禁止する", + 'head_authority_settings' => "権限設定", + 'row_default_class' => "Default Class", + 'text_default_user_class' => "デフォルトのユーザクラス: ", + 'text_default' => " デフォルト ", + 'text_default_class_note' => "を選択します。", + 'row_staff_member' => "スタッフ メンバー", + 'text_minimum_class' => "Minimunクラス: ", + 'text_staff_member_note' => "をクリックします。", + 'row_news_management' => "ニュース管理", + 'text_news_management_note' => "をクリックします。", + 'row_post_funbox_item' => "funboxアイテムを投稿", + 'text_post_funbox_item_note' => "をクリックします。", + 'row_funbox_management' => "Funbox管理", + 'text_funbox_management_note' => "をクリックします。", + 'row_shoutbox_management' => "Shoutbox Management", + 'text_shoutbox_management_note' => "をクリックします。", + 'row_poll_management' => "アンケート管理", + 'text_poll_management_note' => "をクリックします。", + 'row_apply_for_links' => "リンクに適用", + 'text_apply_for_links_note' => "をクリックします。", + 'row_link_management' => "リンク管理", + 'text_link_management_note' => "をクリックします。", + 'row_forum_post_management' => "フォーラム投稿管理", + 'text_forum_post_management_note' => "をクリックします。編集、削除、移動、スティック、フォーラムの投稿をロック", + 'row_comment_management' => "コメント管理", + 'text_comment_management_note' => "をクリックします。", + 'row_forum_management' => "フォーラム管理", + 'text_forum_management_note' => "をクリックします。", + 'row_view_userlist' => "ユーザ一覧を表示", + 'text_view_userlist_note' => "を選択します。", + 'row_torrent_management' => "Torrent 管理", + 'text_torrent_management_note' => "をクリックします。トレントを編集します。トレントの付箋を設定したり、プロモーションや削除したりできます。", + 'row_torrent_sticky' => "トレントスティッキー", + 'text_torrent_sticky_note' => "トレントの粘着性を設定", + 'row_torrent_on_promotion' => "Torrent on Promotion", + 'text_torrent_promotion_note' => "をクリックします。", + 'row_ask_for_reseed' => "リシードを要求する", + 'text_ask_for_reseed_note' => "をクリックします。", + 'row_view_nfo' => "NFO を表示", + 'text_view_nfo_note' => "を選択します。", + 'row_view_torrent_structure' => "トレント構造体を表示", + 'text_view_torrent_structure_note' => "を選択します。", + 'row_send_invite' => "招待を送信", + 'text_send_invite_note' => "をクリックします。", + 'row_view_history' => "履歴を表示", + 'text_view_history_note' => "他のコメントを表示し、履歴を投稿", + 'row_view_topten' => "トップテンを表示", + 'text_view_topten_note' => "トップ10を表示", + 'row_view_general_log' => "一般ログを表示", + 'text_view_general_log_note' => "をクリックします。", + 'row_view_confidential_log' => "コンフィデンシャルログを表示", + 'text_view_confidential_log_note' => "をクリックします。", + 'row_view_user_confidential' => "ユーザーの機密プロファイルを表示", + 'text_view_user_confidential_note' => "をクリックします。ユーザーの機密プロファイルを表示します。例えば、IPアドレス、メールアドレスなど。", + 'row_view_user_torrent' => "ユーザーのトレント履歴を表示", + 'text_view_user_torrent_note' => "をクリックします。 ユーザーのトレント履歴を表示します。 例えば、ダウンロードしたトレント。
    プライバシーレベルのユーザー設定が「強い」場合にのみ有効です。", + 'row_general_profile_management' => "ユーザーの一般プロフィール管理", + 'text_general_profile_management_note' => "をクリックします。 ユーザーのプロフィールを変更します。メール、ユーザー名、アップロード、ダウンロード金額、ボーナスなどの重要なものは除外されます。", + 'row_crucial_profile_management' => "ユーザーの重要なプロフィール管理", + 'text_crucial_profile_management_note' => "ユーザーの重要なプロフィールを変更します(寄付のみ) ", + 'text_can_manage_donation' => " 寄付を管理できます)", + 'row_upload_subtitle' => "字幕をアップロード", + 'text_upload_subtitle_note' => "をクリックします。", + 'row_delete_own_subtitle' => "自分の字幕を削除", + 'text_delete_own_subtitle_note' => "をクリックします。", + 'row_subtitle_management' => "字幕管理", + 'text_subtitle_management' => "を選択します。", + 'row_update_external_info' => "外部情報を更新", + 'text_update_external_info_note' => "をクリックします。更新が古い外部情報、例えばIMDb情報", + 'row_view_anonymous' => "匿名で表示", + 'text_view_anonymous_note' => "を選択します。", + 'row_be_anonymous' => "匿名にする", + 'text_be_anonymous_note' => "をクリックします。急流をアップロードし、匿名で字幕を作成", + 'row_add_offer' => "オファーを追加", + 'text_add_offer_note' => "をクリックします。", + 'row_offer_management' => "オファー管理", + 'text_offer_management_note' => "を選択します。", + 'row_upload_torrent' => "Torrent をアップロード", + 'text_upload_torrent_note' => "Torrent を Torrent セクションにアップロード", + 'row_upload_special_torrent' => "特別な Torrent をアップロード", + 'text_upload_special_torrent_note' => "をクリックします。", + 'row_view_special_torrent' => '特別な Torrent を表示', + 'text_view_special_torrent_note' => 'Torrent を特別なセクションで表示', + 'row_move_torrent' => "トレントを移動", + 'text_move_torrent_note' => "をクリックします。", + 'row_chronicle_management' => "クロニクル管理", + 'text_chronicle_management_note' => "をクリックします。", + 'row_view_invite' => "招待を表示", + 'text_view_invite_note' => "を選択します。", + 'row_buy_invites' => "招待を購入", + 'text_buy_invites_note' => "をクリックします。", + 'row_see_banned_torrents' => "禁止された Torrent を参照", + 'text_see_banned_torrents_note' => "禁止されたトレントを参照してダウンロードします。", + 'row_vote_against_offers' => "オファーに対する投票", + 'text_vote_against_offers_note' => "をクリックします。", + 'row_allow_userbar' => "ユーザーバーを許可", + 'text_allow_userbar_note' => "ユーザーバーを取得します。", + 'head_basic_settings' => "基本設定", + 'row_site_name' => "サイト名", + 'text_site_name_note' => "ウェブサイト名", + 'row_base_url' => "ベースURL", + 'text_it_should_be' => "次のようにする必要があります: ", + 'text_base_url_note' => "を選択します。 最後にスラッシュ(/)を続けません!", + 'row_announce_url' => "アナウンスURL", + 'row_mysql_host' => "MySQLホスト", + 'text_mysql_host_note' => "MySQLホストを入力してください。MySQLがHTTPサーバーと同じホスト上で動作する場合は、「localhost」と入力します。 それ以外の場合は、MySQLが実行されるサーバーのIPアドレスを入力します。", + 'row_mysql_user' => "MySQL ユーザー", + 'text_mysql_user_note' => "MySQLユーザー名を入力してください。デフォルトのユーザーは「root」です。 ただし、セキュリティ上の理由から、このサイトの他のMySQLユーザーを作成することを検討することができます。", + 'row_mysql_password' => "MySQLパスワード", + 'text_mysql_password_note' => "For security reason, current MySQL password is not shown here. You need to enter your MySQL password every time you change the Basic Settings.", + 'row_mysql_database_name' => "MySQL データベース名", + 'row_mysql_database_port' => "MySQLデータベースポート", + 'text_mysql_database_name_note' => "トラッカーのデータベース名を入力してください。", + 'text_mysql_database_port_note' => "トラッカーのデータベースポートを入力してください。", + 'head_code_settings' => "コードの設定", + 'row_main_version' => "メインバージョン", + 'text_main_version_note' => "The code main version", + 'row_sub_version' => "サブバージョン", + 'text_sub_version_note' => "The code subversion", + 'row_release_date' => "リリース日", + 'text_release_date_note' => "時刻フォーマットは YYYY-MM-DD です。日付コードがリリースされました。", + 'row_authorize_to' => "認証先", + 'text_authorize_to_note' => "コードが許可されているサイトまたは人。", + 'row_authorization_type' => "認証タイプ", + 'text_free' => "無料", + 'text_commercial' => "Commercial", + 'row_web_site' => "Web Site", + 'text_web_site_note' => "サイトの URL ", + 'text_web_site_note_two' => ".", + 'row_email' => "Eメールアドレス", + 'text_email_note_one' => "連絡先メールアドレス ", + 'text_email_note_two' => ".", + 'row_msn' => "MSN", + 'text_msn_note_one' => "MSN への連絡 ", + 'text_msn_note_two' => ".", + 'row_qq' => "QQ", + 'text_qq_note_one' => "連絡先のQQ: ", + 'text_qq_note_two' => ".", + 'row_telephone' => "電話", + 'text_telephone_note_one' => "連絡先電話番号 ", + 'text_telephone_note_two' => ".", + 'head_bonus_settings' => "ボーナス設定", + 'text_bonus_by_seeding' => "シードしてボーナスを得る", + 'row_donor_gets_double' => "寄付者が倍増する", + 'text_donor_gets' => "ドナーは常に獲得する ", + 'text_times_as_many' => " シードのボーナスポイントの回数。デフォルトの「2」。ドナーを一般ユーザーとして扱うには「0」に設定します。", + 'row_basic_seeding_bonus' => "基本シードボーナス", + 'text_user_would_get' => "ユーザーは ", + 'text_bonus_points' => " それぞれのトレントのボーナスポイントは最大で種を蒔いています ", + 'text_torrents_default' => " トレント。デフォルトの '1', '7' ルールを無効にするには、ボーナスポイントを '0' に設定します。", + 'row_seeding_formula' => "シード式", + 'text_bonus_formula_one' => "1時間あたりのカルマ点数は次の式で与えられます", + 'text_where' => "どこで", + 'text_bonus_formula_two' => " は中間変数
  • Tii急流のタイムアライブ (TA), i. を選択します。トレントがアップロードされてから、数週間後に経過した時間", + 'text_bonus_formula_three' => "T0 はパラメータです。 T0= ", + 'text_bonus_formula_four' => "を選択します。", + 'text_bonus_formula_five' => "Sii番目の急流のサイズ, GB 単位.", + 'text_bonus_formula_six' => "Ni is the number of current seeders of the ith torrent
  • N0 is a parameter. N0 = ", + 'text_bonus_formula_zero_bonus_factor' => "Wi is the ith torrent's weight. Default is 1, zero torrent is ", + 'text_bonus_formula_seven' => "標準 '7'", + 'text_bonus_formula_eight' => "B は1時間内に種をまくことで得られるカルマポイントの数", + 'text_bonus_formula_nine' => "B0 はパラメータで、ユーザーがシードすることで得られる1時間あたりの最大ボーナスポイントの標準です。 B0= ", + 'text_bonus_formula_ten' => "標準 '100'", + 'text_bonus_formula_eleven' => "L はパラメータです。 L= ", + 'text_bonus_formula_twelve' => "標準 '300'", + 'text_misc_ways_get_bonus' => "その他のボーナス獲得方法", + 'row_uploading_torrent' => "Torrent をアップロード中", + 'text_uploading_torrent_note' => " 新しいトレントをアップロードするためのボーナスポイント。デフォルトの「15」。", + 'row_uploading_subtitle' => "字幕をアップロード中", + 'text_uploading_subtitle_note' => " 新しいサブタイトルをアップロードするためのボーナスポイント。デフォルトの「5」。", + 'row_starting_topic' => "開始中のトピック", + 'text_starting_topic_note' => " 新しいトピックをフォーラムで開始するためのボーナスポイント。デフォルトの「2」。", + 'row_making_post' => "投稿する", + 'text_making_post_note' => " フォーラムに投稿するためのボーナスポイント。デフォルトの「1」。", + 'row_adding_comment' => "コメントを追加中", + 'text_adding_comment_note' => " トレントにコメントを追加するためのボーナスポイントは、デフォルトの '1' を提供します。", + 'row_voting_on_poll' => "意識調査で投票", + 'text_voting_on_poll_note' => " アンケートに投票するためのボーナスポイント。デフォルトの「1」。", + 'row_voting_on_offer' => "申し込み中の投票", + 'text_voting_on_offer_note' => " オファーに投票するボーナスポイント。デフォルトの「1」。", + 'row_voting_on_funbox' => "Funboxで投票", + 'text_voting_on_funbox_note' => " ファンボックスのものに投票するボーナスポイント。デフォルトの「1」。", + 'row_saying_thanks' => "ありがとうございます", + 'text_giver_and_receiver_get' => "Thanks giver and receives would each get ", + 'text_saying_thanks_and' => " と ", + 'text_saying_thanks_default' => " ボーナスポイント。デフォルトの「0.5」、「0」。", + 'row_funbox_stuff_reward' => "Funboxアイテム報酬", + 'text_funbox_stuff_reward_note' => " \"funny\"と評価されているfunboxのものを投稿するためのボーナスポイント。デフォルトの'5'。", + 'text_things_cost_bonus' => "ボーナスを受け取ったもの", + 'row_one_gb_credit' => "1.0 GB アップロードクレジット", + 'text_it_costs_user' => "ユーザーの費用がかかります ", + 'text_one_gb_credit_note' => " ボーナスポイントを1.0 GBのアップロードクレジットと交換します。デフォルトの「300」です。", + 'row_five_gb_credit' => "5.0 GB アップロードクレジット", + 'text_five_gb_credit_note' => " ボーナスポイントを5.0GBのアップロードクレジットと交換します。デフォルトの'800'。", + 'row_ten_gb_credit' => "10.0 GB アップロードクレジット", + 'text_ten_gb_credit_note' => " ボーナスポイントを10.0GBのアップロードクレジットと交換します。デフォルトの「1200」です。", + 'row_ratio_limit' => "比率制限", + 'text_user_with_ratio' => "上記の比率を持つユーザー ", + 'text_uploaded_amount_above' => " アップロードされた金額 ", + 'text_ratio_limit_default' => " GBはクレジットをアップロードするために交換できません。デフォルトの「6」、「50」。制限を無効にするには「0」に設定してください。", + 'row_buy_an_invite' => "招待を購入する", + 'text_buy_an_invite_note' => " 招待を受けるためのボーナスポイント。デフォルトの '1000'.Set ratio to '0' で購入を無効にします。", + 'row_custom_title' => "カスタムタイトル", + 'text_custom_title_note' => " タイトルをカスタムするボーナスポイント。デフォルトの「5000」。", + 'row_vip_status' => "VIP状態", + 'text_vip_status_note' => " 1ヶ月VIPステータスを購入するためのボーナスポイント。デフォルトの'8000'。", + 'row_allow_giving_bonus_gift' => "ボーナスギフトを付与する", + 'text_giving_bonus_gift_note' => "ユーザーが互いにボーナスギフトを与えることを許可します。デフォルトの「はい」です。", + 'head_account_settings' => "アカウント設定", + 'row_never_delete' => "無効にしない", + 'text_delete_inactive_accounts' => "無効なユーザーアカウントを無効にする", + 'text_never_delete' => " またはそれ以上が無効になることはありません。デフォルト ", + 'row_never_delete_if_packed' => "パックされている場合は無効にしない", + 'text_never_delete_if_packed' => " パックされている場合、またはそれ以上が無効になることはありません。デフォルト ", + 'row_delete_packed' => "パックされたアカウントを無効にする", + 'text_delete_packed_note_one' => "ユーザーがログインしていない場合、パックされたアカウントは無効になります ", + 'text_delete_packed_note_two' => " 日数を指定します。デフォルトの「400」は、ルールを無効にするには「0」に設定します。", + 'row_delete_unpacked' => "解凍されたアカウントを無効にする", + 'text_delete_unpacked_note_one' => "解凍されたアカウントは、以下のユーザーがログインしていない場合は無効になります ", + 'text_delete_unpacked_note_two' => " 日数を指定します。標準の '150' は、ルールを無効にするには、'0' に設定します。", + 'row_delete_no_transfer' => "転送データがないアカウントを無効にする", + 'text_delete_transfer_note_one' => "アップロードされた金額とダウンロードされた金額が0のアカウントは、ユーザーが以下の間ログインしていない場合に削除されます ", + 'text_delete_transfer_note_two' => " 日数、またはユーザーが以上のために登録されています ", + 'text_delete_transfer_note_three' => " days. Default '60', '0'.
    NOTE: Two rules work seperately. Setting one of them to '0' ONLY disables one rule.", + 'text_user_promotion_demotion' => "ユーザーのプロモーションと降圧性", + 'row_ban_peasant_one' => "アクセス禁止 ", + 'row_ban_peasant_two' => "", + 'text_ban_peasant_note_one' => " 以内に昇格しない場合は禁止されます ", + 'text_ban_peasant_note_two' => " 日付。デフォルトの '30' は、すぐにBANするには '0' に設定します。", + 'row_demoted_to_peasant_one' => "下げる: ", + 'row_demoted_to_peasant_two' => "", + 'text_demoted_peasant_note_one' => "ユーザーは降格されます ", + 'text_demoted_peasant_note_two' => " 以下のいずれかの条件を満たしています ", + 'text_downloaded_amount_larger_than' => "ダウンロードした金額より大きい ", + 'text_and_ratio_below' => " GBとレシオ以下です ", + 'text_demote_peasant_default_one' => "を選択します。", + 'text_demote_peasant_default_two' => "を選択します。", + 'text_demote_peasant_default_three' => "を選択します。 デフォルト '200', '0.6'", + 'text_demote_peasant_default_four' => "を選択します。 デフォルト '400', '0.7'", + 'text_demote_peasant_default_five' => "を選択します。 デフォルト '800', '0.8'", + 'text_demote_peasant_note' => "NOTE: DO NOT change to the ascendant order of downloaded amounts. Set downloaded amount to '0' to disable relevant rule.", + 'row_promote_to_one' => "プロモート ", + 'row_promote_to_two' => "", + 'text_member_longer_than' => "以上のメンバーになっているユーザー ", + 'text_downloaded_more_than' => "、およびダウンロード回数: ", + 'text_with_ratio_above' => "GB、比率は上記です ", + 'text_seed_points_more_than' => '週、シードポイント以上', + 'text_be_promoted_to' => "を選択します。 ", + 'text_promote_to_default_one' => "を選択します。 ", + 'text_promote_to_default_two' => "を選択します。 ", + 'text_demote_with_ratio_below' => "ただし、比率を下回った場合、ユーザーは降格されます ", + 'head_torrent_settings' => "トレント設定", + 'row_promotion_rules' => "プロモーションルール", + 'text_promotion_rules_note' => "いくつかの自動プロモーションルールを有効にします。 醜いコードは今すぐです。後で変更する必要があります。", + 'row_random_promotion' => "ランダムプロモーション", + 'text_random_promotion_note_one' => "アップロード時にシステムによってランダムに促進されるTorrent 。", + 'text_halfleech_chance_becoming' => "% 確率が 50% リーチになる。デフォルト '5'", + 'text_free_chance_becoming' => "% chance to becoming Free Leech. Default '2'.", + 'text_twoup_chance_becoming' => "% の確率で 2X Upになります。デフォルト '2'", + 'text_freetwoup_chance_becoming' => "% の確率で フリーリーチ、になります。デフォルト '1'", + 'text_twouphalfleech_chance_becoming' => "%の確率で 2倍アップ、50%ダウンformat@@4 になります。デフォルト '0'", + 'text_random_promotion_note_two' => "ルールを無効にするには、値を '0' に設定します。", + 'row_large_torrent_promotion' => "大トレントプロモーション", + 'text_torrent_larger_than' => "Torrent がより大きい ", + 'text_gb_promoted_to' => " GBは自動的にプロモーションされます ", + 'text_by_system_upon_uploading' => " アップロードされた時点でシステムによって異なります ", + 'text_large_torrent_promotion_note' => "デフォルトの '20'、'free'。ルールを無効にするには、Torrent サイズを '0' に設定してください。", + 'row_promotion_timeout' => "プロモーションのタイムアウト", + 'text_promotion_timeout_note_one' => "急流のプロモーションはしばらくすると失効します。", + 'text_halfleech_will_become' => "50%リーチ になります ", + 'text_after' => " 後 ", + 'text_halfleech_timeout_default' => " 日付。標準の「通常」、「150」。", + 'text_free_will_become' => "無料リーチ になります ", + 'text_free_timeout_default' => " 日付。標準の '通常' 、'60'", + 'text_twoup_will_become' => "2X Up が表示されます ", + 'text_twoup_timeout_default' => " 日付。標準の '通常' 、'60'", + 'text_freetwoup_will_become' => "フリーリーチと、 が2倍になります ", + 'text_freetwoup_timeout_default' => " 日付。標準の「通常」、「30」。", + 'text_halfleechtwoup_will_become' => "50%リーチ、2Xアップ になります ", + 'text_halfleechtwoup_timeout_default' => " 日付。標準の「通常」、「30」。", + 'text_normal_will_become' => "ノーマル になります ", + 'text_normal_timeout_default' => " 日付。標準の '通常' 、'0'", + 'text_promotion_timeout_note_two' => "プロモーションを永遠に続けるには「0」に設定してください。", + 'row_auto_pick_hot' => "ホットを自動的に選択", + 'text_torrents_uploaded_within' => "トレントがアップロードされました ", + 'text_days_with_more_than' => " 日数よりも多い日 ", + 'text_be_picked_as_hot' => " シードは Hot として自動的に選択されます。", + 'text_auto_pick_hot_default' => " デフォルトの '7'、'10'。無効にするには '0' に設定してください。", + 'row_uploader_get_double' => "アップローダーが倍増します", + 'text_torrent_uploader_gets' => "トレントアップローダーは常に取得 ", + 'text_times_uploading_credit' => " クレジットをアップロードする時間が多いのです ", + 'text_uploader_get_double_default' => "デフォルトの '1' 。正常にトレントアップローダーを扱うには、'1' に設定してください。", + 'row_delete_dead_torrents' => "死んだトレントを削除", + 'text_torrents_being_dead_for' => "死んでいる Torrent ", + 'text_days_be_deleted' => " 行内の日数は自動的に削除されます。デフォルトの '0' は、'0' に設定し、ルールを無効にします。", + 'row_delete_dead_torrents_note' => "警告: 一度削除すると、トレントは回復不能になります。サイトが長時間ダウンしている場合は、このルールを無効にしてください。", + 'head_main_settings' => "メイン設定", + 'row_site_online' => "Site online", + 'text_site_online_note' => "デフォルトの「はい」です。 アップデートやその他のメンテナンスを実行中にサイトをオフにしますか? ご注意ください: 管理者は引き続きサイトを見ることができます.", + 'row_enable_invite_system' => "招待システムを有効にする", + 'text_invite_system_note' => "デフォルトの「はい」です。招待システムで登録を許可します。", + 'row_initial_uploading_amount' => "最初のアップロード量", + 'text_initial_uploading_amount_note' => "登録時に各ユーザーに与えるべきクレジット(Byte単位、1073741824 = 1GB)はいくつありますか? デフォルトの'0'。", + 'row_initial_invites' => "初期招待回数", + 'text_initial_invites_note' => "登録時に各ユーザーにいくつの招待を与える必要がありますか? デフォルト '0'。", + 'row_invite_timeout' => "招待タイムアウト", + 'text_invite_timeout_note' => "日数。招待リクエストに応答しなかったX日後に招待コードを削除します。デフォルト '7'", + 'row_enable_registration_system' => "登録システムを有効にする", + 'row_allow_registrations' => "オープンな登録を許可します。既定の「はい」です。", + 'row_verification_type' => "検証の種類", + 'text_email' => "Eメールアドレス", + 'text_admin' => "管理者", + 'text_automatically' => "自動", + 'text_verification_type_note' => "EMAIL: 送信された確認メール。 管理者: 手動でアクティベート。 自動入力: 登録後にユーザーをアクティベートします。", + 'row_enable_wait_system' => "ウェイトシステムを有効にする", + 'text_wait_system_note' => "ウェイトシステムを有効または無効にします( FAQ を参照)。", + 'row_enable_max_slots_system' => "最大スロットシステムを有効にする", + 'text_max_slots_system_note' => "デフォルトの「いいえ」。最大同時ダウンロードを有効または無効にします( FAQ を参照)。", + 'row_show_polls' => "投票を表示", + 'text_show_polls_note' => "デフォルトの「はい」です。POLLシステムをメインページに表示します。", + 'row_show_stats' => "統計情報を表示", + 'text_show_stats_note' => "デフォルトの「はい」です。メインページにSTATSシステムを表示します。", + 'row_show_last_posts' => "前回のフォーラム投稿を表示", + 'text_show_last_posts_note' => "デフォルトの「いいえ」です。メインページに最終フォーラム投稿を表示します。", + 'row_show_last_torrents' => "最新の Torrent を表示", + 'text_show_last_torrents_note' => "デフォルトの「いいえ」です。メインページに最後のトレントを表示します。", + 'row_show_server_load' => "サーバーの負荷を表示", + 'text_show_server_load_note' => "デフォルトの「はい」です。メインページにサーバーロードを表示します。", + 'row_show_forum_stats' => "フォーラムの統計情報を表示", + 'text_show_forum_stats_note' => "デフォルトの「はい」です.フォーラムページにフォーラムの統計情報を表示します.", + 'row_show_hot' => "ホットスポットを表示", + 'text_show_hot_note' => "デフォルトの「はい」です.メインページにホットリソースを表示します.ホットリソースはシステムまたはスタッフによって自動的に選択されます.", + 'row_show_classic' => "クラシックを表示", + 'text_show_classic_note' => "デフォルトの「いいえ」です。メインページにクラシックリソースを表示します。指定されたモデレータ以上のみがクラシックリソースを選択できます。", + 'row_enable_imdb_system' => "IMDb システムを有効にする", + 'text_imdb_system_note' => "デフォルトの 'はい' システム全体の IMDb 情報の設定。", + 'row_enable_pt_gen_system' => 'PT-Gen システムを有効にする', + 'text_enable_pt_gen_system_note' => "デフォルトの「いいえ」です。システム全体のPT-Gen情報設定。", + 'row_pt_gen_api_point' => "PT-Gen apiポイント", + 'text_pt_gen_api_point_note' => "デフォルトの ''は、必要に応じて、 ドキュメント を参照して自分をビルドします。", + 'row_enable_school_system' => "スクールシステムを有効にする", + 'text_school_system_note' => "Default 'no'. DO NOT enable this unless you know what you are doing!", + 'row_restrict_email_domain' => "メールドメインの制限", + 'text_restrict_email_domain_note' => "デフォルトの「いいえ」です。特定のメールドメインのみ登録できるようにするには、「はい」に設定します。 ここの を参照してください。", + 'row_show_shoutbox' => "Shoutboxを表示", + 'text_show_shoutbox_note' => "デフォルトの「はい」です。メインページにシャウトボックスを表示します。", + 'row_show_funbox' => "Show Funbox", + 'text_show_funbox_note' => "デフォルトの「いいえ」です。メインページにfunboxを表示します。", + 'row_enable_offer_section' => "オファーセクションを有効にする", + 'text_offer_section_note' => "デフォルトの「はい」です。オファーセクションを有効または無効にします。", + 'row_show_donation' => "寄付を有効にする", + 'text_show_donation_note' => "寄付と寄付のトップ10を表示します。", + 'row_show_special_section' => "特別なセクションを有効にする", + 'text_show_special_section_note' => "Default 'no'. DO NOT enable this unless you know what you are doing!", + 'row_weekend_free_uploading' => "週末に無料でアップロード", + 'text_weekend_free_uploading_note' => "デフォルトの「いいえ」に設定すると、週末にすべてのユーザーがトレントをアップロードできるようになります(土曜日12:00から日曜日23:59まで)。", + 'row_enable_helpbox' => "ヘルプボックスを有効にする", + 'text_helpbox_note' => "デフォルトの「いいえ」です。メッセージを発信するゲストを禁止する場合は「いいえ」に設定してください。", + 'row_enable_bitbucket' => "Bitbucket を有効にする", + 'text_bitbucket_note' => "デフォルトの「はい」です。トラッカーにアバターをアップロードすることを禁止する場合は「いいえ」に設定してください。", + 'row_enable_small_description' => "スモールディプリションを有効にする", + 'text_small_description_note' => "デフォルトの「はい」です。Torrent のタイトルの下に表示します。", + 'row_ptshow_naming_style' => "PTShow 命名スタイル", + 'text_ptshow_naming_style_note' => "デフォルトの「いいえ」。 [MM.DD.YY][元の名前][中国の名前]の形式で。 あなたが何をしているのかわからない限り有効にしないでください!", + 'row_use_external_forum' => "外部フォーラムを使用", + 'text_use_external_forum_note' => "デフォルトの「いいえ」です。内部のフォーラムではなく外部フォーラムを使用する場合は「はい」に設定してください。", + 'row_external_forum_url' => "外部フォーラムURL", + 'text_external_forum_url_note' => "http://www.cc98.org のようにする必要があります", + 'row_torrents_category_mode' => "トレントセクションのカテゴリモード", + 'text_torrents_category_mode_note' => "Torrentのページでカテゴリーモードが変更されます。", + 'row_special_category_mode' => "特別セクションのカテゴリモード", + 'text_special_category_mode_note' => "これは、format@@0 セクションのカテゴリ モードを変更します。", + 'row_default_site_language' => "サイトのデフォルト言語", + 'text_default_site_language_note' => "これは、ログインページのデフォルトの言語を変更します。", + 'row_default_stylesheet' => "Default Stylesheet", + 'text_default_stylesheet_note' => "新規登録ユーザーはこのスタイルシートを使用します。", + 'row_max_torrent_size' => "最大トレントサイズ", + 'text_max_torrent_size_note' => " バイト単位。デフォルト 1048576 (例: 1 MB)", + 'row_announce_interval' => "アナウンス間隔", + 'text_announce_interval_note_one' => "アナウンス間隔でトラッカーはBitTorrentクライアントに情報を更新するように要求します。 しかし, BitTorrentクライアントはこのメッセージを無視したり、ユーザーがトラッカーを手動で接続することを選択したりする可能性があるため、実際にはアナウンス間隔が異なる場合があります。", + 'text_announce_default' => "デフォルト: ", + 'text_announce_default_default' => "デフォルト '1800'、すなわち30分", + 'text_for_torrents_older_than' => "Torrent が古い場合 ", + 'text_days' => " 日数: ", + 'text_announce_two_default' => "デフォルトの '7', '2700' (つまり45分) ルールを無効にするには、日数を '0' に設定します。", + 'text_announce_three_default' => "デフォルトの「30」、「3600」(すなわち60分)。ルールを無効にするには「0」に設定してください。", + 'text_announce_interval_note_two' => "NOTE: Do NOT change the ascendant order of the times!
    Shorter interval means more accurate of peers' information-updating and HEAVIER tracker load.", + 'row_cleanup_interval' => "自動クリーンアップ間隔", + 'text_cleanup_interval_note_one' => "XXX 秒ごとにクリーンアップ(ユーザープロモーション、降格、シードボーナスの追加など)を行います。", + 'text_priority_one' => "優先度1: ", + 'text_priority_one_note' => "ピアの状態を更新; シードボーナスを計算します。デフォルトの '3600' 、つまり 60 分。", + 'text_priority_two' => "優先度2: ", + 'text_priority_two_note' => "Torrentの可視性を更新します。デフォルトの「5400」、すなわち90分です。", + 'text_priority_three' => "優先度3: ", + 'text_priority_three_note' => "シード、リーチャー、トピックのコメントの数を更新します。 フォーラムの投稿/トピックの数を更新します。 タイムアウトしているオファーを削除します。 急流プロモーションを期限切れにします。 デフォルトの「7200」、つまり2時間です。", + 'text_priority_four' => "優先度4: ", + 'text_priority_four_note' => "未確認のアカウント、古いログイン試行、招待コード、正規表現コードの削除、ユーザーアカウントのクリーンアップ(無効なアカウントを削除、アカウントのプロモーションや降格、禁止など) ; アップロードされた画像を投稿する; シードの合計とユーザーのリーチ時間を更新する。デフォルト '86400'、すなわち 24 時間。", + 'text_priority_five' => "優先度5: ", + 'text_priority_five_note' => "これ以上存在しないトピックを削除する; 非常に古いフォーラムトピックをロックする; 非常に古いレポート項目を削除する。デフォルトの'1296000'、すなわち15日。", + 'text_cleanup_interval_note_two' => "NOTE: Do NOT change the ascendant order of the times!", + 'row_signup_timeout' => "サインアップのタイムアウト", + 'text_signup_timeout_note' => "秒で、XXX秒後に未確認のユーザーを削除します。デフォルトの「259200」、すなわち3日間。", + 'row_min_offer_votes' => "オファーの投票", + 'text_min_offer_votes_note' => "オファーは賛成票が異議を唱えるよりXXXである場合に承認されます。デフォルト '15'。", + 'row_offer_vote_timeout' => "投票タイムアウトを提示する", + 'text_offer_vote_timeout_note' => "秒単位。XXX秒後に投票しない場合はオファーを削除します。デフォルトの「259200」、つまり72時間。タイムアウトを無効にするには「0」に設定してください。", + 'row_offer_upload_timeout' => "オファーのアップロードタイムアウト時間", + 'text_offer_upload_timeout_note' => "秒単位。XXX秒投票された後にアップロードされない場合はオファーを削除します。 デフォルトの'86400'、すなわち24時間。 タイムアウトを無効にするには'0'に設定してください。", + 'row_max_subtitle_size' => "字幕の最大サイズ", + 'text_max_subtitle_size_note' => "バイト単位。アップロード可能な字幕の最大サイズ。デフォルト3145728、すなわち3MB。制限を無効にするには0に設定してください。", + 'row_posts_per_page' => "ページあたりのデフォルトの投稿数", + 'text_posts_per_page_note' => "フォーラムのトピックに表示されるページあたりの投稿数です。デフォルト '10'
    ユーザーの個人設定がこれを上書きすることに注意してください。", + 'row_topics_per_page' => "ページあたりのデフォルトのトピック", + 'text_topics_per_page_note' => "Number of topics per page shown at a forum. Default '20'.
    Note that user's personal setting would override this", + 'row_number_of_news' => "ニュースの数", + 'text_number_of_news_note' => "Show XXX pieces of recent news on main page. Default '3'", + 'row_torrent_dead_time' => "最大トレント死亡時間", + 'text_torrent_dead_time_note' => "秒で、XXX 秒間シーダーが存在しない場合、トレントを死亡としてマークします。既定の '21600'、つまり 6 時間です。", + 'row_max_users' => "最大ユーザー", + 'text_max_users' => "この制限に達すると、無料登録と招待の両方が無効になります。", + 'row_https_announce_url' => "HTTPS アナウンスURL", + 'text_https_announce_url_note' => "HTTPとHTTPSの両方で同じURLを使用する場合は空白のままにしてください。以下のようにする必要があります: ", + 'row_site_accountant_userid' => "サイトAccountant User ID", + 'text_site_accountant_userid_note' => "数字(例:'1')。寄付者が寄付メッセージを送信するユーザーID。", + 'row_alipay_account' => "Alipay Account", + 'text_alipal_account_note' => "Alipayアカウントがない場合は空白のままにしてください。", + 'row_paypal_account' => "PayPalアカウント", + 'text_paypal_account_note' => "「yourname@gmail.com」などの寄付を受け取るために使用するPayPalアカウント。PayPalアカウントがない場合は空白のままにしてください。", + 'row_site_email' => "サイトのメール", + 'text_site_email_note' => "ウェブサイトのメールアドレス", + 'row_report_email' => "電子メールを報告", + 'text_report_email_note' => "メールアドレスを報告する", + 'row_site_slogan' => "サイトロガン", + 'text_site_slogan_note' => "Website Slogan", + 'row_icp_license' => "ICP ライセンス", + 'text_icp_license_note' => "これは中国で運営されているウェブサイトのライセンス体制です。何もない場合は空白のままにしてください。", + 'row_torrent_directory' => "Torrent ディレクトリ", + 'text_torrent_directory' => "デフォルト 'torrent' 。 末尾にスラッシュ(/) がありません!", + 'row_bitbucket_directory' => "Bitbucket ディレクトリ", + 'text_bitbucket_directory_note' => "デフォルト 'bitbucket' 。 末尾にスラッシュ(/) がありません!", + 'row_cache_directory' => "キャッシュディレクトリ", + 'text_cache_directory_note' => "デフォルト 'キャッシュ' 。 末尾にスラッシュ(/) がありません!", + 'row_torrent_name_prefix' => "トレント名プレフィックス", + 'text_torrent_name_prefix_note' => "このサイトからダウンロードした Torrent ファイルの名前にプレフィックスを追加します。デフォルト '[Nexus]' [Nexus] 末尾に 末尾のドット (.) がありません!", + 'row_peering_time_calculation' => "シード状態のリーチ開始の計算時間", + 'text_peering_time_calculation_note' => "空白のままにしておきましょう。従来の理由で設定されています。", + 'row_new_subtitle_id' => "新しい字幕ID", + 'text_new_subtitle_id_note' => "ただ'0'にしておいてください。それは従来の理由で設定されています。", + 'head_website_settings' => "ウェブサイトの設定", + 'row_basic_settings' => "基本設定", + 'submit_basic_settings' => "基本設定", + 'text_basic_settings_note' => "最も基本的なもの、サイト名をセットアップします。", + 'row_main_settings' => "メイン設定", + 'submit_main_settings' => "メイン設定", + 'text_main_settings_note' => "あなたのサイトについての雑事をセットアップします。", + 'row_smtp_settings' => "SMTP設定", + 'submit_smtp_settings' => "SMTP設定", + 'text_smtp_settings_note' => "SMTP用のメールサーバーを設定します。", + 'row_security_settings' => "セキュリティ設定", + 'submit_security_settings' => "セキュリティ設定", + 'text_security_settings_note' => "トラッカーを保護します。", + 'row_authority_settings' => "権限設定", + 'submit_authority_settings' => "権限設定", + 'text_authority_settings_note' => "各クラスのユーザができることを制御します。", + 'row_tweak_settings' => "微調整の設定", + 'submit_tweak_settings' => "微調整の設定", + 'text_tweak_settings_note' => "トラッカーを使用してください。", + 'row_bonus_settings' => "ボーナス設定", + 'submit_bonus_settings' => "ボーナス設定", + 'text_bonus_settings_note' => "ボーナスの取得方法と使用方法を設定します。", + 'row_account_settings' => "アカウント設定", + 'submit_account_settings' => "アカウント設定", + 'text_account_settings_settings' => "ユーザーアカウントのプロモーション、降格、削除時に設定します。", + 'row_torrents_settings' => "トレント設定", + 'submit_torrents_settings' => "トレント設定", + 'text_torrents_settings_note' => "トレントプロモーション、選択などを設定します", + 'row_bots_settings' => "ボットの設定", + 'submit_bots_settings' => "ボットの設定", + 'text_bots_settings_note' => "ボットを設定してください。 何をしているのかわからない限り、これをタッチしないでください!", + 'row_code_settings' => "コードの設定", + 'submit_code_settings' => "コードの設定", + 'text_code_settings_note' => "コードのバージョンを設定します。 は、何をしているか分からない限り、これをタッチしないでください。", + 'text_smtp_default' => "デフォルト (デフォルトの PHP メール機能を使用)", + 'text_smtp_advanced' => "アドバンスド (EXTRAヘッダ付きのデフォルトのPHPメール関数を使用します。これによりスパムフィルタを回避できます)", + 'text_smtp_external' => "外部 (外部 SMTP サーバーを使用)", + 'text_setting_for_advanced_type' => "詳細タイプの設定", + 'row_smtp_host' => "SMTPホスト", + 'text_smtp_host_note' => "Default: 'localhost'", + 'row_smtp_port' => "SMTPポート", + 'text_smtp_port_note' => "デフォルト: 25", + 'row_smtp_sendmail_from' => "SMTP sendmail から", + 'text_smtp_sendmail_from_note' => "デフォルト: ", + 'row_smtp_sendmail_path' => "Sendmail Path", + 'text_smtp_sendmail_path_note' => "php.ini を編集して sendmail_path を設定してください", + 'text_setting_for_external_type' => "外部タイプの設定", + 'row_outgoing_mail_address' => "送信メール (SMTP) アドレス", + 'row_outgoing_mail_port' => "送信メール (SMTP) ポート", + 'row_outgoing_mail_encryption' => "送信メール (SMTP) 暗号化", + 'text_outgoing_mail_address_note' => "ヒント: smtp.yourisp.com", + 'text_outgoing_mail_port_note' => "ヒント: 25", + 'row_smtp_account_name' => "口座名", + 'text_smtp_account_name_note' => "ヒント: yourname@yourisp.com", + 'row_smtp_account_password' => "アカウントのパスワード", + 'text_smtp_account_password_note' => "ヒント: あなたのパスワードがここになります", + 'text_mail_test_note' => "PHPメールをテストするにはどうすればいいですか?簡単です。クリックしてください ", + 'text_here' => "ここ", + 'std_error' => "エラー", + 'std_mysql_connect_error' => "MySQLに接続できません。設定を確認してください。 ", + 'row_enable_location' => "位置情報を有効にする", + 'text_enable_location_note' => "Default 'no'. Show user's geographic location based on his IP. You should keep this disabled unless you have imported some IP database.", + 'row_torrents_per_page' => "ページあたりのTorrent", + 'text_torrents_per_page_note' => "Torrent ページに表示されるページあたりのトレント数。デフォルト '50'
    ユーザーの個人設定がこれを上書きすることに注意してください。", + 'row_title_keywords' => "タイトルキーワード", + 'text_title_keywords_note' => "ドキュメントのタイトルに表示します。これらのキーワードは、検索エンジンがあなたのサイトを見つけるのに役立ちます。いくつかのキーワードを '|', e. 「BitTorrent|ダウンロード|ムービー」。クリーンなタイトルを保持したい場合は空白のままにしてください。", + 'row_meta_keywords' => "Meta Keywords", + 'text_meta_keywords_note' => "ドキュメントの先頭に表示します。サイトを記述するためのキーワードを定義します。いくつかのキーワードを','で区切ってください。例:'BitTorrent, Download, Movie'。", + 'row_meta_description' => "メタ説明", + 'text_meta_description_note' => "ドキュメントの見出しに表示します.サイトの説明を定義します.", + 'row_bonus_gift_tax' => "ボーナスギフト税", + 'text_system_charges' => "システムはボーナス受信機を請求します ", + 'text_bonus_points_plus' => " ボーナスポイント+ ", + 'text_bonus_gift_tax_note' => "送金額の% を税としています。 たとえば、値が「5」、「10」に設定されている場合、レシーバーは100ポイントのボーナスポイントを送信すると85ポイントのボーナスポイントを取得します。 デフォルトの「5」、「10」。
    注意: 2つのルールは別々に動作します。税を無効にするには、両方の値を「0」に設定する必要があります。", + 'row_see_sql_debug' => "デバッグを参照", + 'text_allow' => "許可する ", + 'text_see_sql_list' => " または上記のデバッグ情報(ページとPHPレポート情報の下部にあるSQLクエリリスト)を参照します。既定値。 ", + 'text_smtp_none' => "なし(これを選択するとメール送信が完全に無効になります)", + 'row_attachment_settings' => "添付ファイルの設定", + 'submit_attachment_settings' => "添付ファイルの設定", + 'text_attachment_settings_note' => "添付ファイルの設定", + 'head_attachment_settings' => "添付ファイルの設定", + 'row_enable_attachment' => "添付ファイルを有効化", + 'text_enable_attachment_note' => "グローバル添付ファイル設定。「いいえ」に設定すると、誰も添付ファイルをアップロードできません。", + 'row_save_directory' => "ディレクトリを保存中", + 'row_http_directory' => "添付ファイルの HTTP パス", + 'text_http_directory_note' => "相対パスまたは絶対パスである可能性があります。 末尾にスラッシュ(/) がありません! デフォルト 'attachments'", + 'row_attachment_authority' => "添付ファイルの権限", + 'text_can_upload_at_most' => " 最大でもアップロードできます ", + 'text_file_size_below' => " 24時間以内の添付ファイルのサイズがより大きくない ", + 'text_with_extension_name' => "KB とそのファイル名の拡張子は次のとおりです ", + 'text_authority_default_one_one' => "を選択します。 ", + 'text_authority_default_one_two' => ", '5', '256', 'jpeg, jpg, png, gif'", + 'text_authority_default_two_one' => "を選択します。 ", + 'text_authority_default_two_two' => ", '10', '512', 'torrent, zip, rar, 7z, gzip, gz'", + 'text_authority_default_three_one' => "を選択します。 ", + 'text_authority_default_three_two' => ", '20', '1024', 'mp3, oga, ogg, flv'", + 'text_authority_default_four_one' => "を選択します。 ", + 'text_authority_default_four_two' => ", '500', '2048', ''.", + 'text_attachment_authority_note_two' => "NOTE:
    • Do NOT change the ascendant order of user classes, file number limit or file size limit.
    • Set file size limit to '0', file number limit to '0' and allowed file extensions to ''(i.e. empty) to disable relative rule.
    • Higher classes inherit authority of lower classes, so there is no need to add allowed file extensions to every rule.
    • Separate several file extensions with ','.
    • No matter how the settings are, nobody can upload file whose size is larger than 5 MB or whose extension name is among 'exe, com, bat, msi'.
    ", + 'text_attachment_authority_note_one' => "クラスに基づいて添付ファイルをアップロードするユーザの権限を定義します。", + 'text_save_directory_note' => "The directory where you save attachments. Please ensure that you have properly configured directory access permissions (777). NO trailing slash (/) at the end! Default './attachments'.", + 'row_save_directory_type' => "添付ファイルを保存する", + 'text_one_directory' => "すべてのファイルの1つのディレクトリ", + 'text_directories_by_monthes' => "月をアップロードした後に指定されたディレクトリ", + 'text_directories_by_days' => "日付をアップロードした後に指定されたディレクトリ", + 'text_save_directory_type_note' => "変更された設定は添付ファイルにはすでにアップロードされていません。デフォルトの 'アップロードされた月にちなんで名付けられたディレクトリ'", + 'row_image_thumbnails' => "Image thumbnail", + 'text_no_thumbnail' => "1. サムネイルはありません。元の画像のみ保存してください。", + 'text_create_thumbnail' => "2. 画像が大きい場合はサムネイルを作成し、サムネイルとオリジナル画像の両方を保存します。", + 'text_resize_big_image' => "3. resize image if it is big and only save the thumbnail.", + 'text_image_thumbnail_note' => "デフォルト '2'", + 'row_thumbnail_quality' => "サムネイルの品質", + 'text_thumbnail_quality_note' => "サムネイルの画質を設定します。値は 1 から 100 までの整数でなければなりません。 番号が大きいほど、品質が高く、ファイルサイズが大きくなります。既定の '80'", + 'row_thumbnail_size' => "Thumbnail size", + 'text_thumbnail_size_note' => "幅 * 高さ(ピクセル単位)。サムネイル または 高さが制限を超えている画像にのみ を作成します。既定値「500」、「500」。", + 'row_watermark' => "透かしの位置", + 'text_no_watermark' => "透かしなし", + 'text_left_top' => "#1", + 'text_top' => "#2", + 'text_right_top' => "#3", + 'text_left' => "#4", + 'text_center' => "#5", + 'text_right' => "#6", + 'text_left_bottom' => "#7", + 'text_bottom' => "#8", + 'text_right_bottom' => "#9", + 'text_random_position' => "ランダムな位置", + 'text_watermark_note' => "アップロードされた画像ファイル(JPEG/PNG/GIF)に透かしを追加します。ウォーターマークPNGファイル「pic/watermark.png」を自分のファイルに置き換えます。 透かしを配置する位置を設定します。GIF アニメーションはサポートされていません。既定の '透かしなし'", + 'row_image_size_for_watermark' => "透かしの画像サイズ", + 'text_watermark_size_note' => "Width * height, in pixels. Add watermark ONLY to images whose width and height exceed this. Default '300', '300'.", + 'row_jpeg_quality_with_watermark' => "ウォーターマーク付きJPEG品質", + 'text_jpeg_watermark_quality_note' => "透かしを追加した後のJPEGファイルの画質。値は1から100の間の整数でなければなりません。 番号が大きいほど、品質が高く、ファイルサイズが大きくなります。デフォルトの '85' です。", + 'head_save_attachment_settings' => "添付ファイルの設定を保存", + 'row_css_date' => "CSS date", + 'text_css_date' => "時刻のフォーマットは YYYYMMDDhhhm, 例えば '200911030110' です。これを変更すると、ユーザのブラウザが CSS キャッシュを強制的に更新するのに役立ちます。 CSS ファイルにいくつかの変更を加えるときに役立ちます。空白のままにしておきます。デフォルトは空白です。", + 'row_alternative_thumbnail_size' => "代替サムネイルサイズ", + 'text_alternative_thumbnail_size_note' => "ユーザはサムネイルの代わりのサイズを選択できます。デフォルトの '180' '135'", + 'row_add_watermark_to_thumbnail' => "サムネイルに透かしを追加", + 'text_watermark_to_thumbnail_note' => "サムネイルに透かしを追加するかどうかにかかわらず、デフォルトの「いいえ」です。グローバル透かし設定を有効にする必要があります。", + 'row_advertisement_settings' => "広告設定", + 'submit_advertisement_settings' => "広告設定", + 'text_advertisement_settings_note' => "あなたのサイトで広告を設定します。", + 'head_advertisement_settings' => "広告設定", + 'row_enable_advertisement' => "広告を有効にする", + 'text_enable_advertisement_note' => "グローバル広告設定", + 'row_no_advertisement' => "広告なし", + 'text_can_choose_no_advertisement' => " または上記のユーザーCPでは広告を表示しないことを選択できます。デフォルト ", + 'row_bonus_no_advertisement' => "ボーナス付き広告なし", + 'text_no_advertisement_with_bonus' => " またはそれ以上は、ボーナスセンターで広告なしで時間を購入することができます。 ", + 'row_no_advertisement_bonus_price' => "広告料金がありません", + 'text_bonus_points_to_buy' => " 購入するボーナスポイント ", + 'text_days_without_advertisements' => " 広告なしの日。デフォルトの「10000」、「15」。", + 'row_click_advertisement_bonus' => "広告ボーナスをクリックします", + 'text_points_clicking_on_advertisements' => " 最初に広告をクリックしたときにボーナスポイントを指定します。ルールを無効にするには「0」に設定します。デフォルトの「0」。
    メモ: 広告をクリックするインセンティブを含む一部の広告サービスアプリケーション(例:Google Adsense)は禁止されています。", + 'head_save_advertisement_settings' => "広告設定を保存", + 'row_enable_tooltip' => "ツールチップを有効にする", + 'text_enable_tooltip_note' => "ユーザーにツールチップの使用を許可します。デフォルトの「はい」です。", + 'text_thirtypercentleech_chance_becoming' => "% 確率が 30% Leechになる。デフォルト '0'", + 'text_thirtypercentleech_will_become' => "30% Leech になります ", + 'text_thirtypercentleech_timeout_default' => " 日付。標準の「通常」、「30」。", + 'row_site_logo' => "サイトロゴ", + 'text_site_logo_note' => "サイトのロゴの画像ファイルです。画像サイズは220 * 70です。空白の場合は、テキストを代わりに表示します。既定の「」。", + 'row_promotion_link_click' => "プロモーションリンククリック", + 'text_promotion_link_note_one' => " 彼のプロモーションリンクが未記録のIPによってクリックされた場合、ボーナスポイント。1クリックのみにカウントされます ", + 'text_promotion_link_note_two' => " を選択します。ルールを無効にするには、ポイントを '0' に設定します。既定の '0' 、'600'", + 'row_promotion_link_example_image' => "プロモーションリンクのサンプル画像", + 'text_promotion_link_example_note' => "The image in the examples of promotion link. MUST use relative path, e.g. 'pic/prolink.png'.", + 'row_enable_nfo' => "NFO を有効にする", + 'text_enable_nfo_note' => "デフォルトの「はい」。システム全体の NFO 設定。", + 'row_web_analytics_code' => "ウェブ解析コード", + 'text_web_analytics_code_note' => "サードパーティサービス(例:Google Analytics)からウェブ解析コードを入力してください。何もない場合は空白のままにしてください。
    : 安全で信頼できるコードのみを使用します。", + 'row_enable_email_notification' => "メール通知を有効にする", + 'text_email_notification_note' => "ユーザーが新しいpm、コメントなどを取得したときに電子メール通知を受け取ることを許可します。", + 'text_users_get' => "ユーザーは ", + 'text_invitations_default' => " このクラスに昇格した時に招待されます。デフォルト ", + 'row_guest_visit_type' => "ゲスト訪問", + 'text_guest_visit_type_normal' => '標準', + 'text_guest_visit_type_static_page' => '静的ページを表示', + 'text_guest_visit_type_custom_content' => 'カスタムコンテンツを表示', + 'text_guest_visit_type_redirect' => 'URL にリダイレクト', + 'row_guest_visit_value_static_page' => '特定の静的ページ', + 'row_guest_visit_value_custom_content' => 'カスタムコンテンツ', + 'row_guest_visit_value_redirect' => '特定の URL', + 'text_guest_visit_value_static_page' => 'File locate:resources/static-pages/', + 'row_login_type' => 'ログインタイプ', + 'text_login_type_normal' => '標準', + 'text_login_type_secret' => 'シークレット', + 'text_login_type_warning' => "3つのうちの1つだけが有効です", + 'row_login_secret' => 'ログインシークレット', + 'text_login_secret_current' => '現在のシークレット', + 'text_login_url_with_secret' => 'シークレットログインURL', + 'text_login_url_with_passkey' => 'Passkey login URL', + 'text_login_secret_regenerate_yes' => "再生成(シークレットを更新し、保存後のライフタイムを延長します)", + 'text_login_secret_regenerate_no' => "残り(シークレットを変更しない、保存後の有効期限)", + 'text_login_secret_lifetime' => '期限', + 'text_login_secret_lifetime_unit' => '分', + 'row_login_secret_lifetime' => 'ログインシークレットの有効期間', + 'text_login_secret_lifetime_deadline' => '現在のログインシークレットの期限', + 'row_enable_technical_info' => 'MediaInfo を有効にする', + 'text_enable_technical_info' => "デフォルト 'いいえ' MediaInfo はソフトウェア MediaInfo テキスト ビュー", + 'row_sticky_first_level_background_color' => '最初のレベルのBG色をスティッキーする', + 'text_sticky_first_level_background_color_note' => 'Sticky first level bg color, it will be none if not set.', + 'row_sticky_second_level_background_color' => 'スティッキーセカンドレベルBGの色', + 'text_sticky_second_level_background_color_note' => 'Sticky second level bg color, it will be none if not set.', + 'row_download_support_passkey' => 'パスキーによるダウンロードをサポート', + 'text_download_support_passkey_note' => 'パスキーまたはない(Torrent IDも必要)でダウンロードできます。', + 'row_torrent_hr' => 'H&R', + 'text_torrent_hr_note' => 'トレントをH&R検査に参加させてください', + 'row_cancel_hr' => 'H&Rをキャンセル', + 'text_cancel_hr_note' => "1つのH&Rをキャンセルするためのボーナスポイントです。デフォルト '".\App\Models\BonusLogs::DEFAULT_BONUS_CANCEL_ONE_HIT_AND_RUN."'.", + 'text_attendance_get_bonus' => '出席者はボーナスを獲得', + 'text_attendance_initial_reward' => '初期報酬', + 'text_attendance_initial_reward_input_label' => '最初に取得する', + 'text_attendance_input_suffix' => 'ボーナス', + 'text_attendance_continuous_increment' => '連続インクリメント', + 'text_attendance_continuous_increment_input_label' => '継続的な出席増分', + 'text_attendance_reward_limit' => '報酬上限', + 'text_attendance_reward_limit_input_label' => '最高報酬を獲得できます', + 'text_attendance_continuous' => 'コンティニュアル', + 'text_attendance_continuous_days' => '連続日数', + 'text_attendance_continuous_days_additional_reward' => '追加ボーナス', + 'text_attendance_continuous_days_action' => 'アクション', + 'text_attendance_continuous_unit' => '日', + 'text_attendance_continuous_item_action_remove' => '削除', + 'text_attendance_continuous_item_action_add' => '追加', + 'text_attendance_continuous_add_rules' => '最低から最高までのルールを追加してください', + 'row_attendance_card' => '出席カードを購入する', + 'text_attendance_card_note' => "出席カードを購入するためのボーナスポイント。デフォルト'" . \App\Models\BonusLogs::DEFAULT_BONUS_BUY_ATTENDANCE_CARD . "'.", + 'row_site_language_enabled' => 'サイト有効言語', + 'text_site_language_enabled_note' => 'サイトが有効になっている言語を選択', + 'keep_at_least_one' => '少なくとも 1 つを保持', + 'text_alias' => 'Class alias: ', + 'row_default_user_one' => 'デフォルトは', + 'row_default_user_two' => '', + 'row_show_top_uploader' => 'アップロードされたトップを表示します(トレント数)', + 'text_show_top_uploader_note' => "デフォルトの「いいえ」です。トップアップロードユーザー(トレント数)をホームページに表示します。", + 'claim_label' => 'トレント請求', + 'claim_enabled' => '請求は有効になりました', + 'claim_torrent_ttl' => 'トレントはリリース日の %s 後に請求できます。', + 'claim_torrent_user_counts_up_limit' => 'トレントは %s までのユーザーに請求できます。', + 'claim_user_torrent_counts_up_limit' => 'ユーザーはトレントの %s まで請求できます。', + 'claim_remove_deduct_user_bonus' => "主張されたトレントは削除され、ユーザーのボーナスの %s は、標準を満たしていない場合に差し引かれます(請求の最初の月ではありません)。", + 'claim_give_up_deduct_user_bonus' => 'ユーザーは積極的にユーザー %s ボーナスを控除主張をあきらめます。', + 'claim_reach_standard' => '標準: 毎月の種まき時間が %s 時間以上、またはアップロードサイズが %s 倍以上です。', + 'claim_bonus_multiplier' => '種子ボーナスの通常のボーナス値の %s 倍を計算します。', + 'row_misc_settings' => 'その他の設定', + 'submit_misc_settings' => 'その他の設定', + 'text_misc_settings_note' => 'その他の設定', + 'row_misc_donation_custom' => '寄付のカスタム', + 'text_donation_custom_note' => 'Alipay、PayPal上に表示される寄付ページのカスタムコンテンツ。サポート bbcode tag', + 'row_approval_status_icon_enabled' => '承認ステータスアイコンを表示する', + 'text_approval_status_icon_enabled_note' => "トレントリストに承認ステータスアイコンを表示するかどうか、デフォルトは「いいえ」です。", + 'row_approval_status_none_visible' => 'レビューされていない Torrent の表示', + 'text_approval_status_none_visible_note' => "デフォルト: 'はい'。'いいえ'に変更する場合、監査が [allow] ステータスでない場合は承認ステータスアイコンを強制表示します。", + 'row_imdb_language' => 'IMDB 言語', + 'text_imdb_language_note' => 'IMDBデータをクロールするために使用される言語。', + 'text_login_type_passkey' => 'パスワード', + 'row_harem_addition' => 'ハーレムの追加', + 'text_user_would_get_by_harem' => 'ユーザーは直接ハーレムのボーナス値を受け取ります', + 'text_harem_addition_note' => '報酬としての時間 (因子、例えば0.01を記入すると、ハーレムが100ボーナスを取得した場合、報酬ユーザー 100 * 0.01 = 1)', + 'row_offer_skip_approved_count' => '直接アップロードオファー許可数', + 'text_offer_skip_approved_count_note' => '承認されたオファーの数がこの値以上である場合は、オファーを送信せずに直接アップロードできます。', + 'row_torrent_delete' => 'トレントを削除', + 'text_torrent_delete_note' => 'トレントを削除', + 'row_hundred_gb_credit' => "100.0 GB アップロードクレジット", + 'text_hundred_gb_credit_note' => " ボーナスポイントを100.0GBのクレジットと交換します。デフォルトの「10000」です。", + 'row_ten_gb_download_credit' => "10.0 GB ダウンロードクレジット", + 'text_ten_gb_download_credit_note' => " ボーナスポイントを10.0GBのダウンロードクレジットと交換します。デフォルトの「1000」。", + 'row_hundred_gb_download_credit' => "100.0 GB ダウンロードクレジット", + 'text_hundred_gb_download_credit_note' => " ボーナスポイントを100.0GBのダウンロードクレジットと交換します。デフォルトの'8000'。", + 'row_official_addition' => '公式追加', + 'text_user_would_get_by_official' => 'ユーザーは公式トレントの通常のボーナス値を受け取ります', + 'text_addition_addition_note' => '報酬としての時間 (例えば0.01 を記入すると、公式トレントが 100 ボーナスを取得した場合、報酬ユーザー 100 * 0.01 = 1)', + 'zero_bonus_factor_default' => 'を選択します。', + 'row_official_tag' => '公式タグ', + 'text_official_tag_note' => 'をクリックします。', + 'row_zero_bonus_tag' => 'Zero bonus tag', + 'text_zero_bonus_tag_note' => 'をクリックします。', + 'row_upload_deny_approval_deny_count' => '承認拒否数のアップロードを拒否する', + 'text_upload_deny_approval_deny_count_note' => "Torrent の承認拒否数がこの値以上である場合、公開は許可されません。 このルールを使用しない場合は「0」に設定してください", + 'row_nfo_view_style_default' => 'NFO 表示スタイルのデフォルト', + 'row_destroy_disabled' => 'アカウントを完全に削除', + 'text_destroy_disabled_note_one' => '連続している場合は無効なアカウント', + 'text_destroy_disabled_note_two' => "ログインせずに日数が物理的にデータベースから完全に削除されます。 デフォルトの '500' は、無効にするために上記のいずれかより大きい値を設定してください。このルールを無効にするには、'0' を設定してください。" , + 'row_enable_global_search_system' => 'グローバル検索を有効にする', + 'text_global_search_system_note' => "デフォルト: 'はい'。複数のセクションがある場合、メインメニューの右下にグローバル検索ポータルが表示されます。", + 'row_protected_forum' => 'プライバシー保護フォーラム', + 'text_protected_forum' => 'The IDs of forums\' which enable privacy protection , seperated by commas(e.g. 1,2,3)', + 'forum_format_error' => 'フォーラムのフォーマットが間違っています。もう一度確認してください!', + 'row_buy_an_tmp_invite' => '一時招待を購入する', + 'text_buy_an_tmp_invite_note' => " 一時的な招待を受けるためのボーナスポイントです。デフォルトの '500'.Set ratio to '0' で購入を無効にします。", + 'row_buy_rainbow_id' => 'レインボーIDを購入', + 'text_buy_rainbow_id_note' => " 虹のIDを30日間有効にするためのボーナスポイント。デフォルトの「5,000」。", + 'row_buy_change_username_card' => 'ユーザー名を変更カードを購入', + 'text_buy_change_username_card_note' => " 変更ユーザー名カードを取得するためのボーナスポイントは、永久に有効です。デフォルトの「100,000」。", + 'row_initial_tmp_invites' => "最初の一時招待回数", + 'text_initial_tmp_invites_note' => "登録時に各ユーザーにいくつの一時招待を行う必要がありますか? デフォルト '0'", + 'row_tax_factor' => '有料トレントの税率:', + 'text_tax_factor_note' => '価格が 100 の場合、この要因は 0.1 であり、アップローダーの実際の収益は 100 - 100 x 0 です。 = 90 の場合、1 または 0 より小さくすべきではないことに注意してください。', + 'row_max_price' => '有料トレントの最大手数料', + 'text_max_price_note' => 'デフォルト: 100万、制限なし', + 'row_paid_torrent_enabled' => '有料の Torrent を有効にする', + 'text_paid_torrent_enabled_note' => '有効にすると、権限を持つユーザーは、送信時にトレントをダウンロードしたユーザーに課金されるボーナス量を設定することができます デフォルト: いいえ', + 'row_use_challenge_response_authentication' => 'Challenge-Response 認証', + 'text_use_challenge_response_authentication_note' => '有効にすると、ログイン時にプレインテキストパスワードは送信されません。今後のリリースではこの設定が削除され、この機能が有効になります。' , + 'row_complain_enabled' => '苦情を有効にするか', + 'row_complain_enabled_note' => 'デフォルト: "はい"', ); + +?> diff --git a/lang/ja/lang_shoutbox.php b/lang/ja/lang_shoutbox.php index 039f841e..aa584705 100644 --- a/lang/ja/lang_shoutbox.php +++ b/lang/ja/lang_shoutbox.php @@ -1,13 +1,16 @@ '消去', - 'std_access_denied' => 'アクセスが拒否されました', - 'std_access_denied_note' => '訪問者はこのページを表示することはできません。', - 'text_to_guest' => '観光客に言ってください', - 'text_guest' => '観光客', - 'text_ago' => 'フォワード', - 'text_helpbox_disabled' => '現在、ヘルプエリアは閉鎖されています。一体何をしているの?', - 'text_no_permission_to_shoutbox' => 'グループチャットエリアで話す権利はありません。一体何をしているの?', - 'speaking_too_often' => '画面を泳ぎないでください!', +$lang_shoutbox = array +( + 'text_del' => "del", + 'std_access_denied' => "アクセスが拒否されました。", + 'std_access_denied_note' => "ゲストはこのページを見ることはできません。", + 'text_to_guest' => " ゲスト", + 'text_guest' => "ゲスト", + 'text_ago' => " 前", + 'text_helpbox_disabled' => "ヘルプボックスは現在無効になっています。どうやってここに着きますか?", + 'text_no_permission_to_shoutbox' => "シャウトボックスにメッセージを送信する権限がありません。どうやってここに着きますか?", + "speaking_too_often" => "あまりにも頻繁に話す!", ); + +?> diff --git a/lang/ja/lang_signup.php b/lang/ja/lang_signup.php index 068036ab..09a6b7c5 100644 --- a/lang/ja/lang_signup.php +++ b/lang/ja/lang_signup.php @@ -1,32 +1,35 @@ '登録する', - 'text_cookies_note' => ':Cookieが登録またはログインできるようにする必要があります。', - 'row_desired_username' => 'ユーザー名', - 'text_allowed_characters' => '有効な文字:(a-z)、(a-z)、(0-9)、最大12文字', - 'row_pick_a_password' => 'パスワードを入力してください', - 'text_minimum_six_characters' => '少なくとも6文字。', - 'row_enter_password_again' => 'もう一度パスワードを入力してください', - 'row_question' => 'パスワード損失の問題', - 'row_enter_hint_answer' => '答えを入力してください', - 'text_hint_note' => '忘れられたパスワードを取得するために使用されます。少なくとも6文字。', - 'row_email_address' => '電子メールアドレス', - 'text_email_note' => '次のメールアドレスを使用してのみ登録できます。', - 'row_country' => '国/地域', - 'row_gender' => '性別', - 'radio_male' => '男', - 'radio_female' => '女性', - 'row_verification' => '確認する', - 'checkbox_read_rules' => '私はサイトを読んで同意しました ルール 。', - 'checkbox_read_faq' => '質問をする前に、 faq を確認します。', - 'checkbox_age' => '私は13歳以上です。', - 'text_all_fields_required' => 'すべての領域を埋める必要があります!', - 'submit_sign_up' => '登録する! (1回だけクリックしてください)', - 'select_none_selected' => '選択されていません', - 'text_select_lang' => 'サイト言語を選択します:', - 'row_school' => '学校', - 'head_invite_signup' => '登録に招待されました', - 'std_uninvited' => '招待状コードが正しくなく、登録できません。', - 'std_error' => '間違い', +$lang_signup = array +( + 'head_signup' => "サインアップ", + 'text_cookies_note' => "メモ: サインアップまたはログインするにはクッキーを有効にする必要があります。", + 'row_desired_username' => "ユーザー名", + 'text_allowed_characters' => "使用可能な文字: (a-z), (A-Z), (0-9), 最大は 12 文字です", + 'row_pick_a_password' => "パスワードを選択", + 'text_minimum_six_characters' => "最低6文字です", + 'row_enter_password_again' => "もう一度パスワードを入力してください", + 'row_question' => "質問", + 'row_enter_hint_answer' => "ヒントの答えを入力", + 'text_hint_note' => "This answer will be used to reset your password in case you forget it.
    Minimum is 6 characters.", + 'row_email_address' => "メールアドレス", + 'text_email_note' => "それらのドメインからのメールでのみサインアップできました ", + 'row_country' => "国", + 'row_gender' => "性別", + 'radio_male' => "男性 ", + 'radio_female' => "女性 ", + 'row_verification' => "認証", + 'checkbox_read_rules' => "サイト ルール ページを読みました。", + 'checkbox_read_faq' => "質問をする前に、 FAQ を読むことに同意します。", + 'checkbox_age' => "私は13歳以上です。", + 'text_all_fields_required' => "すべてのフィールドが必要です! ", + 'submit_sign_up' => "Sign up! (PRESS ONLY ONCE)", + 'select_none_selected' => "選択されていません", + 'text_select_lang' => "サイト言語を選択: ", + 'row_school' => "学校", + 'head_invite_signup' => "招待サインアップ", + 'std_uninvited' => "招待コードが不正です。 ", + 'std_error' => "エラー", ); + +?> diff --git a/lang/ja/lang_special.php b/lang/ja/lang_special.php index b59c6b1d..93829867 100644 --- a/lang/ja/lang_special.php +++ b/lang/ja/lang_special.php @@ -1,7 +1,7 @@ 'ごめん...', - 'std_permission_denied_only' => '許可はありません。のみ', - 'std_or_above_can_view' => 'より高いレベルのユーザーのみが特別なエリアを表示できます。

    ユーザーレベルと許可の詳細については、 faq < /b> を確認してください。

    < /p>%s管理グループ< /b>', -); +$lang_special = [ + 'std_sorry' => "Sorry...", + 'std_permission_denied_only' => "アクセスが拒否されました。のみ ", + 'std_or_above_can_view' => " or above could view Special section.

    Please see the FAQ for more information on different user classes and what they can do.

    The %s Staff
    ", +]; diff --git a/lang/ja/lang_staff.php b/lang/ja/lang_staff.php index 8e9b9ea9..c5422baa 100644 --- a/lang/ja/lang_staff.php +++ b/lang/ja/lang_staff.php @@ -1,33 +1,36 @@ '管理グループ', - 'text_staff' => '管理グループ', - 'text_firstline_support' => '最前線のカスタマーサービス', - 'text_firstline_support_note' => '通常の質問については、次のユーザーに相談してください。注:彼らがあなたを助けることに費やした時間とエネルギーは報われます、彼らに感謝してください!', - 'text_movie_critics' => '批評家', - 'text_movie_critics_note' => '批評家は、優れた映画、音楽、その他のリソースを選択し、レビューを書く、ユーザーのコメントに報いる責任があります。要するに、私たちはコミュニケーションのための良い雰囲気を作ることに取り組んでいます。', - 'text_general_staff' => '通常の管理者', - 'text_general_staff_note' => 'すべてのソフトウェアと回答された質問 faq は無視されます。

    ここに< /b> をクリックして、管理グループにテキストメッセージを送信します。', - 'text_username' => 'ユーザー名', - 'text_online_or_offline' => 'オンラインかどうか', - 'text_country' => '国家', - 'text_contact' => '接続する', - 'text_language' => '言語', - 'text_support_for' => 'コンテンツを助けます', - 'text_responsible_for' => 'コンテンツを担当します', - 'text_duties' => '責任', - 'title_online' => 'オンライン', - 'title_offline' => 'オンラインではありません', - 'title_send_pm' => 'メッセージを送信します', - 'text_vip' => 'VIP', - 'text_vip_note' => 'VIP資格は、%sに特別な貢献をしたユーザーにのみ付与されます。管理グループの元メンバーなど。', - 'text_reason' => '理由', - 'text_apply_for_it' => '参加に応募します', - 'text_forum_moderators' => 'フォーラムモデレーター', - 'text_forum_moderators_note' => 'フォーラムのモデレーターは、フォーラムの毎日の管理を担当しています。', - 'text_forums' => 'セクション', - 'std_sorry' => 'ごめん...', - 'std_permission_denied_only' => '許可はありません。のみ', - 'std_or_above_can_view' => 'より高いレベルのユーザーのみが管理グループを表示できます。

    ユーザーレベルと許可の詳細については、 faq < /b> を確認してください。

    < /p>%s管理グループ< /b>', +$lang_staff = array +( + 'head_staff' => "スタッフ", + 'text_staff' => "スタッフ", + 'text_firstline_support' => "ファーストラインサポート", + 'text_firstline_support_note' => "一般的なサポートの質問は、好ましくはこれらのユーザーに向けられるべきです。 彼らはボランティアであり、あなたを助けるために彼らの時間と努力を与えていることに注意してください。それに応じて彼らを扱います。", + 'text_movie_critics' => "Critics", + 'text_movie_critics_note' => "批評家は良いものを選び、レビューを書くこと、映画、音楽などについてのユーザーのコメントに報いること、一般的に議論のためのよりよい雰囲気を作成する責任がある。", + 'text_general_staff' => "一般的なスタッフ", + 'text_general_staff_note' => "All software support questions and those already answered in the FAQ will be ignored.

    Send message to Staff, click here", + 'text_username' => "ユーザー名", + 'text_online_or_offline' => "オンライン/オフライン", + 'text_country' => "国", + 'text_contact' => "お問い合わせ", + 'text_language' => "言語", + 'text_support_for' => "サポート", + 'text_responsible_for' => "担当者:", + 'text_duties' => "従業員の仕事", + 'title_online' => "オンライン", + 'title_offline' => "オフライン", + 'title_send_pm' => "Send PM", + 'text_vip' => "VIP", + 'text_vip_note' => "VIPステータスは、 %sに特別な貢献をした人にのみ付与されます。例えば、元スタッフです。", + 'text_reason' => "理由:", + 'text_apply_for_it' => "参加を申請する", + 'text_forum_moderators' => "フォーラムモデレーター", + 'text_forum_moderators_note' => "フォーラムモデレータはフォーラムの日々の管理を担当します。", + 'text_forums' => "フォーラム", + 'std_sorry' => "Sorry...", + 'std_permission_denied_only' => "アクセスが拒否されました。のみ ", + 'std_or_above_can_view' => " or above could view Staff.

    Please see the FAQ for more information on different user classes and what they can do.

    The %s Staff
    ", ); + +?> diff --git a/lang/ja/lang_staffbox.php b/lang/ja/lang_staffbox.php index 4ea8a830..35d6418d 100644 --- a/lang/ja/lang_staffbox.php +++ b/lang/ja/lang_staffbox.php @@ -1,31 +1,34 @@ '管理グループメールボックス', - 'text_staff_pm' => '管理グループメールボックス', - 'std_sorry' => 'ごめん', - 'std_no_messages_yet' => 'まだテキストメッセージはありません!', - 'col_subject' => 'テーマ', - 'col_sender' => '送信者', - 'col_added' => '時間', - 'col_answered' => '返事', - 'col_action' => '行動', - 'text_yes' => 'はい', - 'text_no' => 'いいえ', - 'submit_set_answered' => '返信どおりに設定します', - 'submit_delete' => '消去', - 'text_system' => 'システム', - 'head_view_staff_pm' => '管理グループメールボックスを表示します', - 'col_from' => '以来', - 'col_date' => '日付', - 'col_answered_by' => 'レスポンダー', - 'text_reply' => '返事', - 'text_mark_answered' => '返信どおりに設定します', - 'text_delete' => '消去', - 'std_error' => '間違い', - 'std_no_user_id' => 'このIDのないユーザー。', - 'head_answer_to_staff_pm' => '管理グループ情報に返信します', - 'text_answering_to' => '返事', - 'text_sent_by' => '- から', - 'std_body_is_empty' => '返信は空白になりません!', +$lang_staffbox = array +( + 'head_staff_pm' => "スタッフの PM", + 'text_staff_pm' => "スタッフの PM", + 'std_sorry' => "申し訳ありません", + 'std_no_messages_yet' => "メッセージはまだありません!", + 'col_subject' => "件名", + 'col_sender' => "送信者", + 'col_added' => "追加しました", + 'col_answered' => "回答済み", + 'col_action' => "Act.", + 'text_yes' => "はい", + 'text_no' => "いいえ", + 'submit_set_answered' => "回答済みを設定", + 'submit_delete' => "削除", + 'text_system' => "システム", + 'head_view_staff_pm' => "スタッフのPMを表示", + 'col_from' => "差出人:", + 'col_date' => "日付", + 'col_answered_by' => "回答者:", + 'text_reply' => "返信", + 'text_mark_answered' => "回答済みマーク", + 'text_delete' => "削除", + 'std_error' => "エラー", + 'std_no_user_id' => "そのIDを持つユーザーはいません。", + 'head_answer_to_staff_pm' => "スタッフへの回答", + 'text_answering_to' => "回答先 ", + 'text_sent_by' => " 送信者: ", + 'std_body_is_empty' => "何か入力してください!", ); + +?> diff --git a/lang/ja/lang_subtitles.php b/lang/ja/lang_subtitles.php index a6d792f3..879eb01d 100644 --- a/lang/ja/lang_subtitles.php +++ b/lang/ja/lang_subtitles.php @@ -1,61 +1,64 @@ '間違い!', - 'std_must_login_to_upload' => '字幕をアップロードするには、ログインする必要があります', - 'head_subtitles' => '字幕エリア', - 'std_nothing_received' => 'アップロードが失敗しました! < /b>

    ドキュメントは受け入れられませんでした!選択したファイルが大きすぎる場合があります。', - 'std_subs_too_big' => 'アップロードが失敗しました! < /b>

    字幕ファイルが大きすぎます!', - 'std_wrong_subs_format' => 'アップロードが失敗しました! < /b>

    アップロードしたファイルの保存を許可しません:|', - 'std_file_already_exists' => 'アップロードが失敗しました! < /b>

    ファイルはすでに存在します ', - 'std_missing_torrent_id' => 'アップロードが失敗しました! < /b>

    シードID < /b>に記入する必要があります!', - 'std_invalid_torrent_id' => 'アップロードが失敗しました! < /b>

    シードIDが無効です!', - 'std_no_permission_uploading_others' => 'アップロードが失敗しました! < /b>

    あなたのユーザーレベルは、他の人の種の字幕をアップロードできません!', - 'std_file_same_name_exists' => 'このファイル名を持つファイルはすでに存在しています', - 'std_must_choose_language' => 'アップロードが失敗しました! < /b>

    字幕の言語を選択してください!', - 'std_failed_moving_file' => 'アップロードされたファイルを移動できません。この質問を管理者に報告してください。', - 'std_this_file' => 'ファイル名は です', - 'std_is_invalid' => ' フォルダーに無効です。', - 'text_upload_subtitles' => 'サブタイトルのアップロード - 合計アップロードボリューム', - 'text_rules' => 'ルール:', - 'text_rule_one' => '1。アップロードされたファイルには、英語ファイル名を使用してください!', - 'text_rule_two' => '2。字幕は、ビデオファイルと同期する必要があります。そうでなければ、それは空間の無駄です。', - 'text_rule_three' => '3.字幕の言語マークは、すでにフラグマークがあるため、タイトルには必要ありません。ただし、必要な場合は、CHSなどのファイル名の最後に追加することもできます。', - 'text_rule_four' => '4.アップロードした字幕がコレクションである場合は、アップロードする前にzipまたはrarとしてパッケージ化してください。', - 'text_rule_five' => '5.アップロードした字幕がVobsub形式(IDX+sub)の場合は、アップロードする前にzipまたはrarとしてパッケージ化してください。', - 'text_rule_six' => '6.アップロードした字幕が適切な(正しいバージョン)または再シンクス(再チューニング)の場合は、サブタイトルファイル名の最後に適切なタグまたは再結合タグを追加してください。', - 'text_red_star_required' => '

    赤いアスタリスクでマークされた領域(*)は

    に埋める必要があります', - 'text_uploading_subtitles_for_torrent' => '種子の字幕をアップロードします:', - 'row_file' => '書類', - 'text_maximum_file_size' => 'ファイルの最大制限:', - 'row_torrent_id' => 'シードID', - 'text_torrent_id_note' => '(シード詳細ページのURLの最後の数字。
    たとえば、&nbsp %s/details.php?id = 16 &nbsp 16 ', - 'row_title' => 'タイトル', - 'text_title_note' => '(オプション、記入しない場合は、シードファイル名を使用してください)', - 'row_language' => '言語', - 'select_choose_one' => '(選択してください)', - 'row_show_uploader' => '匿名でアップロードします', - 'hide_uploader_note' => '私のユーザー名を表示しないでください。', - 'submit_upload_file' => 'ファイルをアップロードします', - 'submit_reset' => 'リセット', - 'text_sorry' => 'ごめん', - 'text_nothing_here' => '申し訳ありませんが、まだ字幕はありません:(', - 'submit_search' => '私を探してください', - 'text_prev' => '前のページ', - 'text_next' => '次のページ', - 'col_lang' => '言語', - 'col_title' => 'タイトル', - 'title_date_added' => '時間を追加します', - 'title_size' => 'サイズ', - 'col_hits' => 'クリック', - 'col_upped_by' => 'アップローダー', - 'text_delete' => '[消去]', - 'text_anonymous' => '匿名', - 'std_delete_subtitle' => '字幕を削除します', - 'std_delete_subtitle_note' => 'サブタイトルを削除します。', - 'text_reason_is' => '理由:', - 'submit_confirm' => 'もちろん', - 'col_report' => '報告', - 'title_report_subtitle' => 'この字幕を報告してください', - 'select_all_languages' => '(すべての言語)', +$lang_subtitles = array +( + 'std_error' => "エラー!", + 'std_must_login_to_upload' => "字幕をアップロードするにはログインが必要です", + 'head_subtitles' => "字幕", + 'std_nothing_received' => "アップロードに失敗しました!

    何も受信されていません! 選択したファイルが大きすぎる可能性があります。", + 'std_subs_too_big' => "アップロードに失敗しました!

    サブが大きすぎます!", + 'std_wrong_subs_format' => "アップロードに失敗しました!

    送信したファイルを保存する権限がありません :|", + 'std_file_already_exists' => "Upload failed!

    A file already exist ", + 'std_missing_torrent_id' => "Upload failed!

    missing torrent ID !", + 'std_invalid_torrent_id' => "アップロードに失敗しました!

    有効な Torrent ID ではないようです!", + 'std_no_permission_uploading_others' => "アップロードに失敗しました!

    あなたのトレントIDではないようです。あなたのクラスのユーザーは他の人の Torrent にサブをアップロードできません!", + 'std_file_same_name_exists' => "その名前のファイルは既に存在します ", + 'std_must_choose_language' => "アップロードに失敗しました!

    字幕の言語を選択してください!", + 'std_failed_moving_file' => "アップロードされたファイルを移動できませんでした。このエラーについては管理者に問い合わせてください。", + 'std_this_file' => "このファイル: ", + 'std_is_invalid' => " はフォルダ上で有効ではありません。", + 'text_upload_subtitles' => "字幕をアップロード - 合計アップロード ", + 'text_rules' => "ルール:", + 'text_rule_one' => "1.英語名のファイルのみアップロードしてください!", + 'text_rule_two' => "2.字幕 は、あなたが言っていることと同期 でなければなりません。それらが空間の無駄ではない場合。", + 'text_rule_three' => "3. タイトル には国旗があるため言語識別は必要ありません でも必要性を感じるなら最後に言語を書いてください CHS", + 'text_rule_four' => "4. ifあなたはシーズンパックのための字幕をアップロードし、それらをすべて一緒にzip/rar。", + 'text_rule_five' => "5.Vobsub (idx+sub)字幕をアップロードしている場合、アップロードの前にzip/rar 字幕をアップロードします。", + 'text_rule_six' => "6.適切または再同期された字幕をアップロードする場合は、字幕名の後に [proper] または [resynced] を追加します。", + 'text_red_star_required' => "

    赤い星 (*) のついたフィールドが必要です。

    \n", + 'text_uploading_subtitles_for_torrent' => "Torrent の字幕をアップロードしています: ", + 'row_file' => "ファイル", + 'text_maximum_file_size' => "最大ファイルサイズ: ", + 'row_torrent_id' => "Torrent ID", + 'text_torrent_id_note' => "(The number in the address bar when you go to the details page of the torrent.
    e.g.  http://%s/details.php?id=16  the number 16 is the torrent ID)", + 'row_title' => "タイトル", + 'text_title_note' => "(指定されていない場合は、ファイル名から取得します。", + 'row_language' => "言語", + 'select_choose_one' => "(1つを選択)", + 'row_show_uploader' => "アップローダーを表示", + 'hide_uploader_note' => "「Upped By」フィールドに自分のユーザー名を表示しません。", + 'submit_upload_file' => "Upload file", + 'submit_reset' => "Reset", + 'text_sorry' => "申し訳ありません", + 'text_nothing_here' => "残念ですが、ここには何もありません :( ", + 'submit_search' => "検索", + 'text_prev' => "前", + 'text_next' => "次へ", + 'col_lang' => "Lang.", + 'col_title' => "タイトル", + 'title_date_added' => " 追加時間", + 'title_size' => "サイズ", + 'col_hits' => "閲覧数", + 'col_upped_by' => "Upped by", + 'text_delete' => "[Delete]", + 'text_anonymous' => "匿名", + 'std_delete_subtitle' => "字幕を削除", + 'std_delete_subtitle_note' => "このサブタイトルを削除しようとしています。", + 'text_reason_is' => "理由: ", + 'submit_confirm' => "確認する", + 'col_report' => "レポート", + 'title_report_subtitle' => "このサブタイトルを報告する", + 'select_all_languages' => "(すべての言語)", ); + +?> diff --git a/lang/ja/lang_tags.php b/lang/ja/lang_tags.php index 763edb8b..75c2b76a 100644 --- a/lang/ja/lang_tags.php +++ b/lang/ja/lang_tags.php @@ -1,147 +1,152 @@ '文法:', - 'text_example' => '例:', - 'text_result' => '結果:', - 'text_remarks' => '説明:', - 'head_tags' => 'ラベル', - 'text_tags' => 'ラベル', - 'text_bb_tags_note' => '%s フォーラムは、投稿で使用して表示効果を変更できる bbcodeタグコードをサポートしています。', - 'submit_test_this_code' => 'テストタグ!', - 'text_bold' => '大胆な', - 'text_bold_description' => 'テキストを厚くします', - 'text_bold_syntax' => '[b] テキスト [/b]', - 'text_bold_example' => '[b]これは太字です[/b]', - 'text_italic' => 'イタリック', - 'text_italic_description' => 'テキストの斜体を作成します', - 'text_italic_syntax' => '[i] テキスト [/i]', - 'text_italic_example' => '[i]これはイタリックです[/i]', - 'text_underline' => '下線', - 'text_underline_description' => 'テキストの下に行を追加します', - 'text_underline_syntax' => '[u] テキスト [/u]', - 'text_underline_example' => '[u]これはアンダースコアです[/u]', - 'text_color_one' => '色(方法1)', - 'text_color_one_description' => 'テキストの色を変更します', - 'text_color_one_syntax' => '[color = color ] テキスト [/color]', - 'text_color_one_example' => '[color =青]これは青いテキストです[/color]', - 'text_color_one_remarks' => '効果的な色はブラウザに依存します。一般に、赤、緑、青、黄色、ピンクなどの基本的な色がサポートされています。', - 'text_color_two' => '色(方法2)', - 'text_color_two_description' => 'テキストの色を変更します', - 'text_color_two_syntax' => '[color =# rgb ] テキスト [/color]', - 'text_color_two_example' => '[color =#0000ff]これは青いテキストです[/color]', - 'text_color_two_remarks' => ' rgb は6桁の16進数でなければなりません', - 'text_size' => 'フォント番号', - 'text_size_description' => 'テキストのサイズを変更します', - 'text_size_syntax' => '[size = n ] テキスト [/size]', - 'text_size_example' => '[サイズ= 4]これはフォント番号4のテキストです[/size]', - 'text_size_remarks' => ' n は、1(最小)から7(最大)の整数でなければなりません。デフォルトのフォントサイズは2です', - 'text_font' => 'フォント', - 'text_font_description' => 'テキストのフォントを変更します', - 'text_font_syntax' => '[font = font ] text [/font]', - 'text_font_example' => '[font = Impact] Helloworld![/font]', - 'text_font_remarks' => 'フォント名の間にコンマを追加することで、代替フォントを設定できます', - 'text_hyperlink_one' => 'ハイパーリンク(方法1)', - 'text_hyperlink_one_description' => 'ハイパーリンクを挿入します', - 'text_hyperlink_one_syntax' => '[url] url [/url]', - 'text_hyperlink_one_example' => '[url] http://%は[/url]', - 'text_hyperlink_one_remarks' => 'このタグは冗長であり、すべてのURLは自動的にハイパーリンクを追加します', - 'text_hyperlink_two' => 'ハイパーリンク(方法2)', - 'text_hyperlink_two_description' => 'ハイパーリンクを挿入します', - 'text_hyperlink_two_syntax' => '[url = url ] link text [/url]', - 'text_hyperlink_two_example' => '[url = http://%yes]%yes [/url]', - 'text_hyperlink_two_remarks' => 'ハイパーリンクにテキストを追加する必要があるときに使用します。', - 'text_image_one' => '写真(方法1)', - 'text_image_one_description' => '画像を挿入します', - 'text_image_one_syntax' => '[IMG = url ]', - 'text_image_one_example' => '[IMG = http://%yes/batch/nexus.png]', - 'text_image_one_remarks' => 'URLは .gif .jpg jpeg または .png でなければなりません', - 'text_image_two' => '写真(方法2)', - 'text_image_two_description' => '画像を挿入します', - 'text_image_two_syntax' => '[img] url [/img]', - 'text_image_two_example' => '[IMG] http://%is/batch/nexus.png [/img]', - 'text_image_two_remarks' => 'URLは .gif .jpg jpeg または .png でなければなりません', - 'text_quote_one' => '引用(方法1)', - 'text_quote_one_description' => '参照を挿入します', - 'text_quote_one_syntax' => '[QUOTE] 引用テキスト [/QUOTE]', - 'text_quote_one_example' => '[QUOTE]私は%s [/quote]が大好きです', - 'text_quote_two' => '引用(方法2)', - 'text_quote_two_description' => '参照を挿入します', - 'text_quote_two_syntax' => '[QUOTE = 著者] 引用テキスト [/QUOTE]', - 'text_quote_two_example' => '[QUOTE =%s]私は%s [/quote]が大好きです', - 'text_list' => 'リスト', - 'text_description' => 'リスト項目を挿入します', - 'text_list_syntax' => '[*] テキスト', - 'text_list_example' => '[*]これは項目1です -[*]これはプロジェクト2です', - 'text_preformat' => 'プリフォーマット', - 'text_preformat_description' => 'Preformatted(Monowidth)テキスト。自動的にラップしないでください', - 'text_preformat_syntax' => '[pre] テキスト [/pre]', - 'text_preformat_example' => '[pre]これは事前にフォーマットされたテキスト[/pre]です', - 'text_code' => 'コード', - 'text_code_description' => 'テキストの特別な装飾的な表示', - 'text_code_syntax' => '[コード]テキスト[/code]', - 'text_code_example' => '[コード]これはコード[/code]です', - 'text_you' => '[持っている]', - 'text_you_description' => '視聴者のユーザー名を表示します', - 'text_you_syntax' => '[持っている]', - 'text_you_example' => 'あなたはこのテキストを読んでいます、[あなた]', - 'text_you_remarks' => 'いたずらに適しています', - 'text_site' => '[サイト]', - 'text_site_description' => 'サイト名を表示します', - 'text_site_syntax' => '[サイト]', - 'text_site_example' => 'あなたは訪問しています[サイト]', - 'text_siteurl' => '[サイトURL]', - 'text_siteurl_description' => 'ウェブサイトのURLを表示します', - 'text_siteurl_syntax' => '[サイトURL]', - 'text_siteurl_example' => '[サイト]のURLは[siteurl]です', - 'text_flash' => 'フラッシュ(方法1)', - 'text_flash_description' => 'ページに指定された幅と高さのフラッシュを挿入します', - 'text_flash_syntax' => '[フラッシュ、幅、高さ]フラッシュurl [/flash]', - 'text_flash_example' => '[Flash、500,300] http://%is/flash.demo.swf [/flash]', - 'text_flash_two' => 'フラッシュ(方法2)', - 'text_flash_two_description' => 'ページにデフォルトの幅と高さ(500 * 300)のフラッシュを挿入します', - 'text_flash_two_syntax' => '[フラッシュ]フラッシュurl [/flash]', - 'text_flash_two_example' => '[フラッシュ] http://%is/flash.demo.swf [/flash]', - 'text_flv_one' => 'フラッシュビデオ(方法1)', - 'text_flv_one_description' => 'ページに指定された幅と高さのフラッシュビデオを挿入する', - 'text_flv_one_syntax' => '[flv、幅、高さ]フラッシュビデオのURL [/flv]', - 'text_flv_one_example' => '[Law、320,240] http://%is/flash.video.demo.legal]', - 'text_flv_two' => 'フラッシュビデオ(方法2)', - 'text_flv_two_description' => 'ページにデフォルトの幅と高さ(320 * 240)のフラッシュビデオを挿入する', - 'text_flv_two_syntax' => '[flv]フラッシュビデオのURL [/flv]', - 'text_flv_two_example' => '[法的] http://%は/flash.video.demo.legal [/legal]です。', - 'text_youtube' => 'YouTube', - 'text_youtube_description' => 'ページにYouTube Webサイトのオンラインビデオを挿入します', - 'text_youtube_syntax' => '[YouTube、幅、高さ] YouTubeビデオのURL [/YouTube]', - 'text_youtube_example' => '[YouTube、560,315] https://wuwuwuwu.youtube.com/watch?v=dw dl3vt ccc close&ab_channel = espn mma [/youtube]', - 'text_youku' => 'Youku', - 'text_youku_description' => 'Youkuのオンラインビデオをページに挿入します', - 'text_youku_syntax' => '[Youku] YoukuビデオのURL [/Youku]', - 'text_youku_example' => '[Youku] http://player.youku.com/player.php/four majors/xm in m1md exo dg =/v.swf [/youku]', - 'text_tudou' => 'じゃがいも', - 'text_tudou_description' => 'Tudou.comのオンラインビデオをページに挿入します', - 'text_tudou_syntax' => '[Tudou] Tudou.comビデオのURL [/tudou]', - 'text_tudou_example' => '[ジャガイモ] http://wuwuwu.potato.com/v/1jai4ln ah7 class [/ポテト]', - 'text_ninety_eight_image' => 'CC98写真', - 'text_ninety_eight_image_description' => 'CC98フォーラムに保存された写真を表示します', - 'text_ninety_eight_image_syntax' => '[98img = [auto | number]]画像ファイル[/98img]', - 'text_ninety_eight_image_example' => '[98IMG = 150]ファイルをアップロード/2008/10/30/2362924185.png [/98img]', - 'text_ninety_eight_image_remarks' => 'CC98はZhijiang Universityのフォーラムです', - 'text_spoiler' => '折り畳み', - 'text_spoiler_description' => 'ページに拡張可能/崩壊したコンテンツを挿入します', - 'text_spoiler_syntax' => '[ネタバレ=タイトル]これは折り畳まれたコンテンツです[/ネタバレ]', - 'text_spoiler_example' => '[ネタバレ=ヒーローの最終結果はどうですか? ]ヒーローは最後に亡くなりました! [/ネタバレ]', - 'text_left' => '左に合わせます', - 'text_left_description' => 'ページに左アライメントコンテンツを挿入します', - 'text_left_syntax' => '[左]これは左側にあるコンテンツです[/左]', - 'text_left_example' => '[左]これは左側にあるコンテンツです[/左]', - 'text_center' => 'センターを調整します', - 'text_center_description' => 'ページに中心に配置されたコンテンツを挿入します', - 'text_center_syntax' => '[センター]これはセンターアライメントコンテンツです[/center]', - 'text_center_example' => '[センター]これはセンターアライメントコンテンツです[/center]', - 'text_right' => '右に並べます', - 'text_right_description' => 'ページに右に整合したコンテンツを挿入します', - 'text_right_syntax' => '[右]これは右に調整されています[/右]', - 'text_right_example' => '[右]これは右に調整されています[/右]', +$lang_tags = array +( + 'text_syntax' => "構文", + 'text_example' => "例", + 'text_result' => "Result:", + 'text_remarks' => "備考:", + 'head_tags' => "タグ", + 'text_tags' => "タグ", + 'text_bb_tags_note' => "The %s forums supports a number of BB tags which you can embed to modify how your posts are displayed.", + 'submit_test_this_code' => "Test this code!", + 'text_bold' => "Bold", + 'text_bold_description' => "囲まれたテキストを太字にします。", + 'text_bold_syntax' => "[b]テキスト[/b]", + 'text_bold_example' => "[b]これは太字のテキストです。[/b]", + 'text_italic' => "Italic", + 'text_italic_description' => "囲まれたテキストを斜体にします。", + 'text_italic_syntax' => "[i]テキスト[/i]", + 'text_italic_example' => "[i]これはイタリック体のテキストです。[/i]", + 'text_underline' => "アンダーライン", + 'text_underline_description' => "囲まれたテキストを下線にします。", + 'text_underline_syntax' => "[u]テキスト[/u]", + 'text_underline_example' => "[u]これは下線付きのテキストです。[/u]", + 'text_color_one' => "色 (alt.1)", + 'text_color_one_description' => "囲まれたテキストの色を変更します。", + 'text_color_one_syntax' => "[color=カラー]テキスト[/color]", + 'text_color_one_example' => "[color=blue]This is blue text.[/color]", + 'text_color_one_remarks' => "どのような色が有効であるかは、ブラウザによって異なります. あなたは基本的な色を使用する場合 (赤, 緑, 青, 黄色, ピンクなど) あなたは安全でなければなりません.", + 'text_color_two' => "色 (alt.2)", + 'text_color_two_description' => "囲まれたテキストの色を変更します。", + 'text_color_two_syntax' => "[color=#RGB]テキスト[/color]", + 'text_color_two_example' => "[color=#0000ff]これは青色のテキストです。[/color]", + 'text_color_two_remarks' => "RGB は6桁の16進数でなければなりません。", + 'text_size' => "サイズ", + 'text_size_description' => "囲まれたテキストのサイズを設定します。", + 'text_size_syntax' => "[size=n]text[/size]", + 'text_size_example' => "[size=4]これはサイズ4です。[/size]", + 'text_size_remarks' => "n は、1 (最小) から 7 (最大) の範囲の整数でなければなりません。デフォルトのサイズは 2 です。", + 'text_font' => "Font", + 'text_font_description' => "囲まれたテキストの書式を設定します。", + 'text_font_syntax' => "[font=Font]Text[/font]", + 'text_font_example' => "[font=Impact]Hello world![/font]", + 'text_font_remarks' => "コンマで区切ることで代替フォントを指定できます。", + 'text_hyperlink_one' => "ハイパーリンク(Alt1)", + 'text_hyperlink_one_description' => "ハイパーリンクを挿入します", + 'text_hyperlink_one_syntax' => "[url]URL[/url]", + 'text_hyperlink_one_example' => "[url]http://%s[/url]", + 'text_hyperlink_one_remarks' => "このタグは余分です。すべてのURLは自動的にハイパーリンクされます。", + 'text_hyperlink_two' => "ハイパーリンク (Alt.2)", + 'text_hyperlink_two_description' => "ハイパーリンクを挿入します", + 'text_hyperlink_two_syntax' => "[url=URL]リンクテキスト[/url]", + 'text_hyperlink_two_example' => "[url=http://%s]%s[/url]", + 'text_hyperlink_two_remarks' => "リンクテキストを設定しない限り、このタグを使用する必要はありません。すべてのURLは自動的にハイパーリンクされます。", + 'text_image_one' => "画像(Alt1)", + 'text_image_one_description' => "画像を挿入します。", + 'text_image_one_syntax' => "[img=URL]", + 'text_image_one_example' => "[img=http://%s/pic/nexus.png]", + 'text_image_one_remarks' => "URLは .gif.jpg.jpegまたは .png で終わらなければなりません。", + 'text_image_two' => "画像(Alt2)", + 'text_image_two_description' => "画像を挿入します。", + 'text_image_two_syntax' => "[img]URL[/img]", + 'text_image_two_example' => "[img]http://%s/pic/nexus.png[/img]", + 'text_image_two_remarks' => "URLは .gif.jpg.jpegまたは .png で終わらなければなりません。", + 'text_quote_one' => "見積書(Alt1)", + 'text_quote_one_description' => "引用符を挿入します。", + 'text_quote_one_syntax' => "[quote]テキスト[/quote]", + 'text_quote_one_example' => "[quote]私は %sが大好きです。[/quote]", + 'text_quote_two' => "見積書(Alt2)", + 'text_quote_two_description' => "引用符を挿入します。", + 'text_quote_two_syntax' => "[quote=作成者]テキスト[/quote]", + 'text_quote_two_example' => "[quote=%s] %sが大好きです。[/quote]", + 'text_list' => "リスト", + 'text_description' => "リスト項目を挿入します。", + 'text_list_syntax' => "[*]テキスト", + 'text_list_example' => "[*] これはアイテム1\n[*]これはアイテム2", + 'text_preformat' => "プレフォーマット", + 'text_preformat_description' => "整形済みのテキスト。自動的には折り返されません。", + 'text_preformat_syntax' => "[pre]テキスト[/pre]", + 'text_preformat_example' => "[pre]これはフォーマット済みのテキストです。[/pre]", + 'text_code' => "コード", + 'text_code_description' => "テキストを装飾形式で表示します。", + 'text_code_syntax' => "[code]テキスト[/code]", + 'text_code_example' => "[code]コード[/code]", + 'text_you' => "[you]", + 'text_you_description' => "これを閲覧した人のユーザー名を表示する", + 'text_you_syntax' => "[you]", + 'text_you_example' => "私はあなたがこれを読んでいることを知っています、 [you]", + 'text_you_remarks' => "トリックを作るのに便利です", + 'text_site' => "[site]", + 'text_site_description' => "サイト名を表示", + 'text_site_syntax' => "[site]", + 'text_site_example' => "あなたは [site] にアクセスしています", + 'text_siteurl' => "[siteurl]", + 'text_siteurl_description' => "このサイトのURLを表示", + 'text_siteurl_syntax' => "[siteurl]", + 'text_siteurl_example' => "The url of [site] is [siteurl]", + 'text_flash' => "フラッシュ (Alt1)", + 'text_flash_description' => "指定された幅と高さのウェブページにフラッシュを挿入", + 'text_flash_syntax' => "[flash,width,height]Flash URL[/flash]", + 'text_flash_example' => "[flash,500,300]http://%s/flash.demo.swf[/flash]", + 'text_flash_two' => "フラッシュ (Alt2)", + 'text_flash_two_description' => "ウェブページにフラッシュを挿入する (500 * 300)", + 'text_flash_two_syntax' => "[flash]Flash URL[/flash]", + 'text_flash_two_example' => "[flash]http://%s/flash.demo.swf[/flash]", + 'text_flv_one' => "Flash video (alt.1)", + 'text_flv_one_description' => "指定された幅と高さのウェブページにフラッシュビデオを挿入します", + 'text_flv_one_syntax' => "[flv,width,height]Flash video URL[/flv]", + 'text_flv_one_example' => "[flv,320,240]http://%s/flash.video.demo.flv[/flv]", + 'text_flv_two' => "Flash video (alt.2)", + 'text_flv_two_description' => "ウェブページにフラッシュビデオをデフォルトの幅と高さに挿入 (320 * 240)", + 'text_flv_two_syntax' => "[flv]Flash video URL[/flv]", + 'text_flv_two_example' => "[flv]http://%s/flash.video.demo.flv[/flv]", + 'text_youtube' => "YouTube", + 'text_youtube_description' => "YouTubeオンラインビデオをWebページに挿入", + 'text_youtube_syntax' => "[youtube,width,height]Video URL on YouTube[/youtube]", + 'text_youtube_example' => "[youtube,560,315]https://www.youtube.com/watch?v=DWDL3VTCcCg&ab_channel=ESPNMMA[/youtube]", + 'text_youku' => "YouKu", + 'text_youku_description' => "YouKuオンラインビデオをWebページに挿入", + 'text_youku_syntax' => "[youku]Video URL on YouKu[/youku]", + 'text_youku_example' => "[youku]http://player.youku.com/player.php/sid/XMzM1MDExODg=/v.swf[/youku]", + 'text_tudou' => "TuDou", + 'text_tudou_description' => "TudouオンラインビデオをWebページに挿入", + 'text_tudou_syntax' => "[tudou]Video URL on TuDou[/tudou]", + 'text_tudou_example' => "[tudou]http://www.tudou.com/v/1jaI4LNa7sk[/tudou]", + 'text_ninety_eight_image' => "CC98画像", + 'text_ninety_eight_image_description' => "CC98フォーラムでホストされている画像を表示", + 'text_ninety_eight_image_syntax' => " [98img=[auto|number]]画像ファイル[/98img]", + 'text_ninety_eight_image_example' => "[98img=150]uploadfile/2008/10/30/2362924185.png[/98img]", + 'text_ninety_eight_image_remarks' => "CC98は浙江大学のフォーラムです", + 'text_spoiler' => 'スポイラー', + 'text_spoiler_description' => 'ページに展開/折りたたみ可能なコンテンツを挿入します', + 'text_spoiler_syntax' => '[spoiler=title]This is the folded content[/spoiler]', + 'text_spoiler_example' => '[スポイラー=ヒーローの最後の結末はどうなった?]ヒーローは最後に死んだ![/spoiler]', + + 'text_left' => 'Text align left', + 'text_left_description' => '左揃えのコンテンツをページに挿入', + 'text_left_syntax' => '[left]This is the left-aligned content[/left]', + 'text_left_example' => '[left]This is the left-aligned content[/left]', + + 'text_center' => 'テキスト中央揃え', + 'text_center_description' => 'ページに中央揃えのコンテンツを挿入', + 'text_center_syntax' => '[center]This is the center-aligned content[/center]', + 'text_center_example' => '[center]This is the center-aligned content[/center]', + + 'text_right' => 'テキストの右揃え', + 'text_right_description' => '右揃えのコンテンツをページに挿入', + 'text_right_syntax' => '[right]右揃えのコンテンツ[/right]', + 'text_right_example' => '[right]右揃えのコンテンツ[/right]', ); + +?> diff --git a/lang/ja/lang_takeconfirm.php b/lang/ja/lang_takeconfirm.php new file mode 100644 index 00000000..6d8b7df3 --- /dev/null +++ b/lang/ja/lang_takeconfirm.php @@ -0,0 +1,14 @@ + "Sorry...", + 'std_no_buddy_to_confirm' => "確認する相棒はいません。:(

    をクリックしてください ", + 'std_here_to_go_back' => "here to go back.", + 'mail_title' => " アカウントの確認", + 'mail_here' => "ここ", + 'mail_content_1' => "こんにちは、

    あなたのアカウントが確認されました。これで訪問できます ", + 'mail_content_2' => "

    and use your login information to login in. We hope you'll read the FAQ's and Rules before you start sharing files.

    Good luck and have fun on ".$SITENAME."

    あなたを招待した人がわからない場合は、次のメールアドレスに報告してください ".$REPORTMAIL."
    --------
    あなたの,The ".$SITENAME." チーム" +); + +?> diff --git a/lang/ja/lang_takecontact.php b/lang/ja/lang_takecontact.php index c7402717..076cab41 100644 --- a/lang/ja/lang_takecontact.php +++ b/lang/ja/lang_takecontact.php @@ -1,14 +1,17 @@ '間違い', - 'std_method' => '方法', - 'std_please_enter_something' => 'コンテンツに記入してください!', - 'std_please_define_subject' => 'タイトルを入力する必要があります!', - 'std_message_flooding' => '無差別にテキストメッセージを送信してください', - 'std_second' => '2番', - 'std_s' => '', - 'std_before_sending_pm' => 'その後もう一度やり直してください。', - 'std_succeeded' => '成功', - 'std_message_succesfully_sent' => 'テキストメッセージは正常に送信されました!', +$lang_takecontact = array +( + 'std_error' => "エラー", + 'std_method' => "方法", + 'std_please_enter_something' => "何か入力してください!", + 'std_please_define_subject' => "件名を定義する必要があります!", + 'std_message_flooding' => "メッセージの洪水は許可されていません。お待ちください。 ", + 'std_second' => " 秒", + 'std_s' => "s", + 'std_before_sending_pm' => " PMをSTAFFに送信する前に。", + 'std_succeeded' => "成功しました", + 'std_message_succesfully_sent' => "メッセージは正常に送信されました!" ); + +?> \ No newline at end of file diff --git a/lang/ja/lang_takeedit.php b/lang/ja/lang_takeedit.php index a01f7834..dedf371e 100644 --- a/lang/ja/lang_takeedit.php +++ b/lang/ja/lang_takeedit.php @@ -1,9 +1,12 @@ '編集に失敗しました!', - 'std_missing_form_data' => 'アイテムは入力されていません', - 'std_not_owner' => 'あなたはブリーダーではありません!どうしたの?', - 'std_nfo_too_big' => 'NFOが大きすぎる!最大値は65,535バイトです。', - 'std_cannot_move_torrent' => '種子を別のゾーンに移動する許可はありません。また、どうやってここに着いたのですか?', +$lang_takeedit = array +( + 'std_edit_failed' => "編集に失敗しました", + 'std_missing_form_data' => "フォームデータがありません", + 'std_not_owner' => "あなたは所有者ではありません!どうしてそうなったのですか?", + 'std_nfo_too_big' => "NFO が大きすぎます!最大 65,535 バイトです。", + 'std_cannot_move_torrent' => "トレントを別のセクションに移動する権限がありません。BTWは、どうやってここに移動しますか?" ); + +?> \ No newline at end of file diff --git a/lang/ja/lang_takeflush.php b/lang/ja/lang_takeflush.php index 0f303d09..d8889a1c 100644 --- a/lang/ja/lang_takeflush.php +++ b/lang/ja/lang_takeflush.php @@ -1,8 +1,11 @@ '失敗', - 'std_success' => '成功', - 'std_ghost_torrents_cleaned' => '冗長な種子が正常に除去されました。', - 'std_cannot_flush_others' => '独自の冗長種をクリアすることしかできません', +$lang_takeflush = array +( + 'std_failed' => "失敗しました", + 'std_success' => "成功", + 'std_ghost_torrents_cleaned' => "幽霊の急流は正常に清掃された", + 'std_cannot_flush_others' => "あなた自身のゴースト急流のみをきれいにすることができます" ); + +?> \ No newline at end of file diff --git a/lang/ja/lang_takeinvite.php b/lang/ja/lang_takeinvite.php index 0a4f5737..8c8d1e88 100644 --- a/lang/ja/lang_takeinvite.php +++ b/lang/ja/lang_takeinvite.php @@ -1,30 +1,29 @@ '招待状は失敗しました!', - 'std_username_too_long' => '申し訳ありませんが、ユーザー名は長すぎます(最大12文字)', - 'std_must_enter_email' => 'メールアドレスを入力する必要があります!', - 'std_invalid_email_address' => '無効なメールアドレス!', - 'std_must_enter_personal_message' => '手紙にプライベートコンテンツを追加してください。', - 'std_email_address' => '電子メールアドレス', - 'std_is_in_use' => 'すでに使用されています。', - 'mail_here' => 'ここ', - 'mail_tilte' => 'ウェブサイトの招待状', - 'mail_one' => 'こんにちは、

    ユーザー', - 'mail_two' => '%Sコミュニティに参加するよう招待されています。 -%Sには知識豊富なユーザーがいます。
    参加に興味がある場合は、ウェブサイトのルールを読んだ後に招待状を確認してください。

    次のリンクをクリックして、招待状を確認してください。', - 'mail_three' => 'お願いします', - 'mail_four' => '招待状は数日以内に確認され、招待状はその後無効になります。
    %s私たちのコミュニティに参加することを心から歓迎します!

    inviterから', - 'mail_five' => '言葉:', - 'mail_six' => 'Inviterがまったくわからない場合は、このメールを%S

    ------
    %sウェブサイトに転送してください', - 'std_error' => '間違い', - 'std_invite_denied' => 'ユーザーレベルでは、招待状の送信は許可されていません。どうやってここに来たの?', - 'std_email_address_banned' => 'メールアドレスは無効です!', - 'std_wrong_email_address_domains' => '招待状をこのメールアドレスに送信することは許可されていません!次のメールアドレスを使用してください。', - 'std_no_invite' => '残りの招待スロットはありません。どうやってここに来たの?', - 'std_invitation_already_sent_to' => '失敗した送信!このメールアドレス', - 'std_await_user_registeration' => '招待状が受け取られました。繰り返し送信しないでください。ユーザーが登録するのを待ってください。', - 'std_must_select_invite' => '使用する招待状を選択してください。', - 'hash_not_exists' => 'ハッシュは存在しません。', - 'hash_expired' => 'ハッシュは期限切れになりました。', +$lang_takeinvite = array +( + 'head_invitation_failed' => "招待に失敗しました!", + 'std_username_too_long' => "申し訳ありませんが、ユーザー名が長すぎます(最大12文字)", + 'std_must_enter_email' => "メールアドレスを入力する必要があります!", + 'std_invalid_email_address' => "無効なメールアドレスです!", + 'std_must_enter_personal_message' => "パーソナルメッセージを追加してください。", + 'std_email_address' => "メールアドレス ", + 'std_is_in_use' => " 既に使用されています。", + 'mail_here' => "ここ", + 'mail_tilte' => " 招待", + 'mail_one' => "こんにちは、

    あなたは %s コミュニティに招待されています ", + 'mail_two' => ".
    This is a private community which has very knowledgeable members.
    If you are interested in joining the community please read over
    the rules and confirm the invite.

    If you want to accept this invitation, you'll need to click this link:", + 'mail_three' => "You need to accept the invitation within ", + 'mail_four' => " 数日間でなければリンクは非アクティブになります
    %s は招待を受け入れ、素晴らしいコミュニティに参加することを願っています!

    パーソナルメッセージ ", + 'mail_five' => ":", + 'mail_six' => "If you do not know the person who has invited you, please forward this email to %s

    ------
    Yours,
    The %s Team.", + 'std_error' => "エラー", + 'std_invite_denied' => "あなたのクラスのユーザーは招待状を送信することができません。どのようにして招待状を送信しますか?", + 'std_email_address_banned' => "このメールアドレスは禁止されています!", + 'std_wrong_email_address_domains' => "このメールアドレスは許可されていません!これらのドメインにのみ招待を送信できます: ", + 'std_no_invite' => "招待状がありません。どうやってここに着きますか?", + 'std_invitation_already_sent_to' => "招待に失敗しました!メールアドレスです ", + 'std_await_user_registeration' => " はすでに招待を受けています。ユーザーが登録されるまでお待ちください。", ); + +?> diff --git a/lang/ja/lang_takelogin.php b/lang/ja/lang_takelogin.php index c720e08a..54dcad9a 100644 --- a/lang/ja/lang_takelogin.php +++ b/lang/ja/lang_takelogin.php @@ -1,10 +1,13 @@ 'エラー:ユーザー名またはパスワードが正しくありません!

    パスワードを忘れましたか? パスワードを取得!', - 'std_login_fail' => 'ログインに失敗しました!', - 'std_account_disabled' => 'このアカウントは無効になっています。', - 'std_user_account_unconfirmed' => 'アカウントはまだ検証されていません。確認メールが届かない場合は、 再送信確認メール を試してください。', - 'std_require_two_step_code' => '2段階検証コードが必要です', - 'std_invalid_two_step_code' => '2段階検証コードは無効です', +$lang_takelogin = array +( + 'std_login_fail_note' => "エラー: ユーザー名またはパスワードが間違っています!

    パスワードを覚えていませんか? パスワードを回復します!", + 'std_login_fail' => "ログインに失敗しました", + 'std_account_disabled' => "このアカウントは無効になっています。", + 'std_user_account_unconfirmed' => "The account has not been verified yet. If you don't receive the confirmation email, try to reseed it.", + 'std_require_two_step_code' => '2段階認証コードが必要です。', + 'std_invalid_two_step_code' => '二段階認証コードが無効です。', ); + +?> diff --git a/lang/ja/lang_takemessage.php b/lang/ja/lang_takemessage.php index 88eb0e52..ab0ba27a 100644 --- a/lang/ja/lang_takemessage.php +++ b/lang/ja/lang_takemessage.php @@ -1,26 +1,29 @@ '間違い', - 'std_permission_denied' => 'あなたは許可を持っていません!', - 'std_please_enter_something' => '空にすることはできません!', - 'std_message_flooding_denied' => '無差別にテキストメッセージを送信します。お願いします', - 'std_before_sending_pm' => 'もう一度数秒で送ってください。', - 'std_invalid_id' => 'このアカウントは期限切れになりました', - 'std_user_not_exist' => 'このアカウントは存在しません', - 'std_refused' => '拒否する', - 'std_account_parked' => 'アカウントがブロックされています。', - 'std_user_blocks_your_pms' => 'このユーザーはあなたのメッセージを受け入れることを拒否します。', - 'std_user_accepts_friends_pms' => 'このユーザーは、友人からのテキストメッセージのみを受け入れます。', - 'std_user_blocks_all_pms' => 'ユーザーはすべてのテキストメッセージを受け入れることを拒否しました。', - 'std_succeeded' => '成功', - 'std_messages_out_of' => 'SMS(合計', - 'std_were' => '記事)があります', - 'std_message_was' => 'メッセージはあります', - 'std_successfully_sent' => '正常に送られます!', - 'std_s_were' => 'すでに', - 'std_was' => 'すでに', - 'std_updated' => '更新します', - 'std_no_permission_forwarding' => 'メッセージを転送する許可はありません。', - 'std_must_enter_username' => '転送したいユーザーのユーザー名を入力する必要があります。', +$lang_takemessage = array +( + 'std_error' => "エラー", + 'std_permission_denied' => "アクセスが拒否されました!", + 'std_please_enter_something' => "何か入力してください!", + 'std_message_flooding_denied' => "メッセージの洪水は許可されていません。お待ちください。 ", + 'std_before_sending_pm' => " 秒前に送信します。", + 'std_invalid_id' => "Invalid ID", + 'std_user_not_exist' => "このIDのユーザーはいません。", + 'std_refused' => "拒否", + 'std_account_parked' => "このアカウントは駐車されています。", + 'std_user_blocks_your_pms' => "このユーザーはあなたからのPMをブロックしました。", + 'std_user_accepts_friends_pms' => "このユーザーはフレンドリストのユーザーからのPMのみ受け付けます。", + 'std_user_blocks_all_pms' => "このユーザーはPMを受け入れません。", + 'std_succeeded' => "成功しました", + 'std_messages_out_of' => " からのメッセージ ", + 'std_were' => " あった", + 'std_message_was' => "メッセージは", + 'std_successfully_sent' => " 正常に送信!", + 'std_s_were' => "Sは", + 'std_was' => " だった", + 'std_updated' => " 更新しました!", + 'std_no_permission_forwarding' => "メッセージを転送する権限がありません.", + 'std_must_enter_username' => "メッセージを転送するユーザー名を入力する必要があります。" ); + +?> diff --git a/lang/ja/lang_takereseed.php b/lang/ja/lang_takereseed.php index 0e44ba25..3ee6ff64 100644 --- a/lang/ja/lang_takereseed.php +++ b/lang/ja/lang_takereseed.php @@ -1,9 +1,12 @@ '更新リクエスト!', - 'std_it_worked' => '成功!ダウンロードを完了したユーザーは、更新を要求するテキストメッセージを受け取ります。', - 'std_error' => '間違い', - 'std_torrent_not_dead' => 'この種は遮断されていません。', - 'std_reseed_sent_recently' => 'シードは、過去15分以内に更新リクエストを受けました。心のこもった人々が植え付けを続けるのを辛抱強く待ってください。', +$lang_takereseed = array +( + 'head_reseed_request' => "リクエストを再開!", + 'std_it_worked' => "動作しました!この急流を奪ったユーザーにメッセージが送信されます。", + 'std_error' => "エラー", + 'std_torrent_not_dead' => "急流は死んでいない。", + 'std_reseed_sent_recently' => "誰かがこのトレントのリシードを15分以内にすでに要求しています。ユーザーがリシードされるのを辛抱強くお待ちください。", ); + +?> diff --git a/lang/ja/lang_takesignup.php b/lang/ja/lang_takesignup.php index e4335ec6..0fb5cde7 100644 --- a/lang/ja/lang_takesignup.php +++ b/lang/ja/lang_takesignup.php @@ -1,47 +1,41 @@ '登録は失敗しました! (以下を参照してください)', - 'std_invalid_email_address' => '無効なメールアドレス!', - 'std_email_address_banned' => 'メールアドレスは無効です!', - 'std_wrong_email_address_domains' => 'このメールアドレスに登録することは許可されていません!次のメールアドレスを使用してください。', - 'std_invalid_gender' => '性別は無効です!', - 'std_blank_field' => '記入するアイテムはありません。', - 'std_hintanswer_too_short' => '申し訳ありませんが、パスワードでは質問に対する答えが短すぎます(少なくとも6文字)', - 'std_username_too_long' => '申し訳ありませんが、ユーザー名は長すぎます(最大12文字)', - 'std_passwords_unmatched' => '2回入力されたパスワードは一貫性がありません!もう一度やり直してください。', - 'std_password_too_short' => '申し訳ありませんが、パスワードが短すぎます(少なくとも6文字)', - 'std_password_too_long' => '申し訳ありませんが、パスワードが長すぎます(最大40文字)', - 'std_password_equals_username' => '申し訳ありませんが、ユーザー名とパスワードは同じではありません。', - 'std_wrong_email_address_format' => '正しいメールアドレスを入力してください。', - 'std_invalid_username' => '無効なユーザー名。', - 'std_unqualified' => '申し訳ありませんが、登録する前にサイトのルールを順守することに同意する必要があります。', - 'std_email_address' => 'このメールアドレス', - 'std_in_use' => 'すでに使用されています。', - 'std_username_exists' => 'ユーザー名はすでに存在しています!', - 'std_database_in_distress' => 'データベースエラー', - 'std_almost_signup' => '登録が完了しようとしています!', - 'std_please_click' => 'クリックしてください', - 'std_here' => 'ここ', - 'std_to_finish_signup' => '来て登録を完了してください、ありがとう!', - 'msg_subject' => 'いらっしゃいませ', - 'msg_congratulations' => 'おめでとう、', - 'msg_you_are_a_member' => '、 - -あなたは%sのメンバーになりました、 -参加することを心から歓迎します! - -[url = rules.php] [b] rules [/b] [/url]を最初に読んでください。質問する前に、[url = faq.php] [b] faq [/b] [/url]を参照してください。時間がある場合は、[url = forums.php] [b] forum [/b] [/url]にアクセスしてください。 - -私はあなたに幸せなものを願っています。 -%S管理グループ', - 'mail_this_link' => 'このリンク', - 'mail_here' => 'ここ', - 'mail_title' => 'ウェブサイトのユーザー登録確認', - 'mail_one' => 'こんにちは', - 'mail_two' => '、

    %sウェブサイトでアカウントを取得し、このメールアドレスを指定するようにリクエスト', - 'mail_three' => '連絡先アドレス用。

    このリクエストを送信していない場合は、このメールを無視してください。次のようにメールアドレスを入力してください', - 'mail_four' => '。このメールに返信しないでください。

    実際にこのリクエストを送信した場合は、次のリンクをクリックして検証に合格してください。', - 'mail_four_1' => '

    上記のリンクが誤って開かれている場合、存在しない、または期限切れがある場合は、ここで確認メールを復活させてみてください', - 'mail_five' => '確認を通過した後、新しいアカウントを使用できます。

    24時間以内に確認に合格しない場合、アカウントは削除されます。
    新人が%sにログインしたら、最初にサイトのルールを必ず読んでください。質問する前にFAQを参照してください。

    注意:%sのウェブサイトに登録されていない場合は、このメールを%s

    ------

    %sウェブサイトに報告してください。', +$lang_takesignup = array +( + 'std_signup_failed' => "サインアップに失敗しました!(下記参照)", + 'std_invalid_email_address' => "無効なメールアドレスです!", + 'std_email_address_banned' => "このメールアドレスは禁止されています!", + 'std_wrong_email_address_domains' => "このメールアドレスは許可されていません!これらのドメインのメールアドレスでのみサインアップできます: ", + 'std_invalid_gender' => "無効な性別です!", + 'std_blank_field' => "フィールドを空白にしないでください。", + 'std_hintanswer_too_short' => "申し訳ありませんが、ヒント解答が短すぎます(最小は 6 文字)", + 'std_username_too_long' => "申し訳ありませんが、ユーザー名が長すぎます(最大12文字)", + 'std_passwords_unmatched' => "パスワードが一致しませんでした!タイプミスがありました。もう一度やり直してください。", + 'std_password_too_short' => "パスワードが短すぎます(最小文字数は6文字)", + 'std_password_too_long' => "パスワードが長すぎます(最大40文字)", + 'std_password_equals_username' => "申し訳ありませんが、パスワードはユーザー名と同じにできません。", + 'std_wrong_email_address_format' => "有効なメールアドレスではありません。", + 'std_invalid_username' => "無効なユーザー名です。", + 'std_unqualified' => "申し訳ありませんが、このサイトのメンバーになるための資格がありません。", + 'std_email_address' => "電子メール アドレス ", + 'std_in_use' => " 既に使用されています。", + 'std_username_exists' => "ユーザー名は既に存在します!", + 'std_database_in_distress' => "申し訳ありませんが、mysql エラーです。このエラーについて管理者に問い合わせてください。", + 'std_almost_signup' => "もう少しで登録が完了します!", + 'std_please_click' => "クリックしてください ", + 'std_here' => "ここ", + 'std_to_finish_signup' => " 申し込みを終えてくれてありがとう!", + 'msg_subject' => "ようこそ ", + 'msg_congratulations' => "おめでとうございます ", + 'msg_you_are_a_member' => ",\n\nYou are now a member of %s,\nWe would like to take this opportunity to say hello and welcome to %s!\n\nPlease be sure to read the [url=rules.php][b]Rules[/b][/url] and the [url=faq.php][b]Faq[/b][/url].\n And be sure to stop by the [url=forums.php][b]Forums[/b][/url]: and say Hello!\n\nEnjoy your Stay.\nThe Staff of %s ", + 'mail_this_link' => "このリンク", + 'mail_here' => "ここ", + 'mail_title' => " ユーザー登録の確認", + 'mail_one' => "Hi ", + 'mail_two' => ",

    You have requested a new user account on %s and you have
    specified this address ", + 'mail_three' => " as user contact.

    If you did not do this, please ignore this email. The person who entered your
    email address had the IP address ", + 'mail_four' => "をクリックします。 返信しないでください。

    ユーザー登録を確認するには、フォローする必要があります ", + 'mail_four_1' => "

    上記のリンクが破損または期限切れの場合は、新しい確認メールを再度送信してみてください ", + 'mail_five' => "

    After you do this, you will be able to use your new account. If you fail to
    do this, your account will be deleted within 24 hours. We urge you to read
    the RULES and FAQ before you start using %s.

    Please Note: If you did not register for %s, please report this email to %s

    ------
    Yours,
    The %s Team.", ); +?> diff --git a/lang/ja/lang_takeupload.php b/lang/ja/lang_takeupload.php index f7565363..899d564f 100644 --- a/lang/ja/lang_takeupload.php +++ b/lang/ja/lang_takeupload.php @@ -1,28 +1,31 @@ 'アップロードが失敗しました!', - 'std_missing_form_data' => '必要なアイテムを入力してください', - 'std_empty_filename' => 'ファイル名を空にすることはできません!', - 'std_zero_byte_nfo' => 'NFOファイルは空です', - 'std_nfo_too_big' => 'NFOファイルが大きすぎます!最大許容65,535バイト。', - 'std_nfo_upload_failed' => 'NFOファイルのアップロードは失敗しました', - 'std_blank_description' => 'はじめに記入する必要があります!', - 'std_category_unselected' => 'タイプを選択する必要があります!', - 'std_invalid_filename' => '無効なファイル名!', - 'std_filename_not_torrent' => '無効なファイル名(torrentファイルではありません)。', - 'std_empty_file' => '空のファイル!', - 'std_not_bencoded_file' => '一体何をしているの?アップロードしたのは、Bencodeファイルではありません!', - 'std_not_a_dictionary' => 'ディレクトリではありません', - 'std_dictionary_is_missing_key' => 'ディレクトリの欠損値', - 'std_invalid_entry_in_dictionary' => '無効なディレクトリエントリ', - 'std_invalid_dictionary_entry_type' => '無効なディレクトリアイテムタイプ', - 'std_invalid_pieces' => '無効なファイルブロック', - 'std_missing_length_and_files' => '長さとファイルがありません', - 'std_filename_errors' => 'エラーファイル名', - 'std_uploaded_not_offered' => '候補者に合格する種子のみをアップロードできます。アップロードする前に で適切なプロジェクトを選択してください!', - 'std_unauthorized_upload_freely' => '自由にアップロードする許可はありません!', - 'std_torrent_existed' => '種はすでに存在します!', - 'std_torrent_file_too_big' => 'シードファイルが大きすぎます!最大許容', - 'std_remake_torrent_note' => 'バイト。ブロックサイズが大きいシードファイルを再作成するか、コンテンツを複数のシードに分割してください。', +$lang_takeupload = array +( + 'std_upload_failed' => "アップロードに失敗しました!", + 'std_missing_form_data' => "フォームデータがありません", + 'std_empty_filename' => "ファイル名が空です!", + 'std_zero_byte_nfo' => "0バイトのNFO", + 'std_nfo_too_big' => "NFO が大きすぎます!最大 65,535 バイトです。", + 'std_nfo_upload_failed' => "NFO のアップロードに失敗しました", + 'std_blank_description' => "説明を入力する必要があります!", + 'std_category_unselected' => "トレントを入れるカテゴリを選択する必要があります!", + 'std_invalid_filename' => "無効なファイル名です!", + 'std_filename_not_torrent' => "ファイル名が無効です (.torrentではありません)。", + 'std_empty_file' => "ファイルが空です!", + 'std_not_bencoded_file' => "何をアップロードしましたか?これは暗号化されたファイルではありません!", + 'std_not_a_dictionary' => "辞書ではなく", + 'std_dictionary_is_missing_key' => "辞書はキーがありません", + 'std_invalid_entry_in_dictionary' => "辞書内の不正なエントリ", + 'std_invalid_dictionary_entry_type' => "辞書エントリタイプが不正です", + 'std_invalid_pieces' => "無効なピース", + 'std_missing_length_and_files' => "長さとファイルの両方がありません", + 'std_filename_errors' => "ファイル名のエラー", + 'std_uploaded_not_offered' => "あなたが提供したトレントをアップロードする権限があります。戻って「あなたのオファー」から1つを選択してください!", + 'std_unauthorized_upload_freely' => "トレントを自由にアップロードする権限がありません!", + 'std_torrent_existed' => "トレントはすでにアップロードされています!", + 'std_torrent_file_too_big' => "Torrent ファイルが大きすぎます!最大値 ", + 'std_remake_torrent_note' => " bytes. Please remake the Torrent file with bigger piece size or split the content to several torrent. (Automatic Copy)", ); + +?> diff --git a/lang/ja/lang_topten.php b/lang/ja/lang_topten.php index 5e86abce..070840cd 100644 --- a/lang/ja/lang_topten.php +++ b/lang/ja/lang_topten.php @@ -1,102 +1,116 @@ '間違い!', - 'std_sorry' => 'ごめん...', - 'std_permission_denied_only' => '許可はありません。のみ', - 'std_or_above_can_view' => 'より高いレベルのユーザーのみがランキングを表示できます。

    ユーザーレベルと許可の詳細については、 faq < /b> を確認してください。

    < /p>%s管理グループ< /b>', - 'col_rank' => 'ランキング', - 'col_user' => 'ユーザー', - 'col_donated' => '寄付する', - 'col_ul_speed' => '速度をアップロードします', - 'col_downloaded' => 'ダウンロード', - 'col_dl_speed' => 'ダウンロード速度', - 'col_ratio' => '共有率', - 'col_joined' => '登録日', - 'col_name' => '名前', - 'title_sna' => '完成した番号', - 'col_data' => 'データボリューム', - 'title_se' => '種子の数', - 'title_le' => 'ダウンロード数', - 'col_to' => '合計', - 'col_country' => '国/地域', - 'col_username' => 'ユーザー名', - 'col_upload_rate' => '速度をアップロードします', - 'col_download_rate' => 'ダウンロード速度', - 'text_users' => 'ユーザー', - 'text_torrents' => 'シード', - 'text_countries' => '国/地域', - 'text_peers' => '仲間', - 'text_community' => 'コミュニティ', - 'text_search' => '検索', - 'text_other' => '他の', - 'text_this_page_last_updated' => 'このページは更新されます', - 'text_started_recording_date' => '統計は始まります', - 'text_update_interval' => '、データは60分ごとに更新されます', - 'text_uploaders' => 'アップローダー', - 'text_downloaders' => 'ダウンローダー', - 'text_fastest_uploaders' => '最速のアップローダー', - 'text_fastest_up_note' => '(平均、非アクティブ時間を含む、少なくとも50GBをアップロード)', - 'text_fastest_note' => '(平均、非アクティブな時間を含む)', - 'text_fastest_downloaders' => '最速のダウンローダー', - 'text_best_sharers' => '最高の共有者', - 'text_sharers_note' => '(少なくとも50GBをダウンロード)', - 'text_worst_sharers' => '最悪の共有者', - 'text_most_active_torrents' => '最もアクティブな種', - 'text_most_snatched_torrents' => '最も完全な種子', - 'text_most_data_transferred_torrents' => '最大の流れの種', - 'text_best_seeded_torrents' => 'シード供給率(シード/ダウンロード)最大種子', - 'text_best_seeded_torrents_note' => '(少なくとも5つの種子メーカー)', - 'text_worst_seeded_torrents' => 'シード供給率(シード/ダウンロード)最小種子', - 'text_worst_seeded_torrents_note' => '(少なくとも1つのダウンローダーがあり、完成0の種子を除く)', - 'text_most_donated_USD' => 'ドルドナー', - 'text_most_donated_CNY' => '人民元のドナー', - 'col_donated_usd' => '寄付($)', - 'col_donated_cny' => '寄付(¥)', - 'text_most_supplied' => '最大リソースプロバイダー(削除された種子を除く)', - 'text_most_snatched' => '最大リソース完了者(削除された種子を除く)', - 'col_torrent_uploaded' => '# アップロード', - 'col_torrent_downloaded' => '# 仕上げる', - 'text_most_topic' => 'フォーラムトピックinitiator (削除されたトピックを除く)', - 'text_most_post' => 'フォーラムポスター(削除された投稿を除く)', - 'col_topics' => 'テーマ', - 'col_posts' => '投稿', - 'text_biggest_topics' => '最もホットなトピック(特権のフォーラムでトピックをカウントしない)', - 'col_subject' => 'テーマ', - 'col_number' => '量', - 'text_most_browser' => 'ブラウザ', - 'text_most_client' => 'bt client (アクセスした最新のサーバーの顧客)', - 'col_comments' => 'コメント', - 'text_most_commenter' => 'Seed Commenter (削除されたコメントを除く)', - 'col_reviews' => 'コメント', - 'text_most_reviewer' => 'ムービーレビュアー(削除されたコメントを除く)', - 'col_location' => '位置', - 'text_most_locations' => 'コンパニオンポジション', - 'col_keyword' => 'キーワード', - 'col_times' => '頻度', - 'col_datetime' => '時間', - 'text_latest_search' => '最近の検索', - 'text_current_month_search' => '今月検索してください', - 'text_last_month_search' => '先月検索します', - 'text_current_year_search' => '今年は検索してください', - 'text_most_bonuses' => '魔法の価値', - 'col_bonus' => '魔法の価値', - 'text_countries_users' => 'ユーザー数', - 'col_users' => 'ユーザー数', - 'text_countries_uploaded' => '合計アップロード', - 'col_uploaded' => 'ボリュームをアップロードします', - 'text_countries_per_user' => 'ユーザーの平均アップロード(合計アップロードは1TBに達し、ユーザーの数は100を超えます)', - 'col_average' => '平均', - 'text_countries_ratio' => '共有レート(合計アップロードボリュームが1TBに達し、ユーザー数が100を超える)', - 'text_ago' => '前に', - 'text_inf' => '無制限', - 'head_top_ten' => 'ランキングリスト', - 'text_most_stylesheet' => 'インターフェイススタイル', - 'text_most_language' => 'ユーザー言語', - 'text_top' => 'トップ', - 'text_one_hundred' => 'トップ100', - 'text_top_250' => 'トップ250', - 'col_clicks' => 'クリック数', - 'text_most_clicks' => 'プロモーションリンク', - 'text_charity_giver' => '慈善家', +$lang_topten = array +( + 'std_error' => "エラー!", + 'std_sorry' => "Sorry...", + 'std_permission_denied_only' => "アクセスが拒否されました。のみ ", + 'std_or_above_can_view' => " または上記のトップ10を表示できます。

    を参照してください "."FAQ for more information on different user classes and what they can do.

    The %s Staff
    ", + 'col_rank' => "ランク", + 'col_user' => "ユーザー", + 'col_donated' => "寄付済み", + 'col_ul_speed' => "UL スピード", + 'col_downloaded' => "ダウンロード済み", + 'col_dl_speed' => "DL速度", + 'col_ratio' => "Ratio", + 'col_joined' => "参加しました", + 'col_name' => "名前", + 'title_sna' => "引き延ばしの数", + 'col_data' => "データ", + 'title_se' => "シーダーの数", + 'col_le' => "リーチャーの数", + 'col_to' => "どうぞ。", + 'col_country' => "国", + 'col_username' => "ユーザー名", + 'col_upload_rate' => "アップロードレート", + 'col_download_rate' => "ダウンロードレート", + 'text_users' => "ユーザー", + 'text_torrents' => "Torrent" , + 'text_countries' => "国", + 'text_peers' => "ピア", + 'text_community' => "コミュニティ", + 'text_search' => "検索", + 'text_other' => "その他", + 'text_this_page_last_updated' => "最後に更新されたページ ", + 'text_started_recording_date' => "アカウントxfer統計の記録を開始しました ", + 'text_update_interval' => "、統計情報は 60 分ごとに更新されます。", + 'text_uploaders' => "アップローダー", + 'text_downloaders' => "Downloader", + 'text_fastest_uploaders' => "最速アップローダー", + 'text_fastest_up_note' => "(平均、非アクティブな時間が含まれており、最低50GBがアップロードされています)", + 'text_fastest_note' => "(平均、非アクティブ時間を含む)", + 'text_fastest_downloaders' => "最速のダウンローダー", + 'text_best_sharers' => "ベストシェアラー", + 'text_sharers_note' => "(50GB以上ダウンロード済)", + 'text_worst_sharers' => "最悪のシャープ数", + 'text_most_active_torrents' => "最もアクティブな Torrent", + 'text_most_snatched_torrents' => "ほとんどの急激な" , + 'text_most_data_transferred_torrents' => "ほとんどのデータ転送Torrent", + 'text_best_seeded_torrents' => "ベストシードTorrent ", + 'text_best_seeded_torrents_note' => "(5シード以上)", + 'text_worst_seeded_torrents' => "最悪の種まきTorrent", + 'text_worst_seeded_torrents_note' => "(リーチャーが少なくとも1人は巻き込まれていない急流を除く)", + + 'text_most_donated_USD' => "米ドルの寄付", + 'text_most_donated_CNY' => "中国元の寄付", + 'col_donated_usd' => "寄付済み ($)", + 'col_donated_cny' => "寄付(¥)", + + 'text_most_supplied' => " 最大のリソースサプライヤー(トレント削除は含まない)", + 'text_most_snatched' => " 最大の資源占領者(削除されたトレントは含まない)", + 'col_torrent_uploaded' => "# アップ済みです", + 'col_torrent_downloaded' => "# 引きちぎられた", + + 'text_most_topic' => " Forum Topic Starters (Do not include deleted topics)", + 'text_most_post' => " Forum Posters (Do not include deleted posts)", + 'col_topics' => "トピック", + 'col_posts' => "投稿", + + + 'text_biggest_topics' => "最大トピック (特権フォーラムのトピックは計算されません)", + 'col_subject' => "件名", + + 'col_number' => "数値", + 'text_most_browser' => "Browsers", + 'text_most_client' => "Torrent クライアント (トラッカーにアクセスした最後のクライアント)", + + 'col_comments' => "コメント", + 'text_most_commenter' => "Torrent Commenter (削除されたコメントは含まない)", + + 'col_reviews' => "レビュー", + 'text_most_reviewer' => "映画査読者 (削除されたレビューは含まない)", + + 'col_location' => "場所", + 'text_most_locations' => "ピアの位置", + + 'col_keyword' => "キーワード", + 'col_times' => "回数", + 'col_datetime' => "時刻", + 'text_latest_search' => "最新の検索", + 'text_current_month_search' => "今月の検索", + 'text_last_month_search' => "先月の検索", + 'text_current_year_search' => "今年の検索", + + 'text_most_bonuses' => "ボーナス", + 'col_bonus' => "ボーナス", + 'text_countries_users' => "ユーザー", + 'col_users' => "ユーザー", + 'text_countries_uploaded' => "合計アップロード数", + 'col_uploaded' => "アップロードしました", + 'text_countries_per_user' => "平均アップロード人数 (最低1TBアップロード、100ユーザー)", + 'col_average' => "平均", + 'text_countries_ratio' => "Ratio (最低でも1TBアップロード、1TBダウンロード、100ユーザー)", + 'text_ago' => " 前", + 'text_inf' => "Inf ファイル.", + 'head_top_ten' => "トップ 10", + 'text_most_stylesheet' => "Stylesheets", + 'text_most_language' => "ユーザーの言語", + 'text_top' => "上 ", + 'text_one_hundred' => "トップ 100", + 'text_top_250' => "トップ 250", + 'col_clicks' => "クリック数", + 'text_most_clicks' => "プロモーションリンクの所有者", + 'text_charity_giver' => "チャリティ・ジバー" ); + +?> diff --git a/lang/ja/lang_torrents.php b/lang/ja/lang_torrents.php index b681e676..843fdb40 100644 --- a/lang/ja/lang_torrents.php +++ b/lang/ja/lang_torrents.php @@ -1,66 +1,69 @@ '検索結果 - ', - 'text_search_box' => '検索ボックス', - 'text_category' => 'タイプ:', - 'text_source' => 'ソース:', - 'text_codec' => 'コーディング:', - 'text_standard' => '解決:', - 'text_processing' => '対処する:', - 'text_show_dead_active' => '種子/生きている種を見せますか?', - 'select_including_dead' => 'シードカットを含む', - 'select_active' => '生きている種', - 'select_dead' => '種子が切り取られます', - 'text_show_special_torrents' => 'プロモーションシードを表示しますか?', - 'select_all' => '全て', - 'select_normal' => '普通', - 'select_free' => '無料', - 'select_two_times_up' => '2倍アップロード', - 'select_free_two_times_up' => '無料および2xアップロード', - 'select_half_down' => '50%ダウンロード', - 'text_search' => 'キーワードの検索:', - 'submit_go' => '私を探してください', - 'std_search_results_for' => '検索結果」', - 'std_try_again' => '種はありません。正確なキーワードで再試行してください。', - 'std_nothing_found' => '結果はありません!', - 'std_no_active_torrents' => '種はありません:(', - 'input_check_all' => 'すべてを選択します', - 'input_uncheck_all' => '何も選択しないでください', - 'text_download_client' => '指定されたクライアントをダウンロードします', - 'select_title' => 'タイトル', - 'select_description' => '導入', - 'select_small_description' => '字幕', - 'select_uploader' => '発行', - 'select_imdb_url' => 'IMDBリンク', - 'select_and' => 'そして', - 'select_or' => 'または', - 'select_exact' => '正確な', - 'select_parsed' => '文法', - 'text_in' => '範囲:', - 'text_with' => 'マッチングパターン:', - 'text_mode' => '', - 'text_show_bookmarked' => 'お気に入りを見せますか?', - 'select_bookmarked' => 'コレクションのみ', - 'select_bookmarked_exclude' => '収集されていません', - 'text_s_bookmarked_torrent' => '種のコレクション', - 'text_s_not_bookmarked_torrent' => '回収されていない種', - 'head_torrents' => 'シード', - 'head_special' => '特別', - 'text_movies_and_tvs' => '映画とテレビ:', - 'text_games_and_appz' => 'ゲームとプログラム:', - 'text_others' => '他の:', - 'text_medium' => '中くらい:', - 'text_team' => '制作チーム:', - 'text_audio_codec' => 'オーディオエンコーディング:', - 'text_video' => 'ビデオ:', - 'text_tv' => 'テレビ:', - 'text_music' => '音楽:', - 'text_software' => 'ソフトウェア:', - 'text_approval_status' => 'レビューステータス:', - 'size_range' => 'ボリューム範囲(GB):', - 'leechers_range' => 'ダウンローダーの範囲:', - 'seeders_range' => '種を作る人々の範囲:', - 'times_completed_range' => '完了した時間範囲:', - 'added_range' => 'リリース時間範囲:', +$lang_torrents = array +( + 'head_search_results_for' => "検索結果: ", + 'text_search_box' => "検索ボックス", + 'text_category' => "カテゴリ:", + 'text_source' => "ソース:", + 'text_codec' => "コーデック:", + 'text_standard' => "標準:", + 'text_processing' => "処理中:", + 'text_show_dead_active' => "デッド/アクティブを表示", + 'select_including_dead' => "死者も含めて", + 'select_active' => "アクティブ", + 'select_dead' => "死亡", + 'text_show_special_torrents' => "プロモーションの表示?", + 'select_all' => "すべて", + 'select_normal' => "普通", + 'select_free' => "無料", + 'select_two_times_up' => "2倍アップ", + 'select_free_two_times_up' => "無料と2倍アップ", + 'select_half_down' => "50% ダウン", + 'text_search' => "キーワードを検索:", + 'submit_go' => "Go!", + 'std_search_results_for' => "検索結果:", + 'std_try_again' => "何も見つかりませんでした!洗練された検索文字列でもう一度お試しください。\n", + 'std_nothing_found' => "何も見つかりません!", + 'std_no_active_torrents' => "Torrent がありません :(\n", + 'input_check_all' => "すべてチェック", + 'input_uncheck_all' => "すべてのチェックを外す", + 'text_download_client' => "許可されたクライアントをダウンロード", + 'select_title' => "タイトル", + 'select_description' => "説明", + 'select_small_description' => "小さな説明", + 'select_uploader' => "アップローダー", + 'select_imdb_url' => "IMDb URL", + 'select_and' => "AND", + 'select_or' => "OR", + 'select_exact' => "正確な", + 'select_parsed' => "Parsed", + 'text_in' => " in ", + 'text_with' => " with ", + 'text_mode' => " 一致モード", + 'text_show_bookmarked' => "ブックマークの表示", + 'select_bookmarked' => "ブックマーク", + 'select_bookmarked_exclude' => "ブックマークなし", + 'text_s_bookmarked_torrent' => "のブックマークされたTorrent", + 'text_s_not_bookmarked_torrent' => "NOTブックマークされたTorrent", + 'head_torrents' => "Torrent", + 'head_special' => "Special", + 'text_movies_and_tvs' => "映画とテレビ:", + 'text_games_and_appz' => "ゲーム & Appz:", + 'text_others' => "その他:", + 'text_medium' => "中:", + 'text_team' => "チーム:", + 'text_audio_codec' => "オーディオコーデック:", + 'text_video' => "ビデオ:", + 'text_tv' => "テレビ:", + 'text_music' => "音楽:", + 'text_software' => "ソフトウェア:", + 'text_approval_status' => '承認ステータス:', + 'size_range' => 'Size range(GB):', + 'leechers_range' => 'Leechers range:', + 'seeders_range' => 'シーダーの範囲:', + 'times_completed_range' => '完了した時間範囲:', + 'added_range' => '追加した範囲:', ); + +?> diff --git a/lang/ja/lang_upload.php b/lang/ja/lang_upload.php index 0b011d3a..0080c104 100644 --- a/lang/ja/lang_upload.php +++ b/lang/ja/lang_upload.php @@ -1,43 +1,46 @@ 'リリース', - 'std_sorry' => 'ごめん...', - 'std_unauthorized_to_upload' => '種子を公開する許可はありません。読んでください( inbox )', - 'std_please_offer' => '種子を公開する許可はありません。通常のメンバーの場合は、候補エリアに移動して、公開リクエストを送信してください( "publish" ', - 'text_red_star_required' => '赤いアスタリスクでマークされた領域(*)に入力する必要があります', - 'text_tracker_url' => 'トラッカーサーバーのURLはです', - 'row_torrent_file' => 'シードファイル', - 'row_torrent_name' => 'タイトル', - 'text_torrent_name_note' => '(記入しない場合、シードファイル名が使用されます。 blade Runner 1982ファイナルカット720p HDDVD DTS X264-ESIR などの仕様に記入します)', - 'row_small_description' => '字幕', - 'text_small_description_note' => '(シードページのシードタイトルの下に表示されます。たとえば、ブレードランナー720p @ 4615 kbps -dts 5.1 @ 1536 kbps )', - 'row_nfo_file' => 'NFOファイル', - 'text_only_viewed_by' => '(許可されていません', - 'text_or_above' => '次のユーザーが表示されます。 .nfo ファイルをアップロードしてください)', - 'row_description' => '導入', - 'select_choose_one' => '選択してください', - 'row_type' => 'タイプ', - 'row_quality' => '品質', - 'text_source' => 'ソース:', - 'text_codec' => 'コーディング:', - 'text_standard' => '解決:', - 'text_processing' => '対処する:', - 'row_your_offer' => 'あなたの候補者', - 'text_please_select_offer' => '公開されたリソースが候補者を通じて候補者である場合、候補プロジェクトを選択します。投票ユーザーに通知されます。', - 'row_show_uploader' => '匿名で投稿します', - 'checkbox_hide_uploader_note' => '出版社プロジェクトにユーザー名を表示しないでください', - 'text_read_rules' => 'ルールを読みました', - 'submit_upload' => 'リリース', - 'text_to_browse_section' => 'シード領域に公開します', - 'text_to_special_section' => 'または特別領域', - 'text_type_note' => ' 2つのうちの1つだけをお願いします', - 'text_medium' => '中くらい:', - 'text_team' => '制作チーム:', - 'text_audio_codec' => 'オーディオエンコーディング:', - 'row_content' => 'コンテンツ', - 'text_chinese_title' => '中国名:', - 'text_english_title' => '英語名:', - 'text_titles_note' => '(英語名が存在しない場合は、Pinyinを使用するかどうかを記入してください)', - 'fill_quality' => '品質を埋めます', +$lang_upload = array +( + 'head_upload' => "アップロード", + 'std_sorry' => "Sorry...", + 'std_unauthorized_to_upload' => "トレントをアップロードする権限がありません。読み取り(受信トレイ)", + 'std_please_offer' => "You are not authorized to upload torrents. (See Uploading in the FAQ.)

    If you think that you are qualified for uploading rights, please propose your offer here
    ", + 'text_red_star_required' => "赤い星印の付いたフィールド(*)が必要です。", + 'text_tracker_url' => "トラッカーのアナウンスURLは", + 'row_torrent_file' => "Torrent ファイル", + 'row_torrent_name' => "トレント 名前", + 'text_torrent_name_note' => "(ファイル名が指定されていない場合はファイル名から取得します。 説明的な名前を使用してください。 例えば、Blade Runner 1982 Final Cut 720p HDDVD DTS x264-ESiR)\n", + 'row_small_description' => "小さい 説明", + 'text_small_description_note' => "(これはTorrent ページに表示されます。例: 720p @ 4615 kbps - DTS 5.1 @ 1536 kbps)\n", + 'row_nfo_file' => "NFO ファイル", + 'text_only_viewed_by' => "(閲覧できるのは次のユーザのみです ", + 'text_or_above' => " or Above.
    insert only file ending with .nfo)\n", + 'row_description' => "説明", + 'select_choose_one' => "一つ選んでください", + 'row_type' => "タイプ", + 'row_quality' => "品質", + 'text_source' => "ソース:", + 'text_codec' => "コーデック:", + 'text_standard' => "標準:", + 'text_processing' => "処理中:", + 'row_your_offer' => "あなたのオファー", + 'text_please_select_offer' => "   オファーのいずれかをアップロードしている場合は、投票者に通知されるようにここでオファーを選択してください。", + 'row_show_uploader' => "アップローダーを表示", + 'checkbox_hide_uploader_note' => "「アップロード者」フィールドに自分のユーザー名を表示しません。", + 'text_read_rules' => "私はこのアップロードの前に規則を読んだ。", + 'submit_upload' => "アップロード", + 'text_to_browse_section' => "Torrent セクションにアップロード ", + 'text_to_special_section' => "または 特別な セクション ", + 'text_type_note' => "   Choose only either of the two", + 'text_medium' => "中:", + 'text_team' => "グループ:", + 'text_audio_codec' => "オーディオコーデック:", + 'row_content' => "コンテンツ", + 'text_chinese_title' => "中国語名:", + 'text_english_title' => "英語名:", + 'text_titles_note' => "(英語名が存在しない場合は、ピンインを使用するか、空白のままにしてください)", + 'fill_quality' => '塗りつぶし', ); + +?> diff --git a/lang/ja/lang_uploaders.php b/lang/ja/lang_uploaders.php index 2ebb29ea..12fa641a 100644 --- a/lang/ja/lang_uploaders.php +++ b/lang/ja/lang_uploaders.php @@ -1,19 +1,22 @@ '出版社は見つかりませんでした!', - 'head_uploaders' => '出版社', - 'text_uploaders' => '出版社', - 'col_username' => 'ユーザー名', - 'col_torrents_size' => '種子サイズ', - 'col_torrents_num' => '種子の数', - 'col_last_upload_time' => '最近の出版時間', - 'col_last_upload' => '最近の種子がリリースされました', - 'text_not_available' => 'なし', - 'submit_go' => '探す', - 'text_select_month' => '月の選択:', - 'text_order_by' => '選別', - 'text_username' => 'ユーザー名', - 'text_torrent_size' => '種子サイズ', - 'text_torrent_num' => '種子の数', +$lang_uploaders = array +( + 'text_no_uploaders_yet' => "アップローダーが見つかりませんでした!", + 'head_uploaders' => "アップローダー", + 'text_uploaders' => "アップローダー", + 'col_username' => "ユーザー名", + 'col_torrents_size' => "Torrent のサイズ", + 'col_torrents_num' => "TorrentのNum", + 'col_last_upload_time' => "最終更新日時", + 'col_last_upload' => "前回のアップグレードされたTorrent", + 'text_not_available' => "該当なし", + 'submit_go' => "移動", + 'text_select_month' => "月を選択: ", + 'text_order_by' => "並び替え", + 'text_username' => "ユーザー名", + 'text_torrent_size' => "トレントサイズ", + 'text_torrent_num' => "Torrent Num", ); + +?> diff --git a/lang/ja/lang_usercp.php b/lang/ja/lang_usercp.php index b2fe08ca..d07e7901 100644 --- a/lang/ja/lang_usercp.php +++ b/lang/ja/lang_usercp.php @@ -1,258 +1,261 @@ 'ごめん...', - 'text_user_cp_home' => '設定ホームページ', - 'text_personal_settings' => '個人構成 ', - 'text_tracker_settings' => 'ウェブサイトの構成 ', - 'text_forum_settings' => 'フォーラム構成で ', - 'text_security_settings' => 'セキュリティ完全確認 ', - 'row_save_settings' => '設定を保存します', - 'submit_save_settings' => '設定を保存してください! (1回だけクリックしてください)', - 'std_error' => '間違い', - 'head_control_panel' => 'コントロールパネル', - 'head_personal_settings' => ' - 個人設定', - 'std_invalid_action' => '無効な動作', - 'text_saved' => '節約!', - 'row_account_parked' => 'シールアカウント', - 'checkbox_pack_my_account' => 'アカウントは長い間使用しません。', - 'text_account_pack_note' => '注:アカウントのシーリングは、長期的な(休日など)非活動のために削除されることを避けることができます。ブロッキング後、アカウントは制限された状態にあります。現時点では、種子をダウンロードできないか、一部のページを表示できません。', - 'row_pms' => 'SMS', - 'row_recommended_movies' => '推奨リソース', - 'checkbox_show_hot' => 'ホームページで推奨される最もホットなホットを表示します', - 'checkbox_show_classic' => 'ホームページで推奨クラシックを表示します', - 'text_accept_pms' => '次のテキストメッセージを受け入れます。', - 'radio_all_except_blocks' => 'すべて(ブラックリストを除く)', - 'radio_friends_only' => '友達だけ', - 'radio_staff_only' => '管理グループメンバー', - 'checkbox_delete_pms' => '返信後にメッセージを削除します', - 'checkbox_save_pms' => 'SMSをアウトボックスに保存します', - 'checkbox_pm_on_comments' => '私が投稿した種についての新しいコメントを私に通知します', - 'row_gender' => '性別', - 'radio_not_available' => '未知', - 'radio_male' => '男', - 'radio_female' => '女性', - 'row_country' => '国/地域', - 'row_download_speed' => '帯域幅をダウンロードします', - 'row_upload_speed' => '帯域幅をアップロードします', - 'row_bt_client' => 'BTクライアント', - 'row_avatar_url' => 'アバターURL', - 'select_choose_avatar' => 'アバターを選択します', - 'select_nothing' => 'デフォルトのアバター', - 'text_avatar_note' => '最大幅は150ピクセルです(必要に応じてスケーリングされます)。', - 'text_bitbucket_note' => 'アバターをアップロードする必要がある場合は、 uploader を使用してください。', - 'row_info' => '人相書き', - 'text_info_note' => '個人情報ページに表示されます。 bbcodeコードの使用を許可します。', - 'head_tracker_settings' => ' - ウェブサイトの設定', - 'row_email_notification' => '電子メールプロンプト', - 'checkbox_notification_received_pm' => 'テキストメッセージを受け取ったときに思い出させてください。', - 'checkbox_notification_default_categories' => 'デフォルトのカテゴリに新しい種子がある場合、私に通知します。', - 'row_browse_default_categories' => 'デフォルト
    カテゴリ', - 'row_stylesheet' => 'インターフェイススタイル', - 'row_site_language' => 'サイト言語', - 'row_torrent_page' => 'ページごとの種子数', - 'text_zero_equals_default' => '(0 =デフォルトを使用、最大= 100)', - 'head_forum_settings' => ' - フォーラムの設定', - 'row_topics_per_page' => 'ページごとのトピック数', - 'row_posts_per_page' => 'ページごとの投稿数', - 'row_view_avatars' => 'アバターを表示します', - 'checkbox_low_bandwidth_note' => '(ナローバンドユーザーはこれをオフにする必要があるかもしれません)', - 'row_view_signatures' => '署名ファイルを表示します', - 'row_forum_signature' => '私の署名ファイル', - 'head_security_settings' => ' - 安全設定', - 'row_security_check' => '安全確認', - 'text_security_check_note' => '注:セキュリティ設定項目を変更するには、現在のパスワードを入力する必要があります。', - 'std_enter_old_password' => '最初にパスワードを入力してください!', - 'std_wrong_password_note' => '入力したパスワードは正しくありません!', - 'std_password_equals_username' => '申し訳ありませんが、ユーザー名とパスワードは同じではありません。', - 'std_password_too_long' => '申し訳ありませんが、パスワードが長すぎます(最大40文字)', - 'std_password_too_short' => '申し訳ありませんが、パスワードが短すぎます(少なくとも6文字)', - 'std_passwords_unmatched' => '2回入力されたパスワードは一貫性がありません!もう一度やり直してください。', - 'std_email_address_banned' => 'このメールアドレスは無効です!', - 'std_wrong_email_address_domains' => 'このメールアドレスは許可されていません!次のメールアドレスを使用してください。', - 'std_wrong_email_address_format' => '入力したものは、有効な電子メールアドレスのようには見えません。', - 'std_email_in_use' => 'このメールアドレスが使用されています。', - 'std_confirmation_email_sent' => '(確認メールが送信されました!)', - 'std_passkey_reset' => '(キーは正常に更新されました!)', - 'std_password_changed' => '(パスワードは正常に変更されました!)', - 'std_privacy_level_updated' => '(あなたのプライバシーレベルが正常に更新されました!)', - 'row_reset_passkey' => 'PassKeyをリセットします', - 'checkbox_reset_my_passkey' => 'PassKeyをリセットしたいです。', - 'text_reset_passkey_note' => '注:パスキーがリセットされている場合、シードダウンロードリンク(RSSリストのシードリンクなど)を再取得する必要があります。', - 'row_reset_authkey' => 'AuthKeyをリセットします', - 'checkbox_reset_my_authkey' => 'AuthKeyをリセットしたいです。', - 'text_reset_authkey_note' => '注: authkeyがリセットされている場合、シードをダウンロードまたは作成し続ける前に、関連するシードファイルを再ダウンロードする必要があります。', - 'row_email_address' => '電子メールアドレス', - 'text_email_address_note' => '注:メールアドレスを変更した後、新しいアドレスで確認メールが届きます。再確認する必要があります。', - 'row_change_password' => 'パスワードを変更します', - 'row_type_password_again' => '新しいパスワードを確認します', - 'row_privacy_level' => 'プライバシーレベル', - 'radio_normal' => '普通', - 'radio_low' => 'Low(メールアドレス公開)', - 'radio_strong' => '強い(すべての個人情報が非表示)', - 'head_home' => ' - フロントページ', - 'row_join_date' => '参加日', - 'row_avatar' => 'アバター', - 'row_passkey' => '鍵', - 'row_invitations' => '招待する', - 'link_send_invitation' => '招待システムを入力します', - 'row_karma_points' => '魔法の価値', - 'link_use_karma_points' => '魔法の価値を使用します', - 'row_ratings_submitted' => '評価数', - 'row_written_comments' => 'コメントの数', - 'link_view_comments' => 'コメントを見る', - 'row_forum_posts' => 'フォーラム投稿の数', - 'link_view_posts' => '投稿を表示します', - 'text_posts_per_day' => '投稿/日', - 'text_of_total_posts' => '総投稿', - 'text_recently_read_topics' => '最近のトピックを読む', - 'col_topic_title' => 'テーマ', - 'col_replies' => '返事', - 'col_topic_starter' => '発行', - 'col_views' => 'チェック', - 'col_last_post' => '最後の返信', - 'text_by' => '著者:', - 'select_none_selected' => '選択されていません', - 'text_ago' => '前に', - 'mail_here' => 'ここ', - 'mail_change_email_one' => '%Sサイトにアカウント(ユーザー名)を含めるようにリクエストします', - 'mail_change_email_two' => ')代わりにこのメールアドレスを使用します', - 'mail_change_email_three' => '連絡先アドレスとして。', - 'mail_change_email_four' => 'このリクエストを送信していない場合は、このメールを無視してください。メールアドレスのユーザーのIPアドレスは次のとおりです', - 'mail_change_email_five' => '。このメールに返信しないでください。', - 'mail_change_email_six' => 'アカウント情報を変更するリクエストを実際に送信した場合は、クリックしてください', - 'mail_change_email_six_1' => '来て確認してください。', - 'mail_change_email_seven' => '新しいメールアドレスがプロフィールページに表示されます。注:プロファイルは、上記のアドレスをクリックした後にのみ変更されます。', - 'mail_change_email_eight' => '', - 'mail_change_email_nine' => '%Sウェブサイト', - 'mail_profile_change_confirmation' => '個人情報の確認を変更します', - 'text_go_back' => '戻る', - 'text_category' => 'タイプ', - 'text_source' => 'ソース', - 'text_codec' => 'コーディング', - 'text_standard' => '解決', - 'text_processing' => '対処する', - 'text_show_dead_active' => '種子/生きている種を見せますか?', - 'select_including_dead' => 'シードカットを含む', - 'select_active' => '生きている種', - 'select_dead' => '種子が切り取られます', - 'text_show_special_torrents' => 'プロモーションシードを表示しますか?', - 'select_all' => '全て', - 'select_normal' => '普通', - 'select_free' => '無料', - 'select_two_times_up' => '2倍アップロード', - 'select_free_two_times_up' => '無料および2xアップロード', - 'text_show_bookmarked' => 'お気に入りを見せますか?', - 'select_bookmarked' => 'コレクションのみ', - 'select_bookmarked_exclude' => '収集されていません', - 'select_with' => 'そして', - 'select_without' => 'しかし、いいえ', - 'text_review' => 'レビューを表示します', - 'row_pm_boxes' => 'SMSボックス', - 'text_show' => 'ページごとに表示されます', - 'text_pms_per_page' => 'SMS(最大= 100)', - 'row_shoutbox' => 'グループチャットエリア', - 'text_show_last' => '最新の表示', - 'text_messages_at_shoutbox' => 'チャット履歴(0 =デフォルト、最小= 10、最大= 500を使用)', - 'text_refresh_shoutbox_every' => '他のすべて', - 'text_seconds' => 'グループチャットエリアを数秒で更新します(0 =デフォルト設定を使用し、最小= 10、最大= 3600)', - 'text_hide_helpbox_messages' => 'ヘルプ領域のメッセージは表示されません', - 'row_torrent_detail' => 'シードの詳細ページ', - 'text_show_description' => '紹介を紹介します', - 'text_show_nfo' => 'NFOファイルの内容を表示します', - 'text_show_imdb_info' => 'IMDB情報を表示します', - 'text_show_douban_info' => 'ドゥーバン情報を表示します', - 'text_show_lastfm_info' => 'last.fm情報を表示します', - 'text_show_reviews' => 'レビューを表示します', - 'text_show_comments' => 'コメントを表示します', - 'row_browse_page' => 'シードページ', - 'text_browse_setting_warning' => ' 警告: 多数の機能が閲覧速度を遅くすることができます。', - 'text_torrents_per_page' => '種', - 'text_tooltip_type' => 'シードタイトルのサスペンションプロンプトタイプ', - 'text_last_review' => '最新のレビュー', - 'text_minor_imdb_info' => 'シンプルなIMDB情報(タイトル +年 + IMDB評価 +国 +カテゴリ +ディレクター +スローリング +スローガン)', - 'text_median_imdb_info' => '中規模のIMDB情報(Picture + Title + Year + IMDB Rating + Film Length + Country + Dialogue Language + Diral + Category + Starring +英語ドラマの要約)', - 'text_douban_info' => 'Douban Information(Picture + Title + ERA + Douban Rating + Dialogue Language + Director + Region + Starring + Chinese Drama Summary)', - 'text_off' => 'サスペンションプロンプトを閉じます', - 'text_show_lastfm_tooltip' => 'サスペンションプロンプトlast.fm情報', - 'row_time_type' => '時間表示タイプ', - 'text_time_added' => '発生時間', - 'text_time_elapsed' => '時間が経過しました', - 'text_append_words_to_torrents' => '特別な種', - 'text_append_sticky' => 'トップに固定されたシードにトップアイコンを追加します', - 'text_append_new' => '新しい種に「新しい」を追加します', - 'text_append_picked' => '「クラシック」など、批評家が推奨するリソースにタグを追加する', - 'text_show_action_icons' => '動作アイコンを表示します', - 'text_show_nfo_icon' => 'NFOアイコンを表示します', - 'text_show_download_icon' => 'アイコンをダウンロードします', - 'text_show_edit_icon' => 'アイコンを編集します', - 'text_if_owner' => '(それがブリーダーの場合)', - 'text_show_bookmark_icon' => 'コレクションアイコン', - 'text_comments_reviews' => 'コメント', - 'text_show_comment_number' => 'コメント数を表示します', - 'text_last_comment_on_tooltip' => 'サスペンションプロンプトの最新のコメントコンテンツ', - 'text_show_review_number' => 'レビューカウントを表示します', - 'row_school' => '学校', - 'row_discuss' => '話し合う', - 'row_funbox' => '楽しい箱', - 'text_show_funbox' => 'ホームページに楽しい箱を表示します', - 'text_send' => '送信', - 'text_use' => '使用', - 'text_view' => 'チェック', - 'row_ip_location' => 'IP/場所', - 'text_translation_note' => 'あなたの言語はリストに載っていませんか?できるかどうかを確認してください', - 'text_translation_link' => '新しい言語を翻訳して追加するのに役立ちます', - 'text_movies_and_tvs' => '映画とテレビ:', - 'text_games_and_appz' => 'ゲームとプログラム:', - 'text_others' => '他の:', - 'text_at_browse_page' => '種子領域', - 'text_at_special_page' => '特別なエリア', - 'text_additional_selection' => '補足設定', - 'text_stylesheet_note' => 'より多くのインターフェイススタイル?自分でデザインしたいですか?', - 'text_stylesheet_link' => 'ここをクリック', - 'row_font_size' => 'フォントサイズ', - 'select_small' => '小さい', - 'select_large' => '大きい', - 'text_medium' => '中くらい', - 'text_torrents_on_promotion' => 'プロモーションシード:', - 'text_highlight' => 'ハイライト', - 'text_append_words' => '「2x free」のようなタグを追加する', - 'text_append_icon' => 'freeなどのアイコンを追加します', - 'text_no_mark' => 'マークなし', - 'text_signature_note' => '
    bbcodeコードの使用を許可します。最大画像サイズは500*200で、最初の画像のみが表示されます。', - 'row_click_on_topic' => 'トピックをクリックするとき', - 'text_go_to_first_page' => '最初のページを表示します', - 'text_go_to_last_page' => '最後のページを表示します', - 'select_half_down' => '50%ダウンロード', - 'row_category_icons' => 'カテゴリアイコン', - 'text_team' => '制作チーム', - 'text_audio_codec' => 'オーディオエンコーディング', - 'text_sub_category' => 'サブカテゴリ', - 'select_medium' => '真ん中', - 'row_tooltip_last_post' => 'サスペンションは最新の投稿をプロンプトします', - 'checkbox_last_post_note' => '(浮揚プロンプトが気に入らない場合は、オフにすることができます)', - 'row_network_bandwidth' => 'ネットワーク帯域幅', - 'text_downstream_rate' => 'ダウンリンク帯域幅', - 'text_upstream_rate' => 'アップリンク帯域幅', - 'text_isp' => 'インターネットサービスプロバイダー', - 'text_show_title' => 'ショータイトル', - 'text_show_small_description' => '字幕を表示します', - 'row_show_advertisements' => '広告を表示します', - 'text_can_turn_off_advertisement' => 'レベル以上のユーザーは、広告を表示しないことを選択できます', - 'text_buy_no_advertisement' => 'レベル以上のユーザーは、魔法の価値を使用して、特定の期間内に広告を表示しない権限を交換できます。クリック', - 'text_bonus_center' => 'ここ', - 'text_show_advertisement_note' => '広告を見たいです', - 'row_promotion_link' => 'プロモーションリンク', - 'text_update_promotion_link' => 'プロモーションリンクを更新します', - 'text_read_more' => 'もっと詳しく知る', - 'row_two_step_secret' => '2段階の検証', - 'text_two_step_secret_bind_by_qrdoe_note' => 'Google AuthenticatorまたはAuthyを使用して、左QRコード

    左QRコードが正常にロードされない場合は、このリンクを開いてロードすることができます。', - 'text_two_step_secret_bind_manually_note' => 'または、アプリに次のキーを手動で入力します。', - 'text_two_step_secret_bind_complete_note' => 'コードを入力して、2段階の検証を完了します', - 'text_two_step_secret_unbind_note' => 'コードを入力して、2段階の検証をキャンセルします', - 'row_passkey_login_url' => 'PassKeyログインリンク', - 'row_seed_box' => 'シードボックス', - 'add_seed_box_btn' => '登録する', - 'checkbox_pm_on_topic_reply' => 'フォーラム投稿への新しい返信を私に通知してください', - 'checkbox_pm_on_hr_reached' => 'H&Rが基準を満たしているときに私に通知してください', +$lang_usercp = array +( + 'std_sorry' => "Sorry...", + 'text_user_cp_home' => "ユーザー CP ホーム", + 'text_personal_settings' => "個人設定", + 'text_tracker_settings' => "トラッカー設定", + 'text_forum_settings' => "フォーラム設定", + 'text_security_settings' => "セキュリティ設定", + 'row_save_settings' => "設定を保存", + 'submit_save_settings' => "Save Settings! (PRESS ONLY ONCE)", + 'std_error' => "エラー", + 'head_control_panel' => "コントロール パネル ", + 'head_personal_settings' => " - 個人設定", + 'std_invalid_action' => "無効なアクション", + 'text_saved' => "保存しました!", + 'row_account_parked' => "アカウント が駐車されました", + 'checkbox_pack_my_account' => "私は長い間留守にします。", + 'text_account_pack_note' => "メモ:休暇などで離れてしまった場合、アカウントが削除されないようにすることができます。 アカウントに制限が設けられている場合、例えばトラッカーを使用したり、ページを閲覧したりすることはできません。", + 'row_pms' => "PM", + 'row_recommended_movies' => "推奨リソース", + 'checkbox_show_hot' => "HOTをホームページで表示", + 'checkbox_show_classic' => "CLASSICをホームページに表示", + 'text_accept_pms' => "Accept PMs from ", + 'radio_all_except_blocks' => "すべて(ブロックを除く)", + 'radio_friends_only' => "フレンドのみ", + 'radio_staff_only' => "スタッフのみ", + 'checkbox_delete_pms' => " PMs on reply を削除", + 'checkbox_save_pms' => " PMs を Sentbox に保存", + 'checkbox_pm_on_comments' => " I when someone comments on my Torrent", + 'row_gender' => "性別", + 'radio_not_available' => "該当なし", + 'radio_male' => "男性", + 'radio_female' => "女性", + 'row_country' => "国", + 'row_download_speed' => "Download Speed", + 'row_upload_speed' => "Upload Speed", + 'row_bt_client' => "BT クライアント", + 'row_avatar_url' => "アバター URL", + 'select_choose_avatar' => "アバターを選択", + 'select_nothing' => "なし", + 'text_avatar_note' => "幅は150ピクセルでなければなりません(必要に応じてサイズ変更されます)。 ", + 'text_bitbucket_note' => "画像のホストが必要な場合は、
    bitbucket をお試しください。", + 'row_info' => "情報", + 'text_info_note' => "公開ページに表示されます。 BBコード を含むことができます。", + 'head_tracker_settings' => " - トラッカーの設定", + 'row_email_notification' => " 通知をメール", + 'checkbox_notification_received_pm' => "PMを受け取ったら通知してください。", + 'checkbox_notification_default_categories' => "デフォルトのブラウジングカテゴリのいずれかにトレントがアップロードされたときに通知します。\n", + 'row_browse_default_categories' => "デフォルトの
    カテゴリ", + 'row_stylesheet' => "Stylesheet", + 'row_site_language' => "サイト言語", + 'row_torrent_page' => "Torrents per page", + 'text_zero_equals_default' => "(0=デフォルトの設定を使用、max=100)", + 'head_forum_settings' => " - フォーラム設定", + 'row_topics_per_page' => "トピック  ページごとに", + 'row_posts_per_page' => "Posts per page", + 'row_view_avatars' => "View avatars", + 'checkbox_low_bandwidth_note' => "(低帯域幅のユーザーがこれをオフにしたい場合があります)", + 'row_view_signatures' => "View Signatures", + 'row_forum_signature' => "フォーラム署名", + 'head_security_settings' => " - セキュリティ設定", + 'row_security_check' => "セキュリティ チェック", + 'text_security_check_note' => "注意: セキュリティ設定を変更するには、現在のパスワードを入力する必要があります。", + 'std_enter_old_password' => "先にパスワードを入力してください!", + 'std_wrong_password_note' => "パスワードが間違っています!", + 'std_password_equals_username' => "申し訳ありませんが、パスワードはユーザー名と同じにすることはできません", + 'std_password_too_long' => "パスワードが長すぎます(最大40文字)", + 'std_password_too_short' => "パスワードが短すぎます(最小文字数は6文字)", + 'std_passwords_unmatched' => "パスワードが一致しませんでした。もう一度お試しください。", + 'std_email_address_banned' => "このメールアドレスは禁止されています!", + 'std_wrong_email_address_domains' => "このメールアドレスは許可されていません!これらのドメインのメールしか使用できません: ", + 'std_wrong_email_address_format' => "有効なメールアドレスではありません。", + 'std_email_in_use' => "The e-mail address is already in use", + 'std_confirmation_email_sent' => " (確認メールが送信されました!)", + 'std_passkey_reset' => " (パスキーが更新されました!)", + 'std_password_changed' => " (パスワードが変更されました!)", + 'std_privacy_level_updated' => " (あなたのプライバシーレベルが更新されました!)", + 'row_reset_passkey' => "Reset passkey", + 'checkbox_reset_my_passkey' => "パスキーをリセットしたい。", + 'text_reset_passkey_note' => "注意: 現在のパスキーをリセットするには、トレントファイルをダウンロードするために再度ダウンロードリンク(rssリストなど)を取得する必要があります。", + 'row_reset_authkey' => "Reset authkey", + 'checkbox_reset_my_authkey' => "著者をリセットしたい。", + 'text_reset_authkey_note' => "注意: 現在の authkey をリセットするには、リーチ/シードを続行するには、アクティブな Torrent を再度ダウンロードする必要があります。", + 'row_email_address' => "メール アドレス", + 'text_email_address_note' => "注意: メールアドレスを変更するには、新しいアドレスに別の確認メールが届きます。", + 'row_change_password' => "Change password", + 'row_type_password_again' => " パスワードをもう一度入力してください", + 'row_privacy_level' => "プライバシー レベル", + 'radio_normal' => "標準", + 'radio_low' => "低い (メールアドレスが表示されます)", + 'radio_strong' => "強力な(情報は利用できません)", + 'head_home' => " - ホーム", + 'row_join_date' => "Join date", + 'row_avatar' => "アバター", + 'row_passkey' => "パスワード", + 'row_invitations' => "招待", + 'link_send_invitation' => "  招待 システムに移動", + 'row_karma_points' => "カルマ ポイント", + 'link_use_karma_points' => "Use Karma Points", + 'row_ratings_submitted' => "評価 が送信されました", + 'row_written_comments' => " コメント", + 'link_view_comments' => "View Comments", + 'row_forum_posts' => "フォーラム 投稿", + 'link_view_posts' => " 投稿を表示", + 'text_posts_per_day' => " 投稿/日 ", + 'text_of_total_posts' => " フォーラムの合計投稿", + 'text_recently_read_topics' => "最近読んだトピック", + 'col_topic_title' => "トピックタイトル", + 'col_replies' => "返信", + 'col_topic_starter' => "トピック 開始者", + 'col_views' => "ビュー", + 'col_last_post' => "最後の投稿", + 'text_by' => "by ", + 'select_none_selected' => "選択されていません", + 'text_ago' => " 前", + 'mail_here' => "ここ", + 'mail_change_email_one' => "ユーザープロファイル(ユーザー名)をリクエストしました ", + 'mail_change_email_two' => ") %s のメールアドレスで更新する必要があります ", + 'mail_change_email_three' => " ユーザーの連絡先として", + 'mail_change_email_four' => "これを行っていない場合は、このメールを無視してください。あなたのメールアドレスを入力した人は、IPアドレスを持っていました。 ", + 'mail_change_email_five' => "返信しないでください。", + 'mail_change_email_six' => "To complete the update of your user profile, please click ", + 'mail_change_email_six_1' => " to confirm", + 'mail_change_email_seven' => "これを行うと、新しいメールアドレスがあなたのプロフィールに表示されます。そうでなければ、あなたのプロフィールは変更されません。", + 'mail_change_email_eight' => "
    あなたの,", + 'mail_change_email_nine' => "%s チーム", + 'mail_profile_change_confirmation' => " プロファイル変更の確認", + 'text_go_back' => "戻る", + 'text_category' => "カテゴリ", + 'text_source' => "ソース", + 'text_codec' => "コーデック:", + 'text_standard' => "標準", + 'text_processing' => "処理中", + 'text_show_dead_active' => "デッド/アクティブを表示", + 'select_including_dead' => "死者も含めて", + 'select_active' => "アクティブ", + 'select_dead' => "死亡", + 'text_show_special_torrents' => "プロモーションの表示?", + 'select_all' => "すべて", + 'select_normal' => "普通", + 'select_free' => "無料", + 'select_two_times_up' => "2倍アップ", + 'select_free_two_times_up' => "無料と2倍アップ", + 'text_show_bookmarked' => "ブックマークの表示", + 'select_bookmarked' => "ブックマーク", + 'select_bookmarked_exclude' => "ブックマークなし", + 'select_with' => "with", + 'select_without' => "なし", + 'text_review' => " レビュー", + 'row_pm_boxes' => "PM ボックス", + 'text_show' => "表示 ", + 'text_pms_per_page' => " ページあたりのpms (max=100)", + 'row_shoutbox' => "Shoutbox", + 'text_show_last' => "最後を表示 ", + 'text_messages_at_shoutbox' => " shoutbox (0=デフォルト設定を使用、min=10, max=500) のメッセージ", + 'text_refresh_shoutbox_every' => "シャウトボックスの更新間隔 ", + 'text_seconds' => " seconds (0=use default setting, min=10, max=3600)", + 'text_hide_helpbox_messages' => "ヘルプボックスからメッセージを隠す", + 'row_torrent_detail' => "トレントの詳細ページ", + 'text_show_description' => "説明を表示", + 'text_show_nfo' => "NFO を表示", + 'text_show_imdb_info' => "IMDb情報を表示", + 'text_show_douban_info' => "Shou Douban情報", + 'text_show_lastfm_info' => "Show Last.fm Information", + 'text_show_reviews' => "レビューを表示", + 'text_show_comments' => "コメントを表示", + 'row_browse_page' => "Torrent ページ", + 'text_browse_setting_warning' => "警告: 多くの機能を有効にすると、閲覧速度が遅くなる可能性があります。", + 'text_torrents_per_page' => " ページあたりの Torrent ", + 'text_tooltip_type' => "トレント名のツールチップタイプ", + 'text_last_review' => "最後のレビュー", + 'text_minor_imdb_info' => "軽微なIMDb情報(Title + Year + IMDb評価+ Country + Genre + Director + Main Cast + Tagline)", + 'text_median_imdb_info' => "中央IMDb情報(写真+タイトル+年+IMDb評価+ランタイム+ランタイム+言語+ディレクター+ジャンル+メインキャスト+プロットアウトライン英語)", + 'text_douban_info' => "Douban Info (Picture + Title + Year + Douban Rating + Language + Director + Region + Main Cast + Plot アウトライン)", + 'text_off' => "オフ", + 'text_show_lastfm_tooltip' => "ツールチップに Last.fm 情報を表示", + 'row_time_type' => "時刻の種類", + 'text_time_added' => "時間が追加されました", + 'text_time_elapsed' => "経過時間", + 'text_append_words_to_torrents' => "特別な Torrent", + 'text_append_sticky' => "上部に固定された Torrent にスティッキーアイコン \"sticky\" を追加", + 'text_append_new' => "新しいトレントに「新規」を追加", + 'text_append_picked' => "批評家によって選ばれた Torrent に単語を追加します", + 'text_show_action_icons' => "アクションアイコンを表示", + 'text_show_nfo_icon' => "NFO アイコン", + 'text_show_download_icon' => "アイコンをダウンロード", + 'text_show_edit_icon' => "アイコンを編集", + 'text_if_owner' => " (急流の所有者の場合)", + 'text_show_bookmark_icon' => "ブックマークアイコン", + 'text_comments_reviews' => "コメント", + 'text_show_comment_number' => "Show number of comments ", + 'text_last_comment_on_tooltip' => " last comment on tooltip", + 'text_show_review_number' => "Show number of reviews ", + 'row_school' => "学校", + 'row_discuss' => "議論", + 'row_funbox' => "Funbox", + 'text_show_funbox' => "ホームページにファンボックスを表示", + 'text_send' => "送信", + 'text_use' => "使用", + 'text_view' => "表示", + 'row_ip_location' => "場所", + 'text_translation_note' => "あなたの言語がリストにありませんか?できることを確認してください ", + 'text_translation_link' => "翻訳のヘルプ", + 'text_movies_and_tvs' => "映画とテレビ:", + 'text_games_and_appz' => "ゲーム & Appz:", + 'text_others' => "その他:", + 'text_at_browse_page' => "Torrent セクション", + 'text_at_special_page' => "特別セクション", + 'text_additional_selection' => "追加選択", + 'text_stylesheet_note' => "スタイルシートを追加しますか?自分でデザインしたいですか? ", + 'text_stylesheet_link' => "ここをクリック", + 'row_font_size' => "Font Size", + 'select_small' => "小", + 'select_large' => "大", + 'text_medium' => "ミディアム", + 'text_torrents_on_promotion' => "プロモーションのトレント: ", + 'text_highlight' => "強調表示", + 'text_append_words' => "単語を追加します。例: '2X Free'", + 'text_append_icon' => "アイコンを追加します。例: \"free\"", + 'text_no_mark' => "オフ", + 'text_signature_note' => "BBコードを含むことができます。最大画像サイズは500*200で、最初の画像のみが表示されます。", + 'row_click_on_topic' => "トピックをクリックします", + 'text_go_to_first_page' => "最初のページに移動", + 'text_go_to_last_page' => "最後のページに移動", + 'select_half_down' => "50% ダウン", + 'row_category_icons' => "カテゴリアイコン", + 'text_team' => "グループ", + 'text_audio_codec' => "オーディオコーデック", + 'text_sub_category' => "サブカテゴリ", + 'select_medium' => "ミディアム", + 'row_tooltip_last_post' => "最後の投稿のツールチップを表示", + 'checkbox_last_post_note' => "(邪魔された場合はオフにしてください)", + 'row_network_bandwidth' => "ネットワークの幅", + 'text_downstream_rate' => "下流レート", + 'text_upstream_rate' => "上流レート", + 'text_isp' => "ISP", + 'text_show_title' => "タイトルを表示", + 'text_show_small_description' => "小規模な説明", + 'row_show_advertisements' => "広告を表示", + 'text_can_turn_off_advertisement' => " または上記は広告を表示しないことを選択できます", + 'text_buy_no_advertisement' => " またはそれ以上は広告なしで時間を稼ぐためにボーナスを使用できます ", + 'text_bonus_center' => " ボーナスセンター", + 'text_show_advertisement_note' => "広告を見たいです", + 'row_promotion_link' => "プロモーションリンク", + 'text_update_promotion_link' => "プロモーションリンクを更新", + 'text_read_more' => "続きを読む", + 'row_two_step_secret' => '二段階認証', + 'text_two_step_secret_bind_by_qrdoe_note' => 'You can use Google Authenticator or Authy to scan the QR code on the left

    If the QR code on the left does not load successfully, you can try to open this link to load: ', + 'text_two_step_secret_bind_manually_note' => 'または、APPに手動で次のキーを入力します。 ', + 'text_two_step_secret_bind_complete_note' => '二段階認証を完了するためにコードを入力してください', + 'text_two_step_secret_unbind_note' => '2段階認証をキャンセルするコードを入力してください', + 'row_passkey_login_url' => 'Passkey login URL', + 'row_seed_box' => 'SeedBox', + 'add_seed_box_btn' => '登録', + 'checkbox_pm_on_topic_reply' => 'フォーラムの投稿に新しい返信がある場合に通知する', + 'checkbox_pm_on_hr_reached' => 'H&Rがターゲットに達したときに通知する', ); + +?> diff --git a/lang/ja/lang_userdetails.php b/lang/ja/lang_userdetails.php index 8d24bdeb..9d44d958 100644 --- a/lang/ja/lang_userdetails.php +++ b/lang/ja/lang_userdetails.php @@ -1,158 +1,160 @@ '間違い', - 'std_no_such_user' => 'このIDを持つユーザーは存在しません!', - 'head_details_for' => 'ユーザーの詳細 - ', - 'text_account_disabled_note' => 'このアカウントは無効になっています!', - 'text_remove_from_friends' => '友達リストから削除します', - 'text_remove_from_blocks' => 'ブラックリストから取り外します', - 'text_add_to_friends' => '友達リストに参加してください', - 'text_add_to_blocks' => 'ブラックリストに追加します', - 'text_flush_ghost_torrents' => '冗長な種子をクリアしてクリックします', - 'text_here' => 'ここ', - 'row_invitation' => '招待する', - 'text_no_invitation' => '招待資格はありません', - 'link_send_invitation' => '招待状を送信します', - 'row_invited_by' => '招待者', - 'row_join_date' => '参加日', - 'row_last_seen' => '最近の傾向', - 'row_last_seen_location' => '最近のトレンド(場所)', - 'row_email' => '郵便', - 'row_users_ips' => 'IPレコード', - 'row_ip_history' => 'IP履歴', - 'text_user_earlier_used' => 'このユーザーは以前にそれを使用しました', - 'text_different_ips' => '別のIPアドレス', - 'row_ip_address' => '現在のIP', - 'row_bt_client' => 'BTクライアント', - 'row_uploaded' => 'ボリュームをアップロードします', - 'row_downloaded' => 'ダウンロード', - 'row_share_ratio' => '共有率', - 'row_real_uploaded' => '実際、ボリュームは送信されます', - 'row_real_downloaded' => '実際のダウンロード', - 'row_real_share_ratio' => '実際の共有率', - 'row_real_ps' => '実際、送信/ダウンロード(レコーディングにのみ使用され、共有率の計算に参加しません)', - 'row_internet_speed' => 'ネットワーク帯域幅', - 'row_gender' => '性別', - 'row_donated' => '寄付する', - 'row_avatar' => 'アバター', - 'row_class' => '学年', - 'row_torrent_comment' => 'シードコメント', - 'link_view_comments' => 'コメントを見る', - 'row_forum_posts' => 'フォーラム投稿', - 'link_view_posts' => '投稿を表示します', - 'row_karma_points' => '魔法の価値', - 'row_uploaded_torrents' => '種子を放出します', - 'text_show_or_hide' => '[show/hide]', - 'row_current_seeding' => '現在作られた種子', - 'row_current_leeching' => '現在のダウンロード', - 'row_completed_torrents' => '種を完成させます', - 'row_incomplete_torrents' => '未完成の種', - 'text_public_access_denied' => '申し訳ありませんが、アクセスはユーザーによって行われました', - 'text_user_wants_privacy' => '拒否する。ユーザーはプライバシーを保護したいと考えています。', - 'text_edit_user' => 'ユーザーを編集します', - 'row_title' => 'タイトル', - 'row_privacy_level' => 'プライバシーレベル', - 'radio_low' => '低い', - 'radio_normal' => '普通', - 'radio_strong' => '高い', - 'row_avatar_url' => 'アバターURL', - 'row_signature' => 'サイン', - 'row_donor_status' => '寄付ステータス', - 'row_donor' => '寄付する', - 'radio_yes' => 'はい', - 'radio_no' => 'いいえ', - 'row_support' => 'サポートスタッフ', - 'row_support_language' => 'サポート言語', - 'row_support_for' => 'サポートされているコンテンツ', - 'row_comment' => '述べる', - 'row_seeding_karma' => '魔法の価値', - 'row_warning_system' => '警告システム

    (悪い行動)', - 'text_not_warned' => '警告なし。', - 'text_arbitrary_duration' => '(任意の期間)', - 'text_until' => 'それまで', - 'text_to_go' => '残り時間', - 'text_warn_for' => '警告時間', - 'text_week' => '週', - 'text_weeks' => '週', - 'text_unlimited' => '無制限', - 'text_reason_of_warning' => '警告の原因', - 'text_times_warned' => '警告の数', - 'text_last_warning' => '最新の警告', - 'text_not_warned_note' => 'ユーザーは警告されませんでした', - 'row_auto_warning' => '自動警告', - 'text_low_ratio' => '低共有率', - 'text_leech_warned' => '血の吸引', - 'text_for_unlimited_time' => 'チャンスのない人生...', - 'row_movie_picker' => '批評家', - 'row_enabled' => '効率的', - 'row_forum_post_possible' => 'フォーラムの投稿を許可しますか?', - 'row_upload_possible' => 'アップロードは許可されていますか?', - 'row_download_possible' => 'ダウンロードを許可しますか?', - 'row_change_username' => 'ユーザー名を変更します', - 'row_change_email' => 'メールアドレスを変更します', - 'row_change_password' => 'パスワードを変更する', - 'row_repeat_password' => 'パスワードを認証する', - 'row_amount_uploaded' => 'ボリュームをアップロードします', - 'row_amount_downloaded' => 'ダウンロード', - 'row_passkey' => '鍵', - 'checkbox_reset_passkey' => 'キーをリセットします', - 'submit_okay' => 'もちろん', - 'text_delete_user' => 'ユーザーを削除します', - 'submit_delete' => '消去', - 'text_ago' => '前に', - 'title_show_or_hide' => '表示/非表示', - 'title_download' => 'ダウンロード:', - 'title_upload' => 'アップロード:', - 'title_male' => '男の子', - 'title_female' => '女の子', - 'title_not_available' => '未知', - 'title_send_pm' => 'メッセージを送信します', - 'title_report_user' => 'ユーザーを報告します', - 'text_free' => '無料', - 'text_two_times_up' => '2x', - 'text_free_two_times_up' => '2x無料', - 'text_half_down' => '50%', - 'text_by' => '警告者:', - 'text_by_system' => '警告:システム', - 'text_transaction_memo' => 'トランザクションメモ:', - 'row_pick_for' => '映画を選択します', - 'row_staff_duties' => '管理者の責任/VIP資格の理由', - 'row_transfer' => '伝染 ; 感染', - 'row_sltime' => 'BT時間', - 'text_seeding_leeching_time_ratio' => 'シード生産/ダウンロード時間比', - 'text_seeding_time' => '種子生産時間', - 'text_leeching_time' => 'ダウンロード時間', - 'text_since' => '以来', - 'row_compatibility' => 'あらゆる種類の楽しみのように', - 'text_unknown' => '未知', - 'text_super' => '素晴らしい', - 'text_very_high' => '非常に高い', - 'text_high' => 'より高い', - 'text_medium' => '普通', - 'text_low' => 'より低い', - 'text_very_low' => '非常に低い', - 'row_invites' => '招待する', - 'js_delete_user_note' => '確かな場合は、ユーザーを削除できるようになりました。', - 'std_sorry' => 'ごめん', - 'std_user_not_confirmed' => 'このユーザーは確認に合格していません!', - 'text_not_available' => 'n/a', - 'row_vip_by_bonus' => 'VIP資格は魔法の価値を通じて得られます', - 'text_vip_by_bonus_note' => 'このVIP資格は魔法の価値と交換されていますか?', - 'row_vip_until' => 'VIP資格の終了時間', - 'text_vip_until_note' => '時間形式は「年の数か月の日の時間:分:秒秒」です。 VIP資格が終了する時間。 「VIP資格は魔法の価値によって取得されます」は、このルールが有効になるためには「はい」に設定する必要があります。', - 'row_show_ad' => '広告を表示します', - 'row_no_ad_until' => 'まで広告は表示されません', - 'text_no_ad_until_note' => '時間形式は「年の数か月の日の時間:分:秒秒」です。広告が終了しない時間。', - 'disable_user_migrated' => 'ユーザーを有効または無効にするには、管理バックグラウンド操作にアクセスしてください', - 'text_user_id' => 'ユーザーID/UID', - 'row_medal' => 'メダル', - 'row_donoruntil' => '寄付ステータスの締め切り', - 'text_donoruntil_note' => '時間形式は「年の数か月の日の時間:分:秒秒」です。空白のままにしてください。', - 'change_field_value_migrated' => '変更するには%Sにアクセスしてください', - 'sure_to_remove_leech_warn' => 'この血液吸引警告をきれいにしたいですか?', - 'row_user_props' => '小道具', - 'meta_key_change_username_username' => '新しいユーザー名', - 'consume' => '使用', - 'text_bonus_table' => '時間の悪魔', +$lang_userdetails = array +( + 'std_error' => "エラー", + 'std_no_such_user' => "このIDを持つユーザーはいません!", + 'head_details_for' => "詳細 ", + 'text_account_disabled_note' => "このアカウントは無効になっています!", + 'text_remove_from_friends' => "友達から削除", + 'text_remove_from_blocks' => "ブロックから削除", + 'text_add_to_friends' => "友達に追加", + 'text_add_to_blocks' => "ブロックに追加", + 'text_flush_ghost_torrents' => "おばけの Torrent をフラッシュするにはクリック ", + 'text_here' => "ここ", + 'row_invitation' => "招待", + 'text_no_invitation' => "招待状はありません", + 'link_send_invitation' => "Send Invitation", + 'row_invited_by' => "招待者", + 'row_join_date' => "Join date", + 'row_last_seen' => "最後の 見る", + 'row_last_seen_location' => "最後の を見ました(場所)", + 'row_email' => "Eメールアドレス", + 'row_users_ips' => "User's IP", + 'row_ip_history' => "IPの履歴", + 'text_user_earlier_used' => "このユーザーは以前使用しています ", + 'text_different_ips' => " 異なる IP アドレス", + 'row_ip_address' => "IP アドレス", + 'row_bt_client' => "BT クライアント", + 'row_uploaded' => "アップロードしました", + 'row_downloaded' => "ダウンロード済み", + 'row_share_ratio' => "比率を共有", + 'row_real_uploaded' => "アップロードされました", + 'row_real_downloaded' => "実際のダウンロード", + 'row_real_share_ratio' => "実際のシェア率", + 'row_real_ps' => "実際のアップロード/実際のダウンロード(レコードのみ、シェアレートの計算では使用できません)", + 'row_internet_speed' => "ネットワークの幅", + 'row_gender' => "性別", + 'row_donated' => "寄付済み", + 'row_avatar' => "アバター", + 'row_class' => "クラス", + 'row_torrent_comment' => "Torrent コメント", + 'link_view_comments' => "View Comments", + 'row_forum_posts' => "フォーラム 投稿", + 'link_view_posts' => " 投稿を表示", + 'row_karma_points' => "カルマポイント", + 'row_uploaded_torrents' => "Uploaded Torrents", + 'text_show_or_hide' => "[表示/非表示]", + 'row_current_seeding' => "現在のシード中", + 'row_current_leeching' => "現在の", + 'row_completed_torrents' => "完了した Torrent", + 'row_incomplete_torrents' => "未完了の Torrent", + 'text_public_access_denied' => "申し訳ありませんが、公開アクセスが拒否されました。 ", + 'text_user_wants_privacy' => ". 彼(She) は、個人情報を保護したいです.", + 'text_edit_user' => "ユーザーを編集", + 'row_title' => "タイトル", + 'row_privacy_level' => "プライバシーレベル", + 'radio_low' => "低い", + 'radio_normal' => "標準", + 'radio_strong' => "強い", + 'row_avatar_url' => "アバター URL", + 'row_signature' => "署名", + 'row_donor_status' => "ドナー ステータス", + 'row_donor' => "寄付者", + 'radio_yes' => "はい", + 'radio_no' => "いいえ", + 'row_support' => "サポート", + 'row_support_language' => "サポート言語", + 'row_support_for' => "サポート", + 'row_comment' => "コメント", + 'row_seeding_karma' => "ボーナス", + 'row_warning_system' => "警告 システム

    (Bad behavior)", + 'text_not_warned' => "警告されていません。", + 'text_arbitrary_duration' => "(任意の期間)", + 'text_until' => "終了日時 ", + 'text_to_go' => " 移動する", + 'text_warn_for' => "警告: ", + 'text_week' => "週", + 'text_weeks' => "週", + 'text_unlimited' => "無制限です", + 'text_reason_of_warning' => "警告の理由", + 'text_times_warned' => "警告した回数", + 'text_last_warning' => "前回の警告", + 'text_not_warned_note' => "このユーザーはまだ警告されていません", + 'row_auto_warning' => "自動警告", + 'text_low_ratio' => "低比", + 'text_leech_warned' => "リーチ警告!", + 'text_for_unlimited_time' => "無制限の時間...", + 'row_movie_picker' => "ピッカー", + 'row_enabled' => "有効", + 'row_forum_post_possible' => "フォーラム投稿可能?", + 'row_upload_possible' => "アップロード可能?", + 'row_download_possible' => "ダウンロード可能か?", + 'row_change_username' => "ユーザー名の変更", + 'row_change_email' => "メールアドレスの変更", + 'row_change_password' => "パスワードの変更", + 'row_repeat_password' => "パスワードを再入力", + 'row_amount_uploaded' => "アップロードした金額", + 'row_amount_downloaded' => "ダウンロードした金額", + 'row_passkey' => "パスワード", + 'checkbox_reset_passkey' => " Reset passkey", + 'submit_okay' => "OK", + 'text_delete_user' => "ユーザーを削除", + 'submit_delete' => "削除", + 'text_ago' => " 前", + 'title_show_or_hide' => "表示/非表示", + 'title_download' => "ダウンロード: ", + 'title_upload' => "アップロード: ", + 'title_male' => "男性", + 'title_female' => "女性", + 'title_not_available' => "該当なし", + 'title_send_pm' => "Send PM", + 'title_report_user' => "Report User", + 'text_free' => "無料", + 'text_two_times_up' => "2X", + 'text_free_two_times_up' => "2倍無料", + 'text_half_down' => "50%", + 'text_by' => "作成者: ", + 'text_by_system' => "システム", + 'text_transaction_memo' => "トランザクションメモ:", + 'row_pick_for' => "選択...", + 'row_staff_duties' => "スタッフの義務/VIP理由", + 'row_transfer' => "送金", + 'row_sltime' => "急流時間", + 'text_seeding_leeching_time_ratio' => "Se./Leの時間比", + 'text_seeding_time' => "シード時間", + 'text_leeching_time' => "リーチ時間", + 'text_since' => "以降: ", + 'row_compatibility' => "テイスト 互換性", + 'text_unknown' => "不明", + 'text_super' => "Super", + 'text_very_high' => "非常に高い", + 'text_high' => "高い", + 'text_medium' => "ミディアム", + 'text_low' => "低い", + 'text_very_low' => "とても低い", + 'row_invites' => "招待", + 'js_delete_user_note' => "このユーザーアカウントを削除できるようになりました。非常に確実です。", + 'std_sorry' => "申し訳ありません", + 'std_user_not_confirmed' => "ユーザーはまだ確認されていません!", + 'text_not_available' => "該当なし", + 'row_vip_by_bonus' => "VIPボーナス", + 'text_vip_by_bonus_note' => "VIPステータスはボーナスを使用して獲得できますか?", + 'row_vip_until' => "VIPまで", + 'text_vip_until_note' => "時刻フォーマットはYYYY-MM-DD hh:mm:ssです。VIPステータスが有効になるまでの時刻です。 これが機能するためには、「ボーナスによるVIP」を「はい」に設定する必要があります。", + 'row_show_ad' => "Show Ad", + 'row_no_ad_until' => "までの広告なし", + 'text_no_ad_until_note' => "時間フォーマットはYYYY-MM-DD hh:mm:ssです。ユーザーが広告をオフにできるまでの時間。", + 'disable_user_migrated' => '使用の有効化または無効化は、新しい管理システムに移動してください。', + 'text_user_id'=> "ユーザー ID", + 'row_medal' => 'Medalha', + 'row_donoruntil' => '寄付された期間', + 'text_donoruntil_note' => "時刻フォーマットはYYYY-MM-DD hh:mm:ssです。空白のままにします。", + 'change_field_value_migrated' => '改造は %sに行ってください。', + 'sure_to_remove_leech_warn' => 'このリーチ警告を削除してもよろしいですか?', + 'row_user_props' => 'props', + 'meta_key_change_username_username' => '新しいユーザー名', + 'consume' => '使用', + 'text_bonus_table' => 'Bonus per hour', ); +?> diff --git a/lang/ja/lang_userhistory.php b/lang/ja/lang_userhistory.php index 778dec26..39bf6b81 100644 --- a/lang/ja/lang_userhistory.php +++ b/lang/ja/lang_userhistory.php @@ -1,23 +1,26 @@ '間違い', - 'std_permission_denied' => '許可はありません', - 'std_no_posts_found' => '投稿はありません', - 'head_posts_history' => '履歴を投稿します', - 'text_posts_history_for' => 'ユーザー投稿履歴 - ', - 'text_forum' => 'フォーラム:', - 'text_topic' => '件名:', - 'text_post' => '投稿:', - 'text_new' => '新しい!', - 'text_last_edited' => 'ついに', - 'text_at' => '編集', - 'std_no_comments_found' => 'コメントは見つかりませんでした', - 'head_comments_history' => 'コメント履歴', - 'text_comments_history_for' => 'ユーザーコメント履歴 - ', - 'text_torrent' => 'シード:', - 'text_comment' => 'コメント:', - 'std_history_error' => '間違い', - 'std_unkown_action' => '未知の動作', - 'std_invalid_or_no_query' => 'このアイテムが無効または持っていない。', +$lang_userhistory = array +( + 'std_error' => "エラー", + 'std_permission_denied' => "権限がありません", + 'std_no_posts_found' => "投稿が見つかりません", + 'head_posts_history' => "投稿履歴", + 'text_posts_history_for' => "投稿履歴: ", + 'text_forum' => "フォーラム: ", + 'text_topic' => "トピック: ", + 'text_post' => "投稿: ", + 'text_new' => "新着!", + 'text_last_edited' => "最終編集者: ", + 'text_at' => " に ", + 'std_no_comments_found' => "コメントが見つかりません", + 'head_comments_history' => "コメント履歴", + 'text_comments_history_for' => "コメント履歴 ", + 'text_torrent' => "トレント: ", + 'text_comment' => "コメント: ", + 'std_history_error' => "履歴エラー", + 'std_unkown_action' => "不明なアクション", + 'std_invalid_or_no_query' => "無効またはクエリがありません。" ); + +?> diff --git a/lang/ja/lang_users.php b/lang/ja/lang_users.php index 41d7ea2f..0ae28839 100644 --- a/lang/ja/lang_users.php +++ b/lang/ja/lang_users.php @@ -1,17 +1,20 @@ 'ユーザー', - 'text_users' => '

    ユーザー

    ', - 'text_search' => '検索:', - 'select_any_class' => '(任意のレベル)', - 'submit_okay' => '私を探してください', - 'text_prev' => '前のページ', - 'text_next' => '次のページ', - 'col_user_name' => 'ユーザー名', - 'col_registered' => '登録する', - 'col_last_access' => '最後の訪問', - 'col_class' => '学年', - 'col_country' => '国/地域', - 'select_any_country' => '(任意の国/地域)', +$lang_users = array +( + 'head_users' => "ユーザー", + 'text_users' => "

    Users

    ", + 'text_search' => "検索:", + 'select_any_class' => "(任意のクラス)", + 'submit_okay' => "OK", + 'text_prev' => "前", + 'text_next' => "次へ", + 'col_user_name' => "ユーザー名", + 'col_registered' => "登録済み", + 'col_last_access' => "最終アクセス", + 'col_class' => "クラス", + 'col_country' => "国", + 'select_any_country'=> "(任意の国)", ); + +?> diff --git a/lang/ja/lang_viewfilelist.php b/lang/ja/lang_viewfilelist.php index 0e85ce1d..89a13aeb 100644 --- a/lang/ja/lang_viewfilelist.php +++ b/lang/ja/lang_viewfilelist.php @@ -1,5 +1,8 @@ 'パス', +$lang_viewfilelist = array +( + 'col_path' => "パス", ); + +?> \ No newline at end of file diff --git a/lang/ja/lang_viewnfo.php b/lang/ja/lang_viewnfo.php index a97a666e..8dacf87d 100644 --- a/lang/ja/lang_viewnfo.php +++ b/lang/ja/lang_viewnfo.php @@ -1,11 +1,13 @@ 'ああ、o', - 'head_view_nfo' => 'NFOファイルを表示します', - 'text_nfo_for' => 'NFOファイル:', - 'title_dos_vy' => 'DOSスタイルを表示します', - 'text_dos_vy' => 'DOSスタイル', - 'title_windows_vy' => 'Windowsスタイルを表示します', - 'text_windows_vy' => 'Windowsスタイル', +$lang_viewnfo = array +( + 'std_puke' => "Puke", + 'head_view_nfo' => "NFO ファイルを表示", + 'text_nfo_for' => "NFO for", + 'title_dos_vy' => "", + 'text_dos_vy' => "DOS-vy", + 'title_windows_vy' => "Latin-1: Inget socker tack!", + 'text_windows_vy' => "Windows-vy" ); +?> \ No newline at end of file diff --git a/lang/ja/lang_viewpeerlist.php b/lang/ja/lang_viewpeerlist.php index 05fdf925..03d35d96 100644 --- a/lang/ja/lang_viewpeerlist.php +++ b/lang/ja/lang_viewpeerlist.php @@ -1,25 +1,28 @@ 'ユーザー', - 'col_location' => '場所', - 'col_connectable' => '接続可能', - 'col_uploaded' => 'アップロード', - 'col_rate' => '即時速度', - 'col_av_rate' => '平均速度', - 'col_downloaded' => 'ダウンロード', - 'col_ratio' => '共有率', - 'col_complete' => '仕上げる', - 'col_connected' => '接続時間', - 'col_idle' => '最近のレポート', - 'col_client' => 'クライアント', - 'text_anonymous' => '匿名', - 'text_unknown' => '(未知)', - 'text_seeders' => 'シードメーカー', - 'text_leechers' => 'ダウンローダー', - 'row_seeders' => 'シードメーカー', - 'row_leechers' => 'ダウンローダー', - 'text_yes' => 'はい', - 'text_no' => 'いいえ', - 'text_inf' => '無制限', +$lang_viewpeerlist = array +( + 'col_user_ip' => "ユーザー", + 'col_location' => "場所", + 'col_connectable' => "接続可能", + 'col_uploaded' => "アップロードしました", + 'col_rate' => "利率", + 'col_av_rate' => "平均レート", + 'col_downloaded' => "ダウンロード済み", + 'col_ratio' => "Ratio", + 'col_complete' => "Complete", + 'col_connected' => "接続しました", + 'col_idle' => "待機中", + 'col_client' => "クライアント", + 'text_anonymous' => "匿名です", + 'text_unknown' => "(不明)", + 'text_seeders' => "Seeders", + 'text_leechers' => "Leechers", + 'row_seeders' => "Seeders", + 'row_leechers' => "Leechers", + 'text_yes' => "はい", + 'text_no' => "いいえ", + 'text_inf' => "Inf ファイル." ); + +?> diff --git a/lang/ja/lang_viewrequests.php b/lang/ja/lang_viewrequests.php index c447eaef..b852381c 100644 --- a/lang/ja/lang_viewrequests.php +++ b/lang/ja/lang_viewrequests.php @@ -1,66 +1,65 @@ '種子領域を探します', - 'request' => '種を探します', - 'add_request' => '種を追加します', - 'request_name' => '名前を探してください', - 'view_request_all' => 'すべてを表示します', - 'view_request_resolved' => '解決された表示', - 'view_request_unresolved' => '解決されていない表示', - 'view_request_resolving' => '表示と解決', - 'view_request_my' => '私が投稿したものをチェックしてください', - 'thead_name' => '名前', - 'thead_price_newest' => '最新の入札', - 'thead_price_original' => '元の入札', - 'thead_comment_count' => 'コメントの数', - 'thead_on_request_count' => '番号を尋ねてください', - 'thead_request_user' => '探求者', - 'thead_created_at' => '時間', - 'thead_status' => '州', - 'request_status_resolved' => '求められました', - 'request_status_resolving' => '種を探しています', - 'action_search' => '検索', - 'basic_info' => '基本情報', - 'created_at' => '投稿されました', - 'reward' => '褒美', - 'newest_bidding' => '最新の入札はです', - 'original_bidding' => '元の入札はです', - 'on_request' => 'リクエスト', - 'recycle' => 'リサイクル', - 'recycle_title' => '魔法の価値の80%をリサイクルして返します', - 'add_reward' => '追加の報酬', - 'add_reward_desc' => '追加の報酬は、毎回処理料として25の魔法の値を差し引きます', - 'no_request_yet' => 'まだ答えていません', - 'btn_select_text' => '必要なリソースとして選択したリソースを使用します', - 'request_already_resolved' => '種子が完成しました!', - 'add_request_desc' => '賞金は、100の魔法の価値を超えてはなりません。あなたがソディ化するたびに、あなたは100の魔法の価値を取り扱い手数料として差し引きます。', - 'description_required' => 'はじめに記入しません!', - 'name_required' => '名前が記入されていない!', - 'amount_required' => '賞金は満たされていません!', - 'amount_must_be_numeric' => '賞金は数でなければなりません!', - 'add_request_amount_minimum' => 'シードを求める賞金は、100の魔法の価値を超えてはなりません!', - 'add_request_amount_maximum' => 'シードを求める賞金は、10,000の魔法の価値を超えてはなりません!', - 'bouns_not_enough' => 'あなたはそんなに魔法の価値を持っていません! ! !', - 'add_request_success' => '新しいシード検索の成功', - 'request_id_must_be_numeric' => 'シードIDは番号でなければなりません', - 'request_deleted' => 'シードリクエストが削除されました!', - 'edit_request_success' => '編集者のシード検索は成功しました', - 'do_request' => 'リクエストに答えたいです', - 'type_in_torrent_id' => 'シードIDを入力してください', - 'delete_request_success' => 'シードを正常に削除します', - 'torrent_is_picked_for_request' => 'あなたの種は他の人から尋ねられます', - 'confirm_request_success' => '成功を確認してください', - 'message_required' => 'メッセージを空にしないでください!', - 'request_created_at' => '追加されました', - 'request_get_new_reply' => 'あなたのリクエストは新しい返信を受け取りました', - 'request_comment_get_new_reply' => 'あなたのリクエストコメントは新しい返信を受け取りました', - 'torrent_not_release_yet' => 'このタイプはまだ正式にリリースされていません', - 'supply_already_exists' => 'リクエストはすでに存在します!', - 'message_please_confirm_supply' => '誰かがあなたの種子のリクエストに応答します、それが要求されるべきであることを間に合うように確認してください。', - 'please_confirm_supply' => '時間内にリクエストを確認してください', - 'supply_success' => '成功を求めてください', - 'add_reward_amount_minimum' => '追加の報酬賞金は、100の魔法の価値を超えてはなりません!', - 'add_reward_amount_maximum' => '追加の報酬賞金は、5,000の魔法の価値を超えてはなりません!', - 'add_reward_success' => '追加の報酬が成功しました', -); +$lang_viewrequests = [ + 'page_title' => 'リクエスト', + 'request' => 'リクエスト', + 'add_request' => 'リクエストを追加', + 'request_name' => 'リクエスト名', + 'view_request_all' => 'すべて表示', + 'view_request_resolved' => '解決済みを表示', + 'view_request_unresolved' => '未解決の表示', + 'view_request_resolving' => '解決方法を表示', + 'view_request_my' => '自分を見る', + 'thead_name' => '名前', + 'thead_price_newest' => '最新入札情報', + 'thead_price_original' => '本来の入札について', + 'thead_comment_count' => 'コメント数', + 'thead_on_request_count' => '供給数', + 'thead_request_user' => 'ユーザー', + 'thead_created_at' => '時刻', + 'thead_status' => 'ステータス', + 'request_status_resolved' => 'リクエスト成功', + 'request_status_resolving' => 'リクエスト中', + 'action_search' => '検索', + 'basic_info' => '基本情報', + 'created_at' => '作成日時', + 'reward' => 'Recompensa', + 'newest_bidding' => '最新入札数', + 'original_bidding' => '本来の入札について', + 'on_request' => 'Suprimentos', + 'recycle' => 'リサイクルする', + 'recycle_title' => 'リサイクルのみが80%の報奨金を返します', + 'add_reward' => '再販品を追加', + 'add_reward_desc' => '報酬を追加すると、サービス料として25の報酬が差し引かれます', + 'no_request_yet' => 'まだ何もありません', + 'btn_select_text' => 'リクエストに選択リソースを使用', + 'request_already_resolved' => 'このリクエストは解決されました', + 'add_request_desc' => '報酬は100以上の報酬を得ることができません。毎回のリクエストに対して100の報酬がサービス料として差し引かれます。', + 'description_required' => '説明が必要です!', + 'name_required' => '名前が必要です!', + 'amount_required' => '報酬が必要です!', + 'amount_must_be_numeric' => '金額は数値でなければなりません!', + 'add_request_amount_minimum' => '報酬は100以上の報酬を獲得できません!', + 'add_request_amount_maximum' => '報酬は10000以上の報酬はありません!', + 'bouns_not_enough' => '報酬が足りません!', + 'add_request_success' => '追加に成功しました', + 'request_id_must_be_numeric' => 'リクエスト ID は数値でなければなりません', + 'request_deleted' => 'リクエストが削除されました!', + 'edit_request_success' => 'リクエストの編集に成功しました', + 'do_request' => 'リクエストが欲しいです', + 'type_in_torrent_id' => 'Torrent ID を入力', + 'delete_request_success' => '要求を削除しました', + 'torrent_is_picked_for_request' => 'リクエストが供給されました', + 'confirm_request_success' => '成功を確認', + 'message_required' => 'メッセージを入力してください!', + 'request_created_at' => '作成日時', + 'request_get_new_reply' => 'リクエストに新しい返信があります', + 'request_comment_get_new_reply' => 'あなたのリクエストコメントは新しい返信を受け取ります', + 'torrent_not_release_yet' => 'このトレントはまだリリースされていません', + 'supply_already_exists' => 'この供給は既に存在します!', + 'message_please_confirm_supply' => '誰かがあなたのリクエストを入力しました。時間通りに確認してください。', + 'please_confirm_supply' => '時間内に供給を確認してください', + 'supply_success' => 'リクエスト成功', + 'add_reward_amount_minimum' => '追加報酬額は100ボーナス未満ではありません!', + 'add_reward_amount_maximum' => '追加報酬金額は5000ボーナス以上!', + 'add_reward_success' => '報酬の追加に成功', +]; \ No newline at end of file diff --git a/lang/ja/lang_viewsnatches.php b/lang/ja/lang_viewsnatches.php index 2692b6f2..9212250f 100644 --- a/lang/ja/lang_viewsnatches.php +++ b/lang/ja/lang_viewsnatches.php @@ -1,30 +1,33 @@ '詳細について', - 'text_snatch_detail_for' => 'シード完成の詳細 - ', - 'text_users_top_finished_recently' => '上部のユーザーが最終的にダウンロードを完了します', - 'col_username' => 'ユーザー名', - 'col_uploaded' => 'アップロード', - 'col_downloaded' => 'ダウンロード', - 'col_ratio' => '共有率', - 'col_when_completed' => '仕上げる', - 'col_last_action' => '最近の傾向', - 'col_se_time' => '種子生産時間', - 'col_le_time' => 'ダウンロード時間', - 'col_seeding' => '種を作る', - 'col_pm_user' => 'SMS', - 'col_report_user' => '報告', - 'col_on_or_off' => 'オンライン', - 'text_global' => 'グローバル', - 'text_torrent' => 'このタイプ', - 'text_yes' => 'はい', - 'text_no' => 'いいえ', - 'title_report' => '報告', - 'col_ip' => 'IP', - 'text_per_second' => '/2番', - 'text_anonymous' => '匿名', - 'text_inf' => '無制限', - 'std_sorry' => 'ごめん', - 'text_no_snatched_users' => 'まだ種を完成させていないユーザーはいません。', +$lang_viewsnatches = array +( + 'head_snatch_detail' => "スナッチの詳細", + 'text_snatch_detail_for' => "スナッチの詳細 ", + 'text_users_top_finished_recently' => "上部のユーザーが最近ダウンロードを完了しました", + 'col_username' => "ユーザー名", + 'col_uploaded' => "アップロードしました", + 'col_downloaded' => "ダウンロード済み", + 'col_se_time' => "Se. Time", + 'col_le_time' => "経過時間", + 'col_ratio' => "Ratio", + 'col_when_completed' => "完了日時", + 'col_last_action' => "最後のアクション", + 'col_seeding' => "シード中", + 'col_pm_user' => "PM ユーザー", + 'col_report_user' => "ユーザーを報告", + 'col_on_or_off' => "オン/オフ", + 'text_global' => "グローバル", + 'text_torrent' => "Torrent", + 'text_yes' => "はい", + 'text_no'=> "いいえ", + 'title_report' => "レポート", + 'col_ip' => "IP", + 'text_per_second' => "/s", + 'text_anonymous' => "anonymous", + 'text_inf' => "Inf ファイル.", + 'std_sorry' => "申し訳ありません", + 'std_no_snatched_users' => "このトレントを奪ったユーザーはまだいません。", ); + +?> diff --git a/lang/nb/lang_aboutnexus.php b/lang/nb/lang_aboutnexus.php new file mode 100644 index 00000000..34b3d946 --- /dev/null +++ b/lang/nb/lang_aboutnexus.php @@ -0,0 +1,38 @@ + "Versjon", + 'text_version_note' => "Denne trackeren %s drives av %s. Den følgende er versjonsdetaljene.", + 'text_main_version' => "Hoved Versjon", + 'text_sub_version' => "Sub versjon", + 'text_release_date' => "Utgivelsesdato", + 'text_authorize_to' => "Autorisert til", + 'text_authorization_type' => "Autorisasjons type", + 'text_commercial' => "Kommersiell", + 'text_free' => "Gratis", + 'text_nexus' => "Om ", + 'text_nexus_note' => " er initiert av en haug med gutter i Zhejiang universitet, Kina som kaller seg 'Nexus Team'. Det er dedikert å være erstatningen av TBSource prosjektet og presentere en komplett løsning for å skape et ressursdelingssamfunn med medlemmer av kreditt, orden og kunnskap.

    +Det første trinnet i %s gafler fra TBSource. Vi tilbyr en omfattende funksjon som ikke eksisterer i eller langt overlegen den opprinnelige TBKildekode med sterkt forbedret kodeeffektivitet. I tillegg til TBSource, låner vi også noen ideer eller kode fra andre private trackere, f.eks. Bit-HDTV, What.cd, SceneTorrents.", + 'text_authorization' => "Om godkjenning", + 'text_authorization_note' => "Hvis du liker å bruke %s for å styrke din tracker, kan du kontakte oss kontakt oss.", + 'text_translation' => "Om oversettelse", + 'text_translation_note' => " støtter brukersidens språkbytte. Masterspråket er engelsk.

    Hvis språket ditt ikke er (ennå) tilgjengelig og du er interessert i å oversette det, Les oversettelse HOWTO og kontakt oss. Vi ønsker stadig nye oversettelser. De tilgjengelige oversettelsene kan alltid bruke en hjelpemiddelhånd, spesielt de som er merket som utdatert, ufullstendig eller som trenger nye oversettere.", + 'text_flag' => "Flagg", + 'text_language' => "Språk", + 'text_state' => "Tilstand", + 'text_stylesheet' => "Om Stilark", + 'text_stylesheet_note' => "Oppsettet til %s er fullt CSS-basert utformet, som tillater maksimalt tilpasning av brukergrensesnittet og gjør det enkelt å legge til nye stilark.

    Følgende er en liste over tilgjengelig stilark ved denne tracker %s. Dersom du vil ha flere stilark eller vil designe din egen, ta kontakt med oss.", + 'text_name' => "Navn", + 'text_designer' => "Designer", + 'text_comment' => "Kommentar", + 'text_contact' => "Kontakt ", + 'text_contact_note' => "Vil du bli med oss? Få forslag eller finne feil? Snakk om bedrifter? Kontakt oss på noen av de følgende måtene.", + 'text_web_site' => "Web Site", + 'text_email' => "E-post", + 'text_msn' => "MSN", + 'text_qq' => "QQ", + 'text_telephone' => "Tele.", +); + +?> diff --git a/lang/nb/lang_admanage.php b/lang/nb/lang_admanage.php new file mode 100644 index 00000000..579b3cb6 --- /dev/null +++ b/lang/nb/lang_admanage.php @@ -0,0 +1,103 @@ + "Administrere Ad", + 'text_ad_management' => "Administrere Ad", + 'text_add_ad' => "Legg til annonse", + 'text_header' => "Topptekst", + 'text_footer' => "Bunntekst", + 'text_below_navigation' => "Under navigering", + 'text_below_searchbox' => "Under søkeboks", + 'text_torrent_detail' => "Torrent Detaljer", + 'text_comment_page' => "Kommentar side", + 'text_inter_overforums' => "Inter Overforums", + 'text_forum_post_page' => "Forum innleggs side", + 'text_popup' => "Popup", + 'text_no_ads_yet' => "Ingen annonser ennå!", + 'col_enabled' => "Aktivert", + 'col_name' => "Navn", + 'col_position' => "Posisjon", + 'col_order' => "Ordre", + 'col_type' => "Metode", + 'col_start_time' => "Start tid", + 'col_end_time' => "Slutt tid", + 'col_action' => "Handling", + 'text_yes' => "Ja", + 'text_no' => "Nei", + 'text_bbcodes' => "BB koder", + 'text_xhtml' => "XHTML", + 'text_text' => "Tekst", + 'text_image' => "Bilde", + 'text_flash' => "Blits", + 'text_delete' => "Slett", + 'text_edit' => "Rediger", + 'js_sure_to_delete_ad' => "Er du sikker på at du vil slette denne annonsen?", + 'std_error' => "Feil", + 'std_invalid_id' => "Invalid ID", + 'std_invalid_position' => "Ugyldig posisjon", + 'head_add_ad' => "Legg til annonse", + 'head_edit_ad' => "Rediger annonse", + 'text_note' => "Notat", + 'text_ad_detail' => "Reklame detaljer", + 'row_name' => "Navn", + 'row_start_time' => "Start tid", + 'row_end_time' => "Slutt tid", + 'row_enabled' => "Aktivert", + 'row_order' => "Ordre", + 'row_type' => "Visnings metode", + 'row_image_url' => "Bilde URL", + 'row_image_link' => "Ad Link", + 'row_image_width' => "Bilde bredde", + 'row_image_height' => "Bilde høyde", + 'row_image_tooltip' => "Lenke Verktøytips", + 'row_text_content' => "Tekst innhold", + 'row_text_link' => "Ad Link", + 'row_text_size' => "Tekst størrelse", + 'row_bbcodes_code' => "BB koder", + 'row_xhtml_code' => "XHTML kode", + 'row_flash_url' => "URL til blits", + 'row_flash_width' => "Flash Width", + 'row_flash_height' => "Blits-høyde", + 'submit_submit' => "Sumbit", + 'text_ad' => "Reklame", + 'text_header_note' => "Vis i øverste høyre hjørne av hver side. Anbefalt for å bruke bilde eller flash av størrelse innenfor 580 * 90. Bare en annonse vil vise. ", + 'text_footer_note' => "Vis nederst på siden. Anbefalt størrelse er 728 * 160. Kun en reklame vil vises. ", + 'text_below_navigation_note' => "Vis navigasjonsfelt under hver side. Anbefalt størrelse er 728* 90. Bare en reklame vil vises. ", + 'text_below_searchbox_note' => "Vis søkerboksen under på torrenter siden. Anbefalt størrelse er 728 * 90. Kun en reklame vil vises. ", + 'text_torrent_detail_note' => "Vis i torrent beskrivelse på torrent informasjonssiden. Anbefalt størrelse er 600*160. Bare en annonse vil vises. ", + 'text_comment_page_note' => "Vis mellom kommentarer på torrent-detaljsiden eller informasjonsside. Anbefalt størrelse er 600*160. Flere annonser vil vises sammen. ", + 'text_inter_overforums_note' => "Vis mellom fora på forum. Anbefalt størrelse er 728 * 90. Flere annonser vises sammen. (Automatic Translation)", + 'text_forum_post_page_note' => "Vis mellom foruminnlegg på forumets emneinformasjonsside. Anbefalt størrelse er 600 * 160. Flere annonser vises sammen.", + 'text_popup_note' => "Sprett opp på alle sider. Svært forstyrring, bruk med forsiktighet. Anbefalt størrelse er 468 * 90", + 'text_name_note' => "Bare et navn for å ringe annonsen.", + 'text_start_time_note' => "I formatet YYYY-MM-DD h:mm:ss, f.eks. '2007-12-24 21:00:00'. Tid siden når annonsen blir tilgjengelig.", + 'text_end_time_note' => "I formatet YYYY-MM-DD h:mm:ss, f.eks '2008-01-24 21:00:00'. Tid til annonsen er tilgjengelig.", + 'text_order_note' => "The priority of ads. Value '0' gets the top priority.
    When several ads are available for a position, the one with the highest priority will show if the position allows only one ad, and those with higher priorities will show on top if the position allows several ads. When several available ads have the same priority value, the most recently added one has the highest priority. ", + 'text_enabled_note' => "Bare aktiverte reklamer vil vises. ", + 'text_type_note' => "Velg visningsmetode for annonser. ", + 'text_image_url_note' => "Bildefilen.
    Begge relative stiene (f.eks. 'pic/ad.jpg') eller den absolutte stien (f.eks 'https://nexusphp.org/ad.jpg') er Okay. ", + 'text_image_link_note' => "Linken til annonsen, f.eks. 'https://nexusphp.org/ad.html'. ", + 'text_image_width_note' => "I piksler. Bredden som bildet blir vist på. ", + 'text_image_height_note' => "I piksler. Høyden som bildet vises i. ", + 'text_image_tooltip_note' => "Teksten som vises på verktøytips av lenken. ", + 'text_text_content_note' => "Innholdet i tekstannonsen. ", + 'text_text_link_note' => "Linken til annonsen, f.eks. 'https://nexusphp.org/ad.html'. ", + 'text_text_size_note' => "Skriftstørrelsen på tekstannonsen. Kan være i pt, px eller em, f.eks '30pt'. Dersom ingen er definert, forutsettes '30pt'.", + 'text_bbcodes_code_note' => "Hva er BB koder? Se ", + 'text_here' => "her", + 'text_xhmtl_code_note' => "Du bør unngå å bruke XHTML fordi feil XHTML-kode lett kan svekke hele siden, men også fordi det er SEKUR. Hvis du vil, må du sørge for at XHTML-koden er sikker og riktig.
    merknad: Følg XHTML 1.0 Transitional specification, ikke HTML 4.01.", + 'text_flash_url_note' => "URL-adressen til Flash-filen.
    Begge den relative stien (f.eks. 'pic/flash.demo.swf') eller den absolutte stien (f.eks 'https://nexusphp.org/flash.demo.swf') er Okay.", + 'text_flash_width_note' => "I piksler. Bredden som Flash er vist. ", + 'text_flash_height_note' => "I piksler. Høyden som Flash er vist. ", + 'std_missing_form_data' => "Manglende skjemadata.", + 'std_invalid_type' => "Ugyldig visningsmetode.", + 'std_success' => "Vellykket", + 'std_edit_success' => "Annonsen er redigert. ", + 'std_add_success' => "Reklamen er lagt til. ", + 'text_unlimited' => "ubegrenset", + 'std_go_back' => "Gå tilbake til annonseliste", + 'col_clicks' => "Klikk" +); + +?> diff --git a/lang/nb/lang_adredir.php b/lang/nb/lang_adredir.php new file mode 100644 index 00000000..b7d49912 --- /dev/null +++ b/lang/nb/lang_adredir.php @@ -0,0 +1,11 @@ + "Feil", + 'std_ad_system_disabled' => "Annonsesystem er deaktivert.", + 'std_invalid_ad_id' => "Invalid ad id", + 'std_no_redirect_url' => "Ingen omadressering URL." +); + +?> diff --git a/lang/nb/lang_attachment.php b/lang/nb/lang_attachment.php new file mode 100644 index 00000000..c03c1cff --- /dev/null +++ b/lang/nb/lang_attachment.php @@ -0,0 +1,20 @@ + "Mislyktes! Ingenting mottatt!", + 'text_file_number_limit_reached' => "Feilet! Du kan ikke laste opp flere filer for øyeblikket. Vennligst vent en stund.", + 'text_file_size_too_big' => "Mislyktes! Filstørrelsen er for stor.", + 'text_file_extension_not_allowed' => "Feil! Filtypen er ikke tillatt.", + 'text_invalid_image_file' => "Mislyktes! Ugyldig bildefil.", + 'text_cannot_move_file' => "Feil! Kan ikke flytte opplastet fil.", + 'submit_upload' => "Last opp", + 'text_left' => "I dag venstre: ", + 'text_of' => " av ", + 'text_size_limit' => "Størrelse: ", + 'text_file_extensions' => "Fil utvidelser: ", + 'text_mouse_over_here' => "mus her", + 'text_small_thumbnail' => "Ikke nok miniatyrbilde", +); + +?> diff --git a/lang/nb/lang_attendance.php b/lang/nb/lang_attendance.php new file mode 100644 index 00000000..0396372d --- /dev/null +++ b/lang/nb/lang_attendance.php @@ -0,0 +1,16 @@ + "Fremmøte", + 'success' => "Vellykket", + 'attend_info' => "Du har allerede deltatt på %u dager, Kontinuerlig %u dager, denne gangen vil du få bonus til %u.", + 'initial' => "Første deltagelse få %u bonus.", + 'steps' => "Every continuous attendance get %u bonus,unless reach maximum %u", + 'continuous' => "Attend %u day continuous, will get %u bouns additional.", + 'sorry' => "Beklager", + 'already_attended' => "Du har allerede delt, ingen gjenoppfrisk.", + 'retroactive_event_text' => 'Sv', + 'retroactive_confirm_tip' => 'Bekreft deltagelse: ', + 'retroactive_description' => 'Klikk på prikken på den hvite bakgrunnen for å gjøre besøkende. Du har for øyeblikket et møtekort %d.', +); diff --git a/lang/nb/lang_bitbucket-upload.php b/lang/nb/lang_bitbucket-upload.php new file mode 100644 index 00000000..44b2baa4 --- /dev/null +++ b/lang/nb/lang_bitbucket-upload.php @@ -0,0 +1,36 @@ + "Opplastingen mislyktes", + 'std_nothing_received' => "Ingenting mottatt!", + 'std_file_too_large' => "Beklager, den filen er for stor for bit-bucket.", + 'std_bad_file_name' => "Feil filnavn.", + 'std_file_with_the_name' => "Beklager, en fil som har navnet ", + 'std_already_exists' => " finnes allerede i bit-bucket.", + 'std_error' => "Feil", + 'std_invalid_image_format' => "Ugyldig utvidelse: gif, jpg eller png!", + 'std_image_processing_failed' => "Bildebehandling mislyktes", + 'std_sorry_the_uploaded' => "Beklager, den opplastede ", + 'std_failed_processing' => " mislykket behandling. Prøv å tilbakestille bildet i en grafisk editor. Takk.", + 'std_success' => "Vellykket", + 'std_use_following_url' => "Bruk følgende URL for å få tilgang til filen: ", + 'std_upload_another_file' => "Last opp en annen fil", + 'std_image' => "Bilde ", + 'std_need_not_rescaling' => "ikke krever reskalering", + 'std_rescaled_from' => " skrotet fra ", + 'std_to' => " til ", + 'std_profile_updated' => "
    Merk: Din profil er oppdatert!", + 'head_avatar_upload' => "AVATAR Opplasting", + 'text_avatar_upload' => "AVATAR Opplasting", + 'text_upload_directory_unwritable' => "ATTENTION: Opplastingsmappen er ikke skrivbar. Kontakt administratoren om dette problemet!", + 'text_disclaimer' => "Ansvarsfraskrivelse
    Ikke last opp uautoriserte eller ulovlige bilder.
    Opplastede bilder bør betraktes som \"offentlig domene\". Så ikke last opp bilder du ikke vil at en fremmed skal ha tilgang til.
    Opplastede bilder vil bli skalert ned ved å holde størrelsesforhold hvis høyden overstiger ", + 'text_disclaimer_two' => " piksler eller bredde overskrider ", + 'text_disclaimer_three' => " piksler
    Maksimal filstørrelse er ", + 'text_disclaimer_four' => " bytes.", + 'row_file' => "Fil", + 'checkbox_avatar_shared' => "Andre brukere kan bruke min avatar (det velges i brukercp).", + 'submit_upload' => "Last opp", +); + +?> diff --git a/lang/nb/lang_catmanage.php b/lang/nb/lang_catmanage.php new file mode 100644 index 00000000..ced79707 --- /dev/null +++ b/lang/nb/lang_catmanage.php @@ -0,0 +1,86 @@ + "Kategori Administrasjon", + 'text_category_management' => "Kategori Administrasjon", + 'text_manage' => "Administrer", + 'text_searchbox' => "Søkeboks", + 'text_category_icons' => "Kategori ikonpakke", + 'text_second_icons' => "Andre ikoner", + 'text_categories' => "Kategorier", + 'text_sources' => "Kilder", + 'text_media' => "Medier", + 'text_codecs' => "Kodeker", + 'text_standards' => "Standarder", + 'text_processings' => "Behandlinger", + 'text_teams' => "Lag", + 'text_audio_codecs' => "Lyd Codecs", + 'std_error' => "Feil", + 'std_invalid_type' => "Invalid type.", + 'text_add' => "Legg til", + 'text_no_record_yet' => "Ingen poster ennå!", + 'col_id' => "ID", + 'col_name' => "Navn", + 'col_order' => "Ordre", + 'col_action' => "Handling", + 'text_delete' => "Slett", + 'text_edit' => "Rediger", + 'js_sure_to_delete_this' => "Er du sikker på at du vil slette dette?", + 'col_sub_category' => "Underkategori", + 'text_per_row' => "Elementer/Rad", + 'text_padding' => "Padding", + 'text_enabled' => "Aktivert", + 'text_disabled' => "Deaktivert", + 'col_folder' => "Ikon pakke-mappe", + 'text_multi_language' => "Multi-lang.", + 'text_second_icon' => "Andre Ikon", + 'text_css_file' => "CSS fil", + 'text_none' => "ingen", + 'text_css_file_note' => "CSS-filen for denne ikonpakken. Angi i fullbanen, f.eks 'styles/scenetorrents.cs'. La den være tom hvis ingen.
    Tillatte tegn: [a-z] (i nedre tilfelle), [0-9], [_./].", + 'text_designer' => "Designer", + 'text_comment' => "Kommentar", + 'text_yes' => "Ja", + 'text_no' => "Nei", + 'col_image' => "Bilde", + 'text_class_name' => "klasse attributt", + 'col_mode' => "Modus", + 'std_invalid_id' => "Invalid id", + 'submit_submit' => "Send", + 'text_subcategory_name_note' => "Ikke bruk langt navn. Anbefal mindre enn 10 bokstaver.", + 'text_order_note' => "Stigende – altså '0' kommer først.", + 'row_searchbox_name' => "Navn på søkeboks", + 'text_searchbox_name_note' => "Tillatte tegn: [a-z] (i nedre tilfelle), [0-9], [_./].", + 'row_show_sub_category' => "Vis underkategori", + 'text_show_sub_category_note' => "Sjekk underkategoriene som du ønsker å aktivere.", + 'row_items_per_row' => "Elementer per rad", + 'text_items_per_row_note' => "Angi hvor mange ting som skal vises på rad i søkefeltet, f.eks '8'.", + 'row_padding_between_items' => "Fyll mellom elementer", + 'text_padding_between_items_note' => "I piksler. Horisontal utfylling av mellomrom mellom elementer i søkefeltet, f.eks '3'.", + 'text_category_icon_name_note' => "Tillatte tegn: [a-z] (i nedre tilfelle), [0-9], [_./].", + 'text_folder_note' => "The folder name of the icon pack. Allowed Characters: [a-z] (in lower case), [0-9], [_./].
    MUST add a trailing slash (/) at the end, e.g. 'mycaticon/'", + 'text_multi_language_note' => "Om du vil bruke forskjellige kategoriikoner for forskjellige språk. Hvis satt til 'Ja', sett flere pakker med ikoner i flere mapper kalt 'no', 'chs', osv.", + 'text_second_icon_note' => "Om du bruker andre ikoner for ytterligere informasjon. Hvis satt til 'Ja', legg andre ikoner i en mappe kalt 'additional' sammen med vanlige ikoner.", + 'text_designer_note' => "Personen som laget ikonpakken.", + 'text_comment_note' => "Infomasjon om ikonpakken.", + 'text_icon_directory_note' => "You need to put the icons in the right directory for these settings to work. Put the normal icons in 'pic/category/searchbox_name/icon_pack_folder[language_short_name/]' and the second icons in 'pic/category/searchbox_name/icon_pack_folder[language_short_name/]additional/'.
    Don't get it? See if the following examples could help:
    • When
      • searchbox_name='nhd'
      • icon_pack_folder='scenetorrents/'
      • multi-lang='yes'
      • second_icon='no'
      you should put an English normal icon file for movies (e.g. 'movies.png') in 'pic/category/nhd/scenetorrents/en/' .
    • When
      • searchbox_name='chd'
      • icon_pack_folder='nanosofts/'
      • multi-lang='no'
      • second_icon='yes'
      you should put a normal icon file for movies (e.g. movies.png) in 'pic/category/chd/nanosofts/' and an additional icon file (e.g. 'bdh264.png') in 'pic/category/chd/nanosofts/additional/'.
    ", + 'text_second_icon_name_note' => "Ikke bruk langt navn. Anbefal mindre enn 10 bokstaver.", + 'text_image_note' => "Navnet på bildet. Tillatte tegn: [a-z] (i undersaken), [0-9], [_./].", + 'row_selections' => "Utvalg", + 'text_selections_note' => "Dersom et valg ikke er definert, er alle alternativer fra utvalget tillatt for regelen. Minst ett valg bør defineres.", + 'row_category_name' => "Kategori navn", + 'text_category_name_note' => "Ikke bruk langt navn. Anbefal mindre enn 10 bokstaver.", + 'row_mode' => "Modus", + 'text_class_name_note' => "Verdien av 'klasse' attributtet på bildet. La stå tom hvis ingen. Tillatte tegn: [a-z] (i nedre tilfelle), [0-9], [_]og den første bokstaven må være i [a-z].", + 'std_missing_form_data' => "Manglende skjemadata.", + 'std_invalid_character_in_filename' => "Ugyldig tegn i filnavn ", + 'std_must_define_one_selection' => "Du må definere minst ett valg!", + 'std_invalid_mode_id' => "Ugyldig modus-ID.", + 'row_enable_custom_field' => 'Aktiver egendefinert felt', + 'row_custom_field_display_name' => 'Spesifikke felt visningsnavn', + 'row_custom_field_display' => 'Tilpasset feltevisning', + 'row_custom_field_display_help' => "Use 'specific label' to represent custom field's label and value,such as one custom field's name is 'artist',
    then it's label:<%artist.label%>,it's value:<%artist.value%>", + 'row_searchbox_extras' => 'Extras', +); + +?> diff --git a/lang/nb/lang_cheaterbox.php b/lang/nb/lang_cheaterbox.php new file mode 100644 index 00000000..9fcd1da5 --- /dev/null +++ b/lang/nb/lang_cheaterbox.php @@ -0,0 +1,28 @@ + "Oho!", + 'std_no_suspect_detected' => "Ingen mistenkelig detektert ennå.", + 'head_cheaterbox' => "Cheaterbox", + 'text_cheaterbox' => "Cheaterbox BETA", + 'col_added' => "Lagt", + 'col_suspect' => "Mistenkes", + 'col_hit' => "Slå", + 'col_torrent' => "Torrent", + 'col_ul' => "UL", + 'col_dl' => "DL", + 'col_ann_time' => "På. tid", + 'col_seeders' => "Senere", + 'col_leechers' => "Leechers", + 'col_comment' => "Kommentar", + 'col_dealt_with' => "alt med", + 'col_action' => "Loven.", + 'text_torrent_does_not_exist' => "Torrent finnes ikke eller er slettet", + 'text_yes' => "Ja", + 'text_no' => "Nei", + 'submit_set_dealt' => "Sett falt", + 'submit_delete' => "Slett" +); + +?> diff --git a/lang/nb/lang_checkuser.php b/lang/nb/lang_checkuser.php new file mode 100644 index 00000000..28e56ead --- /dev/null +++ b/lang/nb/lang_checkuser.php @@ -0,0 +1,17 @@ + "Feil", + 'std_no_user_id' => "Ingen bruker med denne IDen!", + 'std_no_permission' => "Du har ikke tilgang", + 'head_detail_for' => "Detaljer for ", + 'text_account_disabled' => "

    Denne kontoen er deaktivert!

    ", + 'row_join_date' => "Bli med dato", + 'row_gender' => "Kjønn", + 'row_email' => "E-post", + 'row_ip' => "IP", + 'submit_confirm_this_user' => "Bekreft denne brukeren" +); + +?> diff --git a/lang/nb/lang_comment.php b/lang/nb/lang_comment.php new file mode 100644 index 00000000..84879dee --- /dev/null +++ b/lang/nb/lang_comment.php @@ -0,0 +1,51 @@ + "Feil", + 'std_comment_flooding_denied' => "Kommenter området. Vennligst vent ", + 'std_before_posting_another' => " sekund(er) før du legger ut en annen kommentar.", + 'std_no_torrent_id' => "Ingen torrent med denne ID'en.", + 'std_no_comment_id' => "Ingen kommentar med denne IDen", + 'std_comment_body_empty' => "Kommenter kroppen kan ikke være tom!", + 'head_add_comment_to' => "Legg til en kommentar i ", + 'text_add_comment_to' => "Legg til en kommentar i ", + 'submit_okay' => "Ok", + 'text_comments_in_reverse_order' => "Nyeste kommentarer, i omvendt rekkefølge\n", + 'std_invalid_id' => "Invalid ID.", + 'std_permission_denied' => "Tillatelse nektet.", + 'head_edit_comment_to' => "Rediger kommentar til ", + 'text_edit_comment_to' => "Rediger kommentar til ", + 'std_delete_comment' => "Slett kommentar", + 'std_delete_comment_note' => "Du er ferd med å slette en kommentar. Klikk\n", + 'std_here_if_sure' => ">her om du er sikker.", + 'head_original_comment' => "Opprinnelig kommentar", + 'text_original_content_of_comment' => "Opprinnelig innhold av kommentar ", + 'std_unknown_action' => "Ukjent handling.", + 'std_no_review_id' => "Ingen omtale med denne IDen", + 'std_review_body_empty' => "Anmeldelse av innholdet kan ikke være tomt!", + 'text_reviews_in_reverse_order' => "

    Siste omtaler, i omvendt rekkefølge

    \n", + 'head_edit_review_to' => "Rediger anmeldelse til ", + 'text_edit_review_to' => "Rediger anmeldelse til ", + 'std_delete_review' => "Slett anmeldelse", + 'std_delete_review_note' => "Du er i ferd med å slette en anmeldelse. Klikk\n", + 'head_original_review' => "Opprinnelig gjennomgang", + 'text_original_content_of_review' => "Opprinnelig innhold av gjennomsynet ", + 'std_unknown_action' => "Ukjent handling.", + 'row_user_comment' => "Bruker Kommentar", + 'row_editor_notes' => "Redaktørens notater", + 'row_bouns_change' => "Bonus endring", + 'text_bouns_change_notes' => " 0 til 1000, Basert på kvaliteten på gjennomgangen (over 1000 vil bli behandlet som 1000 personer, og andre som ikke er i området vil bli behandlet som 0)", + 'std_review_no_external_info' => "Kunne ikke markere kommentarer med ingen ekstern informasjon!", + 'std_review_unmark' => "Fjern avmarkering", + 'std_unmark_review_note' => "Du er i ferd med å fjerne merking fra en anmeldelse. Klikk\n", + 'row_original_torrent' => "Opprinnelig torrent", + 'text_no_exists' => "Ikke finnes noe mer!", + 'text_torrent_id' => " Torrent ID: ", + 'text_back' => "tilbake", + 'text_body' => "Innhold", + 'text_compose' => "Skriv", + 'text_edit' => "Rediger", +); + +?> diff --git a/lang/nb/lang_complains.php b/lang/nb/lang_complains.php new file mode 100644 index 00000000..5b4afa21 --- /dev/null +++ b/lang/nb/lang_complains.php @@ -0,0 +1,33 @@ + 'Klage kontoproblem', + 'text_new_complain' => 'Ny klage', + 'text_new_email' => 'Konto e-post:', + 'text_new_body' => 'Klage Detalj:', + 'text_new_body_placeholder' => "Beskriv problemet her:\nRelatert dokumentasjon er aktuelt: Bilder vises i form av [img=URL]", + 'text_new_submit' => 'Send', + 'text_new_failure' => 'Ugyldig e-post eller tomt passord.', + 'text_created_title' => 'Klage opprettet', + 'text_created_note' => 'Vennligst bokmerk denne siden slik at du kan sjekke oppdateringer senere. IKKE GÅ DETTE DENNE URL TIL ANYBODEN! Ellers ville ikke klagen din bli behandlet.', + 'text_search_account' => 'Søk konto med denne e-posten', + 'text_reply' => 'Svar', + 'text_replies' => 'Følg opp meldinger', + 'text_complainer' => 'Klager', + 'text_added' => 'Tid lagt til', + 'text_no_replies' => 'Ingen meldinger nå', + 'text_closed' => 'Klagen er besvart og låst for nye svar.', + 'text_answer_it' => 'LUKK', + 'text_unanswer_it' => 'ÅPNE', + 'th_complain_at' => 'Klage på', + 'th_complain_account' => 'Klage konto', + 'th_action_view' => 'Vis', + 'pending_complaints' => 'Ventende klager', + 'no_pending_complaints' => 'Ingen ventende klager', + 'complaints_processed' => 'Klager behandlet', + 'no_complaints_have_been_processed' => 'Ingen klager er behandlet', + 'text_view_band_log' => 'Vis bannlysnings logg', + 'reply_notify_subject' => 'Klage svarte', + 'reply_notify_body' => 'Du har et svar på klagen på nettsiden %s, klikk her for å se den.', + 'complain_not_enabled' => 'Klage ikke aktivert', +]; diff --git a/lang/nb/lang_confirm_resend.php b/lang/nb/lang_confirm_resend.php new file mode 100644 index 00000000..87caf529 --- /dev/null +++ b/lang/nb/lang_confirm_resend.php @@ -0,0 +1,37 @@ + "Sende bekreftelses-e-post mislyktes", + 'std_fields_blank' => "Ikke la noen felter være tomme.", + 'std_invalid_email_address' => "Ugyldig e-postadresse!", + 'std_email_not_found' => "E-postadressen ble ikke funnet i databasen.\n", + 'std_user_already_confirm' => "Bruker bruker denne e-postadressen er allerede bekreftet.\n", + 'std_passwords_unmatched' => "Passordene stemte ikke! Musta har typoet. Prøv Igjen.", + 'std_password_too_short' => "Beklager, passordet er for kort (min er 6 tegn)", + 'std_password_too_long' => "Beklager, passordet er for langt (maks 40 tegn)", + 'std_password_equals_username' => "Beklager, passordet kan ikke være det samme som brukernavn.", + 'std_error' => "Feil", + 'std_database_error' => "Databasefeil. Vennligst kontakt en administrator om dette.", + 'text_resend_confirmation_mail_note' => "

    Send bekreftelse på nytt

    Bruk skjemaet nedenfor for å få din bekreftelse på e-post til deg.

    Du må være registrert innen 1 dag og ikke være bekreftet,
    ellers kan din ventende konto bli slettet og du bør registrere deg på nytt.

    Merk: %s mislykkede forsøk på rad vil føre til at du utestenger din ip!

    ", + 'row_registered_email' => "Registrert e-post: ", + 'row_new_password' => "Nytt passord: ", + 'text_password_note' => "Minimum er 6 tegn", + 'row_enter_password_again' => "Angi passord igjen: ", + 'submit_send_it' => "Sende den!", + 'text_you_have' => "Du har ", + 'text_remaining_tries' => " gjenstående prøvinger.", + + 'mail_title' => " Brukerregistrering bekreftelse (Re-Send)", + 'mail_this_link' => "DETTE LINK", + 'mail_here' => "HER", + 'mail_one' => "Hi ", + 'mail_two' => ",

    Du har bedt om en ny bekreftelse på %s og du har
    oppgitt denne adressen ", + 'mail_three' => " som bruker kontakt.

    Hvis du ikke har gjort dette, kan du ignorere denne e-posten. Personen som skrev inn
    -adressen hadde IP-adressen din ", + 'mail_four' => ". Please do not reply.

    To confirm your user registration, you have to follow ", + 'mail_four_1' => "

    Hvis lenken over er ødelagt eller utløpt, prøv å sende en ny bekreftelse på nytt fra ", + 'mail_five' => "

    After you do this, you will be able to use your new account. If you fail to
    do this, your account will be deleted within 24 hours. We urge you to read
    the RULES and FAQ before you start using %s.

    Please Note: If you did not register for %s, please report this email to %s

    ------
    Yours,
    The %s Team.", + 'text_select_lang' => "Velg nettstedsspråk: ", + 'std_need_admin_verification' => "Kontoen trenger manuell verifisering av administratorer." +); +?> diff --git a/lang/nb/lang_contactstaff.php b/lang/nb/lang_contactstaff.php new file mode 100644 index 00000000..10fb659f --- /dev/null +++ b/lang/nb/lang_contactstaff.php @@ -0,0 +1,12 @@ + "Kontakt ansatte", + 'text_message_to_staff' => "Send melding til ansatte", + 'row_subject' => "Emne", + 'row_body' => "Innhold", + 'submit_send_it' => "Sende den!" +); + +?> \ No newline at end of file diff --git a/lang/nb/lang_delete.php b/lang/nb/lang_delete.php new file mode 100644 index 00000000..d83a220d --- /dev/null +++ b/lang/nb/lang_delete.php @@ -0,0 +1,17 @@ + "Sletting mislyktes!", + 'std_missing_form_date' => "manglende skjemadata", + 'std_not_owner' => "Du er ikke eieren! Hvordan skjedde det?", + 'std_invalid_reason' => "Ugyldig årsak ", + 'std_describe_violated_rule' => "Beskriv den bryter regelen.", + 'std_enter_reason' => "Angi årsaken til sletting av denne torrenten", + 'head_torrent_deleted' => "Torrent slettet!", + 'text_go_back' => "Gå tilbake til hvor du kom", + 'text_back_to_index' => "Tilbake til indeks", + 'text_torrent_deleted' => "Torrent slettet!" +); + +?> diff --git a/lang/nb/lang_deletedisabled.php b/lang/nb/lang_deletedisabled.php new file mode 100644 index 00000000..e47509c2 --- /dev/null +++ b/lang/nb/lang_deletedisabled.php @@ -0,0 +1,12 @@ + "Slett deaktiverte", + 'text_delete_diasabled' => "Slett deaktiverte", + 'submit_delete_all_disabled_users' => "Slett alle deaktiverte brukere", + 'text_delete_disabled_note' => "Hvis du klikker på følgende knapp, vil alle funksjonshemmede brukere på nettstedet ditt være SLETTET. ALDRI klikk knappen med mindre du er SVÆRT.", + 'text_users_are_disabled' => " brukere er slettet." +); + +?> diff --git a/lang/nb/lang_deletemessage.php b/lang/nb/lang_deletemessage.php new file mode 100644 index 00000000..23a77f48 --- /dev/null +++ b/lang/nb/lang_deletemessage.php @@ -0,0 +1,12 @@ + "Ugyldig meldings-ID", + 'std_not_suggested' => "Jeg ville ikke gjøre det hvis jeg var deg...", + 'std_not_in_inbox' => "Meldingen er ikke i innboksen.", + 'std_not_in_sentbox' => "Meldingen er ikke i Sentbox.", + 'std_unknown_pm_type' => "Ukjent PM type." +); + +?> \ No newline at end of file diff --git a/lang/nb/lang_details.php b/lang/nb/lang_details.php new file mode 100644 index 00000000..2db2275f --- /dev/null +++ b/lang/nb/lang_details.php @@ -0,0 +1,247 @@ + "Feil", + 'std_no_torrent_id' => "Ingen torrent med denne IDen", + 'head_details_for_torrent' => "Detaljer for torrent ", + 'text_successfully_uploaded' => "Lastet opp!", + 'text_redownload_torrent_note' => "You should re-download the torrent and start seeding now.", + 'text_successfully_edited' => "Redigert!", + 'text_go_back' => "Gå tilbake til ", + 'text_whence_you_came' => "hvor du kom", + 'text_rating_added' => "Vurdering lagt til!", + 'text_thanks_added' => "Ditt takk lagt til!", + 'text_free' => "Gratis", + 'text_two_times_up' => "2X", + 'text_free_two_times_up' => "2X Gratis", + 'text_half_down' => "50%", + 'row_download' => "Nedlasting", + 'text_downloading_not_allowed' => "Du har ikke tillatelse til å laste ned.", + 'row_small_description' => "Liten beskrivelse", + 'row_info_hash' => "Info hash", + 'row_description' => "Beskrivelse", + 'text_nfo' => "NFO", + 'text_view_nfo' => "[Alle modder]", + 'row_imdb_url' => "IMDb URL", + 'row_subtitles' => "Undertekster", + 'text_no_subtitles' => "Ingen undertekster tilgjengelig for denne torrenten", + 'submit_upload_subtitles' => "Last opp Undertittel!", + 'row_info' => " Informasjon", + 'text_imdb' => "IMDb", + 'text_lastfm' => "Last.fm", + 'text_douban' => "Dobbelt", + 'text_not_ready' => " info er ikke klar, klikk ", + 'text_here_to_retrieve' => "her å hente fra ", + 'text_someone_has_requested' => "Noen har bedt om å hente informasjon fra ", + 'text_please_be_patient' => " for flere sekunder siden, vennligst vær tålmodig.", + 'text_information' => "Informasjon:", + 'text_title' => " Tittel: ", + 'text_title_chinese' => "Kinesisk tittel: ", + 'text_also_known_as' => " Også kjent som: ", + 'text_year' => " År: ", + 'text_runtime' => " Kjøretid: ", + 'text_mins' => " min", + 'text_votes' => " Stemmer: ", + 'text_rating' => " Vurdering: ", + 'text_language' => " Språk: ", + 'text_country' => " Land: ", + 'text_all_genres' => " Alle sjangere: ", + 'text_tagline' => " Tagline: ", + 'text_director' => " Direktør: ", + 'text_written_by' => " Skrevet av: ", + 'text_performed_by' => " Utført av: ", + 'text_offcial_site' => " Offisielt nettsted: ", + 'text_imdb_link' => " IMDb Link: ", + 'text_produced_by' => " Produsert av: ", + 'text_music' => " Musikk: ", + 'text_plot_outline' => " Plott omris:", + 'text_cast' => " Slokk:", + 'text_as' => " som ", + 'text_recommended_comment' => " Anbefalt kommentar:", + 'text_information_updated_at' => "

    MERK: Denne infomasjonen oppdateres ved ", + 'text_might_be_outdated' => " og kan være utdatert nå, klikk ", + 'text_here_to_update' => "her for å oppdatere utdatert informasjon", + 'text_network_error' => "Advarsel! Nettverksbetingelsen tillater ikke henting av informasjon fra IMDb flyr", + 'text_avprogress' => "Gjennomsnittlig fremgang: ", + 'row_type' => "Type:", + 'text_none_selected' => "(ingen valgt)", + 'text_source' => "Kilde:", + 'text_codec' => "Kodek:", + 'text_stardard' => "Standard:", + 'text_processing' => "Behandler:", + 'row_quality' => "Kvalitet", + 'col_type' => "Type:", + 'col_name' => "Navn", + 'col_quality' => "Kvalitet", + 'title_size' => "Størrelse", + 'title_time_added' => "Tid lagt til", + 'title_seeders' => "Senere", + 'title_leechers' => "Leechers", + 'col_special' => "Reklame?", + 'text_normal' => "normal", + 'row_other_copies' => "Andre kopier", + 'row_last_seeder' => "Siste handling: ", + 'text_ago' => " siden", + 'text_size' => "Størrelse: ", + 'text_none_yet' => "ingen ennå (trenger minst %s stemmer og har mottatt ", + 'text_only' => "bare ", + 'text_none' => "ingen", + 'text_no_votes_yet' => "Ingen stemmer ennå", + 'text_invalid' => "ugyldig?", + 'text_out_of_five_with' => " av 5 med ", + 'text_votes_total' => " stemmer totalt", + 'text_login_to_vote' => "Logg inn for å vurdere den", + 'select_add_rating' => "(legg til vurdering)", + 'submit_vote' => "Stem!", + 'text_rating' => "Vurdering: ", + 'row_time' => "Tid", + 'row_hot_meter' => "Hot måler", + 'text_views' => "Visninger: ", + 'text_hits' => "Treff: ", + 'text_snatched' => "Nappet: ", + 'text_view_snatches' => " x
    time(s)", + 'text_average_speed' => "Gjennomsnittlig hastighet: ", + 'text_total_speed' => "Total hastighet: ", + 'text_health_note' => "(Dette er i gjennomsnitt over tid, så det er ikke slik nøyaktig)", + 'text_traffic' => "Trafikk: ", + 'text_no_traffic' => "Ingen trafikk for momentet", + 'text_status' => "Status: ", + 'text_dead' => "død", + 'row_health' => "Helse", + 'text_anonymous' => "Anonym", + 'text_edit_torrent' => "Rediger", + 'text_edit_and_delete_torrent' => "Rediger/slett", + 'title_edit_torrent' => "Klikk til Rediger eller Slett denne torrenten", + 'row_upped_by' => "Lastet opp av", + 'text_click' => "Click ", + 'text_num_files' => "Antall filer: ", + 'text_see_full_list' => "[Vis full liste]", + 'text_files' => " filer", + 'row_file_list' => "Liste over filer", + 'text_hide_list' => "[Skjul liste]", + 'row_action' => "Handling", + 'text_download_torrent' => "Last ned torrent", + 'text_download_paid_torrent' => "Last ned torrent(annonsering vil trekke fra bonus: %s)", + 'text_download_bought_torrent' => "Last ned torrent(kjøpt)", + 'title_download_torrent' => "Last ned torrent", + 'text_ask_for_reseed' => "Be om en reseed", + 'title_ask_for_reseed' => "Spør plukket opp brukere i som lander når er ingen seeder", + 'text_report_torrent' => "Rapporter torrent", + 'title_report_torrent' => "Rapporter torrent for bryter reglene om ", + 'text_here' => "her", + 'row_peers' => "Likemenn", + 'text_seeders' => " Sesong", + 'text_leechers' => " Leecher", + 'text_peers_total' => " Tittel(er) totalt", + 'row_seeders' => "Senere", + 'row_leechers' => "Leechers", + 'submit_say_thanks' => "Si Takk!", + 'submit_you_said_thanks' => "Du Betalt Takk!", + 'text_no_thanks_added' => "ingen takk lagt til ennå", + 'row_thanks_by' => "Takk av", + 'row_torrent_info' => "Torrent info", + 'text_torrent_structure' => "Struktur: ", + 'text_torrent_info_note' => "[Vis struktur]", + 'head_comments_for_torrent' => "Kommentarer for torrent ", + 'text_comments_for' => "Kommentarer for ", + 'text_snatch_detail_for' => "Snakke detaljer for ", + 'text_users_top_finished_recently' => "Brukerne på toppen avsluttet nedlastingen sist", + 'col_username' => "Brukernavn", + 'col_uploaded' => "Opplastet", + 'col_downloaded' => "Nedlastet", + 'col_when_completed' => "Når fullført", + 'col_last_action' => "Siste handling", + 'col_seeding' => "Deler", + 'col_pm_user' => "PM bruker", + 'col_report_user' => "Rapporter bruker", + 'col_on_or_off' => "På/Av", + 'text_global' => "Globalt", + 'text_torrent' => "Torrent", + 'text_yes' => "Ja", + 'text_no'=> "Nei", + 'text_add_a_comment' => "Legg til kommentar", + 'text_no_comments_yet' => "Ingen kommentarer ennå", + 'text_quick_comment' => "Hurtig kommentar", + 'submit_add_comment' => "Legg til Kommentar", + 'title_pm' => "Sende PM", + 'title_report' => "Rapporter", + 'title_online' => "Pålogget", + 'title_offline' => "Frakoblet", + 'select_kewl' => "Kewl!", + 'select_pretty_good' => "Ganske bra", + 'select_decent' => "Forhold", + 'select_pretty_bad' => "Fret dårlig", + 'select_sucks' => "Sukker!", + 'text_lastfm_not_ready' => "Last.fm info er ikke klar, klikk ", + 'text_biography' => "Biografi", + 'text_tags' => "Stikkord:", + 'text_similiar_artists' => "Similiar Kunstnere:", + 'text_may_also_like' => "Kan også like:", + 'text_top_albums' => "Topp Albumer:", + 'text_listener' => " Lytter", + 'text_scrobbled' => " Spillforsøk", + 'text_album' => " album", + 'text_album_name' => "Navn: ", + 'text_track_number_info' => "Spor: ", + 'text_release_date' => "Utgivelsesdato: ", + 'text_label' => "Etikett: ", + 'text_track_list' => "Liste over spor: ", + 'text_track_number' => "#   ", + 'text_track_name' => "Spor Navn", + 'text_track_duration' => "Varighet", + 'text_track_listener' => "Lytter", + 'text_ratings_legend' => "Forklaring: ", + 'text_points' => " poeng", + 'text_totalvotes' => " stemmer", + 'text_author' => "Forfatter: ", + 'text_from' => "fra", + 'h1_user_reviews' => "Valgte brukeres produktomtaler", + 'h1_critic_reviews' => "Filmkritikernes anmeldelser", + 'h1_user_comments' => "Bruk kommentarer", + 'text_local_link' => "Lokal Link", + 'text_at' => " på ", + 'row_basic_info' => "Grunnleggende info", + 'text_site_rating' => " Vurdering", + 'text_blank' => " ", + 'text_creator' => "Forfatter: ", + 'submit_search_at_shooter' => "Søk i skytespill", + 'submit_search_at_opensubtitles' => "Søk i Opensubtitles", + 'title_show_or_hide' => "Vis eller Skjul", + 'title_bookmark' => "Bokmerke", + 'text_album_information' => "Album informasjon: ", + 'text_about_album' => "Om dette albumet: ", + 'text_artist' => " Kunstner", + 'text_artist_name' => "Kunstner: ", + 'text_medium' => "Middels:", + 'text_team' => "Lag:", + 'text_audio_codec' => "Lyd Codec:", + 'text_delete' => "Slett", + 'text_other_copies' => " Andre kopier", + 'row_uploader_bandwidth' => "Opplaster
    båndbredde", + 'text_and_more' => " og mer (takk fra ", + 'text_users_in_total' => " brukere totalt)", + 'torrent_dl_url' => "Torrent URL", + 'torrent_dl_url_notice' => "Du kan kopiere den til din BT-klient. Kun gyldig i dag.", + 'torrent_dl_url_text' => "Høyreklikk for å vise.", + 'span_description_have_given' =>'Du har gitt magien av verdien', + 'text_no_magic_added' => "Ingen magisk verdi av prisen", + 'magic_value_number' => "Nummer Magisk punktverdi er presentert", + 'magic_value_award' => "Magisk verdi av priser", + 'magic_newest_record' =>'Her er bare den seneste posten. ', + 'magic_sum_user_give_number' => 'Antall medlemmer fikk den magiske prisen fullstendig', + 'magic_show_all_description' => 'Vis detaljer om en enkelt', + 'magic_haveGotBonus' => 'Utgiver er nå tildelt bonus for antall priser.', + 'magic_have_no_enough_bonus_value' => 'flere poeng nødvendig', + 'claim_already' => 'Påtatt', + 'claim_now' => 'Claim', + 'claim_info' => 'Allerede påtatt av %s brukere, %s plass igjen.', + 'claim_detail' => 'Krev detaljer', + 'claim_label' => 'Hent torrent', + 'claim_confirm' => 'Er du sikker på at du vil kreve denne torrenten?', + 'action_approval' => 'Godkjenning', + 'row_tags' => 'Tagger', + 'torrent_existed' => 'Torrent allerede lastet opp!', +); + +?> diff --git a/lang/nb/lang_docleanup.php b/lang/nb/lang_docleanup.php new file mode 100644 index 00000000..c548de8a --- /dev/null +++ b/lang/nb/lang_docleanup.php @@ -0,0 +1,9 @@ + 'Gjør opprydding', + 'running' => 'opprydding pågår...vennligst vent', + 'force' => 'Hvis du trenger å tvinge en fullstendig rengjøring, klikkher', + 'time_consumed' => 'Tid brukt:%f sek', + 'done' => 'Ferdig', +]; diff --git a/lang/nb/lang_donate.php b/lang/nb/lang_donate.php new file mode 100644 index 00000000..fe0ebb3d --- /dev/null +++ b/lang/nb/lang_donate.php @@ -0,0 +1,31 @@ + "Beklager", + 'std_do_not_accept_donation' => "Vi godtar ikke donasjon for øyeblikket.", + 'std_success' => "Vellykket", + 'std_donation_success_note_one' => "Takk for din donasjon! Din transaksjon er fullført. Klikk ", + 'std_here' => "her", + 'std_donation_success_note_two' => " for å sende oss transaksjonsinformasjonen så vi kan kreditere din konto!", + 'head_donation' => "Donasjon", + 'text_donate' => "Doner", + 'std_error' => "Feil", + 'std_no_donation_account_available' => "Ingen donasjonskontoer er definert. Vennligst rapporter dette til de ansatte.", + 'text_donation_note' => "Takk for din interesse i å donere. Alt du kunne donere ville vært takknemlig mottatt uansett hvor lite.", + 'text_donate_with_paypal' => "Doner med PayPal", + 'text_donate_paypal_note' => "1. Velg ditt donasjonsbeløp.
    2. Klikk på PayPal-knappen.
    3. Fullfør betalingen på PayPal.", + 'text_select_donation_amount' => "Vennligst velg et donasjonsbeløp: ", + 'select_choose_donation_amount' => "---Velg donasjon beløp---", + 'select_other_donation_amount' => "Annet donasjonsbeløp", + 'text_usd_mark' => "$", + 'text_donation' => " Donasjon", + 'text_donate_with_alipay' => "Doner med Alipay", + 'text_donate_alipay_note_one' => "1. Klikk på Alipay-knappen.
    2. Velg 'betal til stranger'.
    3. Angi vår konto på Alipay ", + 'text_donate_alipay_note_two' => " og betal den.
    4. Gå helt til du er ferdig.", + 'text_after_donation_note_one' => "Etter at du har donert, sørg for å ", + 'text_send_us' => "Send oss", + 'text_after_donation_note_two' => " transaksjonsinformasjonen så vi kan kreditere din konto!", +); + +?> diff --git a/lang/nb/lang_download.php b/lang/nb/lang_download.php new file mode 100644 index 00000000..9f8fedb0 --- /dev/null +++ b/lang/nb/lang_download.php @@ -0,0 +1,5 @@ + "Last ned varsel", + 'text_client_banned_notice' => "Klienten bannlyste varsel", + 'text_client_banned_note' => "Hei!
    tracker har oppdaget at du har brukt en utestengt BitTorrent klient i den siste tilkoblingen. Vennligst les følgende kunngjøring.", + 'text_low_ratio_notice' => "Varsel om lav forholdstall", + 'text_low_ratio_note_one' => "ADVARSEL: Forholdet ditt er lavt! Du må forbedre det innen ", + 'text_low_ratio_note_two' => ", or you will lose your membership here. If you have no idea what your ratio is, read the following notice carefully.", + 'text_first_time_download_notice' => "Kunngjøring om førstegangsnedlasting", + 'text_first_time_download_note' => "Hei!
    Sjanser er det din første gang laster ned en torrent fra vår tracker.
    Det er sannsynligvis noen ting du bør vite før du fortsetter. Jeg vil prøve å gjøre denne korte :)", + 'text_this_is_private_tracker' => "Dette er en privat tracker med ratiokrav", + 'text_private_tracker_note_one' => "Dette er en privat sporer, som betyr at vi beholder tracker for eksklusive bruken av våre registrerte medlemmer. ", + 'text_learn_more' => "Lær mer om privat tracker på ", + 'text_nexuswiki' => "NexusWiki", + 'text_private_tracker_note_two' => "You MUST keep a minimum required upload-to-download ratio, or you will lose your membership here. ", + 'text_see_ratio' => "Se forholdskravet i ", + 'text_private_tracker_note_three' => "Din nåværende ratio vises alltid rett under navigasjonsmenyen til nettstedet. Vennligst behold et øye på nettstedet.", + 'text_private_tracker_note_four' => "How to keep a good ratio?
    Well, the best way is to always leave your BitTorrent client running and keep on seeding the torrents you've downloaded until you delete the files.", + 'text_use_allowed_clients' => "Bruk kun tillatte BitTorrent-klienter", + 'text_allowed_clients_note_one' => "Well, there are quite a few BitTorrent clients out there. However, we ONLY accept some of them. Others (e.g. qbittorrentEE, Thunder) are banned here and would fail to connect our tracker. ", + 'text_allowed_clients_note_two' => "Du finner en fullstendig liste over tillatte klienter i ", + 'text_allowed_clients_note_three' => ". Hvis du ikke er sikker på hvem du skal velge, vurder følgende to anbefalte klienter: ", + 'title_download' => "Nedlasting ", + 'text_for' => "Til ", + 'text_for_more_information_read' => "For mer informasjon, henvises det til ", + 'text_rules' => "Regler", + 'text_and' => " og ", + 'text_faq' => "OSS", + 'text_let_me_download' => "Jeg vil forbedre forholdet mitt. ", + 'text_notice_not_show_again' => "Ikke vis dette varselet igjen. ", + 'text_notice_always_show' => "Denne kunngjøringen vil alltid vise inntil du har forbedret forholdet ditt. ", + 'submit_download_the_torrent' => "Last ned Torrent", +); + +?> diff --git a/lang/nb/lang_edit.php b/lang/nb/lang_edit.php new file mode 100644 index 00000000..0ea9cfbc --- /dev/null +++ b/lang/nb/lang_edit.php @@ -0,0 +1,74 @@ + "Rediger torrent - ", + 'text_cannot_edit_torrent' => "Kan ikke redigere denne torrenten", + 'text_cannot_edit_torrent_note' => "You're not the rightful owner, or you're not logged in properly.\n", + 'row_torrent_name' => "Torrent navn", + 'row_small_description' => "Liten beskrivelse", + 'row_nfo_file' => "NFO fil", + 'radio_keep_current' => "Behold nåværende", + 'radio_update' => "Oppdater", + 'radio_remove' => "Fjern", + 'row_description' => "Beskrivelse", + 'row_type' => "Type:", + 'text_source' => "Kilde:", + 'select_choose_one' => "velg en", + 'text_codec' => "Kodek:", + 'text_standard' => "Standard:", + 'text_processing' => "Behandler:", + 'row_quality' => "Kvalitet", + 'text_quality_note' => "Velg bare for Video", + 'row_visible' => "Synlig", + 'checkbox_visible' => "Synlig på hovedsiden", + 'text_visible_note' => "Legg merke til at torrenten blir automatisk synlig når en frø, og vil bli automatisk usynlig (død) når det ikke har vært seeder en stund. Bruk denne bryteren for å øke hastigheten på prosessen manuelt. Vær også oppmerksom på at usynlige (døde) torrenter fortsatt kan ses eller søkes etter, det er ikke bare standardfestet.", + 'row_anonymous_uploader' => "Anonym", + 'checkbox_anonymous_note' => "Merk av i denne boksen for å skjule opplastingen av torrenten", + 'row_special_torrent' => "Forfremmelse", + 'select_use_global_setting' => "bruk global innstilling", + 'select_forever' => "for alltid", + 'select_until' => "til", + 'text_keep_current' => "beholde nåværende", + 'text_ie_for' => "for ", + 'text_promotion_until_note' => "(Tidsformat er ÅÅÅÅ-MM-DD tt:mmss)", + 'select_normal' => "normal", + 'select_free' => "gratis", + 'select_two_times_up' => "2 x opp", + 'select_free_two_times_up' => "gratis og 2x opp", + 'select_half_down' => "50 % lavere", + 'select_choose_torrent_state' => "Angi torrent på kampanje", + 'row_torrent_position' => "Torrent Posisjon", + 'row_recommended_movie' => "Anbefalt Film", + 'select_choose_recommended_movie' => "Velg om plakaten til en filmtorrent vil bli vist på hovedsiden", + 'select_hot' => "varmt", + 'select_classic' => "klassisk", + 'select_recommended' => "anbefalt", + 'select_sticky' => "klissete", + 'select_choose_if_sticky' => "Velg om torrenten skal være klebrig på torrenter siden", + 'row_banned' => "Utestengt", + 'checkbox_banned' => "Utestengt", + 'submit_edit_it' => "Rediger den!", + 'submit_revert_changes' => "Tilbakestill endringer", + 'text_delete_torrent' => "Slett torrent - Årsak:", + 'radio_dead' => "Død", + 'text_dead_note' => " 0 seeders + 0 pekere = 0 mottakere totalt", + 'radio_dupe' => "Dupe", + 'radio_nuked' => "Nuked", + 'radio_rules' => "Regler", + 'text_req' => "(refett)", + 'radio_other' => "Annet", + 'submit_delete_it' => "Slett ", + 'text_move_to_browse' => "Flytt til Torrents som ", + 'text_move_to_special' => "Flytt til Spesiell seksjonen som ", + 'text_medium' => "Middels:", + 'row_pick' => "Velg", + 'row_check' => "Sjekk", + 'text_team' => "Gruppe", + 'text_audio_codec' => "Lyd Codec", + 'row_content' => "Innhold", + 'ban_reason_label' => 'Grunn', + 'fill_quality' => 'Fyll kvaliteten', +); + +?> diff --git a/lang/nb/lang_faq.php b/lang/nb/lang_faq.php new file mode 100644 index 00000000..a0f104bf --- /dev/null +++ b/lang/nb/lang_faq.php @@ -0,0 +1,12 @@ + "OSS", + 'text_welcome_to' => "Velkommen til ", + 'text_welcome_content_one' => "Målet er å gi de helt gode kvalitetstettene. Derfor er kun spesialautoriserte brukere tillatelse til å laste opp torrenter. Hvis du har tilgang til 0-dagers ting ikke nøl med å ta kontakt med oss!

    Dette er en privat sporing og du må registrere deg før du får full tilgang til nettstedet.", + 'text_welcome_content_two' =>" Før du gjør noe her på %sforeslår vi at du leser reglene! Det er bare noen regler å ha fulgt, men vi håndhever dem!

    Før du går videre, bør du lese brukeravtalen %s .", + 'text_contents' => "Innhold", +); + +?> diff --git a/lang/nb/lang_fastdelete.php b/lang/nb/lang_fastdelete.php new file mode 100644 index 00000000..d3221e18 --- /dev/null +++ b/lang/nb/lang_fastdelete.php @@ -0,0 +1,13 @@ + "Sletting mislyktes!", + 'std_missing_form_data' => "manglende skjemadata", + 'text_no_permission' => "Du er ikke autorisert til å slette denne torrenten, bare moderatorer eller ovenfor kan gjøre det. Vennligst kontakt en om dette er din torrent og du vil slette den.\n", + 'std_delete_torrent' => "Slett torrent", + 'std_delete_torrent_note' => "Sannsynlighetskontroll: Du er i ferd med å slette en torrent. Klikk", + 'std_here_if_sure' => " here if you are sure." +); + +?> diff --git a/lang/nb/lang_fields.php b/lang/nb/lang_fields.php new file mode 100644 index 00000000..3396f863 --- /dev/null +++ b/lang/nb/lang_fields.php @@ -0,0 +1,31 @@ + 'Tilpasset feltbehandling', + 'text_manage' => 'Administrer', + 'text_add' => 'Legg til', + 'text_field' => 'Felt', + 'text_delete' => 'Slett', + 'text_edit' => 'Rediger', + 'col_id' => 'ID', + 'col_name' => 'Navn', + 'col_name_help' => 'Kun tillat siffer, inneholde bokstaver, understreking', + 'col_label' => 'Vis etikett', + 'col_type' => 'Type:', + 'col_required' => 'Påkrevd', + 'col_help' => 'Hjelp tekst', + 'col_options' => 'Alternativer', + 'col_options_help' => 'Kreves når typen er radio, sjekkboks, valg. En linje, et alternativ, format: verdi° vist tekst', + 'col_action' => 'Handling', + 'col_is_single_row' => 'Vise på en enkelt rad', + 'js_sure_to_delete_this' => 'Sikker på at du vil slette?', + 'submit_submit' => 'Send', + 'field_type_text' => 'Kort tekst', + 'field_type_textarea' => 'Lang tekst', + 'field_type_radio' => 'Horisontalt enkelt valg', + 'field_type_checkbox' => 'Horisontal flere valg', + 'field_type_select' => 'Vertikalt enkeltvalg', + 'field_type_image' => 'Bilde', + 'col_display' => 'Tilpasset skjerm', + +]; diff --git a/lang/nb/lang_forummanage.php b/lang/nb/lang_forummanage.php new file mode 100644 index 00000000..94e9f526 --- /dev/null +++ b/lang/nb/lang_forummanage.php @@ -0,0 +1,38 @@ + "Forum Ledelse", + 'text_forum_management' => "Forum Ledelse", + 'text_edit_forum' => "Rediger forum", + 'row_forum_name' => "Forum navn", + 'row_forum_description' => "Forum beskrivelse", + 'row_overforum' => "Overforum", + 'row_moderator' => "Moderator", + 'text_moderator_note' => "Maks 3 moderatorer. Skill dem med ','.", + 'row_minimum_read_permission' => "Minste lesetilgang", + 'row_minimum_write_permission' => "Minimum skrivetilgang", + 'row_minimum_create_topic_permission' => "Minste tillatte opprettelsestilbud for emnet", + 'row_forum_order' => "Forum Rekkefølge", + 'text_forum_order_note' => "Bestill etter tall ascendantly. Det er 0 som vises øverst", + 'submit_edit_forum' => "Rediger forum", + 'text_no_records_found' => "Beklager, ingen poster ble funnet!", + 'text_add_forum' => "Legg til Forum", + 'text_make_new_forum' => "Lag nytt forum", + 'submit_overforum_management' => "Overforum administrasjon", + 'submit_add_forum' => "Legg til Forum", + 'col_name' => "Navn", + 'col_overforum' => "Overforum", + 'col_read' => "Les", + 'col_write' => "Skriv", + 'col_create_topic' => "Opprett emne", + 'col_moderator' => "Moderator", + 'col_modify' => "Endre", + 'text_not_available' => "N/A", + 'text_edit' => "Rediger", + 'text_delete' => "Slett", + 'js_sure_to_delete_forum' => "Er du sikker på at du vil slette dette forumet?", + 'submit_make_forum' => "Lag forum" +); + +?> diff --git a/lang/nb/lang_forums.php b/lang/nb/lang_forums.php new file mode 100644 index 00000000..03c4ed6c --- /dev/null +++ b/lang/nb/lang_forums.php @@ -0,0 +1,204 @@ + "Det er ingen aktiv bruker i forumet nå.", + 'text_stats' => "Statistikk", + 'text_our_members_have' => "Våre medlemmer har laget ", + 'text_posts_in_topics' => " innlegg i ", + 'text_in_topics' => " Emner. ", + 'text_there' => "Der ", + 'text_online_user' => " Pålogget bruker", + 'text_in_forum_now' => " i forum nå. ", + 'std_no_post_found' => "Ingen innlegg funnet", + 'text_quick_jump' => "Hurtig hopp: ", + 'submit_go' => "Go!", + 'std_bad_forum_id' => "Ugyldig forumid", + 'text_new_topic_in' => "Nytt emne i", + 'text_forum' => "forum", + 'std_forum_error' => "Forum feil", + 'std_topic_not_found' => "Emne ikke funnet.", + 'text_reply_to_topic' => "Svar til emne: ", + 'text_compose' => "Skriv", + 'std_error' => "Feil", + 'std_no_post_id' => "Ingen innlegg med denne IDen", + 'submit_submit' => "Send", + 'submit_preview' => "Forhåndsvisning", + 'text_tags' => "Tagger", + 'text_smilies' => "Smilefjes", + 'text_ten_last_posts' => "10 siste poster, i omvendt rekkefølge", + 'text_by' => "av ", + 'text_at' => "på ", + 'head_edit_forum' => "Rediger forum", + 'text_edit_forum' => "Rediger forum", + 'row_forum_name' => "Forum Navn", + 'row_description' => "Beskrivelse", + 'row_permission' => "Tillatelse", + 'text_minimum' => "Minimum ", + 'select_minimum_class_view' => "Klasse kreves for å vise
     Minimum", + 'select_minimum_class_post' => "Klasse kreves for Post
     Minimum", + 'select_minimum_class_topic' => "Klasse kreves for å opprette emner", + 'std_no_forum_id' => "Forum ID ikke funnet.", + 'std_must_specify_forum_name' => "Du må spesifisere et navn for forumet.", + 'std_must_provide_forum_description' => "Du må gi en beskrivelse for dette forumet.", + 'head_delete_forum' => "Slett forum", + 'text_warning' => "** ADVARSEL! **", + 'text_deleting_forum_id' => "Sletter forum-ID ", + 'text_will_also_delete' => " vil også slette ", + 'text_posts_in' => "innlegg i ", + 'text_topics' => " Emner. ", + 'text_accept' => "GODTA", + 'text_cancel' => "AVBRYT", + 'std_unauthorised_performing_action' => "Du er ikke autorisert til å utføre denne handlingen!", + 'head_new_topic' => "Nytt emne", + 'std_must_enter_subject' => "Du må skrive inn en overskrift.", + 'std_subject_limited' => "Emnet er begrenset. Vennligst forkorte emnet ditt", + 'std_bad_topic_id' => "Ugyldig emnet-ID", + 'std_sorry' => "Sorry...", + 'std_unauthorized_to_post' => "Du har ikke tilgang til Post. Les (Innboks)", + 'std_permission_denied' => "Tillatelse nektet.", + 'std_no_body_text' => "Ingen brødtekst tekst.", + 'std_post_flooding' => "Post flomkodingen er ikke tillatt. Vennligst vent ", + 'std_seconds_before_making' => " sekunder før du lager en ny post.", + 'std_no_topic_id_returned' => "Ingen emnel-ID returnert", + 'std_topic_locked' => "Dette emnet er låst.", + 'std_post_id_not_available' => "Del id n/a", + 'std_unpermitted_viewing_topic' => "Du har ikke tilgang til å se dette emnet.", + 'text_prev' => "Forrige", + 'text_next' => "Neste", + 'head_view_topic' => "Vis emne", + 'text_forums' => " Forum", + 'text_ago' => " siden", + 'text_quote' => "Sitat", + 'text_last_edited_by' => "Sist endret av ", + 'text_last_edit_at' => " på ", + 'text_posts' => "Poster: ", + 'text_ul' => "UL: ", + 'text_dl' => "da: ", + 'text_ratio' => "Ratio: ", + 'text_class' => "Klasse:", + 'text_back_to_top' => "Tilbake til toppen", + 'title_sticky' => "Klissete", + 'submit_sticky' => "Klissete", + 'submit_unsticky' => "Løsne", + 'submit_unlock' => "Lås opp Emne", + 'submit_lock' => "Lås Emne", + 'submit_delete_topic' => "Slette Emne", + 'text_rename_topic' => "Endre tema:", + 'submit_okay' => "Ok", + 'text_move_thread_to' => "Flytt denne tråden til:", + 'submit_move' => "Flytt", + 'text_topic_locked_new_denied' => "

    Dette emnet er låst; ingen nye innlegg er tillatt.

    ", + 'text_unpermitted_posting_here' => "

    Du kan ikke publisere i dette forumet.

    ", + 'head_post_reply' => "Publiser svar", + 'std_forum_not_found' => "Forumet ble ikke funnet.", + 'std_cannot_get_posts_count' => "Kunne ikke hente innlegg teller.", + 'std_delete_topic' => "Slett emne", + 'std_delete_topic_note' => "Sannhet sjekk: Du er i ferd med å slette et emne. Klikk ", + 'std_here_if_sure' => "here if you are sure.", + 'std_no_topic_for_post' => "Ingen emne tilknyttet denne innleggs-IDen", + 'std_denied' => "Nektet!", + 'std_body_empty' => "Kroppen kan ikke være tom!", + 'std_subject_empty' => "Emnet kan ikke være tomt!", + 'std_success' => "Vellykket", + 'std_post_edited_successfully' => "Post er redigert vellykket.", + 'text_edit_post' => "Rediger innlegg", + 'std_how_could_this_happen' => "hvordan kunne det skje?", + 'std_post_not_found' => "Innlegg ikke funnet", + 'std_cannot_delete_post' => "Kan ikke slette innlegg; det er den første innlegget i emnet. Du skal ", + 'std_delete_topic_instead' => "slett emnet i stedet.", + 'std_delete_post' => "Slett innlegg", + 'std_delete_post_note' => "Sannsynlighetskontroll: Du er i ferd med å slette et innlegg. Klikk ", + 'std_must_enter_new_title' => "Du må skrive inn en ny tittel!", + 'std_not_permitted' => "Ikke tillatt", + 'std_sql_error' => "SQL feil", + 'head_forum' => "Forum", + 'col_topic' => "Emne", + 'col_replies' => "Svar", + 'col_views' => "Visninger", + 'col_author' => "Forfatter", + 'col_last_post' => "Siste innlegg", + 'text_no_topics_found' => "Ingen emner funnet", + 'text_new_posts' => "Nye innlegg", + 'text_locked_topic' => "Låst emne", + 'text_unpermitted_starting_new_topics' => "Du har ikke rettigheter til å starte nye emner i dette forumet.", + 'submit_view_unread' => "Vis ulest", + 'submit_new_topic' => "Ny emne", + 'text_topics_with_unread_posts' => "Emner med uleste innlegg", + 'col_forum' => "Forum", + 'text_more_than' => "Mer enn ", + 'text_items_found_displaying_first' => " elementer funnet, viser først ", + 'text_catch_up' => "Fangst opp", + 'text_nothing_found' => "Ingenting funnet", + 'head_forum_search' => "Søk i forum", + 'col_post' => "Innlegg", + 'col_posted_by' => "Posted by", + 'text_found' => "Funnet ", + 'text_num_posts' => " innlegg", + 'text_search_on_forum' => "Søk på forum", + 'text_by_keyword' => "med nøkkelord", + 'head_forums' => "Forum", + 'col_forums' => "Forum", + 'col_topics' => "Emner", + 'col_posts' => "Innlegg", + 'std_bad_forum_last_post' => "Ugyldig forum sist innlegg", + 'text_in' => "i ", + 'text_edit' => "Rediger", + 'text_delete' => "Slett", + 'std_unknown_action' => "Ukjent handling", + 'text_search' => "Søk", + 'text_view_unread' => "Se uleste", + 'text_forum_manager' => "Forum manager", + 'title_reply_with_quote' => "Svar med sitat", + 'title_reply_directly' => "Svar direkte til denne post", + 'title_delete_post' => "Slett Innlegg", + 'title_edit_post' => "Rediger Innlegg", + 'text_quick_reply' => "Kjapt svar", + 'submit_add_reply' => "Legg til Svar", + 'text_add_reply' => "Legg til svar", + 'title_online' => "Pålogget", + 'title_offline' => "Frakoblet", + 'title_send_message_to' => "Send melding til ", + 'title_report_this_post' => "Report this post", + 'title_new_topic' => "Ny Emne", + 'col_moderator' => "Moderator", + 'text_apply_now' => "N/A", + 'text_locked' => "Låst", + 'text_number' => "#", + 'text_lou' => "", + 'there_is' => "", + 'hits_on_this_topic' => " visninger på denne tråden", + 'title_read' => "Les", + 'title_unread' => "Ulest", + 'title_locked' => "Låst", + 'title_locked_new' => "Låst og ulest", + 'text_highlight_topic' => "Fargeemne i ", + 'select_color' => "Ingen", + 'submit_change' => "Go!", + 'head_view_unread' => "Se uleste", + 'text_today' => "Today: ", + 'text_new_post' => " innlegg", + 'text_posts_today' => " I dag.", + 'text_at_time' => " på ", + 'text_blank' => " ", + 'text_last_posted_by' => "Sist postet av ", + 'text_fast_search' => "Hurtigsøk: ", + 'text_go' => "Go!", + 'submit_show_more' => "Vis mer", + 'text_view_all_posts' => "Vis alle innlegg", + 'text_view_this_author_only' => "Vis kun denne forfatteren", + 'title_jump_to_unread' => "Hopp til uleste innlegg", + 'text_new' => "ny", + 'title_order_topic_desc' => "Sorter etter emnetid etterfølger", + 'title_order_topic_asc' => "Sorter etter emnetid ascendant", + 'title_order_post_asc' => "Sortér etter siste oppstigning etter siste innlegg", + 'title_order_post_desc' => "Bestilling etter siste innlegg", + 'text_order' => "Sorter etter", + 'text_topic_desc' => "Synkende tema", + 'text_topic_asc' => "Emnetid oppriktig", + 'text_post_asc' => "Siste tidsskalaen for siste innlegg", + 'text_post_desc' => "Siste poststed synkende", + 'text_post_protected' => "[size=3][b]--Privacy protection is enabled in this forum---[/b]\nOnly topic poster,mods,admins and reply's author can read the content.[/size]", +); + +?> diff --git a/lang/nb/lang_friends.php b/lang/nb/lang_friends.php new file mode 100644 index 00000000..6093e6d7 --- /dev/null +++ b/lang/nb/lang_friends.php @@ -0,0 +1,38 @@ + "Feil", + 'std_invalid_id' => "Invalid ID ", + 'std_access_denied' => "Ingen tilgang.", + 'std_no_user_id' => "Ingen bruker med ID ", + 'std_unknown_type' => "Ukjent type ", + 'std_user_id' => "Bruker ID ", + 'std_already_in' => " er allerede i din ", + 'std_list' => " liste", + 'std_delete' => "Slett ", + 'std_delete_note' => "Vil du virkelig slette en ", + 'std_click' => "? Click \n", + 'std_here_if_sure' => "her om du er sikker.", + 'std_no_friend_found' => "Ingen venn funnet med ID ", + 'std_no_block_found' => "Ingen blokk funnet med ID ", + 'head_personal_lists_for' => "Personlige lister for ", + 'text_personallist' => "PERSONALISTE", + 'text_friendlist' => "FRIENDLIST", + 'text_friends_empty' => "Ingen venner ennå", + 'text_neighbors_empty' => "Ingen naboer ennå", + 'text_last_seen_on' => "Sist sett ", + 'text_ago' => " siden", + 'text_remove_from_friends' => "Fjern fra venner", + 'text_send_pm' => "Sende PM", + 'text_added_you_to_friendslist' => "La deg til venneliste", + 'text_add_to_friends' => "Legg til i venner", + 'text_blocklist_empty' => "Din blokkerte brukerliste er tom", + 'text_blocked_users' => "Blokkerte brukere", + 'text_find_user' => "Finn brukere/bla gjennom brukerliste", + 'text_neighbors' => "Naboer", + 'text_friend' => "venn", + 'text_block' => "blokk", +); + +?> diff --git a/lang/nb/lang_fun.php b/lang/nb/lang_fun.php new file mode 100644 index 00000000..efb636b3 --- /dev/null +++ b/lang/nb/lang_fun.php @@ -0,0 +1,44 @@ + "Slett et morsom element?", + 'text_please_click' => "Vil du virkelig slette et morsomt element? Klikk\n", + 'text_here_if_sure' => "here if you are sure.", + 'std_error' => "Feil", + 'std_invalid_id' => "Ugyldig morsomme element-id", + 'std_permission_denied' => "Tillatelse nektet!", + 'text_fun_title' => "Moro tittel", + 'text_body' => "Innhold", + 'submit_okay' => "Ok", + 'head_new_fun' => "Nye morsomme ting", + 'text_submit_new_fun' => "Send inn nye morsomme ting", + 'text_new_compose' => "Ny pose", + 'head_fun' => "Moro", + 'text_on' => " på ", + 'text_blank' => " ", + 'text_ago' => " siden", + 'text_posted_by' => " Publisert av ", + 'text_not_funny' => "Kantsår", + 'text_funny' => "Morsom", + 'text_very_funny' => "Sidesteg", + 'head_edit_fun' => "Rediger moro", + 'text_edit_fun' => "Rediger moro", + 'std_body_is_empty' => "Hoveddelen kan ikke være tom!", + 'std_title_is_empty' => "Tittelen kan ikke være tom!", + 'std_fun_added_successfully' => "En mors gjenstand ble lagt til.", + 'std_error_happened' => "Noe rart skjedde.", + 'std_the_newest_fun_item' => "Siste morsomme produkt ", + 'std_posted_on' => " ble postet på ", + 'std_need_to_wait' => ". Vent til den blir 24 timer gammel.", + 'std_are_you_sure' => "Er du sikker?", + 'std_only_against_rule' => "Er du sikker på å forby dette morsomme elementet? Merk at du bør gjøre dette bare hvis det morsomme elementet er mot reglene. BTW kan også gjerne gi brukeren litt advarsel.", + 'std_reason_required' => "Grunn (påkrevd): ", + 'std_reason_is_empty' => "Du må gi grunnen!", + 'std_success' => "Vellykket", + 'std_fun_item_banned' => "Det gøy elementet er utestengt.", + 'std_already_vote' => "Du har allerede stemt!", + 'std_cannot_give_bonus' => "Systemet kan ikke gi bonus til et morsomt innlegg. Vennligst rapporter dette til administrator.", +); + +?> diff --git a/lang/nb/lang_functions.php b/lang/nb/lang_functions.php new file mode 100644 index 00000000..6942a25c --- /dev/null +++ b/lang/nb/lang_functions.php @@ -0,0 +1,344 @@ + "Ingen tilgang!", + 'std_fake_account' => "Vi kommer til å tro at du bruker en falsk konto, derfor har vi logget denne handlingen!", + 'std_permission_denied' => "Tillatelse nektet!", + 'std_permission_denied_only' => "Tillatelse nektet. Bare ", + 'std_or_above_can_view' => " eller over kunne vise.

    Vennligst se "."FAQ for more information on different user classes and what they can do.

    The %s Staff
    ", + 'std_target_not_exists' => 'Target not exists', + 'std_already_logged_in' => "Du har allerede logget inn!", + 'text_page_last_updated' => "Denne siden sist oppdatert ", + 'text_browser_cookies_note' => "Hvis du aktiverer informasjonskapsler og fortsatt ikke kan logge inn, kanskje noe har hendt å føre til problemer med innloggingskaken. Vi foreslår sletting av informasjonskapsler og forsøk på nytt. For å slette informasjonskapsler i Internet Explorer, gå til Verktøy > Internett-alternativer... og klikk på knappen Slett informasjonskapsler. Vær oppmerksom på at dette vil slette alle informasjonskapsler lagret på systemet ditt for andre nettsteder.", + 'std_error' => "Feil", + 'text_unable_to_send_mail' => "Kan ikke sende e-post. Kontakt en administrator om denne feilen.", + 'std_success' => "Vellykket", + 'std_confirmation_email_sent' => "En e-post med bekreftelse har blitt sendt til ", + 'std_please_wait' => "Du kan ta noen minutter før e-posten ankommer.", + 'std_account_details_sent' => "Den nye kontoinformasjonen er blitt sendt til ", + 'std_locked' => " Låst! (maksimalt antall mislykkede ", + 'std_attempts_reached' => " Forsøk nås under autentisering)", + 'std_your_ip_banned' => "Vi kommer for å tro at du prøver å jukse systemet vårt, derfor har vi sperret ipen din!", + 'std_login_failed' => "Innlogging mislyktes!", + 'std_login_failed_note' => "Feil: Brukernavn eller passord er feilet! Eller du er ikke bekreftet enda

    Husk passordet? Gjenopprett ditt passord!", + 'std_failed' => "Mislyktes", + 'std_oops' => "Oisann!", + 'std_sorry' => "Beklager", + 'std_invite_system_disabled' => "Invitasjonssystemet er deaktivert...", + 'std_open_registration_disabled' => "Open registration is currently disabled. Invites only Hvis du er heldig som du har en venn som ønsker å invitere deg :) Vi vil bare se hvor mye juksing som kommer til å respektere deres kontoer etter at de innser at de ikke bare kommer tilbake og få en annen :). Husk på dette, hvis du allerede er medlem og inviterer en kjent billigere og du visste om det på det første stedet, både det og det du inviterte er deaktivert. Du må snakke med oss for å få kontoen din på nytt. Hvis du vil en invitasjon og du vet at noen som har en det er opp til dem å gi deg en invitasjon.", + 'std_account_limit_reached' => "Maks antall gjeldende brukerkonto er nådd. Inaktive kontoer er ødelagt hele tiden, vennligst kom tilbake senere...", + 'std_the_ip' => "IP ", + 'std_used_many_times' => " er allerede i bruk på for mange konto.... Ingen flere kontoer tillatt på %s.", + 'std_invalid_image_code' => "Ugyldig bildekode!
    Ikke gå tilbake, bildekoden er slettet!

    Vennligst klikk ", + 'std_here_to_request_new' => "her for å be om en ny bildekode.", + 'std_action' => 'Handling', + 'std_report' => 'Rapporter', + 'std_desc' => 'Beskrivelse', + 'std_comment' => 'Kommentar', + 'std_quick_comment' => 'Rask kommentar', + 'std_click_here_to_goback' => 'Klikk her for å goback', + 'std_you_will_get' => 'Du får nå', + 'std_by' => 'Av', + 'row_security_image' => "Sikkerhetsbilde:", + 'row_security_code' => "Sikkerhetskoden:", + 'text_slots' => "Trekker:", + 'text_unlimited' => "Ubegrenset", + 'std_server_load_very_high' => "Serverlasting er veldig høy for øyeblikket. Prøv på nytt, vennligst vent...", + 'std_too_many_users' => "For mange brukere. Trykk på Oppdater-knappen i nettleseren for å prøve på nytt.", + 'text_unauthorized_ip' => "

    403 Forbudt

    Uautorisert IP-adresse.", + 'text_home' => "Hjem", + 'text_forums' => "Forum", + 'text_torrents' => "Torrenter", + 'text_offers' => "Tilbud", + 'text_request' => "Forespørsler", + 'text_upload' => "Last opp", + 'text_subtitles' => "Undertekster", + 'text_user_cp' => "Bruker CP", + 'text_top_ten' => "10 på topp", + 'text_log' => "LOGG", + 'text_rules' => "Regler", + 'text_faq' => "OSS", + 'text_staff' => "Ansatte", + 'std_site_down_for_maintenance' => "Nettstedet er nede for vedlikehold, vennligst sjekk tilbake senere...", + 'text_click_view_full_image' => "Klikk på denne linjen for å se hele bildet.", + 'text_image_resized' => "Dette bildet er skalert. Klikk denne linjen for å se hele bildet.", + 'text_click_view_small_image' => "Klikk på denne linjen for å se det lille bildet.", + 'text_login' => "Innlogging", + 'text_signup' => "Registrering", + 'text_inf' => "Opplysning", + 'title_donor' => "donor", + 'title_warned' => "advart", + 'title_inbox_new_messages' => "innboks (nye meldinger)", + 'title_inbox_no_new_messages' => "innboks (ingen nye meldinger)", + 'text_yes' => "Ja", + 'text_no' => "Nei", + 'text_unknown' => "Ukjent", + 'text_welcome_back' => "Velkommen", + 'text_staff_panel' => "Medarbeideres panel", + 'text_site_settings' => "Portal innstillinger", + 'text_logout' => "logg ut", + 'text_bonus' => "Bonus ", + 'text_use' => "Bruk", + 'text_ratio' => "Ratio:", + 'text_uploaded' => "Opplastet:", + 'text_downloaded' => "Nedlastet:", + 'text_active_torrents' => "Aktiv:", + 'title_torrents_seeding' => "Torrents Seeding", + 'title_torrents_leeching' => "Torrenter Leker", + 'text_connectable' => "Tilkoblingstabell: ", + 'text_the_time_is_now' => "Tid: ", + 'text_message_new' => " Ny", + 'title_sentbox' => "sendingsboks", + 'title_inbox' => "innboks", + 'title_buddylist' => "Buddylist", + 'text_you_have' => "Du har ", + 'text_new_message' => " ny melding", + 'text_s' => "S", + 'text_click_here_to_read' => "! Klikk her for å lese.", + 'text_your_friends' => "Din venn", + 'text_awaiting_confirmation' => " avventer bekreftelse fra deg!", + 'text_website_offline_warning' => "WARNING: The website is currently offline! Click here to change settings.", + 'text_there_is' => "Der", + 'text_new_report' => " ny rapport", + 'text_new_staff_message' => " ny personalets melding", + 'text_search' => "Søk", + 'text_profile' => "Profil", + 'text_chat' => "Samtale", + 'text_dox' => "Dox", + 'text_links' => "Lenker", + 'text_username' => "Brukernavn: ", + 'text_password' => "Passord: ", + 'submit_log_in' => "Logg i!", + 'text_register' => "Registrer", + 'text_rules_link' => "Regler", + 'text_faq_link' => "OSS", + 'text_useragreement' => "Brukeravtale", + 'text_prev' => "Forrige", + 'text_next' => "Neste", + 'text_by' => " av ", + 'text_orphaned' => "(Forsvare)", + 'text_at' => " på ", + 'text_edit' => "Rediger", + 'text_delete' => "Slett", + 'text_view_original' => "Vis original", + 'text_last_edited_by' => "Sist endret av ", + 'text_edited_at' => " på ", + 'col_type' => "Type:", + 'col_name' => "Navn", + 'col_dl' => "DL", + 'col_wait' => "Vent", + 'col_edit' => "Rediger", + 'col_visible' => "Synlig", + 'title_number_of_comments' => "Nummer av Kommentarer", + 'title_time_added' => "Tid lagt til", + 'title_size' => "Størrelse", + 'title_number_of_seeders' => "Antall av Sjøfolk", + 'title_number_of_leechers' => "Antall av Esjetere", + 'title_number_of_snatched' => "Antall av Snatched", + 'col_uploader' => "Opplaster", + 'col_action' => "Lov", + 'text_normal' => "Vanlig", + 'text_free' => "Gratis", + 'text_two_times_up' => "2X", + 'text_free_two_times_up' => "2X Gratis", + 'text_half_down' => "50%", + 'text_half_down_two_up' => "2X 50%", + 'text_new_uppercase' => "NY", + 'text_sticky' => "Klissete", + 'title_download_torrent' => "Last ned Torrent", + 'text_h' => " t", + 'text_none' => "Ingen", + 'text_anonymous' => "Anonym", + 'text_promoted_torrents_note' => "Those highlighted are:   Free | 2x up | 2x up and free | 50% down | 2x up and 50% down | 30% down torrents
    Leeching them is the best way to fix your ratio!", + 'std_file' => "Fil ", + 'std_does_not_exist' => " finnes ikke", + 'std_access_permission_note' => "!
    Before the setup starts, please ensure that you have properly configured file and directory access permissions. Please see below.

    chmod -R 777 config (config directory).", + 'std_cannot_read_file' => "Kan ikke lese filen ", + 'std_cannot_serialize_file' => "Kan ikke serialisere fil ", + 'std_cannot_open_file' => "Kan ikke åpne filen ", + 'std_to_save_info' => " for å lagre informasjon", + 'text_cannot_save_info_in' => "Kan ikke lagre info i filen (feil i serialisering) ", + 'std_your_account_parked' => "Din konto er parkert.", + 'title_online' => "Pålogget", + 'title_offline' => "Frakoblet", + 'title_send_message_to' => "Send melding til ", + 'title_report_this_comment' => "Rapporter denne kommentaren", + 'text_bookmarks' => "Bokmerker", + 'title_bookmark_torrent' => "Bokmerke", + 'title_delbookmark_torrent' => "Fjern bokmerke", + 'text_mark' => "Marker", + 'text_unmark' => "Unmark", + 'text_award' => "Bonus pris: ", + 'text_additional_notes' => "Flere notater: ", + 'title_view_reviews' => "Klikk til se anmeldelser", + 'title_has_new_comment' => "Har ny kommentar", + 'title_no_new_comment' => "Ingen ny kommentar", + 'row_external_info' => "Ekstern info", + 'row_imdb_url' => "IMDb URL", + 'text_imdb_url_note' => "(URL hentet fra IMDb. f.eks for film Den mørke ridderen nettadressen er https://www.imdb.com/title/tt0468569/)", + 'text_artist' => " Kunstner: ", + 'text_album' => "Album: ", + 'title_get_rss' => "Få RSS", + 'text_hot' => "Varmt", + 'text_classic' => "Klassisk", + 'text_recommended' => "Bra", + 'title_view_nfo' => "Vis NFO fil", + 'title_edit_torrent' => "Rediger eller slett torrent", + 'title_time_alive' => "Time Alive", + 'title_add_comments' => "Legg til kommentar", + 'text_at_time' => " på ", + 'text_blank' => " ", + 'text_ago' => " siden", + 'text_last_commented_by' => "Sist kommentert av ", + 'text_imdb' => "IMDb", + 'text_votes' => " stemmer", + 'text_country' => "Land", + 'text_genres' => "Genres", + 'text_director' => "Regissør", + 'text_starring' => "Stjernemerke", + 'text_runtime' => "Kjøretid", + 'text_language' => "Språk", + 'text_douban' => "Dobbelt", + 'text_region' => "Fylke", + 'text_creator' => "Skaper", + 'text_awaiting_five_votes' => "awaiting 5 votes", + 'text_invite' => "Inviter ", + 'text_send' => "Sende", + 'text_tracks' => "Spor", + 'text_label' => "Etikett", + 'text_tags' => "Tagger", + 'text_user_ip' => "Bruker IP", + 'text_location_main' => "Sted Hoved", + 'text_location_sub' => "Plassering Undernivå", + 'text_ip_range' => "IP Rekkevidde", + 'text_min' => " min.", + 'text_music' => "Musikk", + 'text_special' => "Spesial", + 'title_reply_with_quote' => "Sitat", + 'title_add_reply' => "Legg til Svar", + 'title_delete' => "Slett", + 'title_edit' => "Rediger", + 'title_reportbox' => "rapportboks", + 'title_staffbox' => "Personellboks", + 'title_sticky' => "Klissete", + 'text_new_news' => " uleste viktige nyheter", + 'std_no_user_named' => "Det er ingen bruker som heter ", + 'text_banned' => "Utestengt", + 'text_are' => " er ", + 'text_is' => " er ", + 'select_choose_one' => "velg en", + 'text_space' => " ", + 'text_day' => "D ", + 'text_new_suspected_cheater' => " ny mistenkt cheater", + 'title_cheaterbox' => "cheaterbox", + 'text_will_end_in' => " vil ende om ", + 'text_alt_pageup_shortcut' => "Alt+Pageup", + 'text_alt_pagedown_shortcut' => "Alt+Pagedown", + 'text_shift_pageup_shortcut' => "Skift+Sideoppdeling", + 'text_shift_pagedown_shortcut' => "Skift+Pagedown", + 'text_quote' => "Sitat", + 'text_code' => "KODE", + 'std_invalid_id' => "Ugyldig ID! Av sikkerhetsgrunner har vi logget denne handlingen.", + 'text_smilies' => "Smilefjes", + 'col_type_something' => "Type...", + 'col_to_make_a' => "Å lage en...", + 'text_year' => " år", + 'text_month' => " måned", + 'text_day' => " dag", + 'text_hour' => " time", + 'text_min' => " min.", + 'select_color' => "Farge", + 'select_font' => "Font", + 'select_size' => "Størrelse", + 'text_subject' => "Emne:", + 'text_more_smilies' => "Flere Smilefjes", + 'js_prompt_enter_url' => "Du må skrive inn en URL", + 'js_prompt_enter_title' => "Du må angi en tittel", + 'js_prompt_error' => "Feil!", + 'js_prompt_enter_item' =>"Skriv inn elementet i listen. For slutten av listen, trykk 'avbryt' eller la neste felt stå tomt ", + 'js_prompt_enter_image_url' => "Du må skrive inn full URL", + 'js_prompt_enter_email' => "Du må skrive inn en e-post", + 'text_new' => "Ny", + 'text_reply' => "Svar", + 'submit_submit' => "Send", + 'submit_preview' => "Forhåndsvisning", + 'row_subject' => "Emne", + 'row_body' => "Innhold", + 'text_peasant' => "Peasant", + 'text_user' => "Bruker", + 'text_power_user' => "Kraft bruker", + 'text_elite_user' => "Elite bruker", + 'text_crazy_user' => "Gal bruker", + 'text_insane_user' => "Insane bruker", + 'text_veteran_user' => "Veteran bruker", + 'text_extreme_user' => "Ekstrem bruker", + 'text_ultimate_user' => "Ultimat bruker", + 'text_nexus_master' => "Nexus Master", + 'text_vip' => "VIP", + 'text_uploader' => "Opplaster", + 'text_retiree' => "Tre", + 'text_forum_moderator' => "Forum Moderator", + 'text_moderators' => "Moderator", + 'text_administrators' => "Administratorsiden", + 'text_sysops' => "SysOp", + 'text_staff_leader' => "Ansattes leder", + 'text_short_year'=> "Å", + 'text_short_month' => "MON", + 'text_short_day' => "V", + 'text_short_hour' => "t", + 'text_short_min' => "Ma", + 'submit_edit' => "Rediger", + 'text_banned_client_warning' => "Du brukte en utestengt BitTorrent-klient siste gang du kobler til tracker! Klikk her.", + 'text_please_improve_ratio_within' => "Vennligst forbedre din rate innenfor ", + 'text_or_you_will_be_banned' =>", eller kontoen din vil bli utestengt! Klikk her.", + 'text_size' => "Størrelse", + 'text_downloads' => "Nedlastinger", + 'text_attachment_key' => "Vedlegg til nøkkel ", + 'text_not_found' => " ikke funnet", + 'text_thirty_percent_down' => "30%", + 'text_please_download_something_within' => "Vennligst last ned noe innenfor ", + 'text_inactive_account_be_deleted' => ". Inaktive kontoer (med ingen overføringsbeløp) slettes.", + 'text_attendance' => '[Delta på få bonus]', + 'text_attended' => '[Attend got: %u, kort: %d]', + 'row_pt_gen_douban_url' => "PT-Gen douban link", + 'text_pt_gen_douban_url_note' => "(URL hentet fra douban. f.eks for movie Transformers nettadressen er https://movie.douban.com/subject/1794171//)", + 'row_pt_gen_imdb_url' => "PT-Gen imdb link", + 'text_pt_gen_imdb_url_note' => "(URL hentet fra imdb. f.eks for filme Transformers nettadressen er https://www.imdb.com/title/tt0418279/)", + 'row_pt_gen_bangumi_url' => "PT-Gen bangumi link", + 'text_pt_gen_bangumi_url_note' => "(URL hentet fra bangumi. f.eks for animasjon Cowboy Bebop URL'en er https://bangumi.tv/subjekt/253/)", + 'imdb_cache_dir_can_not_create' => 'imdb cache-mappe kan ikke opprette', + 'imdb_cache_dir_is_not_writeable' => 'imdb cache-katalog er ikke skrivbar', + 'imdb_photo_dir_can_not_create' => 'imdb Bildedir kan ikke opprette', + 'imdb_photo_dir_is_not_writeable' => 'imdb bildeplate er ikke skrivbar', + 'text_tag_no_release_to_any_other' => 'Ingen utgivelse til andre', + 'text_tag_first_release' => 'Første utgivelse', + 'text_tag_official' => 'Offisiell', + 'text_tag_diy' => 'Gjør-selv', + 'text_tag_mother_language' => 'Mor språk', + 'text_tag_mother_language_subtitle' => 'Mor språk undertittel', + 'text_tag_hdr' => 'HDR', + 'text_required' => 'Påkrevd', + 'text_invalid' => 'Ugyldig', + 'text_technical_info' => 'MediaInfo', + 'text_technical_info_help_text' => 'MediaInfo kommer fra programvare MediaInfo,åpen fil, språkvelg engelsk, klikk på visningsmenyen > tekst > høyreklikk i boksen > velg all > kopi > forbi i denne boksen.', + 'text_management_system' => 'Administrasjon', + 'text_seed_points' => 'Oppgavens poeng', + 'spoiler_expand_collapse' => 'Klikk for å utvide/lukke', + 'spoiler_default_title' => 'Skjul innhold', + 'menu_claim' => 'Claim: ', + 'text_complains' => '%s %u venter på klage%s.', + 'text_contactstaff' => 'Kontakt ansatte', + 'full_site_promotion_in_effect' => 'Full site [%s] in effect!', + 'full_site_promotion_time_range' => 'Tidsintervall: %s ~ %s', + 'text_torrent_to_approval' => '%s%u godkjenner ikke torrent-%s.', + 'std_confirm_remove' => 'Er du sikker på at du vil slette denne?', + 'select_an_user_class' => 'Velg en brukerklasse', + 'input_check_all' => "Velg alle", + 'input_uncheck_all' => "Velg ingen", + 'select_at_least_one_record' => 'Velg minst én post!', + 'text_seed_box_record_to_approval' => '%s%u ble ikke godkjent av seed-boksen%s.', + 'approval_deny_reach_upper_limit' => 'Antall torrenter hvis gjeldende godkjenning ble nektet: %s nås den øvre grensen og er ikke tillatt å laste opp.', +); + +?> diff --git a/lang/nb/lang_getrss.php b/lang/nb/lang_getrss.php new file mode 100644 index 00000000..d05c5c37 --- /dev/null +++ b/lang/nb/lang_getrss.php @@ -0,0 +1,51 @@ + "RSS Feeds", + 'head_rss_feeds' => "RSS Feeds", + 'std_error' => "Feil", + 'std_no_row' => "Du må velge rader!", + 'std_done' => "Ferdig!", + 'std_use_following_url' => "Bruk følgende URL i RSS-leseren, f.eks. Google Reader: ", + 'std_utorrent_feed_url' => "Bruk følgende URL i BitTorrent-klienter som støtter RSS Feed, f.eks uTorrent: ", + 'row_categories_to_retrieve' => "Kategorier for henting", + 'row_feed_type' => "Type nyhetsmating", + 'text_web_link' => "Nettlenke", + 'text_download_link' => "Last ned lenke", + 'row_rows_per_page' => "Rader pr side", + 'submit_generatte_rss_link' => "Generere RSS-lenke", + 'text_category' => "Kategori", + 'text_source' => "Kilde", + 'text_codec' => "Kodek", + 'text_standard' => "Vanlig", + 'text_processing' => "Behandler", + 'text_medium' => "Middels", + 'text_team' => "Lag", + 'text_audio_codec' => "Lyd Codec", + 'row_item_title_type' => "Visningsformat for tittel", + 'text_item_category' => "[Category] + ", + 'text_item_title' => "Tittel + ", + 'text_item_small_description' => "[Liten beskrivelse] + ", + 'text_item_size' => "[Size] + ", + 'text_item_uploader' => "[Uploader]", + 'row_show_bookmarked' => "Vis bokmerket", + 'text_all' => "alle", + 'text_only_bookmarked' => "bare bokmerket", + 'text_show_bookmarked_note' => "Ony for BitTorrent klienter", + 'row_keyword' => "Keyword", + 'text_with' => "med", + 'select_and' => "OG", + 'select_or' => "ELLER", + 'select_exact' => "Nøyaktig", + 'text_mode' => "matchende modus ", + 'text_keyword_note' => "Ony abonner på elementer med disse søkeordene i titlene.", + 'row_sticky' => 'Klissete', + 'row_paid' => 'Magi blir trukket fra for nedlasting', + 'row_paid_help' => 'Merk: Dette er ikke en gratis/50% type forslag, når opplasteren setter torrenten som er betalt, vil nedlastingen kreve trekk-bonus', + 'paid_no' => 'Gratis', + 'paid_yes' => 'Betalt', + 'paid_all' => 'Alle', +); + +?> diff --git a/lang/nb/lang_getusertorrentlistajax.php b/lang/nb/lang_getusertorrentlistajax.php new file mode 100644 index 00000000..c3b413aa --- /dev/null +++ b/lang/nb/lang_getusertorrentlistajax.php @@ -0,0 +1,23 @@ + "Type:", + 'col_name' => "Navn", + 'title_size' => "Størrelse", + 'title_seeders' => "Senere", + 'title_leechers' => "Leechers", + 'col_uploaded' => "Ul.", + 'col_downloaded' => "DLIG.", + 'col_ratio' => "Forhold", + 'col_anonymous' => "Anonym.", + 'col_time_completed' => "Sna. kl.", + 'col_se_time' => "Se. Tid", + 'col_le_time' => "Le. Tid", + 'text_record' => " opptak", + 'text_no_record' => "Ingen oppføring.", + 'text_total_size' => " Respirasjons totalstørrelse: ", + 'col_added' => "Lagt", + 'col_client' => 'Klient', +); +?> diff --git a/lang/nb/lang_increment-bulk.php b/lang/nb/lang_increment-bulk.php new file mode 100644 index 00000000..13f222f4 --- /dev/null +++ b/lang/nb/lang_increment-bulk.php @@ -0,0 +1,27 @@ + 'Lot: Legg til bonus/fremmøtte kort/invitasjon/opplastet/midlertidig invitasjon', + 'sent_success' => ' har blitt lagt til, og informasjonsmeldingen er sendt', + 'types' => [ + 'seedbonus' => 'bonus', + 'attendance_card' => 'delta kort', + 'invites' => 'inviter', + 'uploaded' => 'opplasting', + 'tmp_invites' => 'midlertidig invitasjon', + ], + 'labels' => [ + 'type' => 'Type:', + 'amount' => 'Beløp', + 'duration' => 'Varighet', + 'duration_help' => 'Nødvendig bare hvis type er [midlertidig invitasjon], i dager', + 'user_class' => 'Bruker klasse', + 'roles' => 'Roller', + 'msg_subject' => 'emne for melding', + 'msg_body' => 'meldingsinnhold', + 'operator' => 'Operatør', + ], +); + +?> diff --git a/lang/nb/lang_index.php b/lang/nb/lang_index.php new file mode 100644 index 00000000..176970ab --- /dev/null +++ b/lang/nb/lang_index.php @@ -0,0 +1,111 @@ + "Ingen avstemming", + 'std_error' => "Feil", + 'std_duplicate_votes_denied' => "Ingen dupliserte stemmer tillatt!", + 'std_vote_not_counted' => "Det oppstod en feil. Din stemme har ikke blitt tellet.", + 'std_option_unselected' => "Velg et alternativ.", + 'text_news_page' => "Ny", + 'text_recent_news' => "Siste nyheter", + 'text_e' => "Rediger", + 'text_d' => "Slett", + 'text_hotmovies' => "Varmt", + 'text_classicmovies' => "Klassisk", + 'text_free' => "Gratis", + 'text_two_times_up' => "2X", + 'text_free_two_times_up' => "2X Gratis", + 'text_shoutbox' => "Meldingsboks", + 'text_message' => "Melding: ", + 'sumbit_shout' => "rop", + 'submit_clear' => "tøm", + 'text_last_five_posts' => "Siste 5 foruminnlegg", + 'col_topic_title' => "Emne tittel", + 'col_view' => "Visninger", + 'col_author' => "Forfatter", + 'col_posted_at' => "Postet på", + 'text_in' => "i ", + 'std_no_torrent_found' => "Ingen torrenter funnet", + 'text_last_five_torrent' => "Siste 5 torrent opplastinger", + 'col_name' => "Navn", + 'col_seeder' => "Sesong", + 'col_leecher' => "Leecher", + 'text_polls' => "Meningsmålinger ", + 'text_new' => "Ny", + 'text_edit' => "Rediger", + 'text_delete' => "Slett", + 'text_votes' => "Stemmer:", + 'radio_blank_vote' => "Tom stemme (a.k.a. \"Jeg vil bare se resultatene!\")", + 'submit_vote' => "Stem!", + 'text_previous_polls' => "Forrige meningsmålinger", + 'text_tracker_statistics' => "Tracker statistikk", + 'row_registered_users' => "Registrerte brukere / Grense", + 'row_unconfirmed_users' => "Ubekreftede brukere", + 'row_vips' => "VIPs", + 'row_donors' => "Donors", + 'row_warned_users' => "Advarte brukere", + 'row_banned_users' => "Utestengte brukere", + 'row_male_users' => "Mannlige brukere", + 'row_female_users' => "Kvinne brukere", + 'row_torrents' => "Torrenter", + 'row_dead_torrents' => "Døde torrenter", + 'row_seeders' => "Deler av klienter", + 'row_leechers' => "Lekende klienter", + 'row_peers' => "Likemenn", + 'row_seeder_leecher_ratio' => "Seeding / leeching ratio", + 'row_total_size_of_torrents' => "Total størrelse av torrenter", + 'row_total_uploaded' => "Totalt opplastet", + 'row_total_downloaded' => "Totalt lastet ned", + 'row_total_data' => "Totalt antall data", + 'text_no_users_day' => "Det har ikke vært noen aktiv bruker de siste 24 timene.", + 'text_no_active_users_now' => "Det er for tiden ingen aktiv bruker.", + 'text_no_user_torrenting' => "Det er ingen bruker som deler eller leser. :(", + 'text_tracker_load' => "Sporingsagent last", + 'text_our_tracker_load' => "Tracker Peers Load: ", + 'text_global_server_load' => "Global Server Last: ", + 'text_whats_going_on' => "Hva skjer?", + 'text_members_have_visited' => " Medlemmer har besøkt de siste 24 timene, og velkommen til vårt nyeste medlem, ", + 'text_users_browsing_now' => " brukere surfer på siden etter siste 15 minutter. ", + 'text_peers_active_now' => " brukere spres eller leeching. ", + 'text_disclaimer' => "Ansvarsfraksjon", + 'text_disclaimer_content' => "Ingen av filene som vises her er faktisk vert på denne serveren. Transporten behandler tilkoblinger, den har ikke kunnskaper om innholdet i filene som skal fordeles. Lenkene er kun gitt av brukerne på dette nettstedet. Administrator for dette nettstedet %s kan ikke holdes ansvarlig for hva brukerne legger ut, eller for andre brukeres handlinger. Det kan hende at du ikke bruker dette nettstedet %s for å distribuere eller laste ned et materiale når du ikke har lovens rettigheter til å gjøre det. Det er ditt eget ansvar å følge disse vilkårene.", + 'text_browser_note' => "Dette nettstedet blir best sett med \"Googleeller\"Firefox\" og med oppløsning over 1024*768. Anbefalte BitTorrent-klienter: \"qBittorrent\"eller\"Transmission\"", + 'title_show_or_hide' => "Vis/Skjul", + 'text_links' => "Lenker", + 'text_manage_links' => "Administrere lenker", + 'text_author' => "Forfatter:", + 'text_datetime' => "Tid:", + 'p_critic_reviews' => "Filmkritikernes anmeldelser", + 'p_user_reviews' => "Valgte brukeres produktomtaler", + 'head_home' => "Hjem", + 'sumbit_to_guest' => "til gjest", + 'text_apply_for_link' => "Søk på lenker", + 'text_ago' => " siden", + 'text_auto_refresh_after' => "automatisk oppdatering etter ", + 'text_seconds' => " sekunder", + 'text_funbox' => "Funbox", + 'text_more_fun' => "Mer", + 'text_new_fun' => "Ny", + 'text_ban' => "Utesteng", + 'submit_fun' => "Moro", + 'submit_dull' => "Skrog", + 'text_out_of' => " ut av ", + 'text_people_found_it' => " folk fant det gøy. ", + 'text_your_opinion' => "What do you think? ", + 'text_vote_accepted' => "Takk! Din stemme er akseptert.", + 'row_users_active_today' => "Brukere aktiv i dag", + 'row_users_active_this_week' => "Brukere aktiv denne uken", + 'row_active_browsing_users' => "Aktive lesebrukere", + 'row_tracker_active_users' => "Tracker aktive brukere", + 'text_detail' => "Detaljer", + 'top_uploader_title' => 'Flest opplastere (Torrent telte)', + 'col_counts' => 'Teller', + 'col_ranking' => 'Rangering', + 'top_uploader_toggle_time_range_tab' => 'Klikk for å veksle mellom tid', + 'top_uploader_toggle_time_range_recently' => 'Siste 30 dager', + 'top_uploader_toggle_time_range_all' => 'Hele tiden', + 'clear_shout_box' => 'Fjern utropsboks', + 'sure_to_clear_shout_box' => 'Er du sikker på at du vil tømme shout-boksen?', +); + +?> diff --git a/lang/nb/lang_invite.php b/lang/nb/lang_invite.php new file mode 100644 index 00000000..543327bb --- /dev/null +++ b/lang/nb/lang_invite.php @@ -0,0 +1,70 @@ + "Beklager", + 'std_permission_denied' => "Tilgang nektet!", + 'head_invites' => "Invitasjoner", + 'std_no_invites_left' => "Du har ingen invitasjoner igjen. :(

    Vennligst klikk ", + 'here_to_go_back' => "her for å gå tilbake.", + 'text_invite_code_sent' => "Invitasjonskoden er sendt!
    ", + 'text_invite_someone' => "Inviter noen til å bli med ", + 'text_s' => "S", + 'text_invitation' => " invitasjon", + 'text_left' => " venstre", + 'text_email_address' => "Epost Adresse", + 'text_email_address_note' => "E-postadressen må være gyldig. Invitasjonen vil motta en e-post om din invitasjon.", + 'text_message' => "Melding", + 'submit_invite' => "Inviter", + 'text_invite_status' => "Nåværende status for invitasjoner", + 'text_no_invites' => "Ingen invitasjoner enda.", + 'text_username' => "Brukernavn", + 'text_email' => "E-post", + 'text_uploaded' => "Opplastet", + 'text_downloaded' => "Nedlastet", + 'text_ratio' => "Forhold", + 'text_status' => "Status:", + 'text_confirm' => "Bekreft", + 'text_confirmed' => "Bekreftet", + 'text_pending' => "Ventende", + 'submit_confirm_users' => "Bekreft Brukere", + 'sumbit_invite_someone' => "Inviter noen", + 'text_sent_invites_status' => "Nåværende status for sendte ut invitasjoner", + 'text_no_invitation_sent' => "Ingen invitasjoner ble sendt ut for øyeblikket.", + 'text_hash' => "Hash", + 'text_send_date' => "Sende dato", + 'text_hash_status' => 'Hash valid', + 'text_invitee_user' => 'Invitasjons bruker', + + 'text_invitation_body' => " +Hi Buddy, + +I am inviting you to join %s which is a private community that have the finest +and most abundant stuff. If you are interested in joining us please read over +the rules and confirm the invite. Finally, please make sure you keep a nice ratio and +only upload content that follows rules of the site. + +Welcome aboard! :) +Best Regards, +", + 'text_invite_system' => "' invitasjonssystem", + 'std_only' => "Bare ", + 'std_or_above_can_invite' => " eller ovenfor kan sende invitasjon.", + 'text_email_restriction_note' => "Du kan bare sende invitasjonen til e-post fra disse domenene: ", + 'harem_addition' => 'Varm tillegg', + 'signup_link_help' => 'Høyreklikk for å kopiere', + 'signup_link' => 'Registrer lenke', + 'text_seed_torrent_count' => 'Delingstellinger', + 'text_seed_torrent_size' => 'Størrelse på seed', + 'text_seed_torrent_bonus_per_hour' => 'Seeding bonus per time', + 'text_seed_torrent_bonus_per_hour_help' => 'Det vil si at frøpoeng ikke anser donasjoner, offisiell torrenter og haremer og andre tilsetninger', + 'text_seed_torrent_last_announce_at' => 'Siste annonseringstid', + 'text_enabled' => 'Aktivert', + 'text_tmp_status' => 'Midlertidig invitasjonsstatus', + 'text_expired_at' => 'Utløpt på', + 'text_permanent' => 'Bruker permanent invitasjon', + 'text_consume_invite' => 'Bruker invitasjon', + 'text_temporary_left' => '%s midlertidig invitasjon', +); + +?> diff --git a/lang/nb/lang_iphistory.php b/lang/nb/lang_iphistory.php new file mode 100644 index 00000000..4a8c08ac --- /dev/null +++ b/lang/nb/lang_iphistory.php @@ -0,0 +1,16 @@ + "Feil", + 'std_invalid_id' => "Invalid ID", + 'text_user_not_found' => "Brukeren ble ikke funnet", + 'head_ip_history_log_for' => "IP historikk for ", + 'text_historical_ip_by' => "Historiske IP-adresser brukes av ", + 'col_last_access' => "Sist tilgang", + 'col_ip' => "IP", + 'col_hostname' => "Hostname", + 'text_not_available' => "N/A", + 'text_duplicate' => "Dupe", +); +?> diff --git a/lang/nb/lang_ipsearch.php b/lang/nb/lang_ipsearch.php new file mode 100644 index 00000000..3a2955ea --- /dev/null +++ b/lang/nb/lang_ipsearch.php @@ -0,0 +1,24 @@ + "Feil", + 'std_invalid_ip' => "Ugyldig IP.", + 'std_invalid_subnet_mask' => "Ugyldig subnet maske.", + 'head_search_ip_history' => "Søk i IP-historikk", + 'text_search_ip_history' => "Søk i IP-historikk", + 'row_ip' => "IP", + 'row_subnet_mask' => "Subnet maske", + 'submit_search' => "Søk", + 'text_no_users_found' => "Ingen brukere funnet", + 'text_users_used_the_ip' => " brukere har brukt IP: ", + 'col_username' => "Brukernavn", + 'col_last_ip' => "Siste IP", + 'col_last_access' => "Sist tilgang", + 'col_ip_num' => "IP Nums", + 'col_last_access_on' => "Sist tilgang til denne IP-en", + 'col_added' => "Lagt", + 'col_invited_by' => "Invitert av", + 'text_not_available' => "N/A", +); +?> diff --git a/lang/nb/lang_linksmanage.php b/lang/nb/lang_linksmanage.php new file mode 100644 index 00000000..543c831e --- /dev/null +++ b/lang/nb/lang_linksmanage.php @@ -0,0 +1,51 @@ + "Søk på lenker", + 'text_apply_for_links' => "Søk på lenker", + 'text_rules' => "Regler for Link Exchange:", + 'text_rule_one' => "1.Lag lenken vår %s på nettstedet ditt før du ber oss om å gjøre det samme.", + 'text_rule_two' => "2.Your site MUST NOT be involed in any illegal things. The administrators of this site %s take absolutely no responsibily for anything of your site.", + 'text_rule_three' => "3.Alle lenker vi gjør her på nettstedet vårt %s er kun tekst-knapp.", + 'text_rule_four' => "4.Nettstedet ditt burde ha minst 200 registrerte brukere eller 50 personer for dagligbesøk.", + 'text_rule_five' => "5.We reserve the rights to MODIFY OR DELETE ANY LINKS at our site %s without notification.", + 'text_rule_six' => "6.Hvis det er i overensstemmelse med reglene ovenfor, kan du søke om lenker av nettstedet ditt på %s. Men vi gir ingen garanti for å godta all søknad.", + 'text_red_star_required' => "Felt markert med rød stjerne (*) er påkrevd.", + 'text_site_name' => "Nettsteds navn", + 'text_url' => "Nettadresse", + 'text_title' => "Tittel", + 'text_title_note' => "Tittelen brukes til å vise verktøytips ved en lenke, f.eks NexusPHP", + 'text_administrator' => "Administratorsiden", + 'text_administrator_note' => "Vi trengte administrator SANN.", + 'text_email' => "E-post", + 'text_reason' => "Grunn", + 'submit_okay' => "Ok", + 'submit_reset' => "Reset", + 'std_error' => "Feil", + 'std_no_sitename' => "Nettstedsnavn kan ikke være tomt.", + 'std_no_url' => "URL-adressen kan ikke være tom.", + 'std_no_admin' => "Administratoren kan ikke være tom. Vi må vite administratorens navn", + 'std_no_email' => "E-posten kan ikke være tomt.", + 'std_invalid_email' => "E-postadressen er ugyldig", + 'std_no_reason' => "Årsaken kunne ikke være tom. Kom igjen, vennligst oppgi oss grunner til å linke nettstedet.", + 'std_reason_too_short' => "Årsaken er for kort. Kom igjen, vennligst si noe mer.", + 'std_success' => "Vellykket", + 'std_success_note' => "Søknaden din er sendt. Vennligst vent på svar.", + 'text_sitename_note' => "Navnet på nettstedet. f.eks NexusPHP", + 'text_url_note' => "f.eks https://nexusphp.org", + 'text_email_note' => "Administratorens kontaktadresse", + 'std_missing_form_data' => "Manglende skjemadata.", + 'std_unable_creating_new_link' => "Kan ikke opprette ny lenke.", + 'std_links_manage' => "Administrer lenker", + 'text_add_link' => "Legg til kobling", + 'text_manage_links' => "Administrere lenker", + 'text_modify' => "Endre", + 'text_edit' => "Rediger", + 'text_delete' => "Slett", + 'text_no_links_found' => "Beklager, ingen lenker ble funnet!", + 'text_edit_link' => "Endre lenke", + 'js_sure_to_delete_link' => "Er du sikker på at du vil slette lenken?", +); + +?> diff --git a/lang/nb/lang_log.php b/lang/nb/lang_log.php new file mode 100644 index 00000000..fbe2d315 --- /dev/null +++ b/lang/nb/lang_log.php @@ -0,0 +1,67 @@ + "Sorry...", + 'std_permission_denied_only' => "Tillatelse nektet. Bare ", + 'std_or_above_can_view' => " eller over kan se LOG.

    Vennligst se FAQ for mer informasjon om ulike brukerklasser og hva de kan gjøre.

    %s ansatte
    ", + 'head_site_log' => "Daglig logg", + 'text_search_log' => "Søk i daglig logg", + 'submit_search' => "Søk", + 'text_log_empty' => "Logg er tom
    ", + 'title_time_added' => "Tid", + 'col_date' => "Dato", + 'col_event' => "Hendelse", + 'time_zone_note' => "

    Times er i GMT + 8:00.

    ", + 'text_daily_log' => "Daglig logg", + 'text_chronicle' => "Kronisk", + 'text_code_update' => "Oppdater koden", + 'text_funbox' => " Funbox ", + 'text_news' => "  News  ", + 'text_poll' => "  Avstemning  ", + 'std_error' => "Feil", + 'std_invalid_action' => "Ugyldig handling", + 'head_chronicle' => "Kronisk", + 'text_search_chronicle' => "Søk etter Chronicle", + 'text_chronicle_empty'=> "Krøniken er tom
    ", + 'col_modify' => "Endre", + 'text_edit' => "Rediger", + 'text_delete' => "Slett", + 'submit_add' => "Legg til", + 'text_add_chronicle' => "Legg til Chronicle hendelse", + 'std_permission_denied' => "Tilbake fra! Du har ikke lov til å gjøre dette.", + 'submit_okay' => "Ok", + 'text_edit_chronicle' => "Rediger Krønikehendelsen", + 'head_code_update' => "Oppdater koden", + 'text_search_code_update' => "Søk Code-oppdatering-hendelse", + 'text_add_code_update' => "Legg til kodeoppdatering hendelse", + 'text_edit_codeupdate' => "Rediger Code-Update Event", + 'text_codeupdate_empty' => "Code-oppdatering er tom
    ", + 'head_funbox' => "Funbox logg", + 'head_news' => "Nyheter", + 'text_search_news' => "Søk på nytt", + 'text_news_empty' => "Nyheter er tom
    ", + 'col_title' => "Tittel", + 'col_body' => "Innhold", + 'col_user' => 'Bruker', + 'std_delete_poll' => "Slett avstemming", + 'std_delete_poll_confirmation' => "Vil du virkelig slette en avstemming? Klikk ", + 'std_here_if_sure' => "her om du er sikker.", + 'std_sorry' => "Sorry...", + 'std_no_polls' => "Det er ingen avstemminger!", + 'head_previous_polls' => "Forrige meningsmålinger", + 'text_previous_polls' => "Forrige meningsmålinger", + 'text_ago' => " siden", + 'text_votes' => "Stemmer: ", + 'text_in' => "i ", + 'text_funbox_empty' => "Funbox er tom
    ", + 'text_search_funbox' => "Søk funbox", + 'text_title' => "tittel", + 'text_body' => "kroppen", + 'text_both' => "både", + 'text_all' => "alle", + 'text_normal' => "normal", + 'text_mod' => "mod", +); + +?> diff --git a/lang/nb/lang_login.php b/lang/nb/lang_login.php new file mode 100644 index 00000000..adbcbeb7 --- /dev/null +++ b/lang/nb/lang_login.php @@ -0,0 +1,40 @@ + "Ikke innlogget!", + 'p_error' => "Feil:", + 'p_after_logged_in' => "Siden du prøvde å se kan bare brukes når du er pålogget.", + 'p_need_cookies_enables' => "Notat: Du trenger informasjonskapsler aktivert for å logge inn eller bytte språk.", + 'p_fail_ban' => "Mislykkede innlogginger på en rad vil resultere i å utestenge din ip!", + 'p_you_have' => "Du har", + 'p_remaining_tries' => "gjenstående prøvinger.", + 'p_no_account_signup' => "Har du ikke en konto? registrer deg med nå!", + 'p_forget_pass_recover' => "Glemt passordet? Gjenopprette passordet via e-post", + 'p_account_banned' => "Konto utestengt? Vis årsaken tilbrukerforbud mot å logge", + 'p_resend_confirm' => "Fikk ikke bekreftelsen e-post eller bekreftelseslenke en ødelagt? Send bekreftelse på nytt", + 'rowhead_username' => "Brukernavn:", + 'rowhead_password' => "Passord:", + 'button_login' => "Logg inn!", + 'button_reset' => "Reset", + 'text_auto_logout' => "Auto utlogging:", + 'text_restrict_ip' => "Begrens IP:", + 'text_ssl' => "SSL (HTTPS):", + 'checkbox_auto_logout' => " Logg meg ut etter 15 minutter", + 'checkbox_restrict_ip' => " Begrens økt til min IP", + 'checkbox_ssl' => " Bla gjennom nettstedet med SSL kryptering (Nettleser)", + 'checkbox_ssl_tracker' => " Koble til tracker med SSL kryptering (BitTorrent klient)", + 'text_advanced_options' => "Avanserte alternativer:", + 'text_helpbox' => "Hjelpespiller", + 'text_helpbox_note' => "Har du problemer med registrering eller innlogging? Legg igjen en melding her", + 'text_message' => "Melding: ", + 'sumbit_shout' => "rop", + 'submit_clear' => "tøm", + 'text_select_lang' => "Velg nettstedsspråk: ", + 'head_login' => "Innlogging", + 'rowhead_two_step_code' => 'To-faktor autentisering', + 'two_step_code_tooltip' => 'Hvis aktivert, må dette fylles ut', + 'text_complain' => 'Klage Kanal', +); + +?> diff --git a/lang/nb/lang_mailtest.php b/lang/nb/lang_mailtest.php new file mode 100644 index 00000000..20483a18 --- /dev/null +++ b/lang/nb/lang_mailtest.php @@ -0,0 +1,18 @@ + "E-post test", + 'text_mail_test' => "E-post test", + 'row_enter_email' => "Skriv inn e-post", + 'text_enter_email_note' => "Angi en e-postadresse for å sende en test-epost, f.eks ditt@gmail.com", + 'submit_send_it' => "Sende den!", + 'text_smtp_testing_mail' => " SMTP-test e-post", + 'std_error' => "Feil", + 'std_invalid_email_address' => "Ugyldig e-postadresse!", + 'mail_test_mail_content' => "Hei, hvis du ser denne meldingen, fungerer SMTP-funksjonen fantastisk. Ha en fin dag.", + 'std_success' => "Vellykket", + 'std_success_note' => "Ingen feil funnet. Men dette betyr ikke at e-posten kommer 100%. Vennligst sjekk e-posten." +); + +?> diff --git a/lang/nb/lang_makepoll.php b/lang/nb/lang_makepoll.php new file mode 100644 index 00000000..5dc14ae3 --- /dev/null +++ b/lang/nb/lang_makepoll.php @@ -0,0 +1,24 @@ + "Feil", + 'std_no_poll_id' => "Ingen avstemming funnet med denne IDen", + 'std_missing_form_data' => "Manglende skjemadata!", + 'head_edit_poll' => "Rediger avstemming", + 'text_edit_poll' => "Rediger avstemming", + 'head_new_poll' => "Ny avstemming", + 'text_day' => " dag", + 'text_hour' => " time", + 'text_current_poll' => "Merk: Den gjeldende avstemningen ", + 'text_is_only' => " bare er ", + 'text_old' => " gammel.", + 'text_make_poll' => "Opprett avstemming", + 'text_question' => "Spørsmål", + 'text_option' => "Alternativ ", + 'submit_edit_poll' => "Rediger avstemming", + 'submit_create_poll' => "Velg en avstemming", + 'text_required' => " obligatorisk" +); + +?> diff --git a/lang/nb/lang_messages.php b/lang/nb/lang_messages.php new file mode 100644 index 00000000..66aa029d --- /dev/null +++ b/lang/nb/lang_messages.php @@ -0,0 +1,81 @@ + "Feil", + 'std_invalid_mailbox' => "Ugyldig postboks", + 'text_inbox' => "Innboks", + 'text_sentbox' => "Setningsboks", + 'text_sender' => "Avsender", + 'text_receiver' => "Mottaker", + 'col_status' => "Status:", + 'col_subject' => "Emne", + 'col_date' => "Dato", + 'col_act' => "Loven.", + 'text_no_messages' => "Ingen meldinger.", + 'text_remove_from_friends' => "[Fjern fra venner]", + 'text_add_to_friends' => "[Legg til venner]", + 'submit_move_to' => "Flytt til", + 'text_or' => " eller ", + 'submit_delete' => "Slett", + 'text_unread_messages' => " Uleste meldinger.", + 'text_read_messages' => " Les meldinger.", + 'text_mailbox_manager' => "Tilretteleder for Postboks", + 'std_no_permission' => "Du har ikke tillatelse til å se denne meldingen.", + 'text_to' => "Til", + 'text_from' => "Fra", + 'text_new' => "(Ny)", + 'text_reply' => "Svar", + 'text_delete' => "Slett", + 'text_forward_pm' => "Videresend PM", + 'std_cannot_move_messages' => "Meldinger kunne ikke flyttes! ", + 'std_cannot_delete_messages' => "Meldinger kunne ikke slettes! ", + 'std_no_action' => "Ingen handling", + 'std_no_permission_forwarding' => "Du har ikke tillatelse til å videresende denne meldingen.", + 'row_to' => "Til: ", + 'row_original_receiver' => "Opprinnelig Mottaker:", + 'row_original_sender' => "Orignal Avsender:", + 'row_subject' => "Emne:", + 'row_message' => "Melding:", + 'checkbox_save_message' => "Lagre melding ", + 'submit_forward' => "Videresend", + 'std_no_such_user' => "Beklager, det finnes ingen bruker med det brukernavnet.", + 'std_rufused' => "Avvist", + 'std_user_blocks_your_pms' => "Denne brukeren har blokkert PMs fra deg.", + 'std_user_accepts_friends_pms' => "Denne brukeren godtar bare PMs fra brukerne i sin venneliste.", + 'std_user_blocks_all_pms' => "Denne brukeren godtar ikke PMs.", + 'std_success' => "Vellykket", + 'std_pm_forwarded' => "PM videresendt", + 'head_editing_mailboxes' => "Redigerer postbokser", + 'text_editing_mailboxes' => "Redigerer postbokser", + 'text_add_mailboxes' => "Legg til postbokser", + 'text_extra_mailboxes_note' => "Du kan legge til ekstra postkasser. Du trenger ikke å bruke alle inntastingsboksene.", + 'submit_add' => "Legg til", + 'text_edit_mailboxes' => "Rediger postbokser", + 'text_edit_mailboxes_note' => "Du kan redigere navnene eller slette navnet for å slette denne virtuelle mappen.
    Vær oppmerksom på at alle meldinger i denne mappen vil gå tapt hvis du sletter denne mappen. ", + 'text_no_mailboxes_to_edit' => "Det er ingen postkasser å redigere.", + 'submit_edit' => "Rediger", + 'std_no_message_id' => "Ingen melding med denne IDen.", + 'std_could_not_delete_message' => "Kan ikke slette meldingen.", + 'text_jump_to' => " på ", + 'select_inbox' => "Innboks", + 'select_sentbox' => "Setningsboks", + 'submit_go' => "Gå", + 'input_check_all' => "Velg alle", + 'input_uncheck_all' => "Velg ingen", + 'title_unread' => "Ulest", + 'title_read' => "Les", + 'text_system' => "Systemadministrasjon", + 'text_no_subject' => "Uten emne", + 'col_search_message' => "Søk i melding", + 'text_search' => "Søk: ", + 'text_in' => "i", + 'select_title' => "tittel", + 'select_body' => "kroppen", + 'select_both' => "både", + 'submit_mark_as_read' => "Mark as read", + 'std_cannot_mark_messages' => "Kan ikke merke meldingen som lest.", + 'std_no_message_selected' => "Ingen melding valgt" +); + +?> diff --git a/lang/nb/lang_moforums.php b/lang/nb/lang_moforums.php new file mode 100644 index 00000000..5b5894cc --- /dev/null +++ b/lang/nb/lang_moforums.php @@ -0,0 +1,26 @@ + "Overforum administrasjon", + 'text_forum_management' => "Forum Ledelse", + 'text_overforum_management' => "Overforum administrasjon", + 'col_name' => "Navn", + 'col_viewed_by' => "Vist av", + 'col_modify' => "Endre", + 'text_edit' => "Rediger", + 'text_delete' => "Slett", + 'js_sure_to_delete_overforum' => "Er du sikker på at du vil slette dette overforumet?", + 'text_no_records_found' => "Beklager, ingen poster ble funnet!", + 'text_new_overforum' => "Nytt overforum", + 'text_overforum_name' => "Overforum navn", + 'text_overforum_description' => "Overforum beskrivelse", + 'text_minimum_view_permission' => "Minste visningstillatelser", + 'text_overforum_order' => "Overforum rekkefølge", + 'text_overforum_order_note' => "Bestill etter tall ascendantly. Det er 0 som vises øverst", + 'submit_make_overforum' => "Lag Overforum", + 'text_edit_overforum' => "Rediger overforum", + 'submit_edit_overforum' => "Rediger overforum" +); + +?> diff --git a/lang/nb/lang_moresmilies.php b/lang/nb/lang_moresmilies.php new file mode 100644 index 00000000..6e0142ff --- /dev/null +++ b/lang/nb/lang_moresmilies.php @@ -0,0 +1,9 @@ + "Flere klikkbare smilies", + 'text_close' => "Lukk", +); + +?> diff --git a/lang/nb/lang_mybonus.php b/lang/nb/lang_mybonus.php new file mode 100644 index 00000000..baca0769 --- /dev/null +++ b/lang/nb/lang_mybonus.php @@ -0,0 +1,173 @@ + "Beklager!", + 'std_karma_system_disabled' => "Karma Bonus Poeng System er for øyeblikket deaktivert. ", + 'std_points_active' => "Men poengene dine er fremdeles aktive.", + 'text_success_upload' => "Gratulerer! Du har akkurat økt Opplastet beløp!", + 'text_success_download' => "Gratulerer! Du har nettopp økt til Nedlastet beløp!", + 'text_success_invites' => "Gratulerer! Du har fått deg selv 1 ny invitasjon!", + 'text_success_vip' => "Gratulerer! Du har fått deg selv ", + 'text_success_vip_two' => " status i en måned!", + 'text_no_permission' => "ERROR! You have no permission.", + 'text_success_custom_title' => "Konvertering! Du kalles nå %s!", + 'text_success_gift' => " You have spread the Karma well.", + 'head_karma_page' => "'s Karma Bonus Page", + 'text_karma_system' => " Karma Bonus Poeng System", + 'text_exchange_your_karma' => "Utveksle Karma bonus poeng (for øyeblikket ", + 'text_for_goodies' => " ) for godbiter!", + 'text_no_buttons_note' => "Hvis knappen er deaktivert, har du ikke tjent nok bonuspoeng for å handle. ", + 'col_option' => "Alternativ", + 'col_description' => "Beskrivelse", + 'col_points' => "Poeng", + 'col_trade' => "Byttehandel", + 'text_username' => "Brukernavn: ", + 'text_to_be_given' => "skal gis: ", + 'text_karma_points' => " Karma poeng!", + 'text_enter_titile' => "Skriv inn Spesialtittel du ønsker å ha ", + 'text_click_exchange' => " trykk \"Exchange\" ", + 'text_enter_receiver_name' => "Skriv inn brukernavnet for den personen du ønsker å sende karma til og velg hvor mange poeng du vil sende og klikk Karma gave!", + 'text_min' => "minste", + 'text_max' => "største", + 'submit_karma_gift' => "Karma Gift!", + 'text_plus_only' => "+ bare!", + 'submit_exchange' => "Exchange!", + 'text_unavailable' => "Foreløpig ikke tilgjengelig!", + 'text_more_points_needed' => "flere poeng trengs", + 'text_what_is_karma' => "Hva helvetet er disse Karma bonuspoengene, og hvordan får jeg tak i dem?", + 'text_get_by_seeding' => "Du får følgende karma poeng per time ved frø:", + 'text_for_seeding_torrent' => " for hver torrent som du deler (maks av ", + 'text_torrent' => " torrent", + 'text_donors_always_get' => "Donorer får alltid ", + 'text_times_of_bonus' => "x bonuspoeng.", + 'text_other_things_get_bonus' => "Andre ting som vil få deg karma poeng:", + 'text_point' => " poeng", + 'text_upload_torrent' => "last opp en ny torrent = ", + 'text_upload_subtitle' => "laster opp en undertittel = ", + 'text_start_topic' => "starter et emne = ", + 'text_make_post' => "lage et innlegg = ", + 'text_add_comment' => "kommenterer torrent eller tilbud = ", + 'text_poll_vote' => "stemme på avstemming = ", + 'text_offer_vote' => "stemme på tilbud = ", + 'text_funbox_vote' => "Avstemming på funbox = ", + 'text_rate_torrent' => "vurdere en torrent = ", + 'text_say_thanks' => "si takk = ", + 'text_receive_thanks' => "takk = ", + 'text_funbox_reward' => "postere soppting som har mottatt høy vurdering (se regler)", + 'text_howto_get_karma_four' => " +

    Ting du burde ha i tanken:

    +
      ", + 'text_howto_get_karma_five' => "
    • Alt som kan få deg karma kan også mistes,
      i. . Dersom du laster opp en torrent, slett den, vil du få og deretter miste ", + 'text_howto_get_karma_six' => ".
    • +
    • There are always other hidden bonus karma points over the site. Try to find them :)
    • +
    • Staff can give or take away points for breaking the rules, or doing good for the community.
    • +
    ", + 'std_no_permission' => "Ingen tillatelse", + 'std_class_above_vip' => "Klassen din over VIP!", + 'text_wasted_karma' => "Jeg kastet nettopp min karma", + 'text_huh' => "Huh?", + 'text_karma_self_giving_warning' => "Not so fast there Mr. fancy pants...
    You can not spread the karma to yourself...
    If you want to spread the love, pick another user!

    click to go back to your Karma Bonus Point page.", + 'text_receiver_not_exists' => "Beklager...
    Ingen bruker med det brukernavnet

    klikk for å gå tilbake til siden Karma Bonus Poeng.", + 'text_oups' => "OUPS!", + 'text_not_enough_karma' => "Beklager, du har ikke nok Karma poeng!
    gå tilbake til siden Karma Bonus Poeng.", + 'text_cheat_alert' => "Fantas! Vi vet at du prøver å jukse!", + 'text_not_enough_bonus' => "Beklager, du har ikke nok bonus. BTW, hvor dou du kommer her?", + 'text_uploaded_one' => "1,0 GB opplastet", + 'text_uploaded_note' => "Med nok bonuspoeng har du mulighet til å utveksle dem for å laste opp kreditt. Poengene blir så fjernet fra bonusbanken din og kreditten legges til ditt samlede opplastede beløp.", + 'text_download_note' => "Med nok bonuspoeng har du mulighet til å utveksle dem for Last ned kreditt. Poengene blir deretter fjernet fra bonusbanken din og kreditten blir lagt til totalt lastet ned -beløpet.", + 'text_uploaded_two' => "5.0 GB Opplastet", + 'text_uploaded_three' => "10.0 GB opplastet", + 'text_uploaded_four' => "100.0 GB lastet opp", + 'text_downloaded_ten_gb' => "10.0 GB Lastet ned", + 'text_downloaded_hundred_gb' => "100.0 GB Lastet ned", + 'text_buy_invite' => "1 invitasjon", + 'text_buy_invite_note' => "Med nok bonuspoeng har du mulighet til å utveksle dem om noen invitasjoner. Poengene blir deretter fjernet fra bonusbanken din og invitasjonene blir lagt til invitasjonene dine beløp.", + 'text_custom_title' => "Egendefinert tittel!", + 'text_custom_title_note' => "Med nok bonuspoeng inkommet, kan du kjøpe deg selv en egendefinert tittel. De eneste restriksjonene er ingen foul eller offensiv språk, eller navn på brukerklasser. Poengene er deretter fjernet fra bonusbanken din, og din spesielle tittel endres til tittelen du valget.", + 'text_vip_status' => "VIP Status", + 'text_vip_status_note' => "Med nok bonuspoeng har du kjøpt deg VIP status for en måned. Poengene blir deretter fjernet fra bonusbanken din, og statusen din endres.", + 'text_bonus_gift' => "Gi en Karma gave", + 'text_bonus_gift_note' => "Godt trenger du kanskje ikke laste opp kreditt, men du vet noen som kan bruke Karma høysten! Du kan nå gi din Karma kreditt som en gave! Poengene blir så fjernet fra bonusbanken din og lagt til kontoen til en bruker av valget! Og de mottar en PM med all info samt hvem den kommer fra...", + 'text_error' => "Feil", + 'text_ratio_too_high' => "Din ratio er høy", + 'text_bonus_formula_one' => "The number of karma points gained per hour is given by the following formula

        
        
    +where
    • A is an intermediate variable
    • Ti is the ith torrent's Time Alive (TA), i.e. time elapsed since the torrent was uploaded, in weeks
    • T0 is a parameter. T0 = ", + 'text_bonus_formula_two' => "
    • Si er itorrentens størrelse, i GB
    • Ni er antallet nåværende syrer av iden fjerde torrenten
    • N0 er en parameter. N0= ", + 'text_bonus_formula_three' => "
    • B er antallet karma poeng oppnådd ved å seile i en time
    • B0 er en parameter. som står for maksimalt bonuspoeng per time kan en bruker få frø. B0= ", + 'text_bonus_formula_four' => "
    • L er en parameter. L= ", + 'text_bonus_formula_five' => "
    I nøttet får du mer bonus ved å skille mellom mindre og større torrenter.", + 'text_bonus_formula_wi' => "
  • Wi er den fjerde torrentens vekt ved iog standard er 1, null bonus torrent er ", + 'text_user_with_ratio_above' => "Bruker med forhold over ", + 'text_and_uploaded_amount_above' => " og opplastet mengde over ", + 'text_cannot_exchange_uploading' => " GB kan ikke utveksle for mer laste opp kreditt.", + 'text_you_are_currently_getting' => "Du får for øyeblikket ", + 'text_per_hour' => " per time", + 'text_custom' => "Egendefinert", + 'bonus_amount_not_allowed' => "Bonus beløp er ikke tillatt! Du kan bare gi bort fra 25.0 til 1000.0 poeng hver gang.", + 'text_system_charges_receiver' => "MERK: Systemet tar imot den som mottaker ", + 'text_tax_bonus_point' => " bonus poeng", + 'text_tax_plus' => " + ", + 'text_percent_of_transfered_amount' => "% av oversendt beløp", + 'text_as_tax' => " som avgift. For eksempel får mottakeren bare ", + 'text_tax_example_note' => " poeng når du sender han 100 bonuspoeng som gave.", + 'text_no_advertisements' => " Dager uten annonser", + 'text_no_advertisements_note' => "Med nok bonuspoeng byttet kan du kjøpe deg selv litt tid hvor du kan velge å se ingen annonser på denne siden. Poengene blir deretter fjernet fra bonusbanken din, og du ser ingen annonser for en periode. Du kan imidlertid alltid reaktivere annonser hos Bruker-CP. ", + 'text_success_no_ad' => "Nyt tiden din med ingen annonser!", + 'submit_class_above_no_ad' => "Deaktiver annonser ved bruker CP", + 'submit_already_disabled' => "Annonser allerede deaktivert", + 'text_click_on_ad' => "klikk på en annonse (hver annonse teller kun én gang) = ", + 'text_promotion_link_clicked' => "kampanjelenken blir klikket (hver IP teller kun én gang) = ", + 'text_charity_giving' => "Gi Veldedighet", + 'text_charity_giving_note' => "Kjennskapen går direkte til de som er i nød. Det er helt opp til deg å avgjøre hvem som skal dra nytte av din sjenerøsitet.", + 'text_ratio_below' => "Gi til de med forholdet under ", + 'text_and_downloaded_above' => " og lastet ned over ", + 'text_select_receiver_ratio' => "Velg ratioen for de du vil at veldedigheten skal gå til, og velg hvor mange poeng du vil sende og klikk pakke!", + 'submit_charity_giving' => "Veldedighet gir!", + 'text_message' => "Melding: ", + 'bonus_amount_not_allowed_two' => "Bonus beløp ikke tillatt! Du kan bare gi bort fra 1000.0 til 50000.0 poeng hver gang.", + 'bonus_ratio_not_allowed' => "Bonus forhold ikke tillatt! Bare brukere med forhold under 0,8 behov for velighet.", + 'std_no_users_need_charity' => "Ingen brukere trenger veldedig for øyeblikket.", + 'text_success_charity' => "Tusen takk! Din generøsitet er verdsatt.", + 'text_cancel_hr_title' => 'H&R Avbryt', + 'text_cancel_hr_label' => 'Skriv i H&R-ID:', + 'text_success_cancel_hr' => "Suksess avbryt en H&R.", + 'text_success_buy_medal' => 'Vellykket kjøp av medalje.', + 'text_attendance_card' => 'Kjøp deltakerkort', + 'text_attendance_card_note' => 'En dag for å gjøre opp angreps-forbruket en, samtidig som antall bonusbelønninger må være i henhold til vanlig beregning, det vil si måldato frem for å beregne antall kontinuerlige dager for å motta belønninger.', + 'text_success_buy_attendance_card' => 'Suksess kjøper 1 deltakerkort.', + 'text_harem_addition_get' => 'Nåværende harem tilføyelse Ã¥ gi %s bonus per time', + 'reward_type' => 'Belønning type', + 'factor' => 'Faktor', + 'got_bonus' => 'Har bonus', + 'total' => 'Totalt', + 'reward_type_basic' => 'Basis belønning', + 'reward_type_harem_addition' => 'Varm tillegg', + 'bonus_base' => 'Base bonus', + 'lock_text' => 'The system limits you to one click on the exchange button within %s seconds!', + 'text_get_by_seeding_official' => 'De offisielle torrenter får følgende bonusverdi per time', + 'official_calculate_method' => 'Formelen for å beregne den offisielle belønningen er den samme som ovenfor, men bare for den offisielle typen, Det er ingen hensyn til lavinntekt', + 'official_tag_bonus_additional_factor' => 'Den endelige belønningen er den beregnede offisielle typebelønningen multiplisert med den offisielle typefaktoren, den gjeldende offisielle typefaktoren er: ', + 'reward_type_official_addition' => 'Offisielt tillegg', + 'text_get_by_harem' => 'Tilleggene gir følgende bonusverdi per time', + 'harem_additional_desc' => "Bare direkte haremer vil bli vurdert for harem. Hver hareors bonustillegg-verdi kan vises på her", + 'harem_additional_note' => 'Merk: Hvis du ikke gjør deg selv, vil ikke denne bonusverdien legges til i brukerkontoen', + 'harem_additional_factor' => 'Belønning fÃ¥r summen av alle vÃ¥rene per bonus (uavhengig av tillegg), multiplisert med harem-bonusfaktoren, med dagens verdi av ', + 'text_bonus_summary' => 'Total bonus opptjent per time', + 'col_count' => 'Teller', + 'col_size' => 'Størrelse', + 'col_a' => 'A Verdi', + 'text_buy_tmp_invite' => '1 Midlertidig invitasjon', + 'text_buy_tmp_invite_note' => "Med nok bonuspoeng har du mulighet til å utveksle dem for noen midlertidige invitasjoner, med gyldighet i 7 dager. Poengene er deretter fjernet fra bonusbanken din, og de midlertidige invitasjonene blir lagt til dine midlertidige invitasjoner beløp.", + 'text_success_tmp_invites' => "Gratulerer! Du har fått deg selv 1 ny midlertidig invitasjon!", + 'text_buy_rainbow_id' => "Kjøp Regnbue-ID", + 'text_buy_rainbow_id_note' => 'Legger til en regnbue-lignende handlingseffekt på brukernavn, gyldig i 30 dager og kumulativt over tid ved gjentatte kjøp.', + 'text_success_buy_rainbow_id' => "Gratulerer, Regnbue ID lagt til 30 dager!", + 'text_buy_change_username_card' => "Kjøp skifte brukernavn kort", + 'text_buy_change_username_card_note' => 'Endre brukernavnet ditt én gang, og det vil være gyldig for alltid.', + 'text_success_buy_change_username_card' => "Gratulerer med ditt vellykkede kjøp av et endre brukerkort!", + 'text_change_username_card_already_has' => 'Har allerede et endre brukernavn kort', + 'text_rainbow_id_already_valid_forever' => 'Har allerede en permanent Regnbue-ID', +); + +?> diff --git a/lang/nb/lang_myhr.php b/lang/nb/lang_myhr.php new file mode 100644 index 00000000..aaeb873b --- /dev/null +++ b/lang/nb/lang_myhr.php @@ -0,0 +1,14 @@ + 'H&R ID', + 'th_torrent_name' => 'Torrent', + 'th_uploaded' => 'Opplastet', + 'th_downloaded' => 'Nedlastet', + 'th_share_ratio' => 'Del rate', + 'th_seed_time_required' => 'Nøkkeltid som kreves', + 'th_completed_at' => 'Fullført ved', + 'th_ttl' => 'Undersøk tid igjen', + 'th_comment' => 'Kommentar', + 'action_remove' => 'Fjern', +]; diff --git a/lang/nb/lang_news.php b/lang/nb/lang_news.php new file mode 100644 index 00000000..03bf5c87 --- /dev/null +++ b/lang/nb/lang_news.php @@ -0,0 +1,21 @@ + "Slett nyhet", + 'std_are_you_sure' => "Er du sikker på at du vil slette en nyhet? Klikk ", + 'std_here' => "her", + 'std_if_sure' => " hvis du er sikker.", + 'std_error' => "Feil", + 'std_news_body_empty' => "Nyhetsgruppen kan ikke være tom!", + 'std_news_title_empty' => "Nyhetstittelen kan ikke være tom!", + 'std_something_weird_happened' => "Noe rart skjedde.", + 'std_invalid_news_id' => "Ingen nyhetselement med ID ", + 'head_edit_site_news' => "Redigere nettstedsnyheter", + 'text_edit_site_news' => "Redigere nettstedsnyheter", + 'text_notify_users_of_this' => "Varsle brukere av dette.", + 'head_site_news' => "Nettstedets nyheter", + 'text_submit_news_item' => "Send inn nyhet" +); + +?> diff --git a/lang/nb/lang_offers.php b/lang/nb/lang_offers.php new file mode 100644 index 00000000..179afa13 --- /dev/null +++ b/lang/nb/lang_offers.php @@ -0,0 +1,143 @@ + "Tilbudt av ", + 'text_inf' => "Opplysning", + 'text_ratio' => "ratio:", + 'text_orphaned' => "(Forsvare)", + 'text_at' => " på ", + 'text_edit' => "Rediger", + 'text_delete' => "Slett", + 'text_profile' => "Profil", + 'text_pm' => "PM", + 'text_report' => "Rapporter", + 'text_last_edited_by' => "Sist endret av ", + 'text_edited_at' => " på ", + 'head_offer_error' => "Tilbuds feil", + 'std_error' => "Feil!", + 'std_smell_rat' => "Jeg lukter en rot!", + 'head_offer' => "Tilbud", + 'submit_search' => "Go!", + 'text_red_star_required' => "Felt markert med rød stjerne (*) er påkrevd.", + 'text_offers_open_to_all' => "Tilbud er åpne for alle brukere... en flott ratio-økning!", + 'select_type_select' => "(Velg)", + 'row_type' => "Type:", + 'row_title' => "Tittel", + 'row_post_or_photo' => "Dødsfall eller foto", + 'text_link_to_picture' => "(Direkte lenke til bildet. INGEN TAG NED! Vil vises i beskrivelse)", + 'row_description' => "Beskrivelse", + 'submit_add_offer' => "Legg til Tilbud!", + 'col_type' => "Type:", + 'col_title' => "Tittel", + 'title_time_added' => "Tid lagt til", + 'col_offered_by' => "La til av", + 'submit_show_all' => "Vis Alle", + 'std_must_enter_name' => "Du må skrive inn et navn!", + 'std_must_select_category' => "Du må velge en kategori for å legge tilbudet i!", + 'std_must_enter_description' => "Du må angi en beskrivelse!", + 'std_wrong_image_format' => "Bildet MÅ være i jpg, gif eller png format.", + 'head_success' => "Suksess!", + 'head_error' => "Feil!", + 'std_offer_exists' => "Tilbudet er allerede klar!", + 'text_view_all_offers' => "Vis alle tilbud.", + 'head_offer_detail_for' => "Tilbudsinformasjon for ", + 'text_offer_detail' => "Tilbuds detaljer", + 'row_time_added' => "Tid lagt til", + 'row_status' => "Status:", + 'text_pending' => "Ventende", + 'text_allowed' => "Tillatt", + 'text_denied' => "Avvist", + 'text_edit_offer' => "Rediger tilbud", + 'text_delete_offer' => "Slett tilbud", + 'report_offer' => "Rapporter tilbud", + 'row_allow' => "Tillat", + 'submit_allow' => "Tillat", + 'submit_let_votes_decide' => "La stemmer bestemme", + 'row_vote' => "Stem", + 'text_for' => "Til", + 'text_against' => "Mot", + 'row_offer_allowed' => "Tilbud tillatt", + 'text_voter_receives_pm_note' => "Hvis du stemte på dette tilbudet, vil du være PMed når det er tatt opp!", + 'text_urge_upload_offer_note' => "Dette tilbudet er tillatt! Last det opp så snart som mulig.", + 'row_vote_results' => "Stem Resultater", + 'text_see_vote_detail' => "[Se Stem Details]", + 'row_report_offer' => "Rapporter tilbud", + 'text_for_breaking_rules' => " for å bryte reglene ", + 'submit_report_offer' => "Rapport Tilbud", + 'text_add_comment' => "Legg til kommentar", + 'text_no_comments' => "Ingen kommentarer", + 'std_access_denied' => "Ingen tilgang!", + 'std_mans_job' => "dette er en manns jobbet!", + 'std_have_no_permission' => "Du har ikke tilgang", + 'std_sorry' => "Beklager", + 'std_no_votes_yet' => "Ingen stemmer enda... ", + 'std_back_to_offer_detail' => "Tilbake til tilbuds detaljer", + 'std_cannot_edit_others_offer' => "Dette er ikke ditt tilbud å redigere.", + 'head_edit_offer' => "Rediger tilbud ", + 'text_edit_offer' => "Rediger tilbud", + 'submit_edit_offer' => "Rediger Tilby", + 'head_offer_voters' => "Tilby stemmer", + 'text_vote_results_for' => "Tilby stemte resultater for", + 'col_user' => "Bruker", + 'col_uploaded' => "Opplastet", + 'col_downloaded' => "Nedlastet", + 'col_ratio' => "Forhold", + 'col_vote' => "Stem", + 'std_already_voted' => "Du har allerede stemt", + 'std_already_voted_note' => "

    du har allerede stemt, maks 1 stemme per tilbud

    Tilbake til ", + 'std_back_to_offer_detail' => "offer details

    ", + 'head_vote_for_offer' => "Stem til tilbud", + 'std_vote_accepted' => "Stemme akseptert", + 'std_vote_accepted_note' => "

    Din stemme har blitt akseptert

    Tilbake til ", + 'std_cannot_delete_others_offer' => "Dette er ikke ditt tilbud å slette!", + 'std_delete_offer' => "Slett tilbud", + 'std_delete_offer_note' => "Du er ferd med å slette dette tilbudet.", + 'head_offers' => "Tilbud", + 'text_offers_section' => "Tilbud seksjonen", + 'text_add_offer' => "Legg til tilbud", + 'text_view_request' => "Vis forespørsler", + 'select_show_all' => "(Vis alle)", + 'submit_view_only_selected' => "vis bare valgt", + 'text_search_offers' => "Søk: ", + 'title_comment' => "Kommentarer", + 'col_vote_results' => "Stem", + 'text_nothing_found' => "Ingenting funnet!", + 'text_yep' => "yep", + 'text_nah' => "nah", + 'title_show_vote_details' => "Vis Stem Detaljer", + 'title_i_want_this' => "Jeg vil ha dette!", + 'title_do_not_want_it' => "Jeg liker ikke da dette", + 'row_action' => "Handling", + 'text_quick_comment' => "Hurtig kommentar", + 'submit_add_comment' => "Legg til Kommentar", + 'text_blank' => " ", + 'col_act' => "Loven.", + 'title_delete' => "Slett", + 'title_edit' => "Rediger", + 'col_timeout' => "Tidsavbrudd", + 'row_info' => "Informasjon", + 'text_reason_is' => "Årsak: ", + 'submit_confirm' => "Bekreft", + 'title_add_comments' => "Legg til kommentar", + 'text_at_time' => " på ", + 'text_blank_two' => " ", + 'text_last_commented_by' => "Sist kommentert av ", + 'title_has_new_comment' => "Har ny kommentar", + 'title_no_new_comment' => "Ingen ny kommentar", + 'text_new' => "NY", + 'std_cannot_vote_youself' => "Du kan ikke stemme på dine egne tilbud.", + 'text_rules' => "Regler: ", + 'text_rule_one_one' => "", + 'text_rule_one_two' => " eller over kan laste opp torrenter direkte uten å gå gjennom tilbudsdelen. ", + 'text_rule_one_three' => " eller over kan legge til tilbud.", + 'text_rule_two_one' => "Et tilbud blir godkjent når de støtter stemmene til dette er ", + 'text_rule_two_two' => " mer enn å objektere stemmer.", + 'text_rule_three_one' => "Tilbud vil bli slettet dersom de ikke er godkjent ", + 'text_rule_three_two' => " timer etter lagt til.", + 'text_rule_four_one' => "Tilbud vil bli slettet dersom de ikke lastes opp ", + 'text_rule_four_two' => " timer etter å ha blitt godkjent.", + 'text_rule_skip_offer' => "Når antall tilbud som er sendt av brukeren er større enn eller lik %d, brukeren kan laste opp torrenter direkte uten å gå gjennom tilbudsdelen.", +); + +?> diff --git a/lang/nb/lang_ok.php b/lang/nb/lang_ok.php new file mode 100644 index 00000000..68464530 --- /dev/null +++ b/lang/nb/lang_ok.php @@ -0,0 +1,24 @@ + "Bruker registrering", + 'std_account_activated' => "Registrering vellykket, men kontoen er ikke aktivert!", + 'account_activated_note' => "Kontoen din ble opprettet, men Admin må validere nye medlemmer før de er klassifisert som registrerte medlemmer og få tilgang til nettstedet, Takk for din forståelse.", + 'account_activated_note_two' => "Kontoen din er opprettet, men invitasjonen må validere nye medlemmer før de er klassifisert som registrerte medlemmer og få tilgang til nettstedet, Takk for din forståelse.", + 'std_signup_successful' => "Vellykket registrering!", + 'std_confirmation_email_note' => "En bekreftelses-e-post har blitt sendt til adressen du spesifiserte (" , + 'std_confirmation_email_note_end' => "). Du må lese og svare på denne e-posten før du kan bruke kontoen. Hvis du ikke gjør dette, vil den nye kontoen slettes automatisk etter kort tid.", + 'head_sysop_activation' => "Sysop kontoaktivering", + 'std_sysop_activation_note' => "

    Sysop konto var aktivert!

    \n", + 'std_auto_logged_in_note' => "

    Din konto er aktivert!\n Du har blitt logget inn automatisk. Nå kan du fortsette til hovedsiden og begynne å bruke kontoen din.

    \n", + 'std_cookies_disabled_note' => "

    Din konto har blitt aktivert! Det ser ut til at du ikke kunne være logget automatisk. Kanskje du må åpne et nytt vindu i nettleseren.
    en annen mulig årsak er at du deaktivert informasjonskapsler i nettleseren din. Du må aktivere informasjonskapsler for å bruke kontoen din. Gjør det og så logg inn på og prøv på nytt.

    \n", + 'head_already_confirmed' => "Allerede bekreftet", + 'std_already_confirmed' => "

    Already confirmed

    \n", + 'std_already_confirmed_note' => "

    Denne brukerkontoen har allerede blitt bekreftet. Du kan fortsette til logg inn med den.

    \n", + 'head_signup_confirmation' => "Bekreftelse på registrering", + 'std_account_confirmed' => "

    kontoen ble bekreftet!

    \n", + 'std_read_rules_faq' => "

    Before you start using %s we urge you to read the RULES and the FAQ.

    \n" +); + +?> diff --git a/lang/nb/lang_polloverview.php b/lang/nb/lang_polloverview.php new file mode 100644 index 00000000..1464dec7 --- /dev/null +++ b/lang/nb/lang_polloverview.php @@ -0,0 +1,21 @@ + "Feil", + 'head_poll_overview' => "Oversikt over meningsmålinger", + 'text_polls_overview' => "Oversikt over meningsmålinger", + 'col_id' => "ID", + 'col_added' => "Lagt", + 'col_question' => "Spørsmål", + 'text_no_users_voted' => "Beklager...Det er ingen brukere som stemte!", + 'text_no_poll_id' => "Beklager... Det er ingen meningsmålinger med den IDen!", + 'text_poll_question' => "Avstemnings spørsmål", + 'col_option_no' => "Alternativ Nei", + 'col_options' => "Alternativer", + 'text_polls_user_overview' => "Avstemnings brukeroversikt", + 'col_username' => "Brukernavn", + 'col_selection' => "Utvalg", +); + +?> diff --git a/lang/nb/lang_polls.php b/lang/nb/lang_polls.php new file mode 100644 index 00000000..40d1f7ac --- /dev/null +++ b/lang/nb/lang_polls.php @@ -0,0 +1,20 @@ + "Feil", + 'std_permission_denied' => "Tillatelse nektet.", + 'std_delete_poll' => "Slett avstemming", + 'std_delete_poll_confirmation' => "Vil du virkelig slette en avstemming? Klikk\n", + 'std_here_if_sure' => "her om du er sikker.", + 'std_sorry' => "Sorry...", + 'std_no_polls' => "Det er ingen avstemminger!", + 'head_previous_polls' => "Forrige meningsmålinger", + 'text_previous_polls' => "Forrige meningsmålinger", + 'text_ago' => " siden", + 'text_edit' => "Rediger", + 'text_delete' => "Slett", + 'text_votes' => "Stemmer: " +); + +?> \ No newline at end of file diff --git a/lang/nb/lang_preview.php b/lang/nb/lang_preview.php new file mode 100644 index 00000000..41bdd74b --- /dev/null +++ b/lang/nb/lang_preview.php @@ -0,0 +1,8 @@ + "Forhåndsvisning" +); + +?> \ No newline at end of file diff --git a/lang/nb/lang_promotionlink.php b/lang/nb/lang_promotionlink.php new file mode 100644 index 00000000..dfcc9212 --- /dev/null +++ b/lang/nb/lang_promotionlink.php @@ -0,0 +1,29 @@ + "Kampanje lenke", + 'text_promotion_link' => "Kampanje lenke", + 'text_promotion_link_note_one' => "Hvis du virkelig liker dette nettstedet, hvorfor ikke hjelpe flere personer med å fortelle om det? Du kan gjøre dette ved å spre frem kampanjens lenke. ", + 'text_promotion_link_note_two' => "Hver bruker har en unik kampanjelenke, en tilfeldig URL generert av systemet for å identifisere ham. Når noen klikker på kampanjens link, vil han bli omdirigert til denne siden og systemet vil belønne deg for å hjelpe å spre URL-en.", + 'text_you_would_get' => "Du ville fått ", + 'text_bonus_points' => " bonus poeng hver gang din kampanjelink blir klikket på av en ikke spilt IP. Bare ett klikk telles med i ", + 'text_seconds' => " sekunder", + 'text_your_promotion_link_is' => "Din kampanje link: ", + 'text_promotion_link_note_four' => "Du kan velge hvor du vil bruke kampanjelinken. Følgende er noen eksempler: ", + 'col_type' => "Type:", + 'col_code' => "Kode", + 'col_result' => "Resultat", + 'col_note' => "Notat", + 'row_xhtml' => "XHTML 1.0", + 'text_xhtml_note' => "Hvis du har ditt personlige nettsted kan du bruke XHTML-kode på din side.", + 'row_html' => "HTML 4,01", + 'text_html_note' => "Hvis du har ditt personlige nettsted kan du bruke HTML-kode på din side.", + 'row_bbcode' => "BBkode", + 'text_bbcode_note' => "De fleste programmer for internettfora (eks. vBulletin, Discuz!, PHPWind) støtter BBCode. Det er en god idé å legge til din promoteringslenke i din signatur.", + 'row_bbcode_userbar' => "BBkode brukerlinje", + 'text_bbcode_userbar_note' => "Get your personal userbar. For userbar to work, you must NOT set your privacy level to 'strong' (at User CP).", + 'row_bbcode_userbar_alt' => "BBCode brukerbar alt", + 'text_bbcode_userbar_alt_note' => "Use this if the above one doesn't work. For userbar to work, you must NOT set your privacy level to 'strong' (at User CP)." +) +?> diff --git a/lang/nb/lang_recover.php b/lang/nb/lang_recover.php new file mode 100644 index 00000000..56f2cc28 --- /dev/null +++ b/lang/nb/lang_recover.php @@ -0,0 +1,39 @@ + "Gjenoppretting mislyktes! (Se under feil)", + 'std_missing_email_address' => "Du må skrive inn en e-postadresse!", + 'std_invalid_email_address' => "Ugyldig e-postadresse!", + 'std_email_not_in_database' => "E-postadressen ble ikke funnet i databasen.\n", + 'std_error' => "Feil", + 'std_database_error' => "Databasefeil. Vennligst kontakt en administrator om dette.", + 'std_unable_updating_user_data' => "Kan ikke oppdatere brukerdata. Kontakt en administrator om denne feilen.", + 'text_recover_user' => "Gjenopprett glemt brukernavn eller passord.", + 'text_use_form_below' => "Bruk skjemaet nedenfor for å få tilbakestille passordet ditt og kontoinformasjonen sendt tilbake til deg.", + 'text_reply_to_confirmation_email' => "(Du må svare på en bekreftelse på e-post.)", + 'text_note' => "Merk: ", + 'text_ban_ip' => " mislykkede forsøk på en rad vil resultere i å utestenge din ip!", + 'row_registered_email' => "Registrert e-post: ", + 'submit_recover_it' => "Gjenopprett den!", + 'text_you_have' => "Du har ", + 'text_remaining_tries' => " gjenstående prøvinger.", + + 'mail_this_link' => "DETTE LINK", + 'mail_here' => "HER", + + 'mail_title' => " Bekreft tilbakestilling av passord", + 'mail_one' => "Hei,

    Noen har forhåpentligvis bedt om at passordet for kontoen
    er tilknyttet denne e-postadressen ", + 'mail_two' => " tilbakestilles.

    Forespørselen stammer fra ", + 'mail_three' => ".

    Hvis du ikke ignorerer denne e-posten. Vennligst ikke svar.

    skulle du bekrefte denne forespørselen, vennligst følg ", + 'mail_four' => "
    After you do this, your password will be reset and emailed back to you.

    ------
    Yours,
    The %s Team.", + + 'mail_two_title' => " kontoinformasjon", + 'mail_two_one' => "Hei,

    Etter din forespørsel har vi generert et nytt passord for din konto.

    Her er informasjonen vi har på filen for denne kontoen:

    brukernavn: ", + 'mail_two_two' => "
    passord: ", + 'mail_two_three' => "

    Du kan logge inn fra ", + 'mail_two_four' => "

    You may change your password in User CP - Security Settings after logging in.
    ------
    Yours,
    The %s Team.", + 'text_select_lang' => "Velg nettstedsspråk: ", + 'std_user_account_unconfirmed' => "Kontoen er ikke bekreftet ennå. Hvis du ikke har mottatt e-postbekreftelsen, prøv på nytt den.", +); +?> diff --git a/lang/nb/lang_report.php b/lang/nb/lang_report.php new file mode 100644 index 00000000..85d30d70 --- /dev/null +++ b/lang/nb/lang_report.php @@ -0,0 +1,42 @@ + "Feil", + 'std_missing_reason' => "Manglende årsak!", + 'std_message' => "Melding", + 'std_successfully_reported' => "Vellykket rapportert!", + 'std_already_reported_this' => "Du har allerede rapportert dette!", + 'std_sorry' => "Beklager", + 'std_cannot_report_oneself' => "Du kan ikke rapportere deg selv!", + 'std_invalid_user_id' => "Ugyldig bruker Id!", + 'std_cannot_report' => "Du kan ikke rapportere ", + 'std_are_you_sure' => "Er du sikker?", + 'text_are_you_sure_user' => "Er du sikker på at du vil rapportere denne brukeren ", + 'text_to_staff' => " til personalet ved brudd på reglene?", + 'text_not_for_leechers' => "Vær oppmerksom på at dette er ikke som skal brukes til å rapportere elektrikere, vi har skript på plass for å håndtere dem!", + 'text_reason_is' => "Grunn (påkrevd): ", + 'submit_confirm' => "Bekreft", + 'text_reason_note' => " VENNLIGST Merk!  Hvis ingen grunn er gitt vil du få en advarsel selv.", + 'std_invalid_torrent_id' => "Ugyldig Torrent Id!", + 'text_are_you_sure_torrent' => "Er du sikker på at du vil rapportere denne torrenten ", + 'std_invalid_post_id' => "Ugyldig Post Id!", + 'text_are_you_sure_post' => "Er du sikker på at du ønsker å rapportere forum innlegg (NKID ", + 'text_of_topic' => " med emne ", + 'text_of_torrent' => " av torrent ", + 'text_of_offer' => " med tilbud ", + 'text_of_request' => " av anmodning ", + 'text_by' => ") av ", + 'std_invalid_comment_id' => "Ugyldig kommentar!", + 'std_orphaned_comment' => "Foreldreløs kommentar. Rapporter dette til admin.", + 'text_are_you_sure_comment' => "Er du sikker på at du ønsker å rapportere kommentaren (ID ", + 'std_invalid_offer_id' => "Ugyldig tilbud Id!", + 'text_are_you_sure_offer' => "Er du sikker på at du vil rapportere følgende tilbud ", + 'std_invalid_request_id' => "Ugyldig forespørselsnummer!", + 'std_are_you_sure_request' => "Er du sikker på at du vil rapportere følgende forespørsel ", + 'std_invalid_action' => "Ugyldig handling.", + 'std_invalid_subtitle_id' => "Ugyldig undertekst Id!", + 'text_are_you_sure_subtitle' => "Er du sikker på at du vil rapportere undertittelen ", +); + +?> diff --git a/lang/nb/lang_reports.php b/lang/nb/lang_reports.php new file mode 100644 index 00000000..3f9d7779 --- /dev/null +++ b/lang/nb/lang_reports.php @@ -0,0 +1,41 @@ + "Oho!", + 'std_no_report' => "Ingen rapport.", + 'head_reports' => "Rapporter", + 'text_reports' => "Rapporter", + 'col_added' => "Lagt", + 'col_reporter' => "Rapportør", + 'col_reporting' => "Rapportering", + 'col_type' => "Type:", + 'col_reason' => "Grunn", + 'col_dealt_with' => "alt med", + 'col_action' => "Loven.", + 'text_yes' => "Ja", + 'text_no' => "Nei", + 'text_torrent' => "Torrent", + 'text_torrent_does_not_exist' => "Torrent finnes ikke eller den er slettet.", + 'text_user' => "Bruker", + 'text_user_does_not_exist' => "Brukeren finnes ikke eller den er slettet.", + 'text_offer' => "Tilbud", + 'text_offer_does_not_exist' => "Tilbudet finnes ikke eller det er slettet.", + 'text_forum_post' => "Forum innlegg", + 'text_post_does_not_exist' => "Foruminnlegget finnes ikke eller det er slettet.", + 'text_post_id' => "Innlegg id ", + 'text_of_topic' => " av emne ", + 'text_by' => " av ", + 'text_comment' => "Kommentar", + 'text_comment_does_not_exist' => "Kommentaren finnes ikke eller den er slettet.", + 'text_of_torrent' => " av torrent ", + 'text_of_offer' => " med tilbud ", + 'text_comment_id' => "Kommentar identifikator ", + 'text_subtitle' => "Undertittel", + 'text_subtitle_does_not_exist' => "Underteksten finnes ikke eller den er slettet.", + 'text_for_torrent_id' => " for torrent-ID ", + 'submit_set_dealt' => "Sett falt", + 'submit_delete' => "Slett", +); + +?> diff --git a/lang/nb/lang_rules.php b/lang/nb/lang_rules.php new file mode 100644 index 00000000..49c7e888 --- /dev/null +++ b/lang/nb/lang_rules.php @@ -0,0 +1,8 @@ + "Regler" +); + +?> \ No newline at end of file diff --git a/lang/nb/lang_sendmessage.php b/lang/nb/lang_sendmessage.php new file mode 100644 index 00000000..ca3550ae --- /dev/null +++ b/lang/nb/lang_sendmessage.php @@ -0,0 +1,24 @@ + "Feil", + 'std_permission_denied' => "Tillatelse nektet", + 'head_send_message' => "Send melding", + 'text_mass_message' => "Masse melding til ", + 'text_users' => "brukere", + 'text_subject' => "Emne:", + 'text_comment' => "Kommentar:", + 'text_from' => "Fra:", + 'text_take_snapshot' => "Ta øyeblikksbildet:", + 'submit_send_it' => "Sende den!", + 'submit_preview' => "Forhåndsvisning", + 'text_templates' => "Maler:", + 'submit_use' => "Bruk", + 'std_no_user_id' => "Ingen bruker med den IDen.", + 'text_message_to' => "Melding til ", + 'checkbox_delete_message_replying_to' => "Slett meldingen du svarer på", + 'checkbox_save_message_to_sendbox' => "Lagre melding i postkasse" +); + +?> \ No newline at end of file diff --git a/lang/nb/lang_settings.php b/lang/nb/lang_settings.php new file mode 100644 index 00000000..49e91a00 --- /dev/null +++ b/lang/nb/lang_settings.php @@ -0,0 +1,821 @@ + "Ja", + 'text_no' => "Nei", + 'text_website_settings' => "Innstillinger for nettsted", + 'text_configuration_file_saving_note' => "Før du lagrer innstillingene, må du forsikre deg om at du har riktig satt opp fil- og katalogtillatelser", + 'head_save_main_settings' => "Lagre hovedinnstillinger", + 'std_message' => "Melding", + 'std_click' => "Click ", + 'std_here' => "her", + 'std_to_go_back' => " Å gå tilbake.", + 'head_save_basic_settings' => "Lagre grunnleggende innstillinger", + 'head_save_code_settings' => "Lagre kodingsinnstillinger", + 'head_save_bonus_settings' => "Lagre bonusinnstillinger", + 'head_save_account_settings' => "Lagre kontoinnstillinger", + 'head_save_torrent_settings' => "Lagre Torrent-innstillinger", + 'head_save_smtp_settings' => "Lagre SMTP-innstillinger", + 'head_save_security_settings' => "Lagre sikkerhetsinnstillinger", + 'head_save_authority_settings' => "Lagre myndighetens innstillinger", + 'head_save_tweak_settings' => "Lagre svake innstillinger", + 'head_save_bot_settings' => "Lagre Bot innstillinger", + 'head_bot_settings' => "Bot innstillinger", + 'head_tweak_settings' => "Justere innstillinger", + 'row_save_user_location' => "Lagre brukerplassering", + 'text_save_user_location_note' => "Standard \"nei\". Lagre brukerens nyeste surfeplassering.", + 'row_log_user_ips' => "Logg brukeres IP-adresser", + 'text_store_user_ips_note' => "Standard 'Ja'. Logg IP-adressen når brukerne har en annen IP.", + 'row_kps_enabled' => "Aktiver Karma Bonus Poeng System", + 'text_enabled' => "Aktivert", + 'text_disabled_but_save' => "Deaktivert men lagrer fortsatt poeng", + 'text_disabled_no_save' => "Totalt deaktivert", + 'text_kps_note' => "Standard 'aktivert'. Aktiver KPS eller deaktivering. Behold punkter eller ikke.", + 'row_tracker_founded_date' => "Tracker er forankret dato", + 'text_tracker_founded_date_note' => "Tidsformat er ÅÅÅÅ-MM-DD, satt den til datoen da tracker ble grunnlagt", + 'row_save_settings' => "Lagre innstillinger", + 'submit_save_settings' => "Lagre innstillinger [KUN PRESS]", + 'head_smtp_settings' => "SMTP Innstillinger", + 'row_mail_function_type' => "Type PHP mail-funksjon", + 'head_security_settings' => "Sikkerhet innstillinger", + 'row_enable_ssl' => "Bruk SSL (Web)", + 'row_enable_ssl_tracker' => "Bruk SSL (Tracker)", + 'text_optional' => "Valgfritt (valgt av brukere)", + 'text_ssl_note' => "Standard 'nei'. Aktivering av SSL krever ekstra konfigurasjon for HTTP-serveren og et sertifikat (enten fra en sertifikatmyndighet eller selvsignert).", + 'row_enable_image_verification' => "Aktiver bildebekreftelse", + 'text_image_verification_note' => "Standard \"nei\". Krev brukere for å fylle inn en visuell kontroller-kode for å registrere/logge inn/gjenopprette.", + 'row_allow_email_change' => "Tillat bruker å endre e-post", + 'text_email_change_note' => "Standard 'nei'. Sett til 'nei' å forby brukere å endre sin e-postadresse", + 'row_cheater_detection_level' => "Steinvarmerens deteksjonsnivå", + 'select_none' => "ingen", + 'select_conservative' => "konservativ", + 'select_normal' => "normal", + 'select_strict' => "strikt", + 'select_paranoid' => "paranoid", + 'text_cheater_detection_level_note' => "Standard 'normal'. Sett det til det nivået som passer best til din tracker. Streng, tregere kunngjøringshastighet. ", + 'text_never_suspect' => "Aldri mistenkt ", + 'text_or_above' => " eller ovenfor, dvs. at ingen deteksjon er utført. Standard ", + 'row_max_ips' => "Maks IPer", + 'text_max_ips_note' => "Deaktiver registrering med samme IP-adresse.", + 'row_max_login_attemps' => "Maks. innlogging forsøk", + 'text_max_login_attemps_note' => "Forby IP-adresse som overskrider denne grensen.", + 'head_authority_settings' => "Myndighetens innstillinger", + 'row_default_class' => "Default Class", + 'text_default_user_class' => "Standard brukerklasse: ", + 'text_default' => " Standard ", + 'text_default_class_note' => ". Klasse ved registrering", + 'row_staff_member' => "Medlem av ansatte", + 'text_minimum_class' => "Minimun klasse: ", + 'text_staff_member_note' => ". Klasser som anses som medarbeidere, for eksempel kan vise personalboks", + 'row_news_management' => "Nyheter Administrasjon", + 'text_news_management_note' => ". Legg til ny, rediger, slett nyheter", + 'row_post_funbox_item' => "Legg inn funbox element", + 'text_post_funbox_item_note' => ". Legg inn nye funkerings elementer og rediger eiers morsomme elementer", + 'row_funbox_management' => "Funbox håndtering", + 'text_funbox_management_note' => ". Rediger, slette, forby hvem som helst sine moroa elementer", + 'row_shoutbox_management' => "Utropsboks håndtering", + 'text_shoutbox_management_note' => ". Slett meldinger i shoutbox og hjelp boks", + 'row_poll_management' => "Poll administrasjon", + 'text_poll_management_note' => ". Legg til nye, rediger, slett avstemninger", + 'row_apply_for_links' => "Søk på lenker", + 'text_apply_for_links_note' => ". Søk på lenker på hovedsiden", + 'row_link_management' => "Link administrasjon", + 'text_link_management_note' => ". Legg til ny, redigering, slett koblinger", + 'row_forum_post_management' => "Forum Post Management", + 'text_forum_post_management_note' => ". Rediger, slette, flytte, kleppe, låse foruminnlegg", + 'row_comment_management' => "Kommenter administrasjon", + 'text_comment_management_note' => ". Rediger, slett kommentarer til torrenter, tilbud", + 'row_forum_management' => "Forum Ledelse", + 'text_forum_management_note' => ". Legg til ny, rediger, slette, flytte forum", + 'row_view_userlist' => "Vis bruker liste", + 'text_view_userlist_note' => ". Vise, søkeliste", + 'row_torrent_management' => "Torrent administrasjon", + 'text_torrent_management_note' => ". Rediger torrenter eksklusiv setting av klistrekisten til torrent eller promotering eller slett", + 'row_torrent_sticky' => "Torrent hakke", + 'text_torrent_sticky_note' => ". Angi torrenter i toppen", + 'row_torrent_on_promotion' => "Torrent ved forfremmelse", + 'text_torrent_promotion_note' => ". Angi torrenter på promotering", + 'row_ask_for_reseed' => "Spør om tilbakestilt", + 'text_ask_for_reseed_note' => ". Be om reseed når torrents er død", + 'row_view_nfo' => "Vis NFO", + 'text_view_nfo_note' => ". Se NFO-filer", + 'row_view_torrent_structure' => "Vis torrent struktur", + 'text_view_torrent_structure_note' => ". Vis struktur av torrent-filer", + 'row_send_invite' => "Send invitasjon", + 'text_send_invite_note' => ". Send invitasjon av medlemskap til andre", + 'row_view_history' => "Vis historikk", + 'text_view_history_note' => ". Vis andres kommentar og innleggshistorie", + 'row_view_topten' => "Vis Topten", + 'text_view_topten_note' => ". Vis top Ten", + 'row_view_general_log' => "Se generell logg", + 'text_view_general_log_note' => ". Se generell logg fritatt for konfidensiell logg", + 'row_view_confidential_log' => "Vis Confidential Logg", + 'text_view_confidential_log_note' => ". Vis konfidensiell logg, f.eks sideinnstillingsendringer", + 'row_view_user_confidential' => "Vis brukerens identiske profil", + 'text_view_user_confidential_note' => ". Vis brukerens konfidensielle profil, f.eks IP-adresse, Epost adrress", + 'row_view_user_torrent' => "Vis brukers torrent-historie", + 'text_view_user_torrent_note' => ". Vis brukerens torrenthistorie, f.eks nedlastede torrenter.
    Gyldig bare når brukeres innstilling for personvern er ikke 'sterkt'", + 'row_general_profile_management' => "Brukerens generelle profilbehandling", + 'text_general_profile_management_note' => "Endrer brukerens profil, unntatt viktige e-post, brukernavn, opplastet og nedlastet beløp, bonus", + 'row_crucial_profile_management' => "Brukerens Crucial Profile Management", + 'text_crucial_profile_management_note' => "Endrer brukerens viktige profil, unntatt donasjon ", + 'text_can_manage_donation' => " kan administrere donasjon).", + 'row_upload_subtitle' => "Last opp undertittel", + 'text_upload_subtitle_note' => ". Last opp undertekster for torrents", + 'row_delete_own_subtitle' => "Slett egne undertekster", + 'text_delete_own_subtitle_note' => ". Slett undertekster lastet opp av seg selv", + 'row_subtitle_management' => "Styring av undertekst", + 'text_subtitle_management' => ". Slett alle undertekster", + 'row_update_external_info' => "Oppdater ekstern informasjon", + 'text_update_external_info_note' => ". Oppdater utdatert ekstern infomasjon, f.eks. IMDb info", + 'row_view_anonymous' => "Vis anonym", + 'text_view_anonymous_note' => ". Vis hvem anonym en er", + 'row_be_anonymous' => "Vær Anonym", + 'text_be_anonymous_note' => ". Last opp torrenter, undertekster anonymt", + 'row_add_offer' => "Legg til tilbud", + 'text_add_offer_note' => ". Legg til tilbud for opplasting", + 'row_offer_management' => "Tilby administrering", + 'text_offer_management_note' => ". Tillat, rediger, slett tilbudet", + 'row_upload_torrent' => "Last opp torrent", + 'text_upload_torrent_note' => ". Last opp torrenter til Torrentseksjon", + 'row_upload_special_torrent' => "Last opp spesialtorrent", + 'text_upload_special_torrent_note' => ". Last opp torrenter til spesiell seksjon", + 'row_view_special_torrent' => 'Vis spesiell torrent', + 'text_view_special_torrent_note' => 'Vis torrenter i spesiell seksjon', + 'row_move_torrent' => "Flytt torrent", + 'text_move_torrent_note' => ". Flytte torrenter mellom seksjoner", + 'row_chronicle_management' => "Krønikes administrasjon", + 'text_chronicle_management_note' => ". Legg til, rediger, slett kronisk.", + 'row_view_invite' => "Vis invitasjon", + 'text_view_invite_note' => ". Vis brukerens invitasjonshistorie.", + 'row_buy_invites' => "Kjøp invitasjoner", + 'text_buy_invites_note' => ". Kjøp invitasjoner i bonussenter.", + 'row_see_banned_torrents' => "Se utestengte torrenter", + 'text_see_banned_torrents_note' => ". Se og last ned bannlyste torrenter.", + 'row_vote_against_offers' => "Stem mot tilbud", + 'text_vote_against_offers_note' => ". Stem mot tilbud.", + 'row_allow_userbar' => "Tillat brukerlinje", + 'text_allow_userbar_note' => ". Få brukerlinjen hans.", + 'head_basic_settings' => "Grunnleggende innstillinger", + 'row_site_name' => "Nettsteds navn", + 'text_site_name_note' => "Navn på nettsted.", + 'row_base_url' => "Standard URL", + 'text_it_should_be' => "Det skal være: ", + 'text_base_url_note' => ". NEI etterfølgende skråstrek (/) ved slutt!", + 'row_announce_url' => "Annonserings-URL", + 'row_mysql_host' => "MySQL vert", + 'text_mysql_host_note' => "Vennligst skriv inn MySQL vert. Hvis MySQL kjører på samme vert som HTTP-tjeneren, skriv inn 'localhost'. Ellers skriver du inn IP-adressen til tjeneren som MySQL kjører på.", + 'row_mysql_user' => "MySQL bruker", + 'text_mysql_user_note' => "Vennligst oppgi ditt MySQL-brukernavn. Standard brukeren er 'root'. Av sikkerhetshensyn kan imidlertid du vurdere å opprette noen andre MySQL-brukere for dette nettstedet", + 'row_mysql_password' => "MySQL passord", + 'text_mysql_password_note' => "For security reason, current MySQL password is not shown here. You need to enter your MySQL password every time you change the Basic Settings.", + 'row_mysql_database_name' => "MySQL Database navn", + 'row_mysql_database_port' => "MySQL Database port", + 'text_mysql_database_name_note' => "Vennligst oppgi databasenavn på din tracker.", + 'text_mysql_database_port_note' => "Vennligst skriv inn databaseporten til din tracker.", + 'head_code_settings' => "Innstillinger for kode", + 'row_main_version' => "Hoved Versjon", + 'text_main_version_note' => "Koden er hoved versjon.", + 'row_sub_version' => "Sub versjon", + 'text_sub_version_note' => "Koden sub versjon", + 'row_release_date' => "Utgivelsesdato", + 'text_release_date_note' => "Tidsformat er ÅÅÅÅ-MM-DD. Datokoden ble utgått.", + 'row_authorize_to' => "Autoriser til", + 'text_authorize_to_note' => "Nettstedet eller personellet som koden er autorisert til.", + 'row_authorization_type' => "Autorisasjons type", + 'text_free' => "Gratis", + 'text_commercial' => "Kommersiell", + 'row_web_site' => "Web Site", + 'text_web_site_note' => "Nettstedets URL til ", + 'text_web_site_note_two' => ".", + 'row_email' => "E-post", + 'text_email_note_one' => "Den kontakte E-postadressen til ", + 'text_email_note_two' => ".", + 'row_msn' => "MSN", + 'text_msn_note_one' => "Den kontaktvirkende MSN med ", + 'text_msn_note_two' => ".", + 'row_qq' => "QQ", + 'text_qq_note_one' => "Den kontaktvirkende QQ for ", + 'text_qq_note_two' => ".", + 'row_telephone' => "Telefon", + 'text_telephone_note_one' => "Den kontaktet telefon av ", + 'text_telephone_note_two' => ".", + 'head_bonus_settings' => "Bonus instillinger", + 'text_bonus_by_seeding' => "Få bonus ved å dele", + 'row_donor_gets_double' => "Donor Skåte Dobbel", + 'text_donor_gets' => "Donor får alltid ", + 'text_times_as_many' => " ganger så mange bonuspoeng for frø. Standard '2'. Sett det til '0' for å behandle givere som vanlige brukere.", + 'row_basic_seeding_bonus' => "Enkel fordelingsbonus", + 'text_user_would_get' => "Bruker ville fått ", + 'text_bonus_points' => " bonuspoeng for hver torrent sin frø, maksimal ", + 'text_torrents_default' => " torrenter. Standard '1', '7'. Sett bonuspoeng til '0' for å deaktivere regelen.", + 'row_seeding_formula' => "Seeding Formel", + 'text_bonus_formula_one' => "Antallet karma poeng per time gis ved følgende formel", + 'text_where' => "hvor", + 'text_bonus_formula_two' => "A is an intermediate variable
  • Ti is the ith torrent's Time Alive (TA), i.e. time elapsed since the torrent was uploaded, in weeks", + 'text_bonus_formula_three' => "T0 er en parameter. T0= ", + 'text_bonus_formula_four' => ". Standard '4'", + 'text_bonus_formula_five' => "Si er itorrentens størrelse, i GB", + 'text_bonus_formula_six' => "Ni er antallet nåværende seere av ith torrent
  • N0 er en parameter. N0= ", + 'text_bonus_formula_zero_bonus_factor' => "Wi er vekten til iog torrenten. Standard er 1, null torrent ", + 'text_bonus_formula_seven' => ". Standard '7'", + 'text_bonus_formula_eight' => "B er antall poeng karma poeng oppnådd innen en time", + 'text_bonus_formula_nine' => "B0 er en parameter, som for de maksimale bonuspoeng per time kan en bruker komme ved frø. B0= ", + 'text_bonus_formula_ten' => ". Standard '100'", + 'text_bonus_formula_eleven' => "L er en parameter. L= ", + 'text_bonus_formula_twelve' => ". Standard '300'", + 'text_misc_ways_get_bonus' => "Diverse måter å få bonus på", + 'row_uploading_torrent' => "Laster opp torrent", + 'text_uploading_torrent_note' => " bonus poeng for å laste opp ny torrent. Standard '15'.", + 'row_uploading_subtitle' => "Laster opp undertittel", + 'text_uploading_subtitle_note' => " bonus poeng for å laste opp ny undertekst. Standard '5'.", + 'row_starting_topic' => "Starter emne", + 'text_starting_topic_note' => " bonus poeng for å starte nytt emne da fora. Standard er '2'.", + 'row_making_post' => "Lager innlegg", + 'text_making_post_note' => " bonus poeng for å lage innlegg på forum. Standard '1'.", + 'row_adding_comment' => "Legger til kommentar", + 'text_adding_comment_note' => " bonuspoeng for å legge til en kommentar til torrenter, tilbyr . Standard '1'.", + 'row_voting_on_poll' => "Stemming på avstemming", + 'text_voting_on_poll_note' => " bonus poeng for stemme på en avstemning. Standard '1'.", + 'row_voting_on_offer' => "Stemming på tilbud", + 'text_voting_on_offer_note' => " bonus poeng for stemme på et tilbud. Standard '1'.", + 'row_voting_on_funbox' => "Avstemming på fond", + 'text_voting_on_funbox_note' => " bonuspoeng for å stemme på en morkake. Standard '1'.", + 'row_saying_thanks' => "Takk", + 'text_giver_and_receiver_get' => "Takk til giver og mottaker ville få ", + 'text_saying_thanks_and' => " og ", + 'text_saying_thanks_default' => " bonus poeng. Standard '0.5', '0'.", + 'row_funbox_stuff_reward' => "Funbox ting belønning", + 'text_funbox_stuff_reward_note' => " bonuspoeng for å poste soppting som er vurdert som 'morsomt'. Standard '5'.", + 'text_things_cost_bonus' => "Ting som koster bonus", + 'row_one_gb_credit' => "1,0 GB laster opp kreditt", + 'text_it_costs_user' => "Det koster brukeren ", + 'text_one_gb_credit_note' => " bonus poeng til utveksling av 1,0 GB ved opplasting av kreditt. Standard '300'.", + 'row_five_gb_credit' => "5.0 GB laster opp kreditt", + 'text_five_gb_credit_note' => " bonus poeng til utveksling av 5.0 GB ved opplasting av kreditt. Standard 800'.", + 'row_ten_gb_credit' => "10.0 GB laster opp kreditt", + 'text_ten_gb_credit_note' => " bonuspoeng til å bytte mot 10,0 GB opplasting av kreditt. Standard '1200'.", + 'row_ratio_limit' => "Forhold grense", + 'text_user_with_ratio' => "Bruker med forhold over ", + 'text_uploaded_amount_above' => " og opplastet mengde over ", + 'text_ratio_limit_default' => " GB kan ikke bytte for å laste opp kreditt. Standard '6', '50'. Sett forhold til '0' for å deaktivere grensen.", + 'row_buy_an_invite' => "Kjøp en invitasjon", + 'text_buy_an_invite_note' => " bonus poeng for å få en invitasjon. Standard '1000'.Sett forhold til '0' for å deaktivere kjøpet.", + 'row_custom_title' => "Tilpasset tittel", + 'text_custom_title_note' => " bonus poeng til egendefinert hans tittel. Standard '5000'.", + 'row_vip_status' => "VIP status", + 'text_vip_status_note' => " bonus poeng for å kjøpe VIP status for en måned. Standard '8000'.", + 'row_allow_giving_bonus_gift' => "Tillat å gi bonusgave", + 'text_giving_bonus_gift_note' => "Tillat brukere å gi bonusgave til hverandre. Standardverdi 'Ja'.", + 'head_account_settings' => "Rediger profil", + 'row_never_delete' => "Aldri deaktiver", + 'text_delete_inactive_accounts' => "Deaktiver inaktive brukerkontoer", + 'text_never_delete' => " eller over vil aldri være deaktivert. Standard ", + 'row_never_delete_if_packed' => "Deaktiver aldri hvis pakket", + 'text_never_delete_if_packed' => " eller over vil aldri bli deaktivert hvis det er pakket. Standard ", + 'row_delete_packed' => "Deaktiver pakkede kontoer", + 'text_delete_packed_note_one' => "Pakkede kontoer vil bli deaktivert hvis brukere ikke har logget på mer enn ", + 'text_delete_packed_note_two' => " dager på rad. Standard '400', sett den til '0' for å deaktivere regelen.", + 'row_delete_unpacked' => "Deaktiver utpakkede kontoer", + 'text_delete_unpacked_note_one' => "Ubetalte kontoer ville bli deaktivert hvis brukere ikke har logget inn for mer enn ", + 'text_delete_unpacked_note_two' => " dager i rad. Standard '150', sett den til '0' for å deaktivere regelen.", + 'row_delete_no_transfer' => "Deaktiver kontoer uten overføringsdata", + 'text_delete_transfer_note_one' => "Kontoer med både lastet opp og nedlastet beløp som er 0 vil bli slettet hvis brukere ikke har logget inn for mer enn ", + 'text_delete_transfer_note_two' => " dagene på en rad eller brukere har vært registrert i mer enn ", + 'text_delete_transfer_note_three' => " Dager. Standard '60', '0'.
    MERK: To regler fungerer separat. Bruker en av dem til '0' KUN deaktiverer én regel.", + 'text_user_promotion_demotion' => "Bruker forfremmelse og Demotion", + 'row_ban_peasant_one' => "Utesteng ", + 'row_ban_peasant_two' => "", + 'text_ban_peasant_note_one' => " ville bli utestengt hvis ikke forfremmet opp i ", + 'text_ban_peasant_note_two' => " Dager. Standard '30', sett det til '0' for å utestenge dem umiddelbart.", + 'row_demoted_to_peasant_one' => "Degrader til ", + 'row_demoted_to_peasant_two' => "", + 'text_demoted_peasant_note_one' => "Brukere ville bli degradert til ", + 'text_demoted_peasant_note_two' => " under enhver av følgende betingelser: ", + 'text_downloaded_amount_larger_than' => "Lastet ned beløp som er større enn ", + 'text_and_ratio_below' => " GB og ratio under ", + 'text_demote_peasant_default_one' => ". Standard '50', '0.4'.", + 'text_demote_peasant_default_two' => ". Standard '100', '0.5'.", + 'text_demote_peasant_default_three' => ". Standard '200', '0.6'.", + 'text_demote_peasant_default_four' => ". Standard '400', '0.7'.", + 'text_demote_peasant_default_five' => ". Standard '800', '0.8'.", + 'text_demote_peasant_note' => "MERK: IKKE endring til ascendant rekkefølge av nedlastede beløp. Sett nedlastet mengde til '0' for å deaktivere relevant regel.", + 'row_promote_to_one' => "Forfrem til ", + 'row_promote_to_two' => "", + 'text_member_longer_than' => "Brukere, som har vært medlem lenger enn ", + 'text_downloaded_more_than' => ", og lastet ned mer enn ", + 'text_with_ratio_above' => "GB, med forhold over ", + 'text_seed_points_more_than' => 'uke, frøpoeng ovenfor', + 'text_be_promoted_to' => ", ville blitt forfremmet til ", + 'text_promote_to_default_one' => ". Standard ", + 'text_promote_to_default_two' => ". Standard ", + 'text_demote_with_ratio_below' => "Brukerne vil imidlertid bli revet ned hvis tallet faller under ", + 'head_torrent_settings' => "Torrent innstillinger", + 'row_promotion_rules' => "Kampanje regler", + 'text_promotion_rules_note' => "Aktiver noen automatiske promoteringsregler. Ugly kode akkurat nå. Trenger du endring senere.", + 'row_random_promotion' => "Tilfeldig forfremmelse", + 'text_random_promotion_note_one' => "Torrenter promotert tilfeldig ved opplasting.", + 'text_halfleech_chance_becoming' => "% sjanse til å bli 50% igle. Standard '5'.", + 'text_free_chance_becoming' => "% sjanse til å bli Gratis Leech. Standard '2'.", + 'text_twoup_chance_becoming' => "% sjansen til å bli 2X Opp. Standard '2'.", + 'text_freetwoup_chance_becoming' => "% sjanse til å bli Free Leech og 2X opp. Standard '1'.", + 'text_twouphalfleech_chance_becoming' => "% sjansen til å bli 2x opp og 50% ned. Standard '0'.", + 'text_random_promotion_note_two' => "Angi verdier til '0' for å deaktivere reglene.", + 'row_large_torrent_promotion' => "Stor torrent forfremmelse", + 'text_torrent_larger_than' => "Torrenter større enn ", + 'text_gb_promoted_to' => " GB blir automatisk promotert til ", + 'text_by_system_upon_uploading' => " etter system ved opplasting. ", + 'text_large_torrent_promotion_note' => "Standard '20', 'gratis'. Sett torrentstørrelse til '0' for å deaktivere regelen.", + 'row_promotion_timeout' => "Tidsavbrudd for kampanjer", + 'text_promotion_timeout_note_one' => "Forfremmelse for torrenter vil utløpe etter en stund.", + 'text_halfleech_will_become' => "50% informasjonsteknologi blir ", + 'text_after' => " etter ", + 'text_halfleech_timeout_default' => " Dager. Standard 'normal', '150'.", + 'text_free_will_become' => "Gratis Leech blir ", + 'text_free_timeout_default' => " Dager. Standard 'normal', '60'.", + 'text_twoup_will_become' => "2X Opp blir ", + 'text_twoup_timeout_default' => " Dager. Standard 'normal', '60'.", + 'text_freetwoup_will_become' => "Gratis Leech og 2X opp blir ", + 'text_freetwoup_timeout_default' => " Dager. Standard 'normal', '30'.", + 'text_halfleechtwoup_will_become' => "50% igle og 2X opp blir ", + 'text_halfleechtwoup_timeout_default' => " Dager. Standard 'normal', '30'.", + 'text_normal_will_become' => "Normal vil bli ", + 'text_normal_timeout_default' => " Dager. Standard 'normal', '0'.", + 'text_promotion_timeout_note_two' => "Angi dager til '0' for å holde kampanje for alltid.", + 'row_auto_pick_hot' => "Velg automatisk varm", + 'text_torrents_uploaded_within' => "Torrenter lastet opp i ", + 'text_days_with_more_than' => " dager med mer enn ", + 'text_be_picked_as_hot' => " seeders vil automatisk bli plukket som Hot.", + 'text_auto_pick_hot_default' => " Standard '7', '10'. Sett dager til '0' for å deaktivere den.", + 'row_uploader_get_double' => "Opplaster få dobbel", + 'text_torrent_uploader_gets' => "Torrent-opplasteren får alltid ", + 'text_times_uploading_credit' => " tider så mye for å laste opp kreditt. ", + 'text_uploader_get_double_default' => "Standard '1'. Sett den til '1' for å behandle torrent-opplastning normalt.", + 'row_delete_dead_torrents' => "Slett døde torrenter", + 'text_torrents_being_dead_for' => "Torrenter som har vært død for ", + 'text_days_be_deleted' => " dager i en rad blir automatisk slettet. Standard '0'. Sett den til '0' deaktiverer regelen.", + 'row_delete_dead_torrents_note' => "WARNING: Once deleted, torrents are unrecoverable. Remember to disable this rule when your site is down for a long time.", + 'head_main_settings' => "Hoved Innstillinger", + 'row_site_online' => "Site online", + 'text_site_online_note' => "Default 'yes'. Want to turn off your site while performing updates or other types of maintenance? Please Note: Administrators will still be able to see the site.", + 'row_enable_invite_system' => "Aktiver invitasjonssystem", + 'text_invite_system_note' => "Standard 'ja'. Tillat registreringer via invitasjonssystem.", + 'row_initial_uploading_amount' => "Første opplastings beløp", + 'text_initial_uploading_amount_note' => "Hvor mange opplastede kreditt (i Byte, dvs. 1073741824 = 1GB) bør hver bruker gis ved registrering? Standard '0'.", + 'row_initial_invites' => "Første antall invitasjoner", + 'text_initial_invites_note' => "Hvor mange invitasjoner skal hver bruker oppgis ved registrering? Standard '0'.", + 'row_invite_timeout' => "Tidsavbrudd for invitasjon", + 'text_invite_timeout_note' => "Om dager. Slett invitasjonskode etter X dager som ikke svarte på invitasjonsforespørselen. Standard '7'.", + 'row_enable_registration_system' => "Aktiver registreringssystem", + 'row_allow_registrations' => "Tillat åpne registreringer. Standard 'yes'.", + 'row_verification_type' => "Type verifikasjon", + 'text_email' => "E-post", + 'text_admin' => "Administrator", + 'text_automatically' => "Automatisk", + 'text_verification_type_note' => "E-POS: E-postbekreftelse ved sending, ADMIN: Manuell aktivering. AUTOMATIC: Aktiver bruker etter registrering.", + 'row_enable_wait_system' => "Aktiver ventesystem", + 'text_wait_system_note' => "Aktiver eller deaktiver avvent system (se FAQ).", + 'row_enable_max_slots_system' => "Aktiver Max SLots System", + 'text_max_slots_system_note' => "Standard 'nei'. Aktiver eller deaktiver maksimal samtidige nedlastinger (AKA maks spor) (se FAQ).", + 'row_show_polls' => "Vis avstemninger", + 'text_show_polls_note' => "Standard 'Ja'. Vis POLL system på hovedsiden.", + 'row_show_stats' => "Vis statistikk", + 'text_show_stats_note' => "Standard 'Ja'. Vis STATS-systemet på hovedsiden.", + 'row_show_last_posts' => "Vis siste x Forum Innlegg", + 'text_show_last_posts_note' => "Standard 'nei'. Vis siste x Forum Innlegg på hovedsiden.", + 'row_show_last_torrents' => "Vis siste x Torrents", + 'text_show_last_torrents_note' => "Vis siste x Torrents på hovedsiden.", + 'row_show_server_load' => "Vis Server-last", + 'text_show_server_load_note' => "Standard 'Ja'. Vis Server-belastningen på hovedsiden.", + 'row_show_forum_stats' => "Vis forum statistikk", + 'text_show_forum_stats_note' => "Standard 'ja'. Vis forumstatistikk på forumsiden.", + 'row_show_hot' => "Vis populære", + 'text_show_hot_note' => "Standard 'Ja'. Vis varme ressurser på hovedsiden. Varme ressurser blir automatisk plukket av system eller manuelt av medarbeidere.", + 'row_show_classic' => "Vis klassisk", + 'text_show_classic_note' => "Standard 'nei'. Vis klassiske ressurser på hovedsiden. Bare angitte moderatorer eller eldre kan velge klassiske ressurser.", + 'row_enable_imdb_system' => "Aktiver IMDb system", + 'text_imdb_system_note' => "Standard 'Ja'. Systembredt IMDb infominnstilling.", + 'row_enable_pt_gen_system' => 'Aktiver PT-Gen system', + 'text_enable_pt_gen_system_note' => "PT-Gen informasjon-innstilling er standard 'ingen'. Systemwide PT-Gen", + 'row_pt_gen_api_point' => "PT-Gen api punkt", + 'text_pt_gen_api_point_note' => "Standard '', når det er påkrevd, referanse til Documatation for å bygge deg selv", + 'row_enable_school_system' => "Aktiver skolens system", + 'text_school_system_note' => "Default 'no'. DO NOT enable this unless you know what you are doing!", + 'row_restrict_email_domain' => "Begrens e-post domene", + 'text_restrict_email_domain_note' => "Standard 'nei'. Sett den til 'ja' for å bare tillate at visse e-postdomener registrerer seg. Se her.", + 'row_show_shoutbox' => "Vis Utropsboks", + 'text_show_shoutbox_note' => "Standard 'Ja'. Vis utseende-boksen på hovedsiden.", + 'row_show_funbox' => "Show Funbox", + 'text_show_funbox_note' => "Standard 'nei'. Vis funbox på hovedsiden.", + 'row_enable_offer_section' => "Aktiver Tilbudsseksjon", + 'text_offer_section_note' => "Standard 'Ja'. Aktiver eller deaktiver tilbudsdelen.", + 'row_show_donation' => "Aktiver donasjon", + 'text_show_donation_note' => "Vis donasjon og donasjon topp ti.", + 'row_show_special_section' => "Aktiver spesialavsnitt", + 'text_show_special_section_note' => "Default 'no'. DO NOT enable this unless you know what you are doing!", + 'row_weekend_free_uploading' => "Gratis opplasting ved helgen", + 'text_weekend_free_uploading_note' => "Standard 'nei'. Sett den til 'ja' for å tillate alle brukere å laste opp torrenter i helgen (fra lørdag 12:00 til søndag 23:59).", + 'row_enable_helpbox' => "Aktiver Helpbox", + 'text_helpbox_note' => "Standard \"nei\". Sett den til \"nei\" for å forby gjester å rope meldinger.", + 'row_enable_bitbucket' => "Aktiver Bitbucket", + 'text_bitbucket_note' => "Standard 'ja'. Sett den til 'nei' for å forby brukere å laste opp avatarer til sporer.", + 'row_enable_small_description' => "Aktiver liten nedbrytning", + 'text_small_description_note' => "Standard 'Ja'. Vis tittelen nedenfor på torrent-siden på Torrent-siden.", + 'row_ptshow_naming_style' => "PTVis navngivingsstil", + 'text_ptshow_naming_style_note' => "Standard 'nei'. I formatet til [MM.DD.YY][Original Name][Kinesisk navn]. IKKE aktiver dette med mindre du vet hva du gjør!", + 'row_use_external_forum' => "Bruk eksternt forum", + 'text_use_external_forum_note' => "Standard \"nei\". Sett den til \"ja\" for å bruke eksternt forum i stedet for internt.", + 'row_external_forum_url' => "Ekstern forum URL", + 'text_external_forum_url_note' => "Det bør være som http://www.cc98.org", + 'row_torrents_category_mode' => "Kategori modus for orrenter seksjon", + 'text_torrents_category_mode_note' => "Dette endrer kategorimodus på Torrentsiden.", + 'row_special_category_mode' => "Kategoriens teknikk for spesielle seksjoner", + 'text_special_category_mode_note' => "Dette endrer kategorimodus i spesialavsnitt.", + 'row_default_site_language' => "Standard nettstedsspråk", + 'text_default_site_language_note' => "Dette endrer språket som står på innloggingssiden.", + 'row_default_stylesheet' => "Default Stylesheet", + 'text_default_stylesheet_note' => "Nyregistrerte brukere vil bruke dette stilarket.", + 'row_max_torrent_size' => "Maks. torrent-størrelse", + 'text_max_torrent_size_note' => " I byte. Standard 1048576 (dvs. 1 MB)", + 'row_announce_interval' => "Kunngjør intervall", + 'text_announce_interval_note_one' => "I løpet av sekunder. Kunngjør intervall på tracker ber BitTorrent-klientene om å oppdatere informasjon. Men, i praksis kan det være forskjellig intervall av annonseringssiden BitTorrent-klientene kan ignorere denne meldingen eller brukerne kan velge å koble tracker manuelt.", + 'text_announce_default' => "Standard: ", + 'text_announce_default_default' => "Standard '1800', dvs. 30 minutter", + 'text_for_torrents_older_than' => "For torrenter eldre enn ", + 'text_days' => " dager: ", + 'text_announce_two_default' => "Standard '7', '2700' (dvs. 45 mins). Sett dager til '0' for å deaktivere regelen.", + 'text_announce_three_default' => "Standard '30', '3600' (dvs. 60 minutter). Sett dager til '0' for å deaktivere regelen.", + 'text_announce_interval_note_two' => "MERK: Ikke format@@0 endre ascendant rekkefølge av ganger!
    Kortere intervall betyr mer nøyaktig informasjon kilder og HEAVIER tracker laster.", + 'row_cleanup_interval' => "Automatisk opprydding intervall", + 'text_cleanup_interval_note_one' => "Opprydding (brukerpromotering, demotion, legge til spredningsbonus, osv.) per XXX sekunder.", + 'text_priority_one' => "Prioritet 1: ", + 'text_priority_one_note' => "Oppdater peer status; Beregn fordelingsbonus. Standard '3600', dvs. 60 minutter.", + 'text_priority_two' => "Prioritet 2: ", + 'text_priority_two_note' => "Oppdater torrentenes synlighet. Standard '5400', dvs. 90 minutter.", + 'text_priority_three' => "Prioritet 3: ", + 'text_priority_three_note' => "Oppdater antall frø, leechers, kommentarer til torrenter; Oppdater foruminnlegg/emne. Slett tilbud som er tidsmessige; Utløper torrent-forfremmelse; Velg automatisk varme torrenter. Standard '7200', altså 2 timer.", + 'text_priority_four' => "Prioritet 4: ", + 'text_priority_four_note' => "Slett ubekreftede kontoer, gamle innloggingsforsøk, invitasjonskoder og regimekoding; Rydd opp brukerkontoer (slett inaktive kontoer, promotering og demotion, utestenging, osv. ; Post opplastet bilde; Oppdater total seeding og leeching time of users. Standard '86400', dvs. 24 timer.", + 'text_priority_five' => "Prioritet 5: ", + 'text_priority_five_note' => "Slett torrenter som ikke finnes lenger; Lås svært gamle forum emner; Slett svært gamle rapporter elementer. Standard '1296000', dvs. 15 dager.", + 'text_cleanup_interval_note_two' => "MERK: Ikke format@@0 endre ascendant rekkefølge av ganger!", + 'row_signup_timeout' => "Tidsavbrudd for påmelding", + 'text_signup_timeout_note' => "På sekunder. Slett ubekreftede brukere etter XXX sekunder. Standard '259200', dvs. 3 dager.", + 'row_min_offer_votes' => "Min. tilbyr stemmer", + 'text_min_offer_votes_note' => "Tilbudet blir godkjent når stemmene støtter XXX er mer enn å objektere stemmene. Standard '15'.", + 'row_offer_vote_timeout' => "Tilbudet stemme-tidsavbrudd", + 'text_offer_vote_timeout_note' => "På sekunder. Slett tilbud hvis ikke stemt på etter XXX sekunder. Standard '259200', dvs. 72 timer. Sett det til '0' for å deaktivere tidsavbrudd.", + 'row_offer_upload_timeout' => "Tilby opplastingstid for opplasting", + 'text_offer_upload_timeout_note' => "I løpet av sekunder. Slett tilbud hvis de ikke lastes opp etter å ha stemt på i XXX sekunder. Standard '86400', dvs. 24 timer. Sett den til '0' for å deaktivere tidsavbrudd.", + 'row_max_subtitle_size' => "Maks størrelse på undertekst", + 'text_max_subtitle_size_note' => "I byte. Maks størrelse på undertekster kan lastes opp. Standard 3145728, dvs. 3 MB. Sett det til '0' for å deaktivere grense.", + 'row_posts_per_page' => "Standardinnlegg per side", + 'text_posts_per_page_note' => "Antall innlegg per side som vises på et forum sitt emne. Som standard er '10'.
    Merk at brukerens personlige innstilling ville overstyre dette", + 'row_topics_per_page' => "Standardemner per side", + 'text_topics_per_page_note' => "Antall emner per side som vises i et forum. Standard '20'.
    Merk at brukerens personlige innstilling ville overstyre dette", + 'row_number_of_news' => "Antall nyheter", + 'text_number_of_news_note' => "Vis XXX deler av siste nyheter på hovedsiden. Standard '3'.", + 'row_torrent_dead_time' => "Max. Torrent Dødstid", + 'text_torrent_dead_time_note' => "På sekunder. Marker som død er ingen frø, i XXX sekunder. Standard '21600', dvs. 6 timer.", + 'row_max_users' => "Maks. brukere", + 'text_max_users' => "Når grensen er nådd, er registreringen både gratis og ved invitasjon deaktivert.", + 'row_https_announce_url' => "HTTPS annonserings-URL", + 'text_https_announce_url_note' => "La den være tom hvis du bruker samme URL for både HTTP og HTTPS. Den skal være: ", + 'row_site_accountant_userid' => "Bruker-ID for nettstedsadministrator", + 'text_site_accountant_userid_note' => "Nummer, f.eks. '1'. ID-en til brukeren som giverne skal sende doneringsmelding til.", + 'row_alipay_account' => "Alipay Account", + 'text_alipal_account_note' => "Alipay-kontoen du bruker for å motta donasjon, f.eks 'ditt@gmail.com'. La stå tomt hvis du ikke har en Alipay konto.", + 'row_paypal_account' => "PayPal konto", + 'text_paypal_account_note' => "PayPal-kontoen du bruker for å motta donasjon, f.eks. 'ditt@gmail.com'. La stå tomt hvis du ikke har en PayPal-konto.", + 'row_site_email' => "Nettsteds e-post", + 'text_site_email_note' => "Nettsted e-postadresse", + 'row_report_email' => "Rapporter e-post", + 'text_report_email_note' => "Rapporter e-postadresse", + 'row_site_slogan' => "Nettsidens slagord", + 'text_site_slogan_note' => "Nettside slagord", + 'row_icp_license' => "ICP lisens", + 'text_icp_license_note' => "Dette er et lisensregime for kinesiske nettsider. La det stå tomt om du ikke har noen.", + 'row_torrent_directory' => "Torrent katalog", + 'text_torrent_directory' => "Standard 'torrents'. NEI avsluttende skråstrek (/) ved slutt!", + 'row_bitbucket_directory' => "Bitbucket mappe", + 'text_bitbucket_directory_note' => "Default 'bitbucket'. NO trailing slash (/) at the end!", + 'row_cache_directory' => "Mappe for mellomlager", + 'text_cache_directory_note' => "Standard 'cache'. NEI avsluttende skråstrek (/) mot slutt!", + 'row_torrent_name_prefix' => "Torrent navns prefiks", + 'text_torrent_name_prefix_note' => "Add prefix to the name of torrent file downloaded from this site. Default '[Nexus]'. No trailing dot (.) at the end!", + 'row_peering_time_calculation' => "Seeding Leeching Start kalkuleringstid", + 'text_peering_time_calculation_note' => "Bare la det stå tomt. Det er satt av gamle grunner.", + 'row_new_subtitle_id' => "Ny undertekst ID", + 'text_new_subtitle_id_note' => "Bare behold «0». Den er satt av en eldre grunn.", + 'head_website_settings' => "Innstillinger for nettsted", + 'row_basic_settings' => "Grunnleggende innstillinger", + 'submit_basic_settings' => "Grunnleggende innstillinger", + 'text_basic_settings_note' => "Installere det mest grunnleggende ting, nettstedsnavn.", + 'row_main_settings' => "Hoved Innstillinger", + 'submit_main_settings' => "Hoved Innstillinger", + 'text_main_settings_note' => "Sett opp diverse ting om nettstedet ditt.", + 'row_smtp_settings' => "SMTP Innstillinger", + 'submit_smtp_settings' => "SMTP Innstillinger", + 'text_smtp_settings_note' => "Sett opp e-postserver for SMTP.", + 'row_security_settings' => "Sikkerhet innstillinger", + 'submit_security_settings' => "Sikkerhet innstillinger", + 'text_security_settings_note' => "Sikre din sporer.", + 'row_authority_settings' => "Myndighetens innstillinger", + 'submit_authority_settings' => "Myndighetens innstillinger", + 'text_authority_settings_note' => "Kontroller hva brukerne av hver klasse kan gjøre.", + 'row_tweak_settings' => "Justere innstillinger", + 'submit_tweak_settings' => "Justere innstillinger", + 'text_tweak_settings_note' => "TWEAK din tracker.", + 'row_bonus_settings' => "Bonus instillinger", + 'submit_bonus_settings' => "Bonus instillinger", + 'text_bonus_settings_note' => "Konfigurer hvordan bonus blir innhentet og brukt.", + 'row_account_settings' => "Rediger profil", + 'submit_account_settings' => "Rediger profil", + 'text_account_settings_settings' => "Konfigurer når brukerkontoer er forfremmet eller slettet.", + 'row_torrents_settings' => "Torrent innstillinger", + 'submit_torrents_settings' => "Torrent innstillinger", + 'text_torrents_settings_note' => "Konfigurer torrent-promotering, valg etc.", + 'row_bots_settings' => "Innstillinger for prikker", + 'submit_bots_settings' => "Innstillinger for prikker", + 'text_bots_settings_note' => "Konfigurere flasker. IKKE berører dette med mindre du vet hva du gjør!", + 'row_code_settings' => "Innstillinger for kode", + 'submit_code_settings' => "Innstillinger for kode", + 'text_code_settings_note' => "Konfigurer kode versjon. IKKE berører dette med mindre du vet hva du gjør.", + 'text_smtp_default' => "Standard (bruk standard PHP e-post funksjon)", + 'text_smtp_advanced' => "Avansert (bruk standard PHP e-post funksjon med EXTRA overskrifter. Dette hjelper å unngå spam-filtre)", + 'text_smtp_external' => "Ekstern (bruk en ekstern SMTP-tjener)", + 'text_setting_for_advanced_type' => "Innstillinger for avansert type", + 'row_smtp_host' => "SMTP Vert", + 'text_smtp_host_note' => "Default: 'localhost'", + 'row_smtp_port' => "SMTP port", + 'text_smtp_port_note' => "Standard: 25", + 'row_smtp_sendmail_from' => "SMTP sendmail fra", + 'text_smtp_sendmail_from_note' => "Standard: ", + 'row_smtp_sendmail_path' => "Sti for Sendmail", + 'text_smtp_sendmail_path_note' => "Konfigurer din sendmail_path ved å redigere php.ini", + 'text_setting_for_external_type' => "Innstillinger for ekstern type", + 'row_outgoing_mail_address' => "Utgående e-post (SMTP) adresse", + 'row_outgoing_mail_port' => "Utgående post (SMTP) port", + 'row_outgoing_mail_encryption' => "Utgående post (SMTP) kryptering", + 'text_outgoing_mail_address_note' => "hint: smtp.yourisp.com", + 'text_outgoing_mail_port_note' => "hint: 25", + 'row_smtp_account_name' => "Navn på Kunden", + 'text_smtp_account_name_note' => "hint: ditt@yourisp.com", + 'row_smtp_account_password' => "Konto passord", + 'text_smtp_account_password_note' => "hint: ditt passord går her", + 'text_mail_test_note' => "Hvordan kan jeg teste php-filen? Det er enkelt: Klikk ", + 'text_here' => "Her", + 'std_error' => "Feil", + 'std_mysql_connect_error' => "Kan ikke koble til MySQL. Vennligst kontroller din innstilling. ", + 'row_enable_location' => "Aktiver posisjon", + 'text_enable_location_note' => "Standard 'nei'. Vis brukerens geografiske plassering basert på sin IP. Du burde beholde denne deaktivert med mindre du har importert noen IP-database.", + 'row_torrents_per_page' => "Torrenter per side", + 'text_torrents_per_page_note' => "Antall torrenter per side vist på torrenter side. Standard '50'.
    Merk at brukerens personlige innstilling ville overstyre dette", + 'row_title_keywords' => "Søkeord for tittel", + 'text_title_keywords_note' => "Vis i dokumenttittel. Disse nøkkelordene hjelper søkemotorer med å finne nettstedet ditt. Skill flere nøkkelord med 'Pureg', e. . 'BitTorrentscheduled Download3A Movie'. La det være tomt om du vil holde en ren tittel.", + 'row_meta_keywords' => "Meta Keywords", + 'text_meta_keywords_note' => "Vis i dokumentoverskriften. Definerer nøkkelord for å beskrive nettstedet ditt. Skill flere nøkkelord med ',', f.eks 'BitTorrent, Nedlasting, Movie'.", + 'row_meta_description' => "Meta beskrivelse", + 'text_meta_description_note' => "Vis i dokumentoverskrift overskrift Definerer en beskrivelse av nettstedet ditt.", + 'row_bonus_gift_tax' => "Bonus gave skatt", + 'text_system_charges' => "System avgiftsbonusmottaker ", + 'text_bonus_points_plus' => " bonus poeng + ", + 'text_bonus_gift_tax_note' => "% av oversatt beløp som skatt. Hvis verdiene for eksempel er satt til '5', '10', får mottakeren bare 85 bonuspoeng når giver sender 100 bonuspoeng. Standard '5', '10'.
    NOTE: De to reglene fungerer separat. Du må angi begge verdiene til '0' for å deaktivere skatt.", + 'row_see_sql_debug' => "Se feilsøking", + 'text_allow' => "Tillat ", + 'text_see_sql_list' => " eller over for å se feilsøkingsinformasjon (SQL-søkelisten nederst på siden og PHP rapportinformasjon). ", + 'text_smtp_none' => "Ingen (valg av dette deaktiverer helt sending av e-post)", + 'row_attachment_settings' => "Innstillinger for vedlegg", + 'submit_attachment_settings' => "Innstillinger for vedlegg", + 'text_attachment_settings_note' => "Konfigurer vedlegg.", + 'head_attachment_settings' => "Innstillinger for vedlegg", + 'row_enable_attachment' => "Aktiver vedlegg", + 'text_enable_attachment_note' => "Global vedleggsinnstilling. Når satt til 'nei', kan ingen laste opp et hvilket som helst vedlegg.", + 'row_save_directory' => "Lagre mappe", + 'row_http_directory' => "HTTP-bane for vedlegg", + 'text_http_directory_note' => "It could be either relative path or absolute path. NO trailing slash (/) at the end! Default 'attachments'.", + 'row_attachment_authority' => "Vedleggets myndighet", + 'text_can_upload_at_most' => " eller over kan laste opp maksimalt ", + 'text_file_size_below' => " vedlegg i løpet av 24 timer der størrelsen ikke er større enn ", + 'text_with_extension_name' => "KB og med filnavn blant ", + 'text_authority_default_one_one' => ". Standard ", + 'text_authority_default_one_two' => ", '5', '256', 'jpeg, jpg, png, gif'.", + 'text_authority_default_two_one' => ". Standard ", + 'text_authority_default_two_two' => ", '10', '512', 'torrent, zip, rar, 7z, gzip, gz'.", + 'text_authority_default_three_one' => ". Standard ", + 'text_authority_default_three_two' => ", '20', '1024', 'mp3, oga, ogg, flv'.", + 'text_authority_default_four_one' => ". Standard ", + 'text_authority_default_four_two' => ", '500', '2048', ''.", + 'text_attachment_authority_note_two' => "MERK:
    • IKKE endrer rekkefølgen på brukerklasser, filtallsgrense eller grense for filstørrelse
    • Sett filstørrelsesgrense til '0', filtallsgrense til '0' og tillatt filendelser til 'i. . tom) til deaktiverer relativ regel.
    • Høyere klasser arver myndighet i lavere klasser, så det er ikke behov for ikke for å legge til tillatte filtyper til hver regel.
    • Skiller flere filendelser med ','.
    • Uansett hvordan innstillingene er, ingen kan laste opp filer med større størrelse enn 5 MB eller med navn for utvidelse blant 'exe, com, bat, msi'.
    ", + 'text_attachment_authority_note_one' => "Definer brukerens myndighet å laste opp vedlegg basert på hans klasse.", + 'text_save_directory_note' => "The directory where you save attachments. Please ensure that you have properly configured directory access permissions (777). NO trailing slash (/) at the end! Default './attachments'.", + 'row_save_directory_type' => "Lagre vedlegg i", + 'text_one_directory' => "En mappe for alle filer", + 'text_directories_by_monthes' => "Mapper som er navngitt etter opplasting", + 'text_directories_by_days' => "Mapper som er navngitt etter opplasting dager", + 'text_save_directory_type_note' => "Endret innstilling påvirker ikke vedlegg som allerede er lastet opp. 'Mapper som er navngitt etter opplastede måneder'.", + 'row_image_thumbnails' => "Image thumbnail", + 'text_no_thumbnail' => "1. Ingen miniatyrbilde. Bare lagre det opprinnelige bildet.", + 'text_create_thumbnail' => "2. Lag miniatyrbilde hvis bildet er stort, og lagre både miniatyrbildet og originalbildet.", + 'text_resize_big_image' => "3. Endre bilde hvis det er stort og bare lagre miniatyrbildet.", + 'text_image_thumbnail_note' => "Standard '2'.", + 'row_thumbnail_quality' => "Kvalitet på miniatyrbilder", + 'text_thumbnail_quality_note' => "Angi kvalitet på miniatyrbildet. Verdien må være et heltall mellom 1 og 100. Det største nummeret, den høyeste kvaliteten og den største filstørrelsen. Standard '80'.", + 'row_thumbnail_size' => "Thumbnail size", + 'text_thumbnail_size_note' => "Bredde * høyde, i piksler. Lag miniatyrbilder KUN for bilder med bredde eller høyde overskrider grensen. Standard '500', '500'.", + 'row_watermark' => "Vannmerke posisjon", + 'text_no_watermark' => "Ingen vannmerke", + 'text_left_top' => "#1", + 'text_top' => "#2", + 'text_right_top' => "#3", + 'text_left' => "#4", + 'text_center' => "#5", + 'text_right' => "#6", + 'text_left_bottom' => "#7", + 'text_bottom' => "#8", + 'text_right_bottom' => "#9", + 'text_random_position' => "Tilfeldig posisjon", + 'text_watermark_note' => "Legg til vannmerke til opplastet bildefil (JPEG/PNG/GIF). Erstatt vannmerket PNG-filen «pic/watermark.png» med ditt eget. Angi posisjonen der vannmerket skal plasseres. GIF animasjon støttes ikke. Standard \"intet vannmark\". (Automatic Translation)", + 'row_image_size_for_watermark' => "Bildestørrelse for vannmerke", + 'text_watermark_size_note' => "Bredde * høyde, i piksler. Legg til merk KUN på bilder med bredde og høyde overskrider dette. Standardverdien '300', '300'.", + 'row_jpeg_quality_with_watermark' => "JPEG kvalitet med vannmerke", + 'text_jpeg_watermark_quality_note' => "Bildekvaliteten for JPEG filen etter å ha lagt til vannmerke. Verdien må være et heltall mellom 1 og 100. Det største nummeret, den høyeste kvaliteten og den største filstørrelsen. Standard '85'.", + 'head_save_attachment_settings' => "Lagre vedlagte innstillinger", + 'row_css_date' => "CSS date", + 'text_css_date' => "Tidsformat er ÅÅÅÅMMDDhmm, f.eks. '200911030110'. Endring av dette hjelper brukere å oppdatere CSS-cachen. Nyttig når du gjør noen endringer i CSS-filer. La den være blank dersom det ikke gir mening for deg. Standard er tom.", + 'row_alternative_thumbnail_size' => "Alternativ miniatyrbilde størrelse", + 'text_alternative_thumbnail_size_note' => "Brukerne kan velge alternativ størrelse for miniatyrbilder. Standard '180', '135'.", + 'row_add_watermark_to_thumbnail' => "Legg til vannmerke på miniatyrbilde", + 'text_watermark_to_thumbnail_note' => "Om også legge til vannmerke til miniatyrbilde eller ikke. Standard 'nei'. Global vannmerke innstilling må være aktivert for at dette skal fungere.", + 'row_advertisement_settings' => "Annonse Innstillinger", + 'submit_advertisement_settings' => "Annonse Innstillinger", + 'text_advertisement_settings_note' => "Konfigurer annonser på nettstedet ditt.", + 'head_advertisement_settings' => "Annonse Innstillinger", + 'row_enable_advertisement' => "Aktiver annonse", + 'text_enable_advertisement_note' => "Global annonse innstilling.", + 'row_no_advertisement' => "Ingen annonser", + 'text_can_choose_no_advertisement' => " eller over kan velge å se ingen annonser hos brukeren CP. Standard ", + 'row_bonus_no_advertisement' => "Ingen annonse med bonus", + 'text_no_advertisement_with_bonus' => " eller over kan kjøpe noe tid uten reklame i bonussenter. Standard ", + 'row_no_advertisement_bonus_price' => "Ingen annonserings bonus pris", + 'text_bonus_points_to_buy' => " bonus poeng til kjøp ", + 'text_days_without_advertisements' => " dager uten annonser. Standard '10000', '15'.", + 'row_click_advertisement_bonus' => "Klikk annonsebonus", + 'text_points_clicking_on_advertisements' => " bonus poeng første gang han klikker på en annonse. Sett den til '0' for å deaktivere regelen. Standard '0'.
    Merknad: noen reklame som serverer applikasjoner (f.eks Google Adsense) forbyr nettsteder med insentiver til å klikke på reklame.", + 'head_save_advertisement_settings' => "Lagre annonseinnstillinger", + 'row_enable_tooltip' => "Aktiver verktøytips", + 'text_enable_tooltip_note' => "Tillat brukere å bruke verktøytip. Standard 'Ja'.", + 'text_thirtypercentleech_chance_becoming' => "% sjansen til å bli 30% Leech. Standard '0'.", + 'text_thirtypercentleech_will_become' => "30% Leech blir ", + 'text_thirtypercentleech_timeout_default' => " Dager. Standard 'normal', '30'.", + 'row_site_logo' => "Sidens logo", + 'text_site_logo_note' => "Bildefilen av sidens logo. Anbefalt bildestørrelse er 220 * 70. Hvis tom, vis tekst i stedet. ''.", + 'row_promotion_link_click' => "Kampanjekobling klikk", + 'text_promotion_link_note_one' => " bonus poeng om hans kampanje lenke blir klikket på av uregistrert IP. Bare ett klikk telles med ", + 'text_promotion_link_note_two' => " seconds. Sett poeng til '0' for å deaktivere regelen. Standard '0', '600'.", + 'row_promotion_link_example_image' => "Eksempelbilde av promotion link", + 'text_promotion_link_example_note' => "The image in the examples of promotion link. MUST use relative path, e.g. 'pic/prolink.png'.", + 'row_enable_nfo' => "Aktiver NFO", + 'text_enable_nfo_note' => "Standard 'Ja'. System-wide NFO setting.", + 'row_web_analytics_code' => "Web analytics-kode", + 'text_web_analytics_code_note' => "Skriv inn webanalytikkkode fra en tredjepartstjeneste (f.eks Google Analytics). La den være blank hvis ingen.
    Note: bruker bare kode som du er sikker og pålitelig.", + 'row_enable_email_notification' => "Aktivere e-postvarsling", + 'text_email_notification_note' => "Tillat brukere å motta e-postvarsel når han får ny pm, kommenterer osv.", + 'text_users_get' => "Brukere vil få ", + 'text_invitations_default' => " invitasjoner første gang han er promotert til denne klassen. Standard ", + 'row_guest_visit_type' => "Gjest besøk", + 'text_guest_visit_type_normal' => 'Vanlig', + 'text_guest_visit_type_static_page' => 'Vise en statisk side', + 'text_guest_visit_type_custom_content' => 'Vis egendefinert innhold', + 'text_guest_visit_type_redirect' => 'Omdirigere til en URL', + 'row_guest_visit_value_static_page' => 'Spesifikk statisk side', + 'row_guest_visit_value_custom_content' => 'Tilpasset innhold', + 'row_guest_visit_value_redirect' => 'Spesifikk URL', + 'text_guest_visit_value_static_page' => 'Fil finn:ressurser/statiske/sider/', + 'row_login_type' => 'Innlogging type', + 'text_login_type_normal' => 'Vanlig', + 'text_login_type_secret' => 'Hemmelig', + 'text_login_type_warning' => "Kun en av de tre har effekt", + 'row_login_secret' => 'Innlogging hemmelig', + 'text_login_secret_current' => 'Nåværende hemmelighet', + 'text_login_url_with_secret' => 'Hemmelig påloggings-URL', + 'text_login_url_with_passkey' => 'Passkey login URL', + 'text_login_secret_regenerate_yes' => "Gjengenerer (oppdaterer hemmelig og utvider levetiden etter lagring)", + 'text_login_secret_regenerate_no' => "Gjenværende (vil ikke endre hemmeligheten og levetiden etter lagring)", + 'text_login_secret_lifetime' => 'Tidsfrist', + 'text_login_secret_lifetime_unit' => 'minutt', + 'row_login_secret_lifetime' => 'Pålogging hemmelig levetid', + 'text_login_secret_lifetime_deadline' => 'Nåværende hemmelige frist for pålogging', + 'row_enable_technical_info' => 'Aktivere MediaInfo', + 'text_enable_technical_info' => "Standard 'Nei'. MediaInfo kommer fra programvare MediaInfo tekstvisning", + 'row_sticky_first_level_background_color' => 'Klissete første nivå bg farge', + 'text_sticky_first_level_background_color_note' => 'Fast første nivå bg farge, det vil ikke være noen hvis det ikke er satt.', + 'row_sticky_second_level_background_color' => 'Klissete andre nivå bg farge', + 'text_sticky_second_level_background_color_note' => 'Klissete andre nivå bg farge, det vil ikke være noen hvis det ikke er satt.', + 'row_download_support_passkey' => 'Støtt nedlasting via adgangsnøkkel', + 'text_download_support_passkey_note' => 'Støtt nedlasting av torrent-fil ved tilgangsnøkkel eller notat(krever også torrent-id).', + 'row_torrent_hr' => 'H&R', + 'text_torrent_hr_note' => 'Sett torrent til H&R inspektør', + 'row_cancel_hr' => 'Avbryt H&R', + 'text_cancel_hr_note' => "bonus poeng å avbryte ett H&R. Standard '".\App\Models\BonusLogs::DEFAULT_BONUS_CANCEL_ONE_HIT_AND_RUN."'.", + 'text_attendance_get_bonus' => 'Angrepet får bonus', + 'text_attendance_initial_reward' => 'Første belønning', + 'text_attendance_initial_reward_input_label' => 'Første gang du får', + 'text_attendance_input_suffix' => 'bonus', + 'text_attendance_continuous_increment' => 'Kontinuerlig økning', + 'text_attendance_continuous_increment_input_label' => 'Hver kontinuerlig økning', + 'text_attendance_reward_limit' => 'Belønnings grense', + 'text_attendance_reward_limit_input_label' => 'Høyeste belønning du vil motta', + 'text_attendance_continuous' => 'Kontinuerlig', + 'text_attendance_continuous_days' => 'Kontinuerlige dager', + 'text_attendance_continuous_days_additional_reward' => 'Ekstra bonus', + 'text_attendance_continuous_days_action' => 'Handling', + 'text_attendance_continuous_unit' => 'dager', + 'text_attendance_continuous_item_action_remove' => 'Fjern', + 'text_attendance_continuous_item_action_add' => 'Legg til', + 'text_attendance_continuous_add_rules' => 'Legg til regler fra laveste til høyeste', + 'row_attendance_card' => 'Kjøp deltakerkort', + 'text_attendance_card_note' => "bonuspoeng for å kjøpe et deltakerkort. Standard'" . \App\Models\BonusLogs::DEFAULT_BONUS_BUY_ATTENDANCE_CARD . "'.", + 'row_site_language_enabled' => 'Nettsted aktivert språk', + 'text_site_language_enabled_note' => 'Velg nettstedsaktivert språk', + 'keep_at_least_one' => 'Behold minst en', + 'text_alias' => 'Class alias: ', + 'row_default_user_one' => 'Standard er', + 'row_default_user_two' => '', + 'row_show_top_uploader' => 'Vis øverste opplastede (Torrent antall)', + 'text_show_top_uploader_note' => "Standard 'Nei'. Vis øvre opplasting av bruker(e) på hjemmesiden.", + 'claim_label' => 'Krav om torrent', + 'claim_enabled' => 'Krev aktivert', + 'claim_torrent_ttl' => 'Torrent kan bli hevdet etter %s av frigivelsesdagen.', + 'claim_torrent_user_counts_up_limit' => 'En torrent kan bli hevdet av opptil %s brukere.', + 'claim_user_torrent_counts_up_limit' => 'En bruker kan kreve inntil %s av torrentene.', + 'claim_remove_deduct_user_bonus' => "Kutt torrent vil bli slettet og %s av brukerens bonus vil trekkes fra hvis de ikke oppfyller standarden (ikke den første måneden med krav).", + 'claim_give_up_deduct_user_bonus' => 'Brukeren påfører aktivt å kreve Trekk fra brukeren %s bonus.', + 'claim_reach_standard' => 'Standard: Månedlig seiling tid større enn eller lik %s av timer, eller lastet opp større enn eller lik %s ganger størrelsen.', + 'claim_bonus_multiplier' => 'Calculate %s times the normal bonus value of the attained seed bonus.', + 'row_misc_settings' => 'Diverse innstillinger', + 'submit_misc_settings' => 'Diverse innstillinger', + 'text_misc_settings_note' => 'Diverse innstillinger', + 'row_misc_donation_custom' => 'Donasjon tilpasset', + 'text_donation_custom_note' => 'Donasjonsside egendefinert innhold, vises ovenfor Alipay, PayPal. Støtte bbbcode tag', + 'row_approval_status_icon_enabled' => 'Vis godkjenningsstatus ikon', + 'text_approval_status_icon_enabled_note' => "Om du vil vise godkjenningsstatus ikon i torrentlisten, standard: 'Nei'.", + 'row_approval_status_none_visible' => 'Synlighet av ikke gjennomgåtte torrenter', + 'text_approval_status_none_visible_note' => "Standard: 'Ja'. Hvis du endrer det, kan du tvinge dem til å vise godkjenningsstatus ikon når revisjonen ikke er [allow] status.", + 'row_imdb_language' => 'IMDB språk', + 'text_imdb_language_note' => 'Språk som brukes til å krave IMDB-data.', + 'text_login_type_passkey' => 'krypteringsnøkkel', + 'row_harem_addition' => 'Varm tillegg', + 'text_user_would_get_by_harem' => 'Brukeren vil motta bonusverdien for den omgående haremen', + 'text_harem_addition_note' => 'ganger som belønning (faktor, f.eks fyll inn 0.01, hvis harem får 100 bonus, så belønne brukeren 100 * 0,01 = 1)', + 'row_offer_skip_approved_count' => 'Direkte opplastings tilbud lar deg telle', + 'text_offer_skip_approved_count_note' => 'Når antallet godkjente tilbud er større enn eller lik denne verdien, kan du laste opp direkte uten å sende tilbud.', + 'row_torrent_delete' => 'Slett torrent', + 'text_torrent_delete_note' => 'Slett torrent', + 'row_hundred_gb_credit' => "100.0 GB laster opp kreditt", + 'text_hundred_gb_credit_note' => " Bonus poeng for å bytte mot 100.0 GB opplasting av kreditt. Standard '10000'.", + 'row_ten_gb_download_credit' => "10.0 GB laster ned kreditt", + 'text_ten_gb_download_credit_note' => " bonus poeng for 10,0 GB nedlasting kreditt. Standard '1000'.", + 'row_hundred_gb_download_credit' => "100.0 GB laster ned kreditt", + 'text_hundred_gb_download_credit_note' => " bonus poeng for 100.0 GB nedlasting kreditt. Standard '8000'.", + 'row_official_addition' => 'Offisielt tillegg', + 'text_user_would_get_by_official' => 'Brukeren vil motta normal bonus verdi av den offisielle torrenten', + 'text_addition_addition_note' => 'ganger som belønning (faktor, f.eks fyll ut 0.01, hvis offisielle torrenter får 100 bonus og belønne brukeren 100 * 0,01 = 1)', + 'zero_bonus_factor_default' => 'Standard er: 0,2', + 'row_official_tag' => 'Offisiell tagg', + 'text_official_tag_note' => '. Torrenter med denne taggen er offisielle torrents', + 'row_zero_bonus_tag' => 'Zero bonus tag', + 'text_zero_bonus_tag_note' => '. Torrenter med denne tag-en er null bonustorrenter', + 'row_upload_deny_approval_deny_count' => 'Nekter å laste opp antall avslag', + 'text_upload_deny_approval_deny_count_note' => "Når antallet torrents godkjenning er større enn eller lik denne verdien, er publisering ikke tillatt. Sett til '0' for ikke å bruke denne regelen", + 'row_nfo_view_style_default' => 'NFO visning stil standard', + 'row_destroy_disabled' => 'Slett kontoen fullstendig', + 'text_destroy_disabled_note_one' => 'Deaktiverte kontoer hvis de er kontinuerlig', + 'text_destroy_disabled_note_two' => "Dager uten å logge inn, vil bli fysisk slettet fra databasen fullstendig. Standard '500', angi en verdi større enn en av punktene over for å forårsake deaktivering. Sett til '0' for å deaktivere denne regelen." , + 'row_enable_global_search_system' => 'Aktiver globalt søk', + 'text_global_search_system_note' => "Standard: 'Ja'. Hvis aktivert, når det er flere seksjoner, vises den globale søkeportalen nederst til høyre i hovedmenyen.", + 'row_protected_forum' => 'Personvernforum for personvern', + 'text_protected_forum' => 'ID-ene til forumene, som muliggjør personvern , separert med komma (f.eks. 1,2,3)', + 'forum_format_error' => 'Formatet på fora er feil, sjekk det igjen!', + 'row_buy_an_tmp_invite' => 'Kjøp en midlertidig invitasjon', + 'text_buy_an_tmp_invite_note' => " bonus poeng for å få en midlertidig invitasjon. Standard '500'.Sett forhold til '0' for å deaktivere kjøpet.", + 'row_buy_rainbow_id' => 'Kjøp Regnbue-ID', + 'text_buy_rainbow_id_note' => " bonus poeng for å få en regnbue-ID, gyldig i 30 dager. Standard '5,000'.", + 'row_buy_change_username_card' => 'Kjøp brukernavn kort', + 'text_buy_change_username_card_note' => " bonus poeng for å få et skifte brukernavn kort, gyldig for alltid. Standard '100000'.", + 'row_initial_tmp_invites' => "Første antall midlertidige invitasjoner", + 'text_initial_tmp_invites_note' => "Hvor mange midlertidige invitasjoner skal hver bruker oppgis ved registrering? Standard '0'.", + 'row_tax_factor' => 'Skattefaktor for betalte torrenter', + 'text_tax_factor_note' => 'Hvis prisen er 100, er denne faktoren 0.1 og den faktiske inntekten til opplasteren er 100 - 100 x 0. = 90, legg merke til at det ikke skal være større enn 1 eller mindre enn 0.', + 'row_max_price' => 'Maks. avgift for betalte torrenter', + 'text_max_price_note' => 'standard: 1 00000, satt til 0 ingen grense', + 'row_paid_torrent_enabled' => 'Om aktive torrenter skal aktiveres', + 'text_paid_torrent_enabled_note' => 'Når aktivert kan brukere med tillatelse angi en viss bonus til de som laster ned torrenter når de sendes, standard: nei', + 'row_use_challenge_response_authentication' => 'Autentisering for utfordringsrespons', + 'text_use_challenge_response_authentication_note' => 'Dersom aktivert vil ingen klartekst passord bli overført på innlogging. Anbefalte framtidige utgivelser vil fjerne denne konfigurasjonen og aktivere denne funksjonen.' , + 'row_complain_enabled' => 'Å aktivere klager', + 'row_complain_enabled_note' => 'standard: "ja"', +); + +?> diff --git a/lang/nb/lang_shoutbox.php b/lang/nb/lang_shoutbox.php new file mode 100644 index 00000000..d19d0d6d --- /dev/null +++ b/lang/nb/lang_shoutbox.php @@ -0,0 +1,16 @@ + "del", + 'std_access_denied' => "Ingen tilgang.", + 'std_access_denied_note' => "Gjester har ikke tillatelse til å se denne siden.", + 'text_to_guest' => " to Guest", + 'text_guest' => "Guest", + 'text_ago' => " siden", + 'text_helpbox_disabled' => "Helpbox er for øyeblikket deaktivert. Hvordan kommer helvetet hatt?", + 'text_no_permission_to_shoutbox' => "Du har ikke tillatelse til å sende meldinger i shoutbox. Hvordan opplever du hallen du kommer her?", + "speaking_too_often" => "Snakke for ofte!", +); + +?> diff --git a/lang/nb/lang_signup.php b/lang/nb/lang_signup.php new file mode 100644 index 00000000..8246f225 --- /dev/null +++ b/lang/nb/lang_signup.php @@ -0,0 +1,35 @@ + "Registrering", + 'text_cookies_note' => "Notat: Du trenger cookies aktivert for å registrere deg eller logge på.", + 'row_desired_username' => "Ønsket brukernavn", + 'text_allowed_characters' => "Tillatte tegn: (a-z), (A-Z), (0-9), Maksimum er 12 tegn", + 'row_pick_a_password' => "Velg et passord", + 'text_minimum_six_characters' => "Minimum er 6 tegn", + 'row_enter_password_again' => "Skriv inn passord igjen", + 'row_question' => "Spørsmål", + 'row_enter_hint_answer' => "Skriv inn hintsvar", + 'text_hint_note' => "Dette svaret vil bli brukt til å tilbakestille passordet dersom du glemmer det.
    Minimum er 6 tegn.", + 'row_email_address' => "Epost adresse", + 'text_email_note' => "du kunne bare registrere deg med e-post fra disse domenene: ", + 'row_country' => "Land", + 'row_gender' => "Kjønn", + 'radio_male' => "Mann ", + 'radio_female' => "Kvinne ", + 'row_verification' => "Bekreftelse", + 'checkbox_read_rules' => "I have read the site rules page.", + 'checkbox_read_faq' => "Jeg godtar å lese av FAQ før jeg stiller spørsmål.", + 'checkbox_age' => "Jeg er minst 13 år gammel.", + 'text_all_fields_required' => "Alle felt er nødvendig! ", + 'submit_sign_up' => "Registrer opp! (PRESS KUN KUN AV)", + 'select_none_selected' => "Ingen valgt", + 'text_select_lang' => "Velg nettstedsspråk: ", + 'row_school' => "Skole", + 'head_invite_signup' => "Inviter Registrering", + 'std_uninvited' => "Feil invitasjonskode. ", + 'std_error' => "Feil", +); + +?> diff --git a/lang/nb/lang_special.php b/lang/nb/lang_special.php new file mode 100644 index 00000000..0bfb8b50 --- /dev/null +++ b/lang/nb/lang_special.php @@ -0,0 +1,7 @@ + "Sorry...", + 'std_permission_denied_only' => "Tillatelse nektet. Bare ", + 'std_or_above_can_view' => " eller over kan vise en spesiell del.

    Vennligst se FAQ for mer informasjon om ulike brukerklasser og hva de kan gjøre.

    %s ansatte
    ", +]; diff --git a/lang/nb/lang_staff.php b/lang/nb/lang_staff.php new file mode 100644 index 00000000..9c81dc39 --- /dev/null +++ b/lang/nb/lang_staff.php @@ -0,0 +1,36 @@ + "Ansatte", + 'text_staff' => "Ansatte", + 'text_firstline_support' => "Firstline støtte", + 'text_firstline_support_note' => "Generelle støttespørsmål bør fortrinnsvis rettes til disse brukerne. Legg merke til at de er frivillige, idet de gir sin tid og krefter til å hjelpe deg. Behandle dem deretter.", + 'text_movie_critics' => "Kritikk", + 'text_movie_critics_note' => "Kritikere har ansvar for å plukke gode ting, skrive gjennomganger, belønne brukernes kommentarer til filmer, musikk osv. generelt skape en bedre atmosfære for å diskutere noe.", + 'text_general_staff' => "Generell personale", + 'text_general_staff_note' => "All programvarestøtte spørsmål og de som allerede besvares i FAQ vil bli ignorert.

    Send melding til Staff, klikk her", + 'text_username' => "Brukernavn", + 'text_online_or_offline' => "online/Frakoblet", + 'text_country' => "Land", + 'text_contact' => "Kontakt", + 'text_language' => "Språk", + 'text_support_for' => "Støtte for", + 'text_responsible_for' => "Ansvarlig for", + 'text_duties' => "Medarbeideres pensjoner", + 'title_online' => "Pålogget", + 'title_offline' => "Frakoblet", + 'title_send_pm' => "Send PM", + 'text_vip' => "VIP", + 'text_vip_note' => "VIP status gis bare til de som har bidratt spesielt til %s, for eksempel tidligere ansatte", + 'text_reason' => "Grunn", + 'text_apply_for_it' => "Benytt for å bli med", + 'text_forum_moderators' => "Forum Moderatorer", + 'text_forum_moderators_note' => "Forum-moderatorer er ansvarlige for daglig administrasjon av fora.", + 'text_forums' => "Forum", + 'std_sorry' => "Sorry...", + 'std_permission_denied_only' => "Tillatelse nektet. Bare ", + 'std_or_above_can_view' => " eller over kan vise personalet.

    Vennligst se FAQ for mer informasjon om ulike brukerklasser og hva de kan gjøre.

    %s ansatte
    ", +); + +?> diff --git a/lang/nb/lang_staffbox.php b/lang/nb/lang_staffbox.php new file mode 100644 index 00000000..29d98719 --- /dev/null +++ b/lang/nb/lang_staffbox.php @@ -0,0 +1,34 @@ + "Personens PM", + 'text_staff_pm' => "Personens PM", + 'std_sorry' => "Beklager", + 'std_no_messages_yet' => "Ingen meldinger ennå!", + 'col_subject' => "Emne", + 'col_sender' => "Avsender", + 'col_added' => "Lagt", + 'col_answered' => "Besvarte", + 'col_action' => "Loven.", + 'text_yes' => "Ja", + 'text_no' => "Nei", + 'submit_set_answered' => "Sett besvart", + 'submit_delete' => "Slett", + 'text_system' => "Systemadministrasjon", + 'head_view_staff_pm' => "Vis de ansattes PM", + 'col_from' => "Fra", + 'col_date' => "Dato", + 'col_answered_by' => "Besvart av", + 'text_reply' => "Svar", + 'text_mark_answered' => "Marker besvart", + 'text_delete' => "Slett", + 'std_error' => "Feil", + 'std_no_user_id' => "Ingen bruker med den IDen.", + 'head_answer_to_staff_pm' => "Svar på ansatte PM", + 'text_answering_to' => "Svar på ", + 'text_sent_by' => " sendt av ", + 'std_body_is_empty' => "Vennligst skriv inn noe!", +); + +?> diff --git a/lang/nb/lang_subtitles.php b/lang/nb/lang_subtitles.php new file mode 100644 index 00000000..f5dd988d --- /dev/null +++ b/lang/nb/lang_subtitles.php @@ -0,0 +1,64 @@ + "Feil!", + 'std_must_login_to_upload' => "Må være logget inn for å laste opp undertekst", + 'head_subtitles' => "Undertekster", + 'std_nothing_received' => "Opplasting feilet!

    Ingenting mottatt! Den valgte filen kan ha vært for stor.", + 'std_subs_too_big' => "Upload failed!

    Subs is too big!", + 'std_wrong_subs_format' => "Opplasting feilet!

    Jeg har ikke lov til å lagre filen du sender meg :ARS", + 'std_file_already_exists' => "Opplasting feilet!

    En fil finnes allerede på ", + 'std_missing_torrent_id' => "Opplasting feilet!

    mangler torrent ID!", + 'std_invalid_torrent_id' => "Opplasting feilet!

    ser ikke ut til å være en gyldig torrent-id !", + 'std_no_permission_uploading_others' => "Opplasting feilet!

    Det virker som ikke din torrent-ID, vil ikke brukere av din klasse kunne laste opp suber til torrenter av andre!", + 'std_file_same_name_exists' => "Fil med dette navnet finnes allerede ", + 'std_must_choose_language' => "Upload failed!

    Please Choose a language for the subtitle !", + 'std_failed_moving_file' => "Kunne ikke flytte den opplastede filen. Du bør kontakte en administrator om denne feilen.", + 'std_this_file' => "Denne filen: ", + 'std_is_invalid' => " er ikke gyldig i mappen.", + 'text_upload_subtitles' => "Opplasting undertekster - total lastet opp ", + 'text_rules' => "Regler:", + 'text_rule_one' => "1.Vennligst last opp bare filer med engelske navn!", + 'text_rule_two' => "2.The subtitles MUST BE IN SYNC with what you're saying they're for. If they're not it's a waste of space.", + 'text_rule_three' => "3.Language identification isn't really needed in Title as there's the national flag, but if you feel the need: write the language at the end , e.g. CHS.", + 'text_rule_four' => "4.Hvis du laster opp undertekster for en sesongpakke, zip/rar dem alle sammen.", + 'text_rule_five' => "5.Hvis du laster opp Vobsub (idx+sub) undertekster, zip/rar dem før opplasting.", + 'text_rule_six' => "6.Hvis du laster opp en riktig eller synkronisert undertekste, tilføy [proper] eller [resynced] etter navnet på underteksten.", + 'text_red_star_required' => "

    Felter merket med en rød stjerne (*) er nødvendig.

    \n", + 'text_uploading_subtitles_for_torrent' => "Laster opp undertittel for torrent: ", + 'row_file' => "Fil", + 'text_maximum_file_size' => "Maksimal filstørrelse: ", + 'row_torrent_id' => "Torrent ID", + 'text_torrent_id_note' => "(The number in the address bar when you go to the details page of the torrent.
    e.g.  http://%s/details.php?id=16  nummeret 16 er torrent-ID)", + 'row_title' => "Tittel", + 'text_title_note' => "(Valgfritt, hentet fra filnavn hvis ikke angitt.)", + 'row_language' => "Språk", + 'select_choose_one' => "(Velg en)", + 'row_show_uploader' => "Vis opplaster", + 'hide_uploader_note' => "Ikke vis mitt brukernavn i feltet 'Åpnet av Av'.", + 'submit_upload_file' => "Last opp fil", + 'submit_reset' => "Reset", + 'text_sorry' => "Beklager", + 'text_nothing_here' => "Beklager, ingenting her pal :( ", + 'submit_search' => "Søk", + 'text_prev' => "Forrige", + 'text_next' => "Neste", + 'col_lang' => "Lang.", + 'col_title' => "Tittel", + 'title_date_added' => "Tid lagt til", + 'title_size' => "Størrelse", + 'col_hits' => "Treff", + 'col_upped_by' => "Brukt av", + 'text_delete' => "[Delete]", + 'text_anonymous' => "anonymous", + 'std_delete_subtitle' => "Slett undertekst", + 'std_delete_subtitle_note' => "Du er ferd med å slette denne underteksten.", + 'text_reason_is' => "Årsak: ", + 'submit_confirm' => "Bekreft", + 'col_report' => "Rapporter", + 'title_report_subtitle' => "Rapporter denne underteksten", + 'select_all_languages' => "(alle språk)", +); + +?> diff --git a/lang/nb/lang_tags.php b/lang/nb/lang_tags.php new file mode 100644 index 00000000..047a3a49 --- /dev/null +++ b/lang/nb/lang_tags.php @@ -0,0 +1,152 @@ + "Syntaks:", + 'text_example' => "Eksempel:", + 'text_result' => "Resultat:", + 'text_remarks' => "Merknader:", + 'head_tags' => "Tagger", + 'text_tags' => "Tagger", + 'text_bb_tags_note' => "%s støtter en rekke BB-tagger som du kan bygge inn for å endre på hvordan innleggene dine vises.", + 'submit_test_this_code' => "Test denne koden!", + 'text_bold' => "Bold", + 'text_bold_description' => "Gjør vedlagt tekst til en fet stolt.", + 'text_bold_syntax' => "[b]tekst[/b]", + 'text_bold_example' => "[b]This is bold text.[/b]", + 'text_italic' => "Italic", + 'text_italic_description' => "Får vedlagt tekst kursiv.", + 'text_italic_syntax' => "[i]tekst[/i]", + 'text_italic_example' => "[i]Dette er i kursiv tekst.[/i]", + 'text_underline' => "Understreking", + 'text_underline_description' => "Får vedlagt tekst til linding.", + 'text_underline_syntax' => "[u]tekst[/u]", + 'text_underline_example' => "[u]This is underlined text.[/u]", + 'text_color_one' => "Farge (alt 1)", + 'text_color_one_description' => "Endrer fargen på den vedlagte teksten.", + 'text_color_one_syntax' => "[color=Color]tekst[/color]", + 'text_color_one_example' => "[color=blue]Dette er blå tekst.[/color]", + 'text_color_one_remarks' => "Hvilke farger som er gyldige, avhenger av nettleseren. Hvis du bruker de grunnleggende fargene (rødt, grønn, blå, gul, rosa osv.) skal du være trygg.", + 'text_color_two' => "Farge (alt. 2)", + 'text_color_two_description' => "Endrer fargen på den vedlagte teksten.", + 'text_color_two_syntax' => "[color=#RGB]Tekst[/color]", + 'text_color_two_example' => "[color=#0000ff]Dette er blå tekst.[/color]", + 'text_color_two_remarks' => "RGB må være et sekssifret heksadesimalt tall.", + 'text_size' => "Størrelse", + 'text_size_description' => "Angir størrelsen på den vedlagte teksten.", + 'text_size_syntax' => "[size=n]tekst[/size]", + 'text_size_example' => "[size=4]Dette er størrelse 4.[/size]", + 'text_size_remarks' => "n må være et heltall i området 1 (minst) til 7 (stor). Standardstørrelsen er 2.", + 'text_font' => "Font", + 'text_font_description' => "Angir typeansiktet (skrifttype) til den vedlagte teksten.", + 'text_font_syntax' => "[font=Font]Text[/font]", + 'text_font_example' => "[font=Impact]Hallo verden![/font]", + 'text_font_remarks' => "Du angir alternative skrifttyper ved å skille dem med komma.", + 'text_hyperlink_one' => "Hyperkobling (alt 1)", + 'text_hyperlink_one_description' => "Setter inn en snarvei.", + 'text_hyperlink_one_syntax' => "[url]URL[/url]", + 'text_hyperlink_one_example' => "[url]http://%s[/url]", + 'text_hyperlink_one_remarks' => "Denne taggen er overflødige; alle URLer er automatisk koblet til.", + 'text_hyperlink_two' => "Hyperkobling (alt. 2)", + 'text_hyperlink_two_description' => "Setter inn en snarvei.", + 'text_hyperlink_two_syntax' => "[url=URL]lenketekst[/url]", + 'text_hyperlink_two_example' => "[url=http://%s]%s[/url]", + 'text_hyperlink_two_remarks' => "Du trenger ikke å bruke dette merket med mindre du ønsker å angi lenketeksten; alle nettadresser vil automatisk bli koblet.", + 'text_image_one' => "Bilde (alt 1)", + 'text_image_one_description' => "Setter inn et bilde.", + 'text_image_one_syntax' => "[img=URL]", + 'text_image_one_example' => "[img=http://%s/pic/nexus.png]", + 'text_image_one_remarks' => "URL-adressen må avsluttes med .gif, .jpg, .jpeg eller .png.", + 'text_image_two' => "Bilde (alt. 2)", + 'text_image_two_description' => "Setter inn et bilde.", + 'text_image_two_syntax' => "[img]URL[/img]", + 'text_image_two_example' => "[img]http://%s/pic/nexus.png[/img]", + 'text_image_two_remarks' => "URL-adressen må avsluttes med .gif, .jpg, .jpeg eller .png.", + 'text_quote_one' => "Tilbud (alt 1)", + 'text_quote_one_description' => "Innsetter et sitat.", + 'text_quote_one_syntax' => "[quote]sitert tekst[/quote]", + 'text_quote_one_example' => "[quote]Jeg elsker %s.[/quote]", + 'text_quote_two' => "Tilbud (alt 2)", + 'text_quote_two_description' => "Innsetter et sitat.", + 'text_quote_two_syntax' => "[sitert =Author]sitert tekst[/quote]", + 'text_quote_two_example' => "[sitat =%s]Jeg elsker %s.[/quote]", + 'text_list' => "Liste", + 'text_description' => "Setter inn et listeelement.", + 'text_list_syntax' => "[*]tekst", + 'text_list_example' => "[*] Dette er element 1\n[*] Dette er element 2", + 'text_preformat' => "Forhåndsformat", + 'text_preformat_description' => "Preformattert (monospace) tekst. Pakker ikke inn automatisk.", + 'text_preformat_syntax' => "[pre]tekst[/pre]", + 'text_preformat_example' => "[pre]Dette er formatert tekst.[/pre]", + 'text_code' => "Kode", + 'text_code_description' => "Vis tekst i dekorert format.", + 'text_code_syntax' => "[code]Text[/code]", + 'text_code_example' => "[code]This is code[/code]", + 'text_you' => "[you]", + 'text_you_description' => "Vis brukernavnet til hva som viser denne", + 'text_you_syntax' => "[you]", + 'text_you_example' => "Jeg vet at du leser dette, [you]", + 'text_you_remarks' => "Nyttig for å lage triks", + 'text_site' => "[site]", + 'text_site_description' => "Vis sidenavn", + 'text_site_syntax' => "[site]", + 'text_site_example' => "Du besøker [site] nå", + 'text_siteurl' => "[siteurl]", + 'text_siteurl_description' => "Vis nettadressen til dette nettstedet", + 'text_siteurl_syntax' => "[siteurl]", + 'text_siteurl_example' => "Nettadressen til [site] er [siteurl]", + 'text_flash' => "Flash (alt. 1)", + 'text_flash_description' => "Sett inn flash i websider i definert bredde og høyde", + 'text_flash_syntax' => "[flash,widde,height]Flash URL[/flash]", + 'text_flash_example' => "[flash,500,300]http://%s/flash.demo.swf[/flash]", + 'text_flash_two' => "Flash (alt. 2)", + 'text_flash_two_description' => "Sett inn flash i websider med standardbredde og høyde (500 * 300)", + 'text_flash_two_syntax' => "[flash]Flash URL[/flash]", + 'text_flash_two_example' => "[flash]http://%s/flash.demo.swf[/flash]", + 'text_flv_one' => "Flash-video (alt.1)", + 'text_flv_one_description' => "Sett inn flashvideo på websider med definert bredde og høyde", + 'text_flv_one_syntax' => "[flv,widde,height]Flash video URL[/flv]", + 'text_flv_one_example' => "[flv,320,240]http://%s/flash.video.demo.flv[/flv]", + 'text_flv_two' => "Flash-video (alt.2)", + 'text_flv_two_description' => "Sett inn flash video på websider med standard bredde og høyde (320 * 240)", + 'text_flv_two_syntax' => "[flv]Flash-video URL[/flv]", + 'text_flv_two_example' => "[flv]http://%s/flash.video.demo.flv[/flv]", + 'text_youtube' => "YouTube", + 'text_youtube_description' => "Sett inn YouTube online video i websider", + 'text_youtube_syntax' => "[youtube,width,height]Video URL på YouTube[/youtube]", + 'text_youtube_example' => "[youtube,560,315]https://www.youtube.com/watch?v=DWDL3VTCcCg&ab_channel=ESPNMMA[/youtube]", + 'text_youku' => "YouKu", + 'text_youku_description' => "Sett inn YouKu online video på websider", + 'text_youku_syntax' => "[youku]Video URL på YouKu[/youku]", + 'text_youku_example' => "[youku]http://player.youku.com/player.php/sid/XMz1MDExODg=/v.swf[/youku]", + 'text_tudou' => "TuDou", + 'text_tudou_description' => "Sett inn TuDou online video på nettsider", + 'text_tudou_syntax' => "[tudou]Video URL på TuDou[/tudou]", + 'text_tudou_example' => "[tudou]http://www.tudou.com/v/1jaI4LNa7sk[/tudou]", + 'text_ninety_eight_image' => "CC98 bilde", + 'text_ninety_eight_image_description' => "Vis bilde vertet på CC98 forum", + 'text_ninety_eight_image_syntax' => " [98img=[autohøyrenummer]]Bildefil[/98img]", + 'text_ninety_eight_image_example' => "[98img=150]uploadfile/2008/10/30/2362924185.png[/98img]", + 'text_ninety_eight_image_remarks' => "CC98 er et forum ved Zhejiang universitet", + 'text_spoiler' => 'Spoiler', + 'text_spoiler_description' => 'Sett inn utvidbar/kollapsibelt innhold på siden', + 'text_spoiler_syntax' => '[spoiler=title]Dette er det brettete innholdet[/spoiler]', + 'text_spoiler_example' => '[spoiler=Hva skjedde med helten til siste slutte?]Helten døde sist![/spoiler]', + + 'text_left' => 'Text align left', + 'text_left_description' => 'Sett inn venstrejustert innhold på siden', + 'text_left_syntax' => '[left]Dette er det venstrejusterte innholdet[/left]', + 'text_left_example' => '[left]Dette er det venstrejusterte innholdet[/left]', + + 'text_center' => 'Teksten justeres i midten', + 'text_center_description' => 'Sett inn sentrert innhold på siden', + 'text_center_syntax' => '[center]Dette er det sentral-justerte innholdet[/center]', + 'text_center_example' => '[center]Dette er det sentral-justerte innholdet[/center]', + + 'text_right' => 'Tekst mot høyre', + 'text_right_description' => 'Sett inn høyre-berettiget innhold på siden', + 'text_right_syntax' => '[right]Dette er det høyrejusterte innholdet[/right]', + 'text_right_example' => '[right]Dette er det høyrejusterte innholdet[/right]', +); + +?> diff --git a/lang/nb/lang_takeconfirm.php b/lang/nb/lang_takeconfirm.php new file mode 100644 index 00000000..113718a7 --- /dev/null +++ b/lang/nb/lang_takeconfirm.php @@ -0,0 +1,14 @@ + "Sorry...", + 'std_no_buddy_to_confirm' => "Ingen buddy å bekrefte. :(

    Vennligst klikk ", + 'std_here_to_go_back' => "her for å gå tilbake.", + 'mail_title' => " Konto bekreftet", + 'mail_here' => "HER", + 'mail_content_1' => "Hei,

    Kontoen din er bekreftet. Du kan nå besøke ", + 'mail_content_2' => "

    og bruk påloggingsinformasjonen til å logge inn på. Vi håper du vil lese FAQ og reglene før du begynner å dele filer.

    lykke og har det gøy på ".$SITENAME."!

    If you do not know the person who has invited you, please report this email to ".$REPORTMAIL."
    ------
    Yours,The ".$SITENAME." Lag." +); + +?> diff --git a/lang/nb/lang_takecontact.php b/lang/nb/lang_takecontact.php new file mode 100644 index 00000000..5e62bf47 --- /dev/null +++ b/lang/nb/lang_takecontact.php @@ -0,0 +1,17 @@ + "Feil", + 'std_method' => "Metode", + 'std_please_enter_something' => "Vennligst skriv inn noe!", + 'std_please_define_subject' => "Du må definere emne!", + 'std_message_flooding' => "Meldingen er ikke tillatt. Vennligst vent ", + 'std_second' => " sekund", + 'std_s' => "S", + 'std_before_sending_pm' => " før du sender PM til STAFF.", + 'std_succeeded' => "Lyktes", + 'std_message_succesfully_sent' => "Meldingen ble sendt!" +); + +?> \ No newline at end of file diff --git a/lang/nb/lang_takeedit.php b/lang/nb/lang_takeedit.php new file mode 100644 index 00000000..29827693 --- /dev/null +++ b/lang/nb/lang_takeedit.php @@ -0,0 +1,12 @@ + "Redigering mislyktes!", + 'std_missing_form_data' => "manglende skjemadata", + 'std_not_owner' => "Du er ikke eieren! Hvordan skjedde det?", + 'std_nfo_too_big' => "NFO er for stor! Maks 65,535 byte.", + 'std_cannot_move_torrent' => "Du har ikke tillatelse til å flytte torrenter til en annen seksjon. BTW, hvordan får du her?" +); + +?> \ No newline at end of file diff --git a/lang/nb/lang_takeflush.php b/lang/nb/lang_takeflush.php new file mode 100644 index 00000000..9aa8323f --- /dev/null +++ b/lang/nb/lang_takeflush.php @@ -0,0 +1,11 @@ + "Mislyktes", + 'std_success' => "Vellykket", + 'std_ghost_torrents_cleaned' => "spøkelstorrents ble renset helt.", + 'std_cannot_flush_others' => "Du kan bare rense dine egne spøkelsestorrenter" +); + +?> \ No newline at end of file diff --git a/lang/nb/lang_takeinvite.php b/lang/nb/lang_takeinvite.php new file mode 100644 index 00000000..381a266d --- /dev/null +++ b/lang/nb/lang_takeinvite.php @@ -0,0 +1,29 @@ + "Invitasjonen mislyktes!", + 'std_username_too_long' => "Beklager, brukernavnet er for langt (opptil 12 tegn)", + 'std_must_enter_email' => "Du må skrive inn en e-postadresse!", + 'std_invalid_email_address' => "Ugyldig e-postadresse!", + 'std_must_enter_personal_message' => "Vennligst legg til en personlig melding.", + 'std_email_address' => "E-postadressen ", + 'std_is_in_use' => " er allerede i bruk.", + 'mail_here' => "HER", + 'mail_tilte' => " Invitasjon", + 'mail_one' => "Hi,

    You have been invited to join the %s community by ", + 'mail_two' => ".
    Dette er et privat samfunn som har veldig kunnskapsrike medlemmer.
    Hvis du er interessert i å bli med i samfunnet, les over
    reglene og bekreft invitasjonen.

    Hvis du vil akseptere denne invitasjonen, må du klikke på denne lenken:", + 'mail_three' => "Du må akseptere invitasjonen innen ", + 'mail_four' => " dager eller lenken blir inaktiv.
    Vi på %s håper du vil akseptere invitasjonen og bli med i vårt flotte fellesskap!

    Personlig melding fra ", + 'mail_five' => ":", + 'mail_six' => "If you do not know the person who has invited you, please forward this email to %s

    ------
    Yours,
    The %s Team.", + 'std_error' => "Feil", + 'std_invite_denied' => "Brukere av klassen din har ikke lov til å sende invitasjon. Hvordan får du her?", + 'std_email_address_banned' => "Denne e-postadressen er utestengt!", + 'std_wrong_email_address_domains' => "Denne e-postadressen er ikke tillatt! Du kan bare sende invitasjonen til disse domenene: ", + 'std_no_invite' => "Du har ingen invitasjon. Hvordan kommer du her?", + 'std_invitation_already_sent_to' => "Invitasjon mislyktes! E-postadressen ", + 'std_await_user_registeration' => " har allerede mottatt en invitasjon. Vennligst vent til brukeren registrerer seg.", +); + +?> diff --git a/lang/nb/lang_takelogin.php b/lang/nb/lang_takelogin.php new file mode 100644 index 00000000..f070cb4d --- /dev/null +++ b/lang/nb/lang_takelogin.php @@ -0,0 +1,13 @@ + "Error: Username or password incorrect!

    Don't remember your password? Recover your password!", + 'std_login_fail' => "Innlogging mislyktes!", + 'std_account_disabled' => "Denne kontoen er deaktivert.", + 'std_user_account_unconfirmed' => "Kontoen er ikke bekreftet ennå. Hvis du ikke har mottatt e-postbekreftelsen, prøv på nytt den.", + 'std_require_two_step_code' => 'Krev totrinns autentiseringskode.', + 'std_invalid_two_step_code' => 'Ugyldig 2-trinns autentiseringskode.', +); + +?> diff --git a/lang/nb/lang_takemessage.php b/lang/nb/lang_takemessage.php new file mode 100644 index 00000000..513be75f --- /dev/null +++ b/lang/nb/lang_takemessage.php @@ -0,0 +1,29 @@ + "Feil", + 'std_permission_denied' => "Tilgang nektet!", + 'std_please_enter_something' => "Vennligst skriv inn noe!", + 'std_message_flooding_denied' => "Meldingen er ikke tillatt. Vennligst vent ", + 'std_before_sending_pm' => " sekund(er) før sending PM.", + 'std_invalid_id' => "Invalid ID", + 'std_user_not_exist' => "Ingen bruker med denne IDen", + 'std_refused' => "Avvist", + 'std_account_parked' => "Denne kontoen er parkert.", + 'std_user_blocks_your_pms' => "Denne brukeren har blokkert PMs fra deg.", + 'std_user_accepts_friends_pms' => "Denne brukeren godtar bare PMs fra brukerne i sin venneliste.", + 'std_user_blocks_all_pms' => "Denne brukeren godtar ikke PMs.", + 'std_succeeded' => "Lyktes", + 'std_messages_out_of' => " meldinger ute av ", + 'std_were' => " var", + 'std_message_was' => "Meldingen ble sendt", + 'std_successfully_sent' => " sendt!", + 'std_s_were' => "S var", + 'std_was' => " førpris", + 'std_updated' => " oppdatert!", + 'std_no_permission_forwarding' => "Du har ikke tillatelse til å videresende denne meldingen.", + 'std_must_enter_username' => "Du må skrive inn brukernavnet som du vil videresende meldingen." +); + +?> diff --git a/lang/nb/lang_takereseed.php b/lang/nb/lang_takereseed.php new file mode 100644 index 00000000..c63ecc58 --- /dev/null +++ b/lang/nb/lang_takereseed.php @@ -0,0 +1,12 @@ + "Reseed forespørsel!", + 'std_it_worked' => "Det virket! En melding sendes til brukere som har plukket denne torren.", + 'std_error' => "Feil", + 'std_torrent_not_dead' => "Torrenten er ikke død.", + 'std_reseed_sent_recently' => "Noen har allerede bedt om å få oppdatert denne torrenten i løpet av de siste 15 minuttene. Vennligst vent tålmodig for at brukere skal kunne gjenopptas.", +); + +?> diff --git a/lang/nb/lang_takesignup.php b/lang/nb/lang_takesignup.php new file mode 100644 index 00000000..b7d0de16 --- /dev/null +++ b/lang/nb/lang_takesignup.php @@ -0,0 +1,41 @@ + "Registrering mislyktes! (Se under feil)", + 'std_invalid_email_address' => "Ugyldig e-postadresse!", + 'std_email_address_banned' => "Denne e-postadressen er utestengt!", + 'std_wrong_email_address_domains' => "Denne e-postadressen er ikke tillatt! Du kan bare registrere deg med e-post fra disse domenene: ", + 'std_invalid_gender' => "Ugyldig kjønn!", + 'std_blank_field' => "Ikke la noen felter være tomme.", + 'std_hintanswer_too_short' => "Beklager, Hintanswer er for kort (min er 6 tegn)", + 'std_username_too_long' => "Beklager, brukernavn er for langt (maks 12 tegn)", + 'std_passwords_unmatched' => "Passordene samsvarer ikke! Musthar typoed. Prøv igjen.", + 'std_password_too_short' => "Beklager, passordet er for kort (min er 6 tegn)", + 'std_password_too_long' => "Beklager, passordet er for langt (maks 40 tegn)", + 'std_password_equals_username' => "Beklager, passordet kan ikke være det samme som brukernavn.", + 'std_wrong_email_address_format' => "Det ser ikke ut som en gyldig e-postadresse.", + 'std_invalid_username' => "Ugyldig brukernavn.", + 'std_unqualified' => "Beklager, du er ikke kvalifisert til å bli medlem av denne siden.", + 'std_email_address' => "E-post adressen ", + 'std_in_use' => " er allerede i bruk.", + 'std_username_exists' => "Brukernavn finnes allerede!", + 'std_database_in_distress' => "Beklager, mysql feil. Vennligst kontakt administratoren om denne feilen.", + 'std_almost_signup' => "Nesten ferdigmelding!", + 'std_please_click' => "Vennligst klikk ", + 'std_here' => "her", + 'std_to_finish_signup' => " For å fullføre registreringen, takk!", + 'msg_subject' => "Velkommen til ", + 'msg_congratulations' => "Gratulerer ", + 'msg_you_are_a_member' => ",\n\nYou are now a member of %s,\nWe would like to take this opportunity to say hello and welcome to %s!\n\nPlease be sure to read the [url=rules.php][b]Rules[/b][/url] and the [url=faq.php][b]Faq[/b][/url].\n And be sure to stop by the [url=forums.php][b]Forums[/b][/url]: and say Hello!\n\nEnjoy your Stay.\nThe Staff of %s ", + 'mail_this_link' => "DETTE LINK", + 'mail_here' => "HER", + 'mail_title' => " Brukerregistrering bekreftelse", + 'mail_one' => "Hi ", + 'mail_two' => ",

    Du har bedt om en ny brukerkonto på %s og du har
    angitt denne adressen ", + 'mail_three' => " som bruker kontakt.

    Hvis du ikke har gjort dette, kan du ignorere denne e-posten. Personen som skrev inn
    -adressen hadde IP-adressen din ", + 'mail_four' => ". Please do not reply.

    To confirm your user registration, you have to follow ", + 'mail_four_1' => "

    Hvis lenken over er ødelagt eller utløpt, prøv å sende en ny bekreftelse på nytt fra ", + 'mail_five' => "

    After you do this, you will be able to use your new account. If you fail to
    do this, your account will be deleted within 24 hours. We urge you to read
    the RULES and FAQ before you start using %s.

    Please Note: If you did not register for %s, please report this email to %s

    ------
    Yours,
    The %s Team.", +); +?> diff --git a/lang/nb/lang_takeupload.php b/lang/nb/lang_takeupload.php new file mode 100644 index 00000000..1f8fb5de --- /dev/null +++ b/lang/nb/lang_takeupload.php @@ -0,0 +1,31 @@ + "Opplasting feilet!", + 'std_missing_form_data' => "manglende skjemadata", + 'std_empty_filename' => "Tomt filnavn!", + 'std_zero_byte_nfo' => "0-byte NFO", + 'std_nfo_too_big' => "NFO er for stor! Maks 65,535 byte.", + 'std_nfo_upload_failed' => "NFO opplasting feilet", + 'std_blank_description' => "Du må angi en beskrivelse!", + 'std_category_unselected' => "Du må velge en kategori for å legge til torrenten!", + 'std_invalid_filename' => "Ugyldig filnavn!", + 'std_filename_not_torrent' => "Ugyldig filnavn (ikke en .torrent).", + 'std_empty_file' => "Tom fil!", + 'std_not_bencoded_file' => "Hva helvetet lastet du? Dette er ikke en godkodet fil!", + 'std_not_a_dictionary' => "ikke en ordbok", + 'std_dictionary_is_missing_key' => "ordlisten mangler nøkler", + 'std_invalid_entry_in_dictionary' => "ugyldig oppføring i ordlisten", + 'std_invalid_dictionary_entry_type' => "ugyldig ordliste enhetstype", + 'std_invalid_pieces' => "ugyldige stykker", + 'std_missing_length_and_files' => "mangler både lengde og filer", + 'std_filename_errors' => "Feil med filnavn", + 'std_uploaded_not_offered' => "du har kun autorisert til å laste opp torrenten du tilbyr, vennligst gå tilbake og velg en hos \"Tilbud\"!", + 'std_unauthorized_upload_freely' => "du er ikke autorisert for å laste opp torrent!", + 'std_torrent_existed' => "Torrent allerede lastet opp!", + 'std_torrent_file_too_big' => "Torrent-fil er for stor! Maks ", + 'std_remake_torrent_note' => " bytes. Lag torrent-filen på nytt med størrelse på brikken eller del innholdet i flere torrenter.", +); + +?> diff --git a/lang/nb/lang_topten.php b/lang/nb/lang_topten.php new file mode 100644 index 00000000..8a729335 --- /dev/null +++ b/lang/nb/lang_topten.php @@ -0,0 +1,116 @@ + "Feil!", + 'std_sorry' => "Sorry...", + 'std_permission_denied_only' => "Tillatelse nektet. Bare ", + 'std_or_above_can_view' => " eller over kan se topp 10.

    Vennligst se "."FAQ for more information on different user classes and what they can do.

    The %s Staff
    ", + 'col_rank' => "Rangering", + 'col_user' => "Bruker", + 'col_donated' => "Donert", + 'col_ul_speed' => "UL hastighet", + 'col_downloaded' => "Nedlastet", + 'col_dl_speed' => "DL hastighet", + 'col_ratio' => "Forhold", + 'col_joined' => "Tiltrådte", + 'col_name' => "Navn", + 'title_sna' => "Antall innnappet", + 'col_data' => "Data", + 'title_se' => "Antall seere", + 'col_le' => "Antall echers", + 'col_to' => "Til.", + 'col_country' => "Land", + 'col_username' => "Brukernavn", + 'col_upload_rate' => "Last opp sats", + 'col_download_rate' => "Nedlastings sats", + 'text_users' => "Brukere", + 'text_torrents' => "Torrenter" , + 'text_countries' => "Land", + 'text_peers' => "Likemenn", + 'text_community' => "Fellesskap", + 'text_search' => "Søk", + 'text_other' => "Annet", + 'text_this_page_last_updated' => "Denne siden sist oppdatert ", + 'text_started_recording_date' => "xfer statistikk påbegynt opptakskonto på ", + 'text_update_interval' => ", og statistikken oppdateres hvert 60. minutt", + 'text_uploaders' => "Opplastinger", + 'text_downloaders' => "Nedlastere", + 'text_fastest_uploaders' => "Raskeste opplastere", + 'text_fastest_up_note' => "(gjennomsnittet, inkluderer inaktiv tid, med minimum 50 GB opplastet)", + 'text_fastest_note' => "(gjennomsnitt, inkludert inaktiv tid)", + 'text_fastest_downloaders' => "Raskeste nedlastere", + 'text_best_sharers' => "Beste Sharers", + 'text_sharers_note' => "(med minimum 50 GB nedlastet)", + 'text_worst_sharers' => "Verste Delere", + 'text_most_active_torrents' => "De fleste aktive torrenter", + 'text_most_snatched_torrents' => "Flest ristede torrenter" , + 'text_most_data_transferred_torrents' => "Fleste dataoverførte torrenter", + 'text_best_seeded_torrents' => "Beste separerte torrenter ", + 'text_best_seeded_torrents_note' => "(med minst 5 frø)", + 'text_worst_seeded_torrents' => "Verste separerte torrenter", + 'text_worst_seeded_torrents_note' => "(med minst 1 leecher, unntatt torrenter uten henting)", + + 'text_most_donated_USD' => "Giverne i amerikanske dollar", + 'text_most_donated_CNY' => "Donorer i kinesisk yuan", + 'col_donated_usd' => "Donert($)", + 'col_donated_cny' => "Donert (nesten)", + + 'text_most_supplied' => " Største ressursleverandør(inkluderer ikke slettede torrenter)", + 'text_most_snatched' => " Største ressurs Snatcher(inkluderer ikke slettet-torrenter)", + 'col_torrent_uploaded' => "Ant. brukt", + 'col_torrent_downloaded' => "Antall Hentet", + + 'text_most_topic' => " Forum Emnefortellere (Ikke inkluder slettede emner)", + 'text_most_post' => " Forum Plakater (Ikke inkluder slettede innlegg)", + 'col_topics' => "Emner", + 'col_posts' => "Innlegg", + + + 'text_biggest_topics' => "Største emner (Topics i privilegerte forum blir ikke beregnet)", + 'col_subject' => "Emne", + + 'col_number' => "Nummer", + 'text_most_browser' => "Browsers", + 'text_most_client' => "Torrent klienter (Siste som har åpnet sporet)", + + 'col_comments' => "Kommentarer", + 'text_most_commenter' => "Torrent Kommenter (Ikke inkluder slettede kommentarer)", + + 'col_reviews' => "Anmeldelser", + 'text_most_reviewer' => "Filmanmeldelse (Ikke inkluder slettede anmeldelser)", + + 'col_location' => "Sted", + 'text_most_locations' => "Kilde posisjoner", + + 'col_keyword' => "Nøkkelord", + 'col_times' => "Tidspunkt", + 'col_datetime' => "Tid", + 'text_latest_search' => "Siste søk", + 'text_current_month_search' => "Søk i denne måneden", + 'text_last_month_search' => "Søk i forrige måned", + 'text_current_year_search' => "Søk i året", + + 'text_most_bonuses' => "Bonuser", + 'col_bonus' => "Bonus", + 'text_countries_users' => "Brukere", + 'col_users' => "Brukere", + 'text_countries_uploaded' => "Totalt opplastet", + 'col_uploaded' => "Opplastet", + 'text_countries_per_user' => "Gjennomsnittlig total opplastet per bruker (med minimum 1TB lastet opp og 100 brukere)", + 'col_average' => "Gjennomsnitt", + 'text_countries_ratio' => "Forhold (med minimum 1TB opplastet, 1TB lastet ned og 100 brukere)", + 'text_ago' => " siden", + 'text_inf' => "Opplysning", + 'head_top_ten' => "10 på topp", + 'text_most_stylesheet' => "Stylesheets", + 'text_most_language' => "Bruker språk", + 'text_top' => "Topp ", + 'text_one_hundred' => "Topp 100", + 'text_top_250' => "Topp 250", + 'col_clicks' => "Klikk", + 'text_most_clicks' => "Kampanjelenkeiere", + 'text_charity_giver' => "Veldedyr gaver" +); + +?> diff --git a/lang/nb/lang_torrents.php b/lang/nb/lang_torrents.php new file mode 100644 index 00000000..3b9dbe16 --- /dev/null +++ b/lang/nb/lang_torrents.php @@ -0,0 +1,69 @@ + "Søkeresultater for ", + 'text_search_box' => "Søk boks", + 'text_category' => "Kategori:", + 'text_source' => "Kilde:", + 'text_codec' => "Kodek:", + 'text_standard' => "Standard:", + 'text_processing' => "Behandler:", + 'text_show_dead_active' => "Vis døden/aktiv?", + 'select_including_dead' => "inkludert døde", + 'select_active' => "aktiv", + 'select_dead' => "død", + 'text_show_special_torrents' => "Vis kampanjer?", + 'select_all' => "alle", + 'select_normal' => "normal", + 'select_free' => "gratis", + 'select_two_times_up' => "2 x opp", + 'select_free_two_times_up' => "gratis og 2x opp", + 'select_half_down' => "50 % lavere", + 'text_search' => "Søk etter søkeord:", + 'submit_go' => "Go!", + 'std_search_results_for' => "Søkeresultater for \"", + 'std_try_again' => "Fant ingenting! Prøv igjen med en raffinert søkestreng.\n", + 'std_nothing_found' => "Ingenting funnet!", + 'std_no_active_torrents' => "Ingen torrenter :(\n", + 'input_check_all' => "Velg alle", + 'input_uncheck_all' => "Velg ingen", + 'text_download_client' => "Last ned tillatt klient", + 'select_title' => "Tittel", + 'select_description' => "Beskrivelse", + 'select_small_description' => "Liten beskrivelse", + 'select_uploader' => "Opplaster", + 'select_imdb_url' => "IMDb URL", + 'select_and' => "OG", + 'select_or' => "ELLER", + 'select_exact' => "Nøyaktig", + 'select_parsed' => "Parsed", + 'text_in' => " i ", + 'text_with' => " med ", + 'text_mode' => " matchende modus", + 'text_show_bookmarked' => "Vis bokmerket?", + 'select_bookmarked' => "Bokmerket", + 'select_bookmarked_exclude' => "Ikke bokmerket", + 'text_s_bookmarked_torrent' => "Bokmerkede torrenter", + 'text_s_not_bookmarked_torrent' => "IKKE bokmerkede torrenter", + 'head_torrents' => "Torrenter", + 'head_special' => "Spesial", + 'text_movies_and_tvs' => "Filmer & TV-er:", + 'text_games_and_appz' => "Spill & Appz:", + 'text_others' => "Andre:", + 'text_medium' => "Middels:", + 'text_team' => "Lag:", + 'text_audio_codec' => "Lyd Codec:", + 'text_video' => "Video:", + 'text_tv' => "Tv:", + 'text_music' => "Musikk:", + 'text_software' => "Programmer:", + 'text_approval_status' => 'Godkjenningsstatus:', + 'size_range' => 'Size range(GB):', + 'leechers_range' => 'Leechers range:', + 'seeders_range' => 'Forskere område:', + 'times_completed_range' => 'Antall ganger fullført område:', + 'added_range' => 'Lagt til område:', +); + +?> diff --git a/lang/nb/lang_upload.php b/lang/nb/lang_upload.php new file mode 100644 index 00000000..a3037b7c --- /dev/null +++ b/lang/nb/lang_upload.php @@ -0,0 +1,46 @@ + "Last opp", + 'std_sorry' => "Sorry...", + 'std_unauthorized_to_upload' => "Du har ikke tilgang til å laste opp torrenter. Les (Innboks)", + 'std_please_offer' => "Du har ikke tillatelse til å laste opp torrenter. (Se Opplasting i FAQ.

    Hvis du tror du er kvalifisert for opplasting av rettigheter, foreslå ditt tilbud her
    ", + 'text_red_star_required' => "Felt markert med rød stjerne (*) er påkrevd.", + 'text_tracker_url' => "Sporerens annonserings-URL er", + 'row_torrent_file' => "Torrent fil", + 'row_torrent_name' => "Torrent navn", + 'text_torrent_name_note' => "(Taken fra filnavn hvis ikke spesifisert. Vennligst bruk beskrivende navn. f.eks Blade Runner 1982 Endelig Cut 720p HDDVD DTS x264-ESiR)\n", + 'row_small_description' => "Liten beskrivelse", + 'text_small_description_note' => "(Dette vises på torrenter side under torrentnavnet. F.eks. 720p @ 4615 kbps - DTS 5.1 @ 1536 kbps)\n", + 'row_nfo_file' => "NFO fil", + 'text_only_viewed_by' => "(Kan bare bli vist av ", + 'text_or_above' => " or Above.
    insert only file ending with .nfo)\n", + 'row_description' => "Beskrivelse", + 'select_choose_one' => "velg en", + 'row_type' => "Type:", + 'row_quality' => "Kvalitet", + 'text_source' => "Kilde:", + 'text_codec' => "Kodek:", + 'text_standard' => "Standard:", + 'text_processing' => "Behandler:", + 'row_your_offer' => "Ditt tilbud", + 'text_please_select_offer' => "   Hvis du laster opp en av tilbudene dine, kan du velge den her, slik at velgerne blir varslet.", + 'row_show_uploader' => "Vis opplaster", + 'checkbox_hide_uploader_note' => "Ikke vis mitt brukernavn i 'Opplastet Av'-feltet.", + 'text_read_rules' => "Jeg leste reglene før denne opplastingen.", + 'submit_upload' => "Last opp", + 'text_to_browse_section' => "Last opp til Torrents del ", + 'text_to_special_section' => "eller Spesiell seksjon ", + 'text_type_note' => "   Velg bare på en av de to", + 'text_medium' => "Middels:", + 'text_team' => "Gruppe:", + 'text_audio_codec' => "Lyd Codec:", + 'row_content' => "Innhold", + 'text_chinese_title' => "Kinesisk navn:", + 'text_english_title' => "Engelsk navn:", + 'text_titles_note' => "(Hvis ingen engelsk navn eksisterer, bruk pinyin eller la det stå tom)", + 'fill_quality' => 'Fyll kvaliteten', +); + +?> diff --git a/lang/nb/lang_uploaders.php b/lang/nb/lang_uploaders.php new file mode 100644 index 00000000..3c57e8ca --- /dev/null +++ b/lang/nb/lang_uploaders.php @@ -0,0 +1,22 @@ + "Ingen opplastere funnet!", + 'head_uploaders' => "Opplastinger", + 'text_uploaders' => "Opplastinger", + 'col_username' => "Brukernavn", + 'col_torrents_size' => "Torrenter størrelse", + 'col_torrents_num' => "Torrenter Num", + 'col_last_upload_time' => "Siste brukte tid", + 'col_last_upload' => "Siste brukte torrent", + 'text_not_available' => "N/A", + 'submit_go' => "Gå", + 'text_select_month' => "Velg måned: ", + 'text_order_by' => "Sorter etter", + 'text_username' => "Brukernavn", + 'text_torrent_size' => "Torrent størrelse", + 'text_torrent_num' => "Torrent Num", +); + +?> diff --git a/lang/nb/lang_usercp.php b/lang/nb/lang_usercp.php new file mode 100644 index 00000000..b48570c4 --- /dev/null +++ b/lang/nb/lang_usercp.php @@ -0,0 +1,261 @@ + "Sorry...", + 'text_user_cp_home' => "Bruker CP hjem", + 'text_personal_settings' => "Personlige innstillinger", + 'text_tracker_settings' => "Tracker Innstillinger", + 'text_forum_settings' => "Forum Innstillinger", + 'text_security_settings' => "Sikkerhet innstillinger", + 'row_save_settings' => "Lagre innstillinger", + 'submit_save_settings' => "Lagre Innstillinger! (PRESS KUN KUN   KUN", + 'std_error' => "Feil", + 'head_control_panel' => "Kontrollpanel ", + 'head_personal_settings' => " - Personlige innstillinger", + 'std_invalid_action' => "Ugyldig handling", + 'text_saved' => "Lagret!", + 'row_account_parked' => "Konto parkert", + 'checkbox_pack_my_account' => "Jeg vil være borte i lang tid.", + 'text_account_pack_note' => "Merknad:Du kan parkere kontoen din for å forhindre at den blir slettet på grunn av inaktivitet hvis du for eksempel en ferie. Når den parkerte grensen er satt på kontoen, kan du for eksempel ikke bruke tracker og bla gjennom noen av sidene.", + 'row_pms' => "PM-er", + 'row_recommended_movies' => "Anbefalte ressurser", + 'checkbox_show_hot' => "Vis HOT på hjemmeside", + 'checkbox_show_classic' => "Vis CLASSIC på hjemmesiden", + 'text_accept_pms' => "Godta PMs fra ", + 'radio_all_except_blocks' => "Alle (unntatt blokker)", + 'radio_friends_only' => "Kun venner", + 'radio_staff_only' => "Kun ansatte", + 'checkbox_delete_pms' => "Slett PMs på svar", + 'checkbox_save_pms' => "Lagre PMs til Sentbox", + 'checkbox_pm_on_comments' => "Varsle meg når noen kommenterer på mine torrenter", + 'row_gender' => "Kjønn", + 'radio_not_available' => "N/A", + 'radio_male' => "Mann", + 'radio_female' => "Kvinne", + 'row_country' => "Land", + 'row_download_speed' => "Last ned Hastighet", + 'row_upload_speed' => "Last opp Hastighet", + 'row_bt_client' => "BT Klient", + 'row_avatar_url' => "Avatar URL", + 'select_choose_avatar' => "Velg en avatar", + 'select_nothing' => "Ingenting", + 'text_avatar_note' => "Bredden skal være 150 piksler (vil endres om nødvendig). ", + 'text_bitbucket_note' => "Hvis du trenger en vert for bildet, prøv bitbucket.", + 'row_info' => "Informasjon", + 'text_info_note' => "Viste på din offentlige side. Kan inneholde BB koder.", + 'head_tracker_settings' => " - Sporingsinnstillinger", + 'row_email_notification' => "E-post varsel", + 'checkbox_notification_received_pm' => "Varsle meg når jeg har mottatt en PM.", + 'checkbox_notification_default_categories' => "Varsle meg når en torrent lastes opp i en av mine standard nettleserkategorier.\n", + 'row_browse_default_categories' => "Standard
    kategorier", + 'row_stylesheet' => "Stylesheet", + 'row_site_language' => "Nettsidens språk", + 'row_torrent_page' => "Torrenter per side", + 'text_zero_equals_default' => "(0=bruke standardinnstilling, max=100)", + 'head_forum_settings' => " - Forum Innstillinger", + 'row_topics_per_page' => "Emner per side", + 'row_posts_per_page' => "Innlegg på siden per ", + 'row_view_avatars' => "Vis avatarer", + 'checkbox_low_bandwidth_note' => "(Med båndbredde kan brukere skru dette av)", + 'row_view_signatures' => "Vis signaturer", + 'row_forum_signature' => "Forum-signatur", + 'head_security_settings' => " - Sikkerhetsinnstillinger", + 'row_security_check' => "Sikkerhet Sjekk", + 'text_security_check_note' => "Note: In order to change your security settings, you must enter your current password!", + 'std_enter_old_password' => "Skriv inn passordet først!", + 'std_wrong_password_note' => "Du har oppgitt feil passord!", + 'std_password_equals_username' => "Beklager, passord kan ikke være det samme som brukernavn", + 'std_password_too_long' => "Beklager, passordet er for langt (maks 40 tegn)", + 'std_password_too_short' => "Beklager, passordet er for kort (min er 6 tegn)", + 'std_passwords_unmatched' => "Passordene samsvarer ikke. Prøv på nytt.", + 'std_email_address_banned' => "Denne e-postadressen er utestengt!", + 'std_wrong_email_address_domains' => "Denne e-postadressen er ikke tillatt! Du kan bare bruke e-post fra disse domenene: ", + 'std_wrong_email_address_format' => "Det ser ikke ut som en gyldig e-postadresse.", + 'std_email_in_use' => "E-post adressen er allerede i bruk", + 'std_confirmation_email_sent' => " (Bekreftelses e-post har blitt sendt!)", + 'std_passkey_reset' => " Krypteringsnøkkel er oppdatert!)", + 'std_password_changed' => " (Ditt passord er endret!)", + 'std_privacy_level_updated' => " (Grupperom ditt personvernsnivå har blitt oppdatert!)", + 'row_reset_passkey' => "Reset passkey", + 'checkbox_reset_my_passkey' => "Jeg vil tilbakestille min pass.", + 'text_reset_passkey_note' => "Merk: for å tilbakestille din nåværende passasje, må en hvilken som helst torrent laste ned kobling (slik som rss-liste) bli hentet igjen til nedlastingsfilen", + 'row_reset_authkey' => "Tilbakestill authkey", + 'checkbox_reset_my_authkey' => "Jeg vil tilbakestille forfatteren min.", + 'text_reset_authkey_note' => "Notat: for å nullstille din nåværende authy, må alle aktive torrenter lastes ned igjen for å fortsette sniking/seeding.", + 'row_email_address' => "E-post adresse", + 'text_email_address_note' => "Notat: For å endre din e-postadresse, vil du motta en ny e-post med bekreftelse på din nye adresse.", + 'row_change_password' => "Endre passord", + 'row_type_password_again' => "Skriv inn passord igjen", + 'row_privacy_level' => "Personvern level", + 'radio_normal' => "Vanlig", + 'radio_low' => "Lav (epost adresse vil bli vist)", + 'radio_strong' => "Sterk (ingen info vil bli gjort tilgjengelig)", + 'head_home' => " - Hjem", + 'row_join_date' => "Bli med dato", + 'row_avatar' => "Profilbilde", + 'row_passkey' => "Tilgangsnøkkel", + 'row_invitations' => "Invitasjoner", + 'link_send_invitation' => "Gå til Invitasjon System", + 'row_karma_points' => "Karma Poeng", + 'link_use_karma_points' => "Bruk Karma Poeng", + 'row_ratings_submitted' => "Ratings submitted", + 'row_written_comments' => "Skriftlig kommentarer", + 'link_view_comments' => "Vis Kommentarer", + 'row_forum_posts' => "Forum Innlegg", + 'link_view_posts' => "Vis Innlegg", + 'text_posts_per_day' => " innlegg per dag ", + 'text_of_total_posts' => " av totalt antall foruminnlegg", + 'text_recently_read_topics' => "Nylig leste emner", + 'col_topic_title' => "Emne tittel", + 'col_replies' => "Svar", + 'col_topic_starter' => "Emne Begynner", + 'col_views' => "Visninger", + 'col_last_post' => "Siste innlegg", + 'text_by' => "av ", + 'select_none_selected' => "Ingen valgt", + 'text_ago' => " siden", + 'mail_here' => "HER", + 'mail_change_email_one' => "Du har bedt om at din brukerprofil (brukernavn ", + 'mail_change_email_two' => ") på %s bør oppdateres med denne e-postadressen ", + 'mail_change_email_three' => " som kontaktperson for brukeren.", + 'mail_change_email_four' => "Hvis du ikke har dette bør du ignorere denne e-posten. Personen som skrev inn din e-postadresse hadde IP-adressen ", + 'mail_change_email_five' => ". Vennligst ikke svar.", + 'mail_change_email_six' => "For å fullføre oppdateringen av brukerprofilen din, klikk ", + 'mail_change_email_six_1' => " å bekrefte", + 'mail_change_email_seven' => "Din nye e-postadresse vises i profilen din etter at du har gjort dette. Ellers vil profilen din forbli uendret.", + 'mail_change_email_eight' => "
    år,", + 'mail_change_email_nine' => "%s teamet.", + 'mail_profile_change_confirmation' => " bekreftelse på profilendring", + 'text_go_back' => "gå tilbake", + 'text_category' => "Kategori", + 'text_source' => "Kilde", + 'text_codec' => "Kodek", + 'text_standard' => "Vanlig", + 'text_processing' => "Behandler", + 'text_show_dead_active' => "Vis døden/aktiv?", + 'select_including_dead' => "inkludert døde", + 'select_active' => "aktiv", + 'select_dead' => "død", + 'text_show_special_torrents' => "Vis kampanjer?", + 'select_all' => "alle", + 'select_normal' => "normal", + 'select_free' => "gratis", + 'select_two_times_up' => "2 x opp", + 'select_free_two_times_up' => "gratis og 2x opp", + 'text_show_bookmarked' => "Vis bokmerket?", + 'select_bookmarked' => "Bokmerket", + 'select_bookmarked_exclude' => "Ikke bokmerket", + 'select_with' => "med", + 'select_without' => "uten", + 'text_review' => " gjennomgåelse", + 'row_pm_boxes' => "PM esker", + 'text_show' => "Vis ", + 'text_pms_per_page' => " pms per side (max=100)", + 'row_shoutbox' => "Meldingsboks", + 'text_show_last' => "Vis siste ", + 'text_messages_at_shoutbox' => " meldinger med shoutbox (0=bruk standardinnstilling, min=10, maks=500)", + 'text_refresh_shoutbox_every' => "Oppfrisk shoutboks hver ", + 'text_seconds' => " sekunder (0=standard innstilling, min=10, max=3600)", + 'text_hide_helpbox_messages' => "Skjul meldinger fra helpbox", + 'row_torrent_detail' => "Torrent Detalj side", + 'text_show_description' => "Vis beskrivelse", + 'text_show_nfo' => "Vis NFO", + 'text_show_imdb_info' => "Vis IMDb informasjon", + 'text_show_douban_info' => "Informasjon om Shou Douban", + 'text_show_lastfm_info' => "Show Last.fm Information", + 'text_show_reviews' => "Vis anmeldelser", + 'text_show_comments' => "Vis kommentarer", + 'row_browse_page' => "Side for torrenter", + 'text_browse_setting_warning' => "ADVARSEL: Ved å skru på mange funksjoner kan den redusere surfehastigheten din.", + 'text_torrents_per_page' => " torrenter per side ", + 'text_tooltip_type' => "Verktøytips type på torrentnavn", + 'text_last_review' => "Siste gjennomgang", + 'text_minor_imdb_info' => "Minor IMDb Info (overskrift + år + IMDb Rating + Land + Sjanger + direktør + Main Cast + Tagline)", + 'text_median_imdb_info' => "Median IMDb Info (Tittel + År + IMDb Rating + Runtime + Land + Direktør + Sjanger + Hovedvekst + plott-utgang på engelsk)", + 'text_douban_info' => "Douban Info (Picture + Title + Year + Douban Rating + Language + Director + Region + Main Cast + Plot Outline in Chinese)", + 'text_off' => "Av", + 'text_show_lastfm_tooltip' => "Vis Last.fm Info på verktøytips", + 'row_time_type' => "Type tid", + 'text_time_added' => "Tid lagt til", + 'text_time_elapsed' => "Tid brukt", + 'text_append_words_to_torrents' => "Spesielle torrenter", + 'text_append_sticky' => "Legg til klebrig ikon \"sticky\" på klistret på toppen", + 'text_append_new' => "Legg til 'Ny' på nye torrenter", + 'text_append_picked' => "Legg til ord, f.eks. \"Klassisk\", til torrenter plukket av kritikere", + 'text_show_action_icons' => "Vis handlingsikon", + 'text_show_nfo_icon' => "NFO ikon", + 'text_show_download_icon' => "Last ned ikon", + 'text_show_edit_icon' => "Rediger ikon", + 'text_if_owner' => " (hvis eieren av torrenter)", + 'text_show_bookmark_icon' => "Bokmerke ikon", + 'text_comments_reviews' => "Kommentarer", + 'text_show_comment_number' => "Vis antall kommentarer ", + 'text_last_comment_on_tooltip' => " siste kommentar på verktøytips", + 'text_show_review_number' => "Vis antall omtaler ", + 'row_school' => "Skole", + 'row_discuss' => "Diskuter", + 'row_funbox' => "Funbox", + 'text_show_funbox' => "Vis dialog på hjemmesiden", + 'text_send' => "Sende", + 'text_use' => "Bruk", + 'text_view' => "Vis", + 'row_ip_location' => "Sted", + 'text_translation_note' => "Ditt språk er ikke i listen? Se hva du kan gjøre med ", + 'text_translation_link' => "HJELP BELØP", + 'text_movies_and_tvs' => "Filmer & TV-er:", + 'text_games_and_appz' => "Spill & Appz:", + 'text_others' => "Andre:", + 'text_at_browse_page' => "Torrenter", + 'text_at_special_page' => "Spesielle avsnitt", + 'text_additional_selection' => "Flere valg", + 'text_stylesheet_note' => "Flere stilark? Vil du designe din egen? ", + 'text_stylesheet_link' => "TRYKK HER", + 'row_font_size' => "Font Size", + 'select_small' => "Liten", + 'select_large' => "Stor", + 'text_medium' => "Middels", + 'text_torrents_on_promotion' => "Torrenter på promotering: ", + 'text_highlight' => "Uthev", + 'text_append_words' => "Legg til ord, f.eks '2X gratis'", + 'text_append_icon' => "Tilføy ikon, f.eks. \"free\"", + 'text_no_mark' => "Av", + 'text_signature_note' => "Kan inneholde BB koder. Maks bildestørrelse er 500*200 og bare det første bildet vil bli vist.", + 'row_click_on_topic' => "Klikk på emnet", + 'text_go_to_first_page' => "gå til første side", + 'text_go_to_last_page' => "gå til siste side", + 'select_half_down' => "50 % lavere", + 'row_category_icons' => "Kategori ikoner", + 'text_team' => "Gruppe", + 'text_audio_codec' => "Lyd Codec", + 'text_sub_category' => "Underkategorier", + 'select_medium' => "Middels", + 'row_tooltip_last_post' => "Vis verktøytips for siste innlegg", + 'checkbox_last_post_note' => "(Hvis den forstyrrer deg, skru den av)", + 'row_network_bandwidth' => "Nettverks båndbredde", + 'text_downstream_rate' => "Downstream rate", + 'text_upstream_rate' => "Oppstrøms rate", + 'text_isp' => "Internettleverandør", + 'text_show_title' => "Vis tittel", + 'text_show_small_description' => "Liten beskrivelse", + 'row_show_advertisements' => "Vis annonser", + 'text_can_turn_off_advertisement' => " eller over kan velge å se ingen annonser", + 'text_buy_no_advertisement' => " eller over kan bruke bonus til å kjøpe en gang uten reklame ved ", + 'text_bonus_center' => " bonus senter", + 'text_show_advertisement_note' => "Jeg vil se annonsen", + 'row_promotion_link' => "Kampanje lenke", + 'text_update_promotion_link' => "Oppdater kampanjekobling", + 'text_read_more' => "Les mer", + 'row_two_step_secret' => 'To-trinns autentisering', + 'text_two_step_secret_bind_by_qrdoe_note' => 'Du kan bruke Google Authenticator eller Authy for å skanne QR-koden til venstre

    Hvis QR-koden ikke er vellykket, laste du kan prøve å åpne denne linken for å laste: ', + 'text_two_step_secret_bind_manually_note' => 'Eller skriv inn følgende nøkkel manuelt i APP: ', + 'text_two_step_secret_bind_complete_note' => 'Skriv inn kode for å fullføre 2-trinnsinnloggingen', + 'text_two_step_secret_unbind_note' => 'Angi kode for å avbryte 2-trinnsinnloggingen', + 'row_passkey_login_url' => 'Passkey login URL', + 'row_seed_box' => 'SeedBox', + 'add_seed_box_btn' => 'Registrer', + 'checkbox_pm_on_topic_reply' => 'Varsle meg når det er nye svar på foruminnlegg', + 'checkbox_pm_on_hr_reached' => 'Gi meg beskjed når H&R når målet', +); + +?> diff --git a/lang/nb/lang_userdetails.php b/lang/nb/lang_userdetails.php new file mode 100644 index 00000000..eee40b6a --- /dev/null +++ b/lang/nb/lang_userdetails.php @@ -0,0 +1,160 @@ + "Feil", + 'std_no_such_user' => "Ingen bruker med denne IDen!", + 'head_details_for' => "Detaljer for ", + 'text_account_disabled_note' => "Denne kontoen er deaktivert!", + 'text_remove_from_friends' => "fjern fra venner", + 'text_remove_from_blocks' => "fjern fra blokker", + 'text_add_to_friends' => "legg til venner", + 'text_add_to_blocks' => "legg til blokker", + 'text_flush_ghost_torrents' => "For å skylde ghost torrents klikk ", + 'text_here' => "her", + 'row_invitation' => "Invitasjoner", + 'text_no_invitation' => "Ingen invitasjoner tilgjengelig", + 'link_send_invitation' => "Send invitasjon", + 'row_invited_by' => "Invitert av", + 'row_join_date' => "Bli med dato", + 'row_last_seen' => "Siste sett", + 'row_last_seen_location' => "Siste seen(plassering)", + 'row_email' => "E-post", + 'row_users_ips' => "Brukerens IP-adresser", + 'row_ip_history' => "IP Historie", + 'text_user_earlier_used' => "Denne brukeren har tidligere brukt ", + 'text_different_ips' => " annen IP-adresse", + 'row_ip_address' => "IP Adresse", + 'row_bt_client' => "BT annonsør", + 'row_uploaded' => "Opplastet", + 'row_downloaded' => "Nedlastet", + 'row_share_ratio' => "Del forhold", + 'row_real_uploaded' => "Faktisk opplastet", + 'row_real_downloaded' => "Faktisk lastet ned", + 'row_real_share_ratio' => "Faktisk deling forhold", + 'row_real_ps' => "Faktisk opplastet/faktisk lastet ned (Bare for oppføringsformål, ikke for beregning av forhold)", + 'row_internet_speed' => "Nettverks båndbredde", + 'row_gender' => "Kjønn", + 'row_donated' => "Donert", + 'row_avatar' => "Profilbilde", + 'row_class' => "Klasse", + 'row_torrent_comment' => "Torrent kommentarer", + 'link_view_comments' => "Vis Kommentarer", + 'row_forum_posts' => "Forum Innlegg", + 'link_view_posts' => "Vis Innlegg", + 'row_karma_points' => "Karma Poeng", + 'row_uploaded_torrents' => "Opplastet Torrents", + 'text_show_or_hide' => "[Vis/galt]", + 'row_current_seeding' => "Gjeldende spredning", + 'row_current_leeching' => "Nåværende undertrykking", + 'row_completed_torrents' => "Fullførte torrenter", + 'row_incomplete_torrents' => "Ufullstendig torrenter", + 'text_public_access_denied' => "Beklager, offentlig tilgang nektet av ", + 'text_user_wants_privacy' => ". He(She) vil beskytte personlige detaljer.", + 'text_edit_user' => "Rediger bruker", + 'row_title' => "Tittel", + 'row_privacy_level' => "Personvern nivå", + 'radio_low' => "Lav", + 'radio_normal' => "Vanlig", + 'radio_strong' => "Sterk", + 'row_avatar_url' => "Avatar URL", + 'row_signature' => "Signatur", + 'row_donor_status' => "Donor Status", + 'row_donor' => "Donor", + 'radio_yes' => "Ja", + 'radio_no' => "Nei", + 'row_support' => "Brukerstøtte", + 'row_support_language' => "Støtt språk", + 'row_support_for' => "Støtte for", + 'row_comment' => "Kommentar", + 'row_seeding_karma' => "Bonus", + 'row_warning_system' => "Advarsel System

    ", + 'text_not_warned' => "Not warned.", + 'text_arbitrary_duration' => "(bitrær varighet)", + 'text_until' => "Før ", + 'text_to_go' => " å gå", + 'text_warn_for' => "Advar for ", + 'text_week' => "Uke", + 'text_weeks' => "Uker", + 'text_unlimited' => "Ubegrenset", + 'text_reason_of_warning' => "Grunn av advarsel", + 'text_times_warned' => "Tider advart", + 'text_last_warning' => "Siste advarsel", + 'text_not_warned_note' => "Denne brukeren har ikke blitt advart enda", + 'row_auto_warning' => "Auto-advarsel", + 'text_low_ratio' => "Lav ratio", + 'text_leech_warned' => "Blodigle konge!", + 'text_for_unlimited_time' => "For uBEGRENSET tid...", + 'row_movie_picker' => "Velger", + 'row_enabled' => "Aktivert", + 'row_forum_post_possible' => "Forum Post mulig?", + 'row_upload_possible' => "Last opp mulig?", + 'row_download_possible' => "Last ned mulig?", + 'row_change_username' => "Endre brukernavn", + 'row_change_email' => "Endre e-post", + 'row_change_password' => "Endre passord", + 'row_repeat_password' => "Gjenta passord", + 'row_amount_uploaded' => "Beløp opplastet", + 'row_amount_downloaded' => "Beløp lastet ned", + 'row_passkey' => "Tilgangsnøkkel", + 'checkbox_reset_passkey' => " Reset passkey", + 'submit_okay' => "Ok", + 'text_delete_user' => "Slett bruker", + 'submit_delete' => "Slett", + 'text_ago' => " siden", + 'title_show_or_hide' => "Vis/Skjul", + 'title_download' => "Last ned: ", + 'title_upload' => "Opplasting: ", + 'title_male' => "Mann", + 'title_female' => "Kvinne", + 'title_not_available' => "N/A", + 'title_send_pm' => "Send PM", + 'title_report_user' => "Rapporter bruker", + 'text_free' => "Gratis", + 'text_two_times_up' => "2X", + 'text_free_two_times_up' => "2X Gratis", + 'text_half_down' => "50%", + 'text_by' => "av ", + 'text_by_system' => "etter system", + 'text_transaction_memo' => "Memo:", + 'row_pick_for' => "Kalles..", + 'row_staff_duties' => "Ansatte Dutiser/VIP Årsak", + 'row_transfer' => "Overføringer", + 'row_sltime' => "Torrenting tid", + 'text_seeding_leeching_time_ratio' => "Se./Le. Tid Forhold", + 'text_seeding_time' => "Seeding tid", + 'text_leeching_time' => "Iggende tid", + 'text_since' => "Siden: ", + 'row_compatibility' => "Lim inn Kompatibilitet", + 'text_unknown' => "Ukjent", + 'text_super' => "Super", + 'text_very_high' => "Svært høy", + 'text_high' => "Høy", + 'text_medium' => "Middels", + 'text_low' => "Lav", + 'text_very_low' => "Svært lav", + 'row_invites' => "Invitasjoner", + 'js_delete_user_note' => "Du kan nå slette denne brukerkontoen, være SVÆRT sikker.", + 'std_sorry' => "Beklager", + 'std_user_not_confirmed' => "Brukeren har ikke blitt bekreftet ennå!", + 'text_not_available' => "N/A", + 'row_vip_by_bonus' => "VIP av bonus", + 'text_vip_by_bonus_note' => "Om VIP-statusen oppnås ved å bruke bonus", + 'row_vip_until' => "VIP til", + 'text_vip_until_note' => "Tidsformat er ÅÅÅÅ-MM-DD tt:mm:ss. Tiden til VIP statusen er gyldig. For at dette skal fungere, må VIP av bonuser settes til 'ja'.", + 'row_show_ad' => "Show Ad", + 'row_no_ad_until' => "Ingen Reklame før", + 'text_no_ad_until_note' => "Tidsformat er ÅÅÅÅ-MM-DD tt:mm:ss. Tid til brukeren kan slå av annonser.", + 'disable_user_migrated' => 'Aktivere eller deaktivere bruk vennligst gå til det nye håndteringssystemet.', + 'text_user_id'=> "Bruker ID", + 'row_medal' => 'Medalje', + 'row_donoruntil' => 'Donert til', + 'text_donoruntil_note' => "Tidsformat er ÅÅÅÅ-MM-DD h:mm:ss. La være tomt for alltid.", + 'change_field_value_migrated' => 'Modifiseringen, gå til %s.', + 'sure_to_remove_leech_warn' => 'Er du sikker på at du vil fjerne denne leech advarselen?', + 'row_user_props' => 'Tilbehør', + 'meta_key_change_username_username' => 'Nytt brukernavn', + 'consume' => 'Bruk', + 'text_bonus_table' => 'Bonus per hour', +); +?> diff --git a/lang/nb/lang_userhistory.php b/lang/nb/lang_userhistory.php new file mode 100644 index 00000000..a68266af --- /dev/null +++ b/lang/nb/lang_userhistory.php @@ -0,0 +1,26 @@ + "Feil", + 'std_permission_denied' => "Tillatelse nektet", + 'std_no_posts_found' => "Fant ingen innlegg", + 'head_posts_history' => "Innlegg historie", + 'text_posts_history_for' => "Post historikk for ", + 'text_forum' => "Forum: ", + 'text_topic' => "Emne: ", + 'text_post' => "Post: ", + 'text_new' => "NYTT!", + 'text_last_edited' => "Sist endret av ", + 'text_at' => " på ", + 'std_no_comments_found' => "Ingen kommentarer funnet", + 'head_comments_history' => "Kommentarer Historikk", + 'text_comments_history_for' => "Kommentarer til historikk for ", + 'text_torrent' => "Torrent: ", + 'text_comment' => "Kommentar: ", + 'std_history_error' => "Feil i historikk", + 'std_unkown_action' => "Ukjent handling", + 'std_invalid_or_no_query' => "Ugyldig eller ingen spørring." +); + +?> diff --git a/lang/nb/lang_users.php b/lang/nb/lang_users.php new file mode 100644 index 00000000..82697ff9 --- /dev/null +++ b/lang/nb/lang_users.php @@ -0,0 +1,20 @@ + "Brukere", + 'text_users' => "

    Users

    ", + 'text_search' => "Søk:", + 'select_any_class' => "(enhver klasse)", + 'submit_okay' => "Ok", + 'text_prev' => "Forrige", + 'text_next' => "Neste", + 'col_user_name' => "Brukernavn", + 'col_registered' => "Registrert", + 'col_last_access' => "Sist tilgang", + 'col_class' => "Klasse", + 'col_country' => "Land", + 'select_any_country'=> "(ethvert land)", +); + +?> diff --git a/lang/nb/lang_viewfilelist.php b/lang/nb/lang_viewfilelist.php new file mode 100644 index 00000000..a637e6f7 --- /dev/null +++ b/lang/nb/lang_viewfilelist.php @@ -0,0 +1,8 @@ + "Sti", +); + +?> \ No newline at end of file diff --git a/lang/nb/lang_viewnfo.php b/lang/nb/lang_viewnfo.php new file mode 100644 index 00000000..f41e7aaf --- /dev/null +++ b/lang/nb/lang_viewnfo.php @@ -0,0 +1,13 @@ + "Puke", + 'head_view_nfo' => "Vis NFO-fil", + 'text_nfo_for' => "NFO for", + 'title_dos_vy' => "", + 'text_dos_vy' => "DOS-vy", + 'title_windows_vy' => "Latin-1: Inget socker tack!", + 'text_windows_vy' => "Vindu-vette" +); +?> \ No newline at end of file diff --git a/lang/nb/lang_viewpeerlist.php b/lang/nb/lang_viewpeerlist.php new file mode 100644 index 00000000..44747457 --- /dev/null +++ b/lang/nb/lang_viewpeerlist.php @@ -0,0 +1,28 @@ + "Bruker", + 'col_location' => "Sted", + 'col_connectable' => "Tilkoblet", + 'col_uploaded' => "Opplastet", + 'col_rate' => "Sats", + 'col_av_rate' => "Av. sats", + 'col_downloaded' => "Nedlastet", + 'col_ratio' => "Forhold", + 'col_complete' => "Complete", + 'col_connected' => "Tilkoblet", + 'col_idle' => "Inaktiv", + 'col_client' => "Klient", + 'text_anonymous' => "Anonym", + 'text_unknown' => "(ukjent)", + 'text_seeders' => "Senere", + 'text_leechers' => "Leechers", + 'row_seeders' => "Senere", + 'row_leechers' => "Leechers", + 'text_yes' => "Ja", + 'text_no' => "Nei", + 'text_inf' => "Opplysning" +); + +?> diff --git a/lang/nb/lang_viewrequests.php b/lang/nb/lang_viewrequests.php new file mode 100644 index 00000000..0ac27aa3 --- /dev/null +++ b/lang/nb/lang_viewrequests.php @@ -0,0 +1,65 @@ + 'Forespørsler', + 'request' => 'Forespørsel', + 'add_request' => 'Opprett forespørsel', + 'request_name' => 'Be om navn', + 'view_request_all' => 'Vis alle', + 'view_request_resolved' => 'Vis løst', + 'view_request_unresolved' => 'Vis uløste', + 'view_request_resolving' => 'Vis løsning', + 'view_request_my' => 'Vis mine', + 'thead_name' => 'Navn', + 'thead_price_newest' => 'Nyeste bud', + 'thead_price_original' => 'Opprinnelig budrunde', + 'thead_comment_count' => 'Antall kommentarer', + 'thead_on_request_count' => 'Antall forsyninger', + 'thead_request_user' => 'Bruker', + 'thead_created_at' => 'Tid', + 'thead_status' => 'Status:', + 'request_status_resolved' => 'Forespørsel vellykket', + 'request_status_resolving' => 'Ber om', + 'action_search' => 'Søk', + 'basic_info' => 'Grunnleggende info', + 'created_at' => 'Opprettet i', + 'reward' => 'Belønning', + 'newest_bidding' => 'Nyeste konkurranse', + 'original_bidding' => 'Opprinnelig budrunde', + 'on_request' => 'Tilluft', + 'recycle' => 'Resirkulere', + 'recycle_title' => 'Resirkuler bare gi tilbake 80 % bouns', + 'add_reward' => 'Legg til resard', + 'add_reward_desc' => 'Legg til premie vil trekke 25 bouns som gebyr', + 'no_request_yet' => 'Ingenting ennå', + 'btn_select_text' => 'Bruk velg ressurs for forespørsel', + 'request_already_resolved' => 'Denne roen løses', + 'add_request_desc' => 'Belønning kan ikke mindre enn 100 tap, og det vil trekkes fra 100 støt som tjenesteytelseskost for hver anmodning', + 'description_required' => 'Beskrivelse er påkrevd.', + 'name_required' => 'Navn kreves!', + 'amount_required' => 'Belønning kreves!', + 'amount_must_be_numeric' => 'Beløpet må være et tall!', + 'add_request_amount_minimum' => 'Belønning kan ikke mindre enn 100 gevinster!', + 'add_request_amount_maximum' => 'Belønning kan ikke være mer enn 10000 gevinster!', + 'bouns_not_enough' => 'Bomene dine er ikke nok!!!', + 'add_request_success' => 'Forespørsel om å legge til', + 'request_id_must_be_numeric' => 'Forespørsel ID må være numerisk', + 'request_deleted' => 'Forespørsel ble slettet!', + 'edit_request_success' => 'Vellykket redigering av forespørsel', + 'do_request' => 'Jeg vil be om dette', + 'type_in_torrent_id' => 'Skriv inn torrent-ID', + 'delete_request_success' => 'Vellykket sletting av forespørsel', + 'torrent_is_picked_for_request' => 'Din forespørsel fikk tilbud', + 'confirm_request_success' => 'Bekreft suksess', + 'message_required' => 'Melding kreves!', + 'request_created_at' => 'Opprettet i', + 'request_get_new_reply' => 'Din forespørsel om nytt svar', + 'request_comment_get_new_reply' => 'Din forespørsel kommentar om nye svar', + 'torrent_not_release_yet' => 'Denne torrenten ikke sendt enda', + 'supply_already_exists' => 'Dette tilbudet finnes allerede!', + 'message_please_confirm_supply' => 'Noen leverer forespørselen din, vennligst bekreft den på tide', + 'please_confirm_supply' => 'Vennligst bekreft levering på tid', + 'supply_success' => 'Forespørsel vellykket', + 'add_reward_amount_minimum' => 'Legg til belønnings mengde kan ikke mindre enn 100 bonus!', + 'add_reward_amount_maximum' => 'Legg til belønnings mengde kan ikke mer enn 5000 bonus!', + 'add_reward_success' => 'Legge til belønning fullført', +]; \ No newline at end of file diff --git a/lang/nb/lang_viewsnatches.php b/lang/nb/lang_viewsnatches.php new file mode 100644 index 00000000..ae9c6493 --- /dev/null +++ b/lang/nb/lang_viewsnatches.php @@ -0,0 +1,33 @@ + "Snakke detaljer", + 'text_snatch_detail_for' => "Snakke detaljer for ", + 'text_users_top_finished_recently' => "Brukerne på toppen avsluttet nedlastingen sist", + 'col_username' => "Brukernavn", + 'col_uploaded' => "Opplastet", + 'col_downloaded' => "Nedlastet", + 'col_se_time' => "Se. Tid", + 'col_le_time' => "Le. Tid", + 'col_ratio' => "Forhold", + 'col_when_completed' => "Fullført ved", + 'col_last_action' => "Siste handling", + 'col_seeding' => "Deler", + 'col_pm_user' => "PM bruker", + 'col_report_user' => "Rapporter bruker", + 'col_on_or_off' => "På/Av", + 'text_global' => "Globalt", + 'text_torrent' => "Torrent", + 'text_yes' => "Ja", + 'text_no'=> "Nei", + 'title_report' => "Rapporter", + 'col_ip' => "IP", + 'text_per_second' => "/s", + 'text_anonymous' => "anonym", + 'text_inf' => "Opplysning", + 'std_sorry' => "Beklager", + 'std_no_snatched_users' => "Ingen bruker har hentet denne torrenten ennå.", +); + +?> diff --git a/lang/nl/lang_complains.php b/lang/nl/lang_complains.php index 7be7890f..2cfd0c79 100644 --- a/lang/nl/lang_complains.php +++ b/lang/nl/lang_complains.php @@ -29,4 +29,5 @@ $lang_complains = [ 'text_view_band_log' => 'Het banlogboek weergeven', 'reply_notify_subject' => 'Klacht beantwoordde', 'reply_notify_body' => 'Je hebt een antwoord op je klacht op de website %s, klik hier om hem te zien.', + 'complain_not_enabled' => 'Klacht niet ingeschakeld', ]; diff --git a/lang/nl/lang_settings.php b/lang/nl/lang_settings.php index 70fc006a..ed5c9439 100644 --- a/lang/nl/lang_settings.php +++ b/lang/nl/lang_settings.php @@ -814,6 +814,8 @@ $lang_settings = array 'text_paid_torrent_enabled_note' => 'Wanneer ingeschakeld, kunnen gebruikers met toestemming een bepaalde hoeveelheid bonus in rekening brengen voor gebruikers die de torrents downloaden wanneer ze worden verzonden, standaard: geen', 'row_use_challenge_response_authentication' => 'Challenge-Response Authenticatie', 'text_use_challenge_response_authentication_note' => 'Indien ingeschakeld, worden er geen onversleutelde wachtwoorden verstuurd bij het inloggen, aanbevolen. Toekomstige releases zullen deze configuratie verwijderen en deze functie inschakelen.' , + 'row_complain_enabled' => 'Of klachten moeten worden ingeschakeld', + 'row_complain_enabled_note' => 'standaard: "ja"', ); ?> diff --git a/lang/pl/lang_complains.php b/lang/pl/lang_complains.php index 7673f19f..e8c59948 100644 --- a/lang/pl/lang_complains.php +++ b/lang/pl/lang_complains.php @@ -29,4 +29,5 @@ $lang_complains = [ 'text_view_band_log' => 'Zobacz dziennik banów', 'reply_notify_subject' => 'Odpowiedzi na skargę', 'reply_notify_body' => 'Masz odpowiedź na swoją skargę na stronie %s, kliknij tutaj , aby zobaczyć ją.', + 'complain_not_enabled' => 'Skarga nie włączona', ]; diff --git a/lang/pl/lang_settings.php b/lang/pl/lang_settings.php index 3228b65c..2b221c0d 100644 --- a/lang/pl/lang_settings.php +++ b/lang/pl/lang_settings.php @@ -814,6 +814,8 @@ $lang_settings = array 'text_paid_torrent_enabled_note' => 'Gdy opcja jest włączona, użytkownicy z uprawnieniami mogą ustawić określoną ilość bonusów do obciążania użytkowników, którzy pobierają torrenty podczas wysyłania, domyślnie: nie', 'row_use_challenge_response_authentication' => 'Uwierzytelnianie Wyzwania-Odpowiedzi', 'text_use_challenge_response_authentication_note' => 'Jeśli opcja jest włączona, żadne hasła nie zostaną przesłane przy logowaniu, rekomendowane. Przyszłe wydania usuną tę konfigurację i włącz tę funkcję.' , + 'row_complain_enabled' => 'Czy włączyć skargi', + 'row_complain_enabled_note' => 'domyślnie: "tak"', ); ?> diff --git a/lang/pt/lang_complains.php b/lang/pt/lang_complains.php index 78c04707..de33c374 100644 --- a/lang/pt/lang_complains.php +++ b/lang/pt/lang_complains.php @@ -29,4 +29,5 @@ $lang_complains = [ 'text_view_band_log' => 'Ver registro de banimento', 'reply_notify_subject' => 'Reclamação respondida', 'reply_notify_body' => 'Você tem uma resposta para a sua reclamação no site %s, clique aqui para vê-la.', + 'complain_not_enabled' => 'Reclamação não habilitada', ]; diff --git a/lang/pt/lang_settings.php b/lang/pt/lang_settings.php index de867162..6d1f61cb 100644 --- a/lang/pt/lang_settings.php +++ b/lang/pt/lang_settings.php @@ -814,6 +814,8 @@ $lang_settings = array 'text_paid_torrent_enabled_note' => 'Quando habilitado, os usuários com permissão podem definir uma certa quantidade de bônus para ser cobrado para os usuários que baixam os torrents quando são enviados, padrão: não', 'row_use_challenge_response_authentication' => 'Autenticação de Desafio-resposta', 'text_use_challenge_response_authentication_note' => 'Se ativado, nenhuma senha de texto simples será transmitida ao iniciar a sessão, recomendada. As versões futuras removerão esta configuração e ativarão esta função.' , + 'row_complain_enabled' => 'Permitir as reclamações', + 'row_complain_enabled_note' => 'padrão: "sim"', ); ?> diff --git a/lang/ro/lang_complains.php b/lang/ro/lang_complains.php index 9f60cdea..dbecfb75 100644 --- a/lang/ro/lang_complains.php +++ b/lang/ro/lang_complains.php @@ -29,4 +29,5 @@ $lang_complains = [ 'text_view_band_log' => 'Vezi jurnalul interdicțiilor', 'reply_notify_subject' => 'Reclamație răspunsă', 'reply_notify_body' => 'Ai un răspuns la reclamația ta de pe site-ul %s, apasă aici pentru a-l vedea.', + 'complain_not_enabled' => 'Plângerea nu este activată', ]; diff --git a/lang/ro/lang_settings.php b/lang/ro/lang_settings.php index ac5b2cad..a6f1c249 100644 --- a/lang/ro/lang_settings.php +++ b/lang/ro/lang_settings.php @@ -814,6 +814,8 @@ $lang_settings = array 'text_paid_torrent_enabled_note' => 'Când este activată, utilizatorii cu permisiunea pot seta o anumită sumă de bonus pentru a fi încărcați de utilizatorii care descarcă torentele când sunt trimise, implicit: nu', 'row_use_challenge_response_authentication' => 'Autentificare provocare-răspuns', 'text_use_challenge_response_authentication_note' => 'Dacă este activată, nici o parolă text nu va fi transmisă la autentificare, recomandată. Partajările viitoare vor elimina această configurare și vor activa această caracteristică.' , + 'row_complain_enabled' => 'Posibilitatea de a permite reclamații', + 'row_complain_enabled_note' => 'implicit: "da"', ); ?> diff --git a/lang/ru/lang_complains.php b/lang/ru/lang_complains.php index de70be20..8e6bcff0 100644 --- a/lang/ru/lang_complains.php +++ b/lang/ru/lang_complains.php @@ -29,4 +29,5 @@ $lang_complains = [ 'text_view_band_log' => 'Просмотр журнала банов', 'reply_notify_subject' => 'Жалоба отвечена', 'reply_notify_body' => 'You have a reply to your complaint on the site %s, click here to see it.', + 'complain_not_enabled' => 'Жалоба не включена', ]; diff --git a/lang/ru/lang_settings.php b/lang/ru/lang_settings.php index 9ee65119..dd96a772 100644 --- a/lang/ru/lang_settings.php +++ b/lang/ru/lang_settings.php @@ -814,6 +814,8 @@ $lang_settings = array 'text_paid_torrent_enabled_note' => 'Если включено, пользователи с разрешением могут установить определенное количество бонусов, взимаемых с пользователей, которые скачивают торренты, когда они отправляются, по умолчанию: нет', 'row_use_challenge_response_authentication' => 'Аутентификация на Вызове-Ответ', 'text_use_challenge_response_authentication_note' => 'Если включено, пароли из обычного текста не будут передаваться при входе в систему, рекомендуется. Будущие релизы удалит эту конфигурацию и включит эту функцию.' , + 'row_complain_enabled' => 'Разрешить ли жалобы', + 'row_complain_enabled_note' => 'по умолчанию: "да"', ); ?> diff --git a/lang/sv/lang_complains.php b/lang/sv/lang_complains.php index f4b1af84..c4e843ca 100644 --- a/lang/sv/lang_complains.php +++ b/lang/sv/lang_complains.php @@ -29,4 +29,5 @@ $lang_complains = [ 'text_view_band_log' => 'Visa bannlysningslogg', 'reply_notify_subject' => 'Klagomål svarade', 'reply_notify_body' => 'Du har ett svar på ditt klagomål på webbplatsen %s, klicka här för att se den.', + 'complain_not_enabled' => 'Klagomålet är inte aktiverat', ]; diff --git a/lang/sv/lang_settings.php b/lang/sv/lang_settings.php index a30138a3..e392c533 100644 --- a/lang/sv/lang_settings.php +++ b/lang/sv/lang_settings.php @@ -814,6 +814,8 @@ $lang_settings = array 'text_paid_torrent_enabled_note' => 'När den är aktiverad kan användare med tillstånd ange en viss mängd bonus som ska debiteras användare som laddar ner torrents när de skickas, default: nej', 'row_use_challenge_response_authentication' => 'Challenge-Response Authentication', 'text_use_challenge_response_authentication_note' => 'Om aktiverad, kommer inga klartext lösenord att överföras vid inloggning, rekommenderas. Kommande utgåvor kommer att ta bort denna konfiguration och aktivera denna funktion.' , + 'row_complain_enabled' => 'Om du vill aktivera klagomål', + 'row_complain_enabled_note' => 'default: "ja"', ); ?> diff --git a/resources/lang/cs/admin.php b/resources/lang/cs/admin.php index c18a1891..304db4d9 100644 --- a/resources/lang/cs/admin.php +++ b/resources/lang/cs/admin.php @@ -43,6 +43,8 @@ return [ 'oauth_auth_code' => 'Ověřovací kódy', 'oauth_refresh_token' => 'Obnovit tokeny', 'token' => 'Přístupové tokeny', + 'oauth_provider' => 'Poskytovatel autorizace', + 'queue_monitor' => 'Monitor fronty', ], 'resources' => [ 'agent_allow' => [ diff --git a/resources/lang/cs/bonus.php b/resources/lang/cs/bonus.php index dee42b8d..4f73be9d 100644 --- a/resources/lang/cs/bonus.php +++ b/resources/lang/cs/bonus.php @@ -26,4 +26,10 @@ return [ 'medal_addition' => 'Mediální přidání', ], 'not_enough' => 'Nedostatek bonusu! Vyžaduje :require_bonus, v současné době máte: :now_bonus', + 'msg_someone_loves_you' => "Někdo tě miluje", + 'msg_you_have_been_given' => "Dostali jste dárek ", + 'msg_after_tax' => " (po zdanění ", + 'msg_karma_points_by' => ") Karma body od ", + 'msg_personal_message_from' => "Osobní zpráva od ", + 'msg_colon' => ": ", ]; diff --git a/resources/lang/cs/claim.php b/resources/lang/cs/claim.php index 5d171016..41acf794 100644 --- a/resources/lang/cs/claim.php +++ b/resources/lang/cs/claim.php @@ -17,12 +17,12 @@ return [ 'msg_title' => 'Poslední měsíc(:month):', 'msg_subject' => ':měsíc uhrazení pohledávky', - 'claim_total' => 'Celková částka torrentu nároku: :total', - 'claim_reached_counts' => 'Dosažen počet torrentů: :count', - 'claim_reached_summary' => 'Dosažen bonus za hodinu: :bonus_per_hour, průměr času (hodina): :hours, získejte bonus celkem: :bonus_total', - 'claim_unreached_remain_counts' => 'Nedosažený torrent zbývá počítat: :count', - 'claim_unreached_remove_counts' => 'Počet odstranění torrentu nedosaženo: :count', - 'claim_unreached_summary' => 'Snížit bonus každého nedosaženého torrentu::deduct_per_torrent, celkový odpočet: :deduct_total', + 'claim_total' => 'Celková částka torrentu nároku: [b]:total[/b]', + 'claim_reached_counts' => 'Dosažen počet torrentů: [b]:count[/b]', + 'claim_reached_summary' => 'Dosažen bonus za hodinu: [b]:bonus_per_hour[/b], průměr času (hodina): [b]:hours[/b], získejte bonus celkem: [b]:bonus_total[/b]', + 'claim_unreached_remain_counts' => 'Nedosažený torrent zbývá počítat: [b]:count[/b]', + 'claim_unreached_remove_counts' => 'Počet odstranění torrentu nedosaženo: [b]:count[/b]', + 'claim_unreached_summary' => 'Snížit bonus každého nedosaženého torrentu:[b]:deduct_per_torrent[/b], celkový odpočet: [b]:deduct_total[/b]', 'confirm_give_up' => 'Jste si jisti, že se chcete vzdát nároku na tento torrent?', 'add_claim' => 'Claim', diff --git a/resources/lang/cs/cleanup.php b/resources/lang/cs/cleanup.php index a0a0972f..69985030 100644 --- a/resources/lang/cs/cleanup.php +++ b/resources/lang/cs/cleanup.php @@ -12,4 +12,25 @@ return [ 'alarm_email_body' => 'Aktuální čas: :now_time, level :level, čas posledního běhu byl: :last_time, to bylo více než: :elapsed_seconds s (:elapsed_seconds_human) od jeho spuštění, interval běhu sady je: :interval sekund(:interval_human), prosím zkontrolujte!', 'alarm_email_subject_for_queue_failed_jobs' => '[:site_name]Asynchronní výjimka úkolu', 'alarm_email_body_for_queue_failed_jobs' => 'Existuje celkem :count neúspěšných úloh od :since, zaznamenaných v databázové tabulce :failed_job_table, prosím zkontrolujte to!', + + 'msg_low_ratio_warning_removed' => "Varování nízkého poměru odstraněno", + 'msg_your_ratio_warning_removed' => "Vaším upozorněním na nízký poměr byl odstraněn a automaticky povýšen na [b]Uživatele[/b]. Důrazně doporučujeme, abyste si udrželi svůj poměr a nebyli znovu varováni.\n", + 'msg_promoted_to' => "Propagováno na ", + 'msg_now_you_are' => "Gratulujeme, byli jste automaticky povýšeni na [b]", + 'msg_see_faq' => "[/b]. :)\nPodívejte se prosím na [b][url=faq.php#id22]FAQ[/url][/b] pro to, co můžete udělat.\n", + 'msg_demoted_to' => "Dotekováno na ", + 'msg_demoted_from' => "Byli jste automaticky degradováni z [b]", + 'msg_to' => "[/b] až [b]", + 'msg_because_ratio_drop_below' => "[/b] protože poměr tvého podílu klesl níže ", + 'msg_must_fix_ratio_within' => "Byli jste varováni a automaticky degradováni z [b]Uživatel[/b] na [b]Rolník[/b] kvůli nízkému poměru. Musíš to opravit uvnitř ", + 'msg_days_or_get_banned' => " dny nebo váš účet bude zablokován. Pokud nemáte žádnou představu o tom, jaký je poměr nebo jak to ovlivňuje vás, doporučujeme přečíst si [url=faq. hp#idid17][b]FAQ[/b][/url].", + 'msg_vip_status_removed' => "Stav VIP odstraněn systémem.", + 'msg_vip_status_removed_body' => "Váš VIP status vypršel a byl automaticky odstraněn systémem. Staňte se znovu VIP výměnou některých bonusových bodů pro Karmu! Cheers!", + 'msg_donor_status_removed' => "Status dárce odstraněn systémem.", + 'msg_donor_status_removed_body' => "Váš status dárce vypršel a systém byl automaticky odstraněn. Staňte se dárcem znovu tím, že nám darujete. Zdraví!", + 'msg_warning_removed' => "Varování odstraněno systémem", + 'msg_your_warning_removed' => "Vaše varování je odstraněno systémem. Doufáme, že se od nynějška budete chovat.", + 'msg_your_torrent_deleted' => "Váš torrent byl smazán", + 'msg_your_torrent' => "Váš torrent ", + 'msg_was_deleted_because_dead' => " byl odstraněn systémem, protože je dlouho mrtvý. Nicméně udržujete bonus karma za nahrávání torrentu.", ]; diff --git a/resources/lang/cs/comment.php b/resources/lang/cs/comment.php index 40a42610..6ac161b8 100644 --- a/resources/lang/cs/comment.php +++ b/resources/lang/cs/comment.php @@ -1,7 +1,8 @@ [ - 'page_title' => 'Komentáře', - ], + 'msg_new_comment' => "Nový komentář", + 'msg_torrent_receive_comment' => "Obdrželi jste komentář k tvému torrentu ", + 'msg_offer_receive_comment' => "Obdrželi jste komentář k vaší nabídce ", + 'msg_request_receive_comment' => "Obdrželi jste komentář k vašemu požadavku " ]; diff --git a/resources/lang/cs/fun.php b/resources/lang/cs/fun.php new file mode 100644 index 00000000..403cc70d --- /dev/null +++ b/resources/lang/cs/fun.php @@ -0,0 +1,15 @@ + "Zábava zabanována", + 'msg_your_fun_item' => "Vaše zábavná položka '", + 'msg_is_ban_by' => "' je zakázán ", + 'msg_reason' => ". Důvod: ", + 'msg_fun_item_reward' => "Zábava za položku odměna", + 'msg_out_of' => " z ", + 'msg_people_think' => " Představte si zábavný předmět, který jste publikovali ", + 'msg_is_fun' => " je zábava. Takže tady je ", + 'msg_bonus_as_reward' => " karma body jako odměna.", + 'msg_fun_item_dull' => "bubble raider", + 'msg_is_dull' => " je ve skutečnosti otřesný :thumbsdown: . Byl tedy odstraněn z domovské stránky. Možná potřebujete zlepšit svůj smysl pro humor.", +]; diff --git a/resources/lang/cs/label.php b/resources/lang/cs/label.php index e1bfe2cb..1c3275fa 100644 --- a/resources/lang/cs/label.php +++ b/resources/lang/cs/label.php @@ -34,7 +34,7 @@ return [ 'cancel' => 'Zrušit', 'reset' => 'Reset', 'anonymous' => 'Anonymní', - 'infinite' => 'Nekonečný', + 'infinite' => 'Inspekce na místě', 'save' => 'Uložit', 'country' => 'L 343, 22.12.2009, s. 1).', 'city' => 'Město', @@ -44,6 +44,8 @@ return [ 'create' => 'Vytvořit', 'created_at_begin' => 'Vytvořeno při začátku', 'created_at_end' => 'Vytvořeno na konci', + 'text_quote' => 'Cenová nabídka', + 'text_code' => "STRUKTURA ČISTÝCH POZIC PODLE RIZIKOVÝCH VAH", 'setting' => [ 'nav_text' => 'Nastavení', 'backup' => [ diff --git a/resources/lang/cs/message.php b/resources/lang/cs/message.php index cc520c4d..625d2c9c 100644 --- a/resources/lang/cs/message.php +++ b/resources/lang/cs/message.php @@ -51,4 +51,18 @@ BODY, 'subject' => 'Zkouška :exam_name ukončena změněna', 'body' => 'Koncový čas zkoušky v průběhu :exam_name se změnil z :old_end_time na :new_end_time. admin: :operator, důvod: :reason.', ], + + 'mail_dear' => "Dear ", + 'mail_you_received_a_pm' => "Obdrželi jste PM.", + 'mail_sender' => "Odesílatel ", + 'mail_subject' => "Předmět ", + 'mail_date' => "Datum ", + 'mail_use_following_url' => "Kliknutím na ", + 'mail_use_following_url_1' => " pro zobrazení zprávy (možná se budete muset přihlásit).", + 'mail_yours' => "
    naše,", + 'mail_the_site_team' => "Tým %s.", + 'mail_received_pm_from' => "Obdrželi jste PM od ", + 'mail_here' => "ZÍSKAT", + 'msg_system' => "Systém", + 'msg_original_message_from' => "Původní zpráva od ", ]; diff --git a/resources/lang/cs/nexus.php b/resources/lang/cs/nexus.php index 98f59eca..7db523c8 100644 --- a/resources/lang/cs/nexus.php +++ b/resources/lang/cs/nexus.php @@ -17,4 +17,8 @@ return [ 'sum' => 'Sum', 'do_not_repeat' => 'Prosím, neopakujte operaci!', 'no_permission' => 'Nemáte oprávnění!', + 'sort' => 'pole řazení', + 'order' => 'seřadit', + 'asc' => 'vzestupně', + 'desc' => 'sestupně', ]; diff --git a/resources/lang/cs/oauth.php b/resources/lang/cs/oauth.php index 26661f67..853bad0c 100644 --- a/resources/lang/cs/oauth.php +++ b/resources/lang/cs/oauth.php @@ -11,4 +11,20 @@ return [ 'btn_approve' => 'Autorizovat', 'btn_deny' => 'Zrušit', 'skips_authorization' => 'Přeskočí autorizaci', + 'client_id' => 'ID klienta', + 'authorization_endpoint_url' => 'Autorizační URL', + 'token_endpoint_url' => 'Get token URL', + 'user_info_endpoint_url' => 'Získat URL informace o uživateli', + 'id_claim' => 'ID tvrzení', + 'username_claim' => 'nárok na uživatelské jméno', + 'email_claim' => 'e-mail o pozemku', + 'level_claim' => 'Název pole úrovně', + 'level_limit' => 'Limit úrovně', + 'level_limit_help' => 'Povolit přihlášení pouze uživatelům, kteří nejsou pod touto úrovní', + 'get_access_token_error' => 'Chyba při načítání přístupového tokenu: :error', + 'get _provider_user_id_error' => 'Nelze získat ID uživatele pomocí pole :id_claim', + 'get_provider_level_error' => 'Nelze získat úroveň uživatele pomocí pole :level_claim', + 'provider_level_not_ allowed' => 'Přihlásit se mohou pouze uživatelé s úrovní :level_limit nebo vyšší', + 'provider_email_already_exists' => 'E-mail: :email je již používán', + 'get_provider_email_error' => 'Nelze získat e-mail uživatele pomocí pole :email_claim', ]; diff --git a/resources/lang/cs/offer.php b/resources/lang/cs/offer.php new file mode 100644 index 00000000..0a60bcbe --- /dev/null +++ b/resources/lang/cs/offer.php @@ -0,0 +1,17 @@ + " dovolil nahrát ", + 'msg_find_offer_option' => "Na stránce pro nahrání najdete novou možnost.", + 'msg_your_offer_allowed' => "Vaše nabídka byla povolena", + 'msg_offer_voted_on' => "Vaše nabídka byla hlasována. Můžete nahrávat ", + 'msg_offer_voted_off' => "Vaše nabídka byla zamítnuta. Nemůžete nahrát ", + 'msg_voted_on' => " bylo hlasováno o", + 'msg_offer_deleted' => "Vaše nabídka byla odstraněna", + 'msg_your_offer' => "Vaše nabídka '", + 'msg_was_deleted_by' => "' byl smazán ", + 'msg_blank' => ".", + 'msg_you_must_upload_in' => "Prosím nahrajte nabídku do ", + 'msg_hours_otherwise' => " hodin. V opačném případě by byla nabídka odstraněna.", + 'msg_reason_is' => "Důvod: ", +]; diff --git a/resources/lang/cs/plugin.php b/resources/lang/cs/plugin.php index 107df743..0c2ef143 100644 --- a/resources/lang/cs/plugin.php +++ b/resources/lang/cs/plugin.php @@ -2,17 +2,26 @@ return [ 'actions' => [ - 'install' => 'Instalovat', - 'delete' => 'Odebrat', - 'update' => 'Vylepšit', + 'install' => 'instalovat', + 'delete' => 'smazat', + 'update' => 'upgradovat', + 'install_or_update' => 'instalovat/aktualizovat', ], 'labels' => [ - 'display_name' => 'Název', - 'package_name' => 'Název balíčku', - 'remote_url' => 'Adresa repozitáře', - 'installed_version' => 'Nainstalovaná verze', + 'display_name' => 'jméno', + 'package_ name' => 'jméno_balíčku', + 'remote_url' => 'repozitář_adresa', + 'installed_version' => 'instalovaná_verze', + 'latest_version' => 'latest_verze', 'status' => 'Stav', - 'updated_at' => 'Poslední akce na', + 'updated_at' => 'poslední vykonaná akce', + ' release_date' => 'aktualizováno v', + 'install_title' => 'Přejděte do adresáře: :web_root a spusťte následující příkazy pro instalaci jako root uživatel: ', + 'introduce' => 'Detaily', + 'view_on_blog' => 'Zobrazit na blogu', + ' config_plugin_address' => 'Konfigurace adresy pluginu', + 'download_specific_version' => 'Stáhněte rozšíření. Zde je zobrazena nejnovější verze, pokud potřebujete nainstalovat jinou verzi (zobrazit na blogu, abyste viděli všechny verze) ji přepište sami', + 'execute_install' => 'Spustit instalaci', ], 'status' => [ \App\Models\Plugin::STATUS_NORMAL => 'Normální', diff --git a/resources/lang/cs/subtitle.php b/resources/lang/cs/subtitle.php new file mode 100644 index 00000000..84af2ff1 --- /dev/null +++ b/resources/lang/cs/subtitle.php @@ -0,0 +1,7 @@ + " odstranili jste titulky, které jste nahráli. ", + 'msg_your_sub_deleted' => "Vaše titulky byly odstraněny", + 'msg_reason_is' => "Důvod: ", +]; diff --git a/resources/lang/cs/torrent.php b/resources/lang/cs/torrent.php index dbc29c56..4b6d661e 100644 --- a/resources/lang/cs/torrent.php +++ b/resources/lang/cs/torrent.php @@ -92,4 +92,18 @@ return [ \App\Models\Torrent::PROMOTION_TIME_TYPE_DEADLINE => 'Do', ], 'paid_torrent' => 'Placený torrent', + 'msg_torrent_deleted' => "Váš torrent byl smazán", + 'msg_the_torrent_you_uploaded' => "torrent, který jste nahráli '", + 'msg_was_deleted_by' => "' byl smazán ", + 'msg_reason_is' => ", důvod: ", + 'msg_reseed_request' => "Znovu zaslat žádost", + 'msg_reseed_user' => "Uživatel ", + 'msg_ask_reseed' => " požádáno o opětovné uzení torrentu ", + 'msg_thank_you' => " !\nDěkujeme!", + + 'msg_offer_you_voted' => "Nabídka, kterou jste hlasovali: ", + 'msg_was_uploaded_by' => " byl nahrán uživatelem ", + 'msg_you_can_download' => ".\nMůžete stáhnout Torrent", + 'msg_here' => " [b]zde[/b]", + 'msg_offer' => "Nabídka ", ]; diff --git a/resources/lang/cs/user.php b/resources/lang/cs/user.php index df16c892..52125adc 100644 --- a/resources/lang/cs/user.php +++ b/resources/lang/cs/user.php @@ -56,4 +56,57 @@ return [ ], 'username_already_exists' => 'Uživatelské jméno: uživatelské jméno již existuje', 'username_invalid' => 'Uživatelské jméno: neplatné uživatelské jméno', + + 'msg_promoted' => "podporováno", + 'msg_demoted' => "degradováno", + 'msg_class_change' => "Změna třídy", + 'msg_you_have_been' => "Byli jste ", + 'msg_to' => " do ", + 'msg_by' => " od ", + 'msg_warn_removed' => "Varování odstraněno", + 'msg_your_warning_removed_by' => "Vaše varování bylo odstraněno", + 'msg_you_are_warned_by' => "Byl jsi [url=rules.php#warning]varován[/url] ", + 'msg_reason' => "\n\nDůvod: ", + 'msg_week' => " týden", + 'msg_s' => "s", + 'msg_you_are_warned_for' => "Byl jsi [url=rules.php#warning]varován[/url] pro ", + 'msg_you_are_warned' => "Jste varováni", + 'msg_posting_rights_restored' => "Posílací práva obnovena", + 'msg_your_posting_rights_restored' => "Vaše poštovní práva byla vrácena zpět " , + 'msg_you_can_post' => ". Můžete znovu odeslat na fórum.", + 'msg_posting_rights_removed' => "Odesílací práva odstraněna", + 'msg_your_posting_rights_removed' => "Vaše poštovní práva byla odstraněna ", + 'msg_probable_reason' => ", pravděpodobně kvůli špatnému přístupu nebo špatnému obsahu příspěvku.", + 'msg_upload_rights_restored' => "Nahrát práva obnovena", + 'msg_your_upload_rights_restored' => "Vaše práva k nahrávání byla vrácena zpět ", + 'msg_you_upload_can_upload' => ". Můžete nahrát torrenty znovu.", + 'msg_upload_rights_removed' => "Nahrát práva odstraněna", + 'msg_your_upload_rights_removed' => "Vaše práva k nahrávání byla odstraněna ", + 'msg_probably_reason_two' => ", pravděpodobně kvůli špatnému torrentu, .nfo nebo popisu.", + 'msg_download_rights_restored' => "Obnovena práva ke stažení", + 'msg_your_download_rights_restored' => "Vaše práva ke stažení byla vrácena zpět ", + 'msg_you_can_download' => ". Torrenty si můžete stáhnout znovu.", + 'msg_download_rights_removed' => "Práva ke stažení odstraněna", + 'msg_your_download_rights_removed' => "Vaše práva ke stažení byla odstraněna ", + 'msg_probably_reason_three' => ", pravděpodobně kvůli nízkému poměru nebo špatnému chování.", + 'msg_email_change' => "Změna e-mailu", + 'msg_your_email_changed_from' => "Vaše e-mailová adresa byla změněna z ", + 'msg_username_change' => "Změna uživatelského jména", + 'msg_your_username_changed_from' => "Vaše uživatelské jméno bylo změněno z ", + 'msg_downloaded_change' => "Změna stažené částky", + 'msg_your_downloaded_changed_from' => "Vaše stažená částka byla změněna z ", + 'msg_uploaded_change' => "Nahraná změna částky", + 'msg_your_uploaded_changed_from' => "Vaše nahraná částka byla změněna z ", + 'msg_bonus_change' => "Změna výše bonusu", + 'msg_your_bonus_changed_from' => "Vaše bonusová částka byla změněna z ", + 'msg_invite_change' => "Změna částky pozvánky", + 'msg_your_invite_changed_from' => "Vaše pozvánka byla změněna z ", + 'msg_to_new' =>" do ", + 'msg_your_vip_status_changed' => "Váš VIP status změněn", + 'msg_vip_status_changed_by' => "Váš VIP status změněn ", + 'msg_your_donor_status_changed' => "Stav Vašeho dárce se změnil", + 'msg_donor_status_changed_by' => "Stav Vašeho dárce se změnil ", + 'msg_invited_user_has_registered' => "Pozvaný uživatel se zaregistroval", + 'msg_user_you_invited' => "Uživatel, který jste pozvali ", + 'msg_has_registered' => " se právě nyní zaregistroval.", ]; diff --git a/resources/lang/da/admin.php b/resources/lang/da/admin.php index de286bd2..1024d53e 100644 --- a/resources/lang/da/admin.php +++ b/resources/lang/da/admin.php @@ -43,6 +43,8 @@ return [ 'oauth_auth_code' => 'Auth koder', 'oauth_refresh_token' => 'Opdater tokens', 'token' => 'Adgangs tokens', + 'oauth_provider' => 'Autorisationsudbyder', + 'queue_monitor' => 'Overvågning af kø', ], 'resources' => [ 'agent_allow' => [ diff --git a/resources/lang/da/bonus.php b/resources/lang/da/bonus.php index dd78cb01..c58f083e 100644 --- a/resources/lang/da/bonus.php +++ b/resources/lang/da/bonus.php @@ -26,4 +26,10 @@ return [ 'medal_addition' => 'Medalje tilføjelse', ], 'not_enough' => 'Ingen bonus! Kræver :require_bonus, du har i øjeblikket kun: :now_bonus', + 'msg_someone_loves_you' => "Nogen elsker dig", + 'msg_you_have_been_given' => "Du har fået en gave af ", + 'msg_after_tax' => " (efter skat er det ", + 'msg_karma_points_by' => ") Karma point af ", + 'msg_personal_message_from' => "Personlig besked fra ", + 'msg_colon' => ": ", ]; diff --git a/resources/lang/da/claim.php b/resources/lang/da/claim.php index 75da339d..6e4cab59 100644 --- a/resources/lang/da/claim.php +++ b/resources/lang/da/claim.php @@ -17,12 +17,12 @@ return [ 'msg_title' => 'Gør krav på afregningsresultat sidste måned(:måned):', 'msg_subject' => ':måned fordringsafregning', - 'claim_total' => 'Anmod om torrent i alt: :total', - 'claim_reached_counts' => 'Nået torrent antal: :counts', - 'claim_reached_summary' => 'Nået torrent få bonus per time: :bonus_per_hour, seed time gennemsnit (time): :hours, få bonus i alt: :bonus_total', - 'claim_unreached_remain_counts' => 'Unået torrent forbliver tæller: :counts', - 'claim_unreached_remove_counts' => 'Fjern tællinger: :counts', - 'claim_unreached_summary' => 'Fradrag af bonus hver unået torrent::deduct_per_torrent, samlet fradrag: :deduct_total', + 'claim_total' => 'Anmod om torrent i alt: [b]:total[/b]', + 'claim_reached_counts' => 'Nået torrent antal: [b]:counts[/b]', + 'claim_reached_summary' => 'Nået torrent få bonus per time: [b]:bonus_per_hour[/b], seed time gennemsnit (time): [b]:hours[/b], få bonus i alt: [b]:bonus_total[/b]', + 'claim_unreached_remain_counts' => 'Unået torrent forbliver tæller: [b]:counts[/b]', + 'claim_unreached_remove_counts' => 'Fjern tællinger: [b]:counts[/b]', + 'claim_unreached_summary' => 'Fradrag af bonus hver unået torrent:[b]:deduct_per_torrent[/b], samlet fradrag: [b]:deduct_total[/b]', 'confirm_give_up' => 'Er du sikker på, at du vil opgive at gøre krav på denne torrent?', 'add_claim' => 'Claim', diff --git a/resources/lang/da/cleanup.php b/resources/lang/da/cleanup.php index 13e934ef..37028a97 100644 --- a/resources/lang/da/cleanup.php +++ b/resources/lang/da/cleanup.php @@ -12,4 +12,25 @@ return [ 'alarm_email_body' => 'Nuværende tid: :now_time, level :level, Last run time var: :last_time, it has been more than: :elapsed_seconds seconds(:elapsed_seconds_human) since it was run, det indstillede kørselsinterval er: :interval sekunder(:interval_human), tjek venligst!', 'alarm_email_subject_for_queue_failed_jobs' => '[:site_name]Asynkron Opgave Undtagelse', 'alarm_email_body_for_queue_failed_jobs' => 'Der er i alt :count mislykkedes asynkron job siden :since, registreret i database tabellen :failed_job_table, tjek det!', + + 'msg_low_ratio_warning_removed' => "Advarsel Ved Lavforhold Fjernet", + 'msg_your_ratio_warning_removed' => "Din advarsel om lavt forhold er blevet fjernet og auto-forfremmet til [b]bruger[/b]. Vi anbefaler meget, at du holder dit forhold op til ikke at blive advaret igen.\n", + 'msg_promoted_to' => "Fremhævet til ", + 'msg_now_you_are' => "Tillykke, du er blevet auto-forfremmet til [b]", + 'msg_see_faq' => "[/b]. :)\nSe venligst [b][url=faq.php#id22]FAQ[/url][/b] for hvad du kan gøre nu.\n", + 'msg_demoted_to' => "Afskrevet til ", + 'msg_demoted_from' => "Du er blevet auto-degraderet fra [b]", + 'msg_to' => "[/b] til [b]", + 'msg_because_ratio_drop_below' => "[/b] fordi dit delingsforhold er faldet under ", + 'msg_must_fix_ratio_within' => "Du er blevet advaret og automatisk degraderet fra [b]Bruger[/b] til [b]Bonde[/b] på grund af lav ratio. Du er nødt til at ordne det i ", + 'msg_days_or_get_banned' => " dage eller din konto vil blive udelukket. Hvis du ikke har nogen idé om, hvad der er forholdet eller hvordan det påvirker dig, foreslår vi, at du læser [url=faq. hp#idid17][b]FAQ[/b][/url].", + 'msg_vip_status_removed' => "VIP status fjernet af systemet.", + 'msg_vip_status_removed_body' => "Din VIP status er timet ud og er blevet automatisk fjernet af systemet. Bliv VIP igen ved at udveksle nogle Karma Bonus Points. Cheers!", + 'msg_donor_status_removed' => "Donor status fjernet af systemet.", + 'msg_donor_status_removed_body' => "Din donorstatus er timeout og er blevet automatisk fjernet af systemet. Bliv donor igen ved at donere til os. Cheers!", + 'msg_warning_removed' => "Advarsel fjernet af System", + 'msg_your_warning_removed' => "Din advarsel fjernes af System. Vi håber, du vil opføre dig fra nu af.", + 'msg_your_torrent_deleted' => "Din torrent blev slettet", + 'msg_your_torrent' => "Din torrent ", + 'msg_was_deleted_because_dead' => " blev slettet af systemet, fordi det har været død i lang tid. Men du holder karma bonus for at uploade torrenten.", ]; diff --git a/resources/lang/da/comment.php b/resources/lang/da/comment.php index 85bacd50..f6c88740 100644 --- a/resources/lang/da/comment.php +++ b/resources/lang/da/comment.php @@ -1,7 +1,8 @@ [ - 'page_title' => 'Kommentarer', - ], + 'msg_new_comment' => "Ny kommentar", + 'msg_torrent_receive_comment' => "Du har modtaget en kommentar på din torrent ", + 'msg_offer_receive_comment' => "Du har modtaget en kommentar til dit tilbud ", + 'msg_request_receive_comment' => "Du har modtaget en kommentar til din anmodning " ]; diff --git a/resources/lang/da/fun.php b/resources/lang/da/fun.php new file mode 100644 index 00000000..fa4fcdff --- /dev/null +++ b/resources/lang/da/fun.php @@ -0,0 +1,15 @@ + "Sjov element udelukket", + 'msg_your_fun_item' => "Din sjove vare '", + 'msg_is_ban_by' => "' er forbudt af ", + 'msg_reason' => "Årsag: ", + 'msg_fun_item_reward' => "Sjov vare belønning", + 'msg_out_of' => " ud af ", + 'msg_people_think' => " tror det sjove element, du har lagt ", + 'msg_is_fun' => " er sjovt. Så her er ", + 'msg_bonus_as_reward' => " karma point som belønning.", + 'msg_fun_item_dull' => "Sjovt element kedeligt", + 'msg_is_dull' => " er faktisk dull :thumbsdown: . Så det er blevet fjernet fra hjemmesiden. Måske er du nødt til at forbedre din sans for humor.", +]; diff --git a/resources/lang/da/label.php b/resources/lang/da/label.php index 40057a80..a40ef438 100644 --- a/resources/lang/da/label.php +++ b/resources/lang/da/label.php @@ -34,7 +34,7 @@ return [ 'cancel' => 'Annuller', 'reset' => 'Reset', 'anonymous' => 'Anonym', - 'infinite' => 'Uendelig', + 'infinite' => 'Inf.', 'save' => 'Gem', 'country' => 'Land', 'city' => 'By', @@ -44,6 +44,8 @@ return [ 'create' => 'Opret', 'created_at_begin' => 'Oprettet i begyndelsen', 'created_at_end' => 'Oprettet i slutningen', + 'text_quote' => 'Tilbud', + 'text_code' => "Kode", 'setting' => [ 'nav_text' => 'Indstilling', 'backup' => [ diff --git a/resources/lang/da/message.php b/resources/lang/da/message.php index 923a6a56..dcd34f82 100644 --- a/resources/lang/da/message.php +++ b/resources/lang/da/message.php @@ -51,4 +51,18 @@ BODY, 'subject' => 'Eksamen :exam_name sluttidspunkt ændret', 'body' => 'Sluttidspunktet for din igangværende eksamen :exam_name er ændret fra :old_end_time til :new_end_time. admin: :operator, årsag: :årsag.', ], + + 'mail_dear' => "Dear ", + 'mail_you_received_a_pm' => "Du har modtaget en PM.", + 'mail_sender' => "Afsenderen ", + 'mail_subject' => "Emne ", + 'mail_date' => "Dato: ", + 'mail_use_following_url' => "Du kan klikke på ", + 'mail_use_following_url_1' => " for at se beskeden (du skal muligvis logge ind).", + 'mail_yours' => "
    Yours,", + 'mail_the_site_team' => "%s Team.", + 'mail_received_pm_from' => "Du har modtaget en PM fra ", + 'mail_here' => "HER", + 'msg_system' => "System", + 'msg_original_message_from' => "Oprindelig besked fra ", ]; diff --git a/resources/lang/da/nexus.php b/resources/lang/da/nexus.php index 27275ec0..cedc250c 100644 --- a/resources/lang/da/nexus.php +++ b/resources/lang/da/nexus.php @@ -17,4 +17,8 @@ return [ 'sum' => 'Sum', 'do_not_repeat' => 'Vær venlig ikke at gentage operationen!', 'no_permission' => 'Ingen tilladelse!', + 'sort' => 'sortere felt', + 'order' => 'sortér', + 'asc' => 'stigende rækkefølge', + 'desc' => 'faldende rækkefølge', ]; diff --git a/resources/lang/da/oauth.php b/resources/lang/da/oauth.php index 7807e069..b9dab964 100644 --- a/resources/lang/da/oauth.php +++ b/resources/lang/da/oauth.php @@ -11,4 +11,20 @@ return [ 'btn_approve' => 'Godkend', 'btn_deny' => 'Annuller', 'skips_authorization' => 'Overspringer godkendelse', + 'client_id' => 'Klient ID', + 'authorization_endpoint_url' => 'Godkendelses URL', + 'token_endpoint_url' => 'Get token URL', + 'user_info_endpoint_url' => 'Hent brugerinfo URL', + 'id_claim' => 'ID krav', + 'username_claim' => 'brugernavn krav', + 'email_claim' => 'e-mail krav', + 'level_claim' => 'Niveau feltnavn', + 'level_limit' => 'Niveau grænse', + 'level_limit_help' => 'Tillad kun brugere der ikke er under dette niveau at logge ind', + 'get_access_token_error' => 'Henter adgangstoken fejl: :error', + 'get _provider_user_id_error' => 'Kan ikke hente bruger-ID via feltet :id_claim', + 'get_provider_level_error' => 'Kan ikke hente brugerniveau via feltet :level_claim', + 'provider_level_not_ allowed' => 'Kun brugere med niveau :level_limit eller derover er tilladt at logge ind', + 'provider_email_already_exists' => 'E-mail: :email er allerede i brug', + 'get_provider_email_error' => 'Brugere-mail kan ikke hentes via feltet :email_claim', ]; diff --git a/resources/lang/da/offer.php b/resources/lang/da/offer.php new file mode 100644 index 00000000..7c1336a8 --- /dev/null +++ b/resources/lang/da/offer.php @@ -0,0 +1,17 @@ + " har tilladt dig at uploade ", + 'msg_find_offer_option' => "Du vil finde en ny mulighed på upload siden.", + 'msg_your_offer_allowed' => "Dit tilbud er blevet tilladt", + 'msg_offer_voted_on' => "Dit tilbud er blevet stemt om. Du har tilladelse til at uploade ", + 'msg_offer_voted_off' => "Dit tilbud er blevet afstemt. Du har ikke tilladelse til at uploade ", + 'msg_voted_on' => " er blevet stemt om", + 'msg_offer_deleted' => "Dit tilbud blev slettet", + 'msg_your_offer' => "Dit tilbud '", + 'msg_was_deleted_by' => "' blev slettet af ", + 'msg_blank' => ".", + 'msg_you_must_upload_in' => "Upload venligst tilbuddet inden ", + 'msg_hours_otherwise' => " timer. Ellers ville tilbuddet blive slettet.", + 'msg_reason_is' => "Årsagen: ", +]; diff --git a/resources/lang/da/plugin.php b/resources/lang/da/plugin.php index a033e5c4..378e61a7 100644 --- a/resources/lang/da/plugin.php +++ b/resources/lang/da/plugin.php @@ -2,17 +2,26 @@ return [ 'actions' => [ - 'install' => 'Installér', - 'delete' => 'Fjern', - 'update' => 'Opgradér', + 'install' => 'installer', + 'delete' => 'slet', + 'update' => 'opgrader', + 'install_or_update' => 'installér/opgradering', ], 'labels' => [ - 'display_name' => 'Navn', - 'package_name' => 'Pakke navn', - 'remote_url' => 'Repository adresse', - 'installed_version' => 'Installeret version', - 'status' => 'Status', - 'updated_at' => 'Seneste handling på', + 'display_name' => 'navn', + 'package_ name' => 'pakke_navn', + 'remote_url' => 'repository_address', + 'installed_version' => 'installeret_version', + 'latest_version' => 'latest_version', + 'status' => 'status', + 'updated_at' => 'last_eksekveret_handling', + ' release_date' => 'opdateret på', + 'install_title' => 'Gå til mappen: :web_root, og kør følgende kommandoer for at installere det som root bruger: ', + 'introduce' => 'Detaljer', + 'view_on_blog' => 'Vis på blog', + ' config_plugin_address' => 'Indstil plugin adresse', + 'download_specific_version' => 'Download udvidelsen. Den seneste version vises her, hvis du har brug for at installere en anden version (visning på blog for at se alle versioner) erstatte det selv', + 'execute_install' => 'Udfør installation', ], 'status' => [ \App\Models\Plugin::STATUS_NORMAL => 'Normal', diff --git a/resources/lang/da/subtitle.php b/resources/lang/da/subtitle.php new file mode 100644 index 00000000..eef0a474 --- /dev/null +++ b/resources/lang/da/subtitle.php @@ -0,0 +1,7 @@ + " slettede den undertekst, du har uploadet. ", + 'msg_your_sub_deleted' => "Din undertekst blev slettet", + 'msg_reason_is' => "Årsagen: ", +]; diff --git a/resources/lang/da/torrent.php b/resources/lang/da/torrent.php index 2e9a06e1..21df3f8c 100644 --- a/resources/lang/da/torrent.php +++ b/resources/lang/da/torrent.php @@ -92,4 +92,18 @@ return [ \App\Models\Torrent::PROMOTION_TIME_TYPE_DEADLINE => 'Indtil', ], 'paid_torrent' => 'Betalt torrent', + 'msg_torrent_deleted' => "Din torrent blev slettet", + 'msg_the_torrent_you_uploaded' => "Torrent du uploadede '", + 'msg_was_deleted_by' => "' blev slettet af ", + 'msg_reason_is' => "Årsagen: ", + 'msg_reseed_request' => "Reseed Anmodning", + 'msg_reseed_user' => "Bruger ", + 'msg_ask_reseed' => " bad om en reseed på torrent ", + 'msg_thank_you' => " !\nTak!", + + 'msg_offer_you_voted' => "Tilbuddet du stemte for: ", + 'msg_was_uploaded_by' => " blev uploadet af ", + 'msg_you_can_download' => ".\nDu kan downloade Torrent", + 'msg_here' => " [b]her[/b]", + 'msg_offer' => "Tilbud ", ]; diff --git a/resources/lang/da/user.php b/resources/lang/da/user.php index 56fb8921..c699cee1 100644 --- a/resources/lang/da/user.php +++ b/resources/lang/da/user.php @@ -56,4 +56,57 @@ return [ ], 'username_already_exists' => 'Brugernavn::brugernavn findes allerede', 'username_invalid' => 'Brugernavn::brugernavn ugyldigt', + + 'msg_promoted' => "forfremmet", + 'msg_demoted' => "nedbrudt", + 'msg_class_change' => "Ændring Af Klasse", + 'msg_you_have_been' => "Du har været ", + 'msg_to' => " til ", + 'msg_by' => " af ", + 'msg_warn_removed' => "Advarsel Fjernet", + 'msg_your_warning_removed_by' => "Din advarsel er blevet fjernet af", + 'msg_you_are_warned_by' => "Du er blevet [url=rules.php#warning]advaret[/url] af ", + 'msg_reason' => "\n\nÅrsag: ", + 'msg_week' => " uge", + 'msg_s' => "s", + 'msg_you_are_warned_for' => "Du er blevet [url=rules.php#warning]advaret[/url] for ", + 'msg_you_are_warned' => "Du Er Advaret", + 'msg_posting_rights_restored' => "Indlægsrettigheder Genoprettet", + 'msg_your_posting_rights_restored' => "Dine udstationeringsrettigheder er blevet givet tilbage af " , + 'msg_you_can_post' => ". Du kan skrive til forum igen.", + 'msg_posting_rights_removed' => "Indlægsrettigheder Fjernet", + 'msg_your_posting_rights_removed' => "Dine indlægsrettigheder er blevet fjernet af ", + 'msg_probable_reason' => ", sandsynligvis på grund af dårlig holdning eller dårligt indlæg indhold.", + 'msg_upload_rights_restored' => "Upload Rettigheder Genoprettet", + 'msg_your_upload_rights_restored' => "Dine upload rettigheder er blevet givet tilbage af ", + 'msg_you_upload_can_upload' => ". Du kan uploade torrents igen.", + 'msg_upload_rights_removed' => "Upload Rettigheder Fjernet", + 'msg_your_upload_rights_removed' => "Dine upload rettigheder er blevet fjernet af ", + 'msg_probably_reason_two' => ", sandsynligvis på grund af dårlig torrent, .nfo eller beskrivelse.", + 'msg_download_rights_restored' => "Download Rettigheder Gendannet", + 'msg_your_download_rights_restored' => "Dine downloadrettigheder er blevet givet tilbage af ", + 'msg_you_can_download' => ". Du kan downloade torrents igen.", + 'msg_download_rights_removed' => "Download Rettigheder Fjernet", + 'msg_your_download_rights_removed' => "Dine downloadrettigheder er blevet fjernet af ", + 'msg_probably_reason_three' => ", sandsynligvis på grund af lav nøgletal eller dårlig adfærd.", + 'msg_email_change' => "Email ændring", + 'msg_your_email_changed_from' => "Din e-mailadresse er blevet ændret fra ", + 'msg_username_change' => "Brugernavn ændring", + 'msg_your_username_changed_from' => "Dit brugernavn er blevet ændret fra ", + 'msg_downloaded_change' => "Downloadet beløb ændring", + 'msg_your_downloaded_changed_from' => "Dit downloadede beløb er blevet ændret fra ", + 'msg_uploaded_change' => "Uploadet beløb ændring", + 'msg_your_uploaded_changed_from' => "Dit uploadede beløb er blevet ændret fra ", + 'msg_bonus_change' => "Bonus beløb ændring", + 'msg_your_bonus_changed_from' => "Dit bonusbeløb er blevet ændret fra ", + 'msg_invite_change' => "Invitér beløb ændring", + 'msg_your_invite_changed_from' => "Dit invitationsbeløb er blevet ændret fra ", + 'msg_to_new' =>" til ", + 'msg_your_vip_status_changed' => "Din VIP-status er ændret", + 'msg_vip_status_changed_by' => "Din VIP-status ændret af ", + 'msg_your_donor_status_changed' => "Din donorstatus er ændret", + 'msg_donor_status_changed_by' => "Din donorstatus ændret af ", + 'msg_invited_user_has_registered' => "Inviteret bruger er registreret", + 'msg_user_you_invited' => "Brugeren du inviterede ", + 'msg_has_registered' => " har registreret sig lige nu.", ]; diff --git a/resources/lang/de/admin.php b/resources/lang/de/admin.php index b4ab0c81..eba03ad4 100644 --- a/resources/lang/de/admin.php +++ b/resources/lang/de/admin.php @@ -43,6 +43,8 @@ return [ 'oauth_auth_code' => 'Auth Codes', 'oauth_refresh_token' => 'Token aktualisieren', 'token' => 'Zugangs-Tokens', + 'oauth_provider' => 'Autorisierungsanbieter', + 'queue_monitor' => 'Warteschlange Monitor', ], 'resources' => [ 'agent_allow' => [ diff --git a/resources/lang/de/claim.php b/resources/lang/de/claim.php index 8ad24fed..1e2992c4 100644 --- a/resources/lang/de/claim.php +++ b/resources/lang/de/claim.php @@ -17,12 +17,12 @@ return [ 'msg_title' => 'Begleichung des Ergebnisses im letzten Monat(:Monat):', 'msg_subject' => ':month Schadensabwicklung', - 'claim_total' => 'Torrent insgesamt beanspruchen: :total', - 'claim_reached_counts' => 'Erreichte Torrentanzahl: :count', - 'claim_reached_summary' => 'Erreichter Torrent Bonus pro Stunde: :bonus_per_hour, Seedzeit Durchschnitt (Stunde): :Stunden, Bonus Gesamt: :bonus_total', - 'claim_unreached_remain_counts' => 'Unerreichte Torrent-Restzahlen: :count', - 'claim_unreached_remove_counts' => 'Unerreichte Torrent-Entfernungsanzahl: :count', - 'claim_unreached_summary' => 'Erlebe Bonus jeden unerreichten Torrent::deduct_per_torrent, Gesamtabzug :deduct_total', + 'claim_total' => 'Torrent insgesamt beanspruchen: [b]:total[/b]', + 'claim_reached_counts' => 'Erreichte Torrentanzahl: [b]:count[/b]', + 'claim_reached_summary' => 'Erreichter Torrent Bonus pro Stunde: [b]:bonus_per_hour[/b], Seedzeit Durchschnitt (Stunde): [b]:Stunden[/b], Bonus Gesamt: [b]:bonus_total[/b]', + 'claim_unreached_remain_counts' => 'Unerreichte Torrent-Restzahlen: [b]:count[/b]', + 'claim_unreached_remove_counts' => 'Unerreichte Torrent-Entfernungsanzahl: [b]:count[/b]', + 'claim_unreached_summary' => 'Erlebe Bonus jeden unerreichten Torrent:[b]:deduct_per_torrent[/b], Gesamtabzug [b]:deduct_total[/b]', 'confirm_give_up' => 'Bist du sicher, dass du den Anspruch auf diesen Torrent aufgeben möchtest?', 'add_claim' => 'Claim', diff --git a/resources/lang/de/label.php b/resources/lang/de/label.php index 052928a7..97440db3 100644 --- a/resources/lang/de/label.php +++ b/resources/lang/de/label.php @@ -34,7 +34,7 @@ return [ 'cancel' => 'Abbrechen', 'reset' => 'Reset', 'anonymous' => 'Anonym', - 'infinite' => 'Unendlich', + 'infinite' => 'Inf.', 'save' => 'Speichern', 'country' => 'Land', 'city' => 'Stadt', @@ -44,6 +44,8 @@ return [ 'create' => 'Anlegen', 'created_at_begin' => 'Erstellt am Anfang', 'created_at_end' => 'Erstellt am Ende', + 'text_quote' => 'Zitat', + 'text_code' => "CODE", 'setting' => [ 'nav_text' => 'Einstellung', 'backup' => [ diff --git a/resources/lang/de/nexus.php b/resources/lang/de/nexus.php index 4b14ed37..51d26e73 100644 --- a/resources/lang/de/nexus.php +++ b/resources/lang/de/nexus.php @@ -17,4 +17,8 @@ return [ 'sum' => 'Sum', 'do_not_repeat' => 'Bitte wiederholen Sie die Operation nicht!', 'no_permission' => 'Keine Berechtigung!', + 'sort' => 'sortierfeld', + 'order' => 'sortieren', + 'asc' => 'aufsteigend', + 'desc' => 'absteigende Reihenfolge', ]; diff --git a/resources/lang/de/oauth.php b/resources/lang/de/oauth.php index 8a89c2eb..ad3cc6a6 100644 --- a/resources/lang/de/oauth.php +++ b/resources/lang/de/oauth.php @@ -11,4 +11,20 @@ return [ 'btn_approve' => 'Autorisieren', 'btn_deny' => 'Abbrechen', 'skips_authorization' => 'Überspringt die Autorisierung', + 'client_id' => 'Kunden-ID', + 'authorization_endpoint_url' => 'Autorisierungs-URL', + 'token_endpoint_url' => 'Get token URL', + 'user_info_endpoint_url' => 'Benutzer-Info-URL erhalten', + 'id_claim' => 'ID-Anspruch', + 'username_claim' => 'Benutzername beanspruchen', + 'email_claim' => 'e-Mail-Anspruch', + 'level_claim' => 'Name des Ebenenfeldes', + 'level_limit' => 'Level Limit', + 'level_limit_help' => 'Nur Benutzer unter diesem Level erlauben, sich einzuloggen', + 'get_access_token_error' => 'Fehler beim Abrufen des Zugriffstoken :error', + 'get _provider_user_id_error' => 'Konnte Benutzer-ID nicht über das Feld :id_claim holen', + 'get_provider_level_error' => 'Benutzerebene kann nicht über Feld :level_claim erreicht werden', + 'provider_level_not_ allowed' => 'Nur Benutzer mit Level :level_limit oder höher dürfen sich anmelden', + 'provider_email_already_exists' => 'E-Mail: :email wird bereits verwendet', + 'get_provider_email_error' => 'Konnte Benutzer-E-Mail nicht über das Feld :email_claim holen', ]; diff --git a/resources/lang/de/plugin.php b/resources/lang/de/plugin.php index d092dea8..95b9917a 100644 --- a/resources/lang/de/plugin.php +++ b/resources/lang/de/plugin.php @@ -2,17 +2,26 @@ return [ 'actions' => [ - 'install' => 'Installieren', - 'delete' => 'Entfernen', - 'update' => 'Upgrade', + 'install' => 'installieren', + 'delete' => 'löschen', + 'update' => 'upgraden', + 'install_or_update' => 'installieren/upgraden', ], 'labels' => [ - 'display_name' => 'Name', - 'package_name' => 'Paketname', - 'remote_url' => 'Repository-Adresse', - 'installed_version' => 'Installierte Version', - 'status' => 'Status', - 'updated_at' => 'Letzte Aktion am', + 'display_name' => 'name', + 'package_ name' => 'package_name', + 'remote_url' => 'repository_adresse', + 'installed_version' => 'installierte Version', + 'latest_version' => 'neueste Version', + 'status' => 'status', + 'updated_at' => 'zuletzt ausgeführte Aktion', + ' release_date' => 'aktualisiert am', + 'install_title' => 'Gehen Sie zum Verzeichnis: :web_root und führen Sie die folgenden Befehle aus, um es als Root-Benutzer zu installieren: ', + 'introduce' => 'Details', + 'view_on_blog' => 'Im Blog anzeigen', + ' config_plugin_address' => 'Plugin-Adresse konfigurieren', + 'download_specific_version' => 'Die Erweiterung herunterladen. Die neueste Version wird hier angezeigt, wenn Sie eine andere Version installieren müssen (im Blog sehen, um alle Versionen zu sehen) ersetzen Sie sie selbst', + 'execute_install' => 'Installation ausführen', ], 'status' => [ \App\Models\Plugin::STATUS_NORMAL => 'Normal', diff --git a/resources/lang/el/admin.php b/resources/lang/el/admin.php new file mode 100644 index 00000000..defa03a6 --- /dev/null +++ b/resources/lang/el/admin.php @@ -0,0 +1,131 @@ + [ + 'exam_users' => 'Εξετάστε Χρήστες', + 'hit_and_runs' => 'Χτυπήστε Και Τρέξτε', + 'users_list' => 'Χρήστες', + 'tags_list' => 'Ετικέτες', + 'agent_allows' => 'Επιτρέπει Τον Πράκτορα', + 'agent_denies' => 'Άρνηση Παράγοντα', + 'exams_list' => 'Εξετάσεις & Εργασίες', + 'medals_list' => 'Μετάλλια', + 'settings' => 'Ρυθμίσεις', + 'users_medals' => 'Μετάλλια χρήστη', + 'claims' => 'Αιτήσεις χρήστη', + 'torrent_list' => 'Torrents', + 'torrent_state' => 'Free leach', + 'roles_list' => 'Ρόλοι', + 'ability_list' => 'Δικαιώματα', + 'seed_box_records' => 'Πλαίσιο Σπόρου', + 'upload_speed' => 'Ταχύτητα αποστολής', + 'download_speed' => 'Ταχύτητα λήψης', + 'isp' => 'ISP', + 'menu' => 'Προσαρμοσμένο μενού', + 'username_change_log' => 'Αρχεία καταγραφής αλλαγών ονόματος χρήστη', + 'torrent_deny_reason' => 'Άρνηση Αιτίων', + 'roles' => 'Ρόλος', + 'permissions' => 'Δικαιώματα', + 'section' => 'Πλαίσια αναζήτησης', + 'icon' => 'Εικονίδια κατηγορίας', + 'plugin' => 'Πρόσθετα', + 'category' => 'Κατηγορίες', + 'second_icon' => 'Δεύτερα εικονίδια', + 'torrent_operation_log' => 'Αρχεία καταγραφής λειτουργίας torrent', + 'invite' => 'Προσκληθέντα', + 'user_props' => 'Βοηθήματα χρήστη', + 'login_log' => 'Αρχεία καταγραφής συνδέσεων', + 'bonus_log' => 'Μπόνους καταγραφής', + 'torrent_buy_log' => 'Αρχεία καταγραφής αγοραπωλησιών torrent', + 'attendance_log' => 'Αρχεία καταγραφής παρακολούθησης', + 'oauth_client' => 'Πελάτης', + 'oauth_access_token' => 'Σημεία πρόσβασης', + 'oauth_auth_code' => 'Κωδικοί πιστοποίησης', + 'oauth_refresh_token' => 'Ανανέωση διακριτικών', + 'token' => 'Σημεία πρόσβασης', + 'oauth_provider' => 'Πάροχος εξουσιοδότησης', + 'queue_monitor' => 'Οθόνη αναμονής', + ], + 'resources' => [ + 'agent_allow' => [ + 'check_modal_btn' => 'Έλεγχος', + 'check_modal_header' => 'Ανίχνευση εάν ο πελάτης επιτρέπεται', + 'check_pass_msg' => 'Συγχαρητήρια, αυτός ο πελάτης πέρασε από τον κανόνα :id!', + ], + 'user' => [ + 'actions' => [ + 'enable_modal_btn' => 'Ενεργοποίηση', + 'enable_modal_title' => 'Ενεργοποίηση χρήστη', + 'enable_disable_reason' => 'Λόγος', + 'enable_disable_reason_placeholder' => 'Προαιρετικό', + 'disable_modal_btn' => 'Απενεργοποίηση', + 'disable_modal_title' => 'Απενεργοποίηση χρήστη', + 'disable_two_step_authentication' => 'Ακύρωση ελέγχου ταυτότητας δύο βημάτων', + 'change_bonus_etc_btn' => 'Αλλαγή Ανεβασμένων κτλ.', + 'change_bonus_etc_action_increment' => 'Προσαλοδότηση', + 'change_bonus_etc_action_decrement' => 'Μείωση', + 'change_bonus_etc_field_label' => 'Πεδίο', + 'change_bonus_etc_action_label' => 'Ενέργεια', + 'change_bonus_etc_value_label' => 'Τιμή', + 'change_bonus_etc_value_help' => 'Εάν ο τύπος φορτώθηκε/Λήψη, η μονάδα είναι: GB', + 'change_bonus_etc_reason_label' => 'Λόγος', + 'reset_password_btn' => 'Επαναφορά κωδικού πρόσβασης', + 'reset_password_label' => 'Νέος κωδικός πρόσβασης', + 'reset_password_confirmation_label' => 'Επιβεβαίωση νέου κωδικού πρόσβασης', + 'assign_exam_btn' => 'Αναθέστε εξετάσεις', + 'assign_exam_exam_label' => 'Επιλογή εξέτασης', + 'assign_exam_begin_label' => 'Ώρα έναρξης', + 'assign_exam_end_label' => 'Ώρα λήξης', + 'assign_exam_end_help' => 'Εάν δεν καθορίσετε μια ώρα έναρξης/λήξης, το χρονικό εύρος που ορίζεται από την ίδια την εξέταση θα χρησιμοποιηθεί', + 'grant_medal_btn' => 'Χορήγηση μεταλλίου', + 'grant_medal_medal_label' => 'Επιλογή μεταλλίου', + 'grant_medal_duration_label' => 'Διάρκεια', + 'grant_medal_duration_help' => 'Μονάδα: ημέρες. Αν μείνει κενό, ο χρήστης έχει μόνιμη κατοχή', + 'confirm_btn' => 'Επιβεβαίωση', + 'disable_download_privileges_btn' => 'Ενεργοποίηση λήψης', + 'enable_download_privileges_btn' => 'Απενεργοποίηση λήψης', + 'grant_prop_btn' => 'Χορήγηση στηρίγματος', + 'grant_prop_form_prop' => 'Επιλέξτε στήριγμα', + 'grant_prop_form_duration' => 'Διάρκεια', + 'grant_prop_form_duration_help' => 'Μονάδα: ημέρες. Αν μείνει κενό, ο χρήστης το έχει μόνιμα. Σημείωση: Δεν υπάρχει χρονικό όριο για το Όνομα Αλλαγή Κάρτας, αγνοήστε αυτήν την τιμή.' , + 'confirm_bulk' => 'Μαζική επιβεβαίωση', + 'change_bonus_etc_duration_label' => 'Διάρκεια', + 'change_bonus_etc_duration_help' => 'Απαιτείται κατά την προσθήκη προσωρινής πρόσκλησης, σε ημέρες', + 'change_class_btn' => 'Αλλαγή τάξης', + ] + ], + 'exam_user' => [ + 'bulk_action_avoid_label' => 'Μαζική αποφυγή', + 'bulk_action_update_end_label' => 'Μαζική τροποποίηση χρόνου λήξης', + 'action_avoid' => 'Αποφυγή', + 'action_update_end' => 'Τροποποίηση ώρας λήξης', + 'result_passed' => 'Πέρασε!', + 'result_not_passed' => 'Δεν πέρασε!', + ], + 'exam' => [ + 'index_duplicate' => 'Index::index duplicate !', + ], + 'hit_and_run' => [ + 'bulk_action_pardon' => 'Bulk pardon', + 'action_pardon' => 'Pardon', + ], + 'torrent' => [ + 'bulk_action_pos_state' => 'Κολλημένο', + 'bulk_action_remove_tag' => 'Αφαίρεση ετικέτας', + 'bulk_action_attach_tag' => 'Επισύναψη ετικέτας', + 'action_approval' => 'Έγκριση', + 'bulk_action_attach_tag_remove_old' => 'Επίσης να διαγράψετε τις παλιές ετικέτες', + 'bulk_action_recommend' => 'Προτείνετε', + 'bulk_action_sp_state' => 'Προώθηση', + 'bulk_action_hr' => 'Ε&Α', + ], + 'seed_box_record' => [ + 'toggle_status' => 'Αλλαγή κατάστασης', + 'check_modal_btn' => 'Έλεγχος', + 'check_modal_header' => 'Ανίχνευση αν το IP είναι SeedBox', + ], + 'tag' => [ + 'detach_torrents' => 'Αποκόλληση όλων των torrent', + ], + ] +]; diff --git a/resources/lang/el/attendance.php b/resources/lang/el/attendance.php new file mode 100644 index 00000000..197662ae --- /dev/null +++ b/resources/lang/el/attendance.php @@ -0,0 +1,14 @@ + "Δεν έχετε παρακολουθήσει ακόμα", + 'target_date_can_no_be_retroactive' => 'Date::date can not be retroactive', + 'already_attendance' => 'Ήδη συμμετοχή', + 'card_not_enough' => 'Η κάρτα παρακολούθησης δεν είναι αρκετή', + 'ranking' => "Η σημερινή Κατάταξη: :ranking / :counts", + 'fields' => [ + 'date' => 'Ημερομηνία', + 'points' => 'Έχεις μπόνους', + 'is_retroactive' => 'Είναι αναδρομική', + ], +]; diff --git a/resources/lang/el/bonus-log.php b/resources/lang/el/bonus-log.php new file mode 100644 index 00000000..05354a2b --- /dev/null +++ b/resources/lang/el/bonus-log.php @@ -0,0 +1,37 @@ + [ + \App\Models\BonusLogs::BUSINESS_TYPE_CANCEL_HIT_AND_RUN => 'Ακύρωση H&R', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_MEDAL => 'Αγορά μεταλλίου', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_ATTENDANCE_CARD => 'Αγοράστε την κάρτα παρουσίας', + \App\Models\BonusLogs::BUSINESS_TYPE_STICKY_PROMOTION => 'Κολλημένη προώθηση', + \App\Models\BonusLogs::BUSINESS_TYPE_POST_REWARD => 'Ανταμοιβή δημοσίευσης', + \App\Models\BonusLogs::BUSINESS_TYPE_EXCHANGE_UPLOAD => 'Το χρηματιστήριο ανέβηκε', + \App\Models\BonusLogs::BUSINESS_TYPE_EXCHANGE_INVITE => 'Αγορά πρόσκλησης', + \App\Models\BonusLogs::BUSINESS_TYPE_CUSTOM_TITLE => 'Προσαρμοσμένος τίτλος', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_VIP => 'Αγορά VIP', + \App\Models\BonusLogs::BUSINESS_TYPE_GIFT_TO_SOMEONE => 'Δώρο σε κάποιον', + \App\Models\BonusLogs::BUSINESS_TYPE_NO_AD => 'Ακύρωση διαφήμισης', + \App\Models\BonusLogs::BUSINESS_TYPE_GIFT_TO_LOW_SHARE_RATIO => 'Δώρο προς χαμηλή αναλογία μετοχής', + \App\Models\BonusLogs::BUSINESS_TYPE_LUCKY_DRAW => 'Τυχερή ισοπαλία', + \App\Models\BonusLogs::BUSINESS_TYPE_EXCHANGE_DOWNLOAD => 'Το χρηματιστήριο λήφθηκε', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_TEMPORARY_INVITE => 'Αγορά προσωρινής πρόσκλησης', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_RAINBOW_ID => 'Αγορά αναγνωριστικού ουράνιου τόξου', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_CHANGE_USERNAME_CARD => 'Αγοράστε αλλαγή κάρτας ονόματος χρήστη', + \App\Models\BonusLogs::BUSINESS_TYPE_GIFT_MEDAL => 'Μετάλλιο δώρου', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_TORRENT => 'Αγορά torrent', + + \App\Models\BonusLogs::BUSINESS_TYPE_ROLE_WORK_SALARY => 'Μισθός εργασίας ρόλων', + \App\Models\BonusLogs::BUSINESS_TYPE_TORRENT_BE_DOWNLOADED => 'Κατεβάστε το Torrent', + \App\Models\BonusLogs::BUSINESS_TYPE_RECEIVE_REWARD => 'Λήψη ανταμοιβής', + \App\Models\BonusLogs::BUSINESS_TYPE_RECEIVE_GIFT => 'Λήψη δώρου', + \App\Models\BonusLogs::BUSINESS_TYPE_UPLOAD_TORRENT => 'Μεταφόρτωση torrent', + ], + 'fields' => [ + 'business_type' => 'Τύπος επιχείρησης', + 'old_total_value' => 'Προσυναλλακτική αξία', + 'value' => 'Εμπορική αξία', + 'new_total_value' => 'Μετασυναλλακτική αξία', + ], +]; diff --git a/resources/lang/el/bonus.php b/resources/lang/el/bonus.php new file mode 100644 index 00000000..682ae496 --- /dev/null +++ b/resources/lang/el/bonus.php @@ -0,0 +1,35 @@ + 'Περάστε :bonus αγορά :medal_name', + 'comment_buy_attendance_card' => 'Ξοδέψτε :bonus μπόνους αγοράστε μία κάρτα παρακολουθήσει', + 'comment_buy_temporary_invite' => 'Ξοδέψτε :bonus bonus αγοράστε :count προσωρινή πρόσκληση', + 'comment_buy_rainbow_id' => 'Περάστε :bonus αγοράστε :duration ημέρες ουράνιο τόξο ID', + 'comment_buy_change_username_card' => 'Περάστε :bonus μπόνους αγοράσει αλλαγή ονόματος χρήστη κάρτα', + 'comment_gift_medal' => 'Περάστε :bonus αγορά :medal_name και δώρο σε :to_username', + 'comment_buy_torrent' => 'Περάστε :bonus μπόνους αγορά torrent: :torrent_id', + 'comment_torrent_be_downloaded' => 'Προϊόν από torrent που λήφθηκε από :username(UID: :uid)', + 'table_thead' => [ + 'reward_type' => 'Τύπος ανταμοιβής', + 'count' => 'Μέτρηση', + 'size' => 'Μέγεθος', + 'a_value' => 'Μια Τιμή', + 'bonus_base' => 'Βασικό μπόνους', + 'factor' => 'Παράγοντας', + 'got_bonus' => 'Έχεις μπόνους', + 'total' => 'Σύνολο', + ], + 'reward_types' => [ + 'basic' => 'Βασική ανταμοιβή', + 'harem_addition' => 'Προσθήκη λόχου', + 'official_addition' => 'Επίσημη προσθήκη', + 'medal_addition' => 'Προσθήκη μεταλλίου', + ], + 'not_enough' => 'Δεν υπάρχει αρκετό μπόνους! Απαιτεί :require_bonus, έχετε μόνο :now_bonus', + 'msg_someone_loves_you' => "Κάποιος σας αγαπά", + 'msg_you_have_been_given' => "Σας έχει δοθεί ένα δώρο ", + 'msg_after_tax' => " (μετά από φόρο είναι ", + 'msg_karma_points_by' => ") Σημεία Κάρμα από ", + 'msg_personal_message_from' => "Προσωπικό μήνυμα από ", + 'msg_colon' => ": ", +]; diff --git a/resources/lang/el/bookmark.php b/resources/lang/el/bookmark.php new file mode 100644 index 00000000..2547d0d9 --- /dev/null +++ b/resources/lang/el/bookmark.php @@ -0,0 +1,8 @@ + [ + 'store_success' => 'Επιτυχής προσθήκη στο σελιδοδείκτη!', + 'delete_success' => 'Ακύρωση σελιδοδείκτη επιτυχία!', + ] +]; diff --git a/resources/lang/el/claim.php b/resources/lang/el/claim.php new file mode 100644 index 00000000..6abf9286 --- /dev/null +++ b/resources/lang/el/claim.php @@ -0,0 +1,38 @@ + 'Λεπτομέρειες απαίτησης torrent', + 'title_for_user' => 'Λεπτομέρειες απαίτησης χρήστη', + 'th_id' => 'ID', + 'th_username' => 'Χρήστης', + 'th_torrent_name' => 'Όνομα torrent', + 'th_torrent_size' => 'Μέγεθος torrent', + 'th_torrent_ttl' => 'Torrent TTL', + 'th_claim_at' => 'Ισχυρισμός σε', + 'th_last_settle' => 'Τελευταία διευθέτηση στις', + 'th_seed_time_this_month' => 'Se. αυτό το μήνα', + 'th_uploaded_this_month' => 'Up. αυτό το μήνα', + 'th_reached_or_not' => 'Έφτασε', + 'th_action' => 'Ενέργεια', + + 'msg_title' => 'Διεκδικήστε τη διευθέτηση του αποτελέσματος τον τελευταίο μήνα (:month):', + 'msg_subject' => ':month διεκδίκηση διακανονισμού', + 'claim_total' => 'Διεκδικήστε το σύνολο torrent: [b]:total[/b]', + 'claim_reached_counts' => 'Μετρήσεις πληθώρα torrent: [b]:counts[/b]', + 'claim_reached_summary' => 'Reached torrent get bonus per hour: [b]:bonus_per_hour[/b], seed average (hour): [b]:hours[/b], get bonus total: [b]:bonus_total[/b]', + 'claim_unreached_remain_counts' => 'Απεικόνιση torrent παραμένει μετρήσεις: [b]:counts[/b]', + 'claim_unreached_remove_counts' => 'Unreached torrent remove counts: [b]:counts[/b]', + 'claim_unreached_summary' => 'Μείωση μπόνους κάθε μη επιτευχθέν torrent:[b]:deduct_per_torrent[/b], συνολική έκπτωση: [b]:deduct_total[/b]', + + 'confirm_give_up' => 'Είστε σίγουροι ότι θέλετε να εγκαταλείψετε την διεκδίκηση αυτού του torrent?', + 'add_claim' => 'Claim', + 'add_claim_confirm' => 'Επιβεβαιώστε την αξίωση?', + 'remove_claim' => 'Δώσε επάνω', + 'remove_claim_confirm' => 'Επιβεβαιώστε να παραιτηθεί από την αξίωση?', + 'already_claimed' => 'Διεκδικείται', + 'not_claim_yet' => 'Αζήτητη', + 'fields' => [ + 'torrent_id' => 'Id Torrent', + ], + 'claim_all_seeding_confirmation' => 'Είστε σίγουροι ότι θέλετε να διεκδικήσετε όλα τα torrents που βρίσκονται σε σπορά?' , +]; diff --git a/resources/lang/el/cleanup.php b/resources/lang/el/cleanup.php new file mode 100644 index 00000000..d9ab34d4 --- /dev/null +++ b/resources/lang/el/cleanup.php @@ -0,0 +1,36 @@ + 'Απαγορεύεται από το σύστημα λόγω βδέλλας προειδοποίησης έληξε.', + 'disable_user_unconfirmed' => 'Απενεργοποιήθηκε από το σύστημα λόγω ανεπιβεβαίωτης υπερβολικής προθεσμίας.', + 'disable_user_no_transfer_alt_last_access_time' => 'Απενεργοποίηση ανενεργών λογαριασμών χρηστών, χωρίς μεταφορά. Alt: τελευταία ώρα πρόσβασης.', + 'disable_user_no_transfer_alt_register_time' => 'Απενεργοποίηση ανενεργών λογαριασμών χρηστών, χωρίς μεταφορά. Alt: ώρα εγγραφής.', + 'disable_user_not_parked' => 'Απενεργοποίηση ανενεργών λογαριασμών χρηστών, δεν είναι σταθμευμένο.', + 'disable_user_parked' => 'Απενεργοποίηση ανενεργών λογαριασμών χρηστών, parked.', + 'destroy_disabled_account' => 'Χρονοδιάγραμμα φυσικής διαγραφής των απενεργοποιημένων λογαριασμών', + 'alarm_email_subject' => '[:site_name] εξαίρεση εργασιών καθαρισμού φόντου', + 'alarm_email_body' => 'Τρέχουσα ώρα: :now_time, επίπεδο :level, Τελευταίος χρόνος εκτέλεσης: :last_time, ήταν περισσότερο από: :elapsed_seconds seconds(:elapsed_seconds_human) από τότε που εκτελέστηκε, το καθορισμένο διάστημα εκτέλεσης είναι: :interval seconds(:interval_human), παρακαλώ ελέγξτε το!', + 'alarm_email_subject_for_queue_failed_jobs' => '[:site_name]Ασύγχρονη Εξαίρεση Εργασίας', + 'alarm_email_body_for_queue_failed_jobs' => 'Υπάρχουν συνολικά :count αποτυχημένες ασύγχρονες εργασίες από τις :since, που καταγράφονται στον πίνακα της βάσης δεδομένων :failed_job_table, παρακαλώ ελέγξτε το!', + + 'msg_low_ratio_warning_removed' => "Αφαίρεση Προειδοποίησης Χαμηλής Αναλογίας", + 'msg_your_ratio_warning_removed' => "Η προειδοποίηση σας για χαμηλή αναλογία έχουν αφαιρεθεί και αυτόματη προώθηση σε [b]χρήστη[/b]. Σας συνιστούμε ιδιαίτερα να κρατήσετε μια αναλογία σας μέχρι να μην προειδοποιηθεί ξανά.\n", + 'msg_promoted_to' => "Προωθήθηκε σε ", + 'msg_now_you_are' => "Συγχαρητήρια, έχετε προωθηθεί αυτόματα στο [b]", + 'msg_see_faq' => "[/b]. :)\nΠαρακαλώ δείτε το [b][url=faq.php#id22]FAQ[/url][/b] για το τι μπορείτε να κάνετε τώρα.\n", + 'msg_demoted_to' => "Demoted σε ", + 'msg_demoted_from' => "Έχετε υποβιβασθεί αυτόματα από [b]", + 'msg_to' => "[/b] to [b]", + 'msg_because_ratio_drop_below' => "[/b] because your share ratio has dropped below ", + 'msg_must_fix_ratio_within' => "Έχετε προειδοποιηθεί και υποβιβασθεί αυτόματα από το [b]User[/b] στο [b]Peasant[/b] λόγω της χαμηλής αναλογίας. Θα πρέπει να το διορθώσετε μέσα στο ", + 'msg_days_or_get_banned' => " ημέρες ή ο λογαριασμός σας θα αποκλειστεί. Αν δεν έχετε ιδέα για το ποια είναι η αναλογία ή πώς σας επηρεάζει, σας προτείνουμε να διαβάσετε το [url=faq. hp#idid17][b]FAQ[/b][/url].", + 'msg_vip_status_removed' => "Η κατάσταση VIP αφαιρέθηκε από το σύστημα.", + 'msg_vip_status_removed_body' => "Η κατάσταση VIP σας έχει λήξει και έχει αφαιρεθεί αυτόματα από το σύστημα. Γίνετε ξανά VIP ανταλλάσσοντας μερικούς πόντους μπόνους Κάρμα. Επαινέστε!", + 'msg_donor_status_removed' => "Η κατάσταση του δότη αφαιρέθηκε από το σύστημα.", + 'msg_donor_status_removed_body' => "Η κατάσταση του δότη σας έχει λήξει και έχει αφαιρεθεί αυτόματα από το σύστημα. Γίνετε και πάλι δωρητής με δωρεά σε εμάς!", + 'msg_warning_removed' => "Προειδοποίηση που αφαιρέθηκε από το σύστημα", + 'msg_your_warning_removed' => "Η προειδοποίησή σας έχει αφαιρεθεί από το Σύστημα. Ελπίζουμε ότι θα συμπεριφέρεστε από εδώ και στο εξής.", + 'msg_your_torrent_deleted' => "Το torrent σας διαγράφηκε", + 'msg_your_torrent' => "Το torrent σας ", + 'msg_was_deleted_because_dead' => " διαγράφηκε από το σύστημα επειδή έχει πεθάνει για μεγάλο χρονικό διάστημα. Ωστόσο, κρατάτε το μπόνους κάρμα για τη μεταφόρτωση του torrent.", +]; diff --git a/resources/lang/el/comment.php b/resources/lang/el/comment.php new file mode 100644 index 00000000..85a787b5 --- /dev/null +++ b/resources/lang/el/comment.php @@ -0,0 +1,8 @@ + "Νέο σχόλιο", + 'msg_torrent_receive_comment' => "Έχετε λάβει ένα σχόλιο για το torrent σας ", + 'msg_offer_receive_comment' => "Έχετε λάβει ένα σχόλιο για την προσφορά σας ", + 'msg_request_receive_comment' => "Έχετε λάβει ένα σχόλιο για το αίτημά σας " +]; diff --git a/resources/lang/el/dashboard.php b/resources/lang/el/dashboard.php new file mode 100644 index 00000000..ef289ad4 --- /dev/null +++ b/resources/lang/el/dashboard.php @@ -0,0 +1,65 @@ + [ + 'page_title' => 'Στατιστικά χρήστη', + 'total' => 'Σύνολο', + 'unconfirmed' => 'Ανεπιβεβαίωτες', + 'visit_last_one_day' => 'PV της τελευταίας 1 ημέρας', + 'visit_last_one_week' => 'PV των τελευταίων 7 ημερών', + 'visit_last_30_days' => 'PV των τελευταίων 30 ημερών', + 'vip' => 'Vip', + 'donated' => 'Δωρεά', + 'warned' => 'Προειδοποιήθηκε', + 'disabled' => 'Απενεργοποιημένο', + 'gender_male' => 'Άντρας', + 'gender_Male' => 'Άντρας', + 'gender_female' => 'Γυναίκα', + 'gender_Female' => 'Γυναίκα', + 'gender_N/A' => 'Άγνωστο φύλο', + ], + 'torrent' => [ + 'page_title' => 'Στατιστικά torrent', + 'total' => 'Σύνολο', + 'dead' => 'Νεκρός', + 'seeders' => 'Σπόροι', + 'leechers' => 'Leechers', + 'seeders_leechers' => 'Υπολογιστές', + 'seeders_leechers_ratio' => 'Seeders / Λέβητες', + 'active_web_users' => 'Ενεργοί χρήστες ιστού', + 'active_tracker_users' => 'Χρήστες ενεργού ιχνηλάτη', + 'total_torrent_size' => 'Συνολικό μέγεθος torrent', + 'total_uploaded' => 'Μεταφόρτωση μεγέθους', + 'total_downloaded' => 'Μέγεθος λήψεων', + 'total_uploaded_downloaded' => 'Ανεβασμένο + κατεβασμένο μέγεθος', + ], + 'user_class' => [ + 'page_title' => 'Κλάση χρήστη', + ], + 'system_info' => [ + 'page_title' => 'Πληροφορίες συστήματος', + 'nexus_version' => 'Έκδοση NexusPHP', + 'nexus_release_date' => 'NexusPHP release date', + 'laravel_version' => 'Έκδοση Laravel', + 'php_version' => 'Έκδοση PHP', + 'mysql_version' => 'MySQL έκδοση', + 'os' => 'OS', + 'server_software' => 'Λογισμικό ιστού', + 'load_average' => 'Μέσος όρος φορτίου διακομιστή', + 'filament_version' => 'Έκδοση νήματος', + 'redis_version' => 'Έκδοση Redis', + ], + 'latest_user' => [ + 'page_title' => 'Τελευταία χρήση', + ], + 'latest_torrent' => [ + 'page_title' => 'Τελευταία έκδοση torrent', + ], + 'torrent_trend' => [ + 'page_title' => 'Τάση torrent', + ], + 'user_trend' => [ + 'page_title' => 'Τάση χρήστη', + ], + +]; diff --git a/resources/lang/el/exam-user.php b/resources/lang/el/exam-user.php new file mode 100644 index 00000000..ace6c187 --- /dev/null +++ b/resources/lang/el/exam-user.php @@ -0,0 +1,16 @@ + [ + 'list' => [ + 'page_title' => 'Εξετάστε τους χρήστες' + ] + ], + 'status' => [ + \App\Models\ExamUser::STATUS_FINISHED => 'Ολοκληρώθηκε', + \App\Models\ExamUser::STATUS_AVOIDED => 'Αποφυγή', + \App\Models\ExamUser::STATUS_NORMAL => 'Κανονικό', + ], + 'end_can_not_before_begin' => "Ώρα λήξης: :end δεν μπορεί να είναι πριν από την ώρα έναρξης: :begin", + 'status_not_allow_update_end' => 'Η τρέχουσα κατάσταση δεν::status_text, δεν μπορεί να αλλάξει την ώρα λήξης', +]; diff --git a/resources/lang/el/exam.php b/resources/lang/el/exam.php new file mode 100644 index 00000000..c0a3e7bf --- /dev/null +++ b/resources/lang/el/exam.php @@ -0,0 +1,72 @@ + 'Εξετάσεις', + 'name' => 'Όνομα εξέτασης', + 'index' => 'Δείκτης εξετάσεων', + 'time_range' => 'Χρόνος εξέτασης', + 'index_text_' . \App\Models\Exam::INDEX_UPLOADED => 'Αύξηση ανεβάσματος', + 'index_text_' . \App\Models\Exam::INDEX_SEED_TIME_AVERAGE => 'Μέσος χρόνος σπόρου', + 'index_text_' . \App\Models\Exam::INDEX_DOWNLOADED => 'Αύξηση λήψης', + 'index_text_' . \App\Models\Exam::INDEX_SEED_BONUS => 'Προσφορά μπόνους', + 'index_text_' . \App\Models\Exam::INDEX_SEED_POINTS => 'Αύξηση σημείων σπόρου', + 'index_text_' . \App\Models\Exam::INDEX_UPLOAD_TORRENT_COUNT => 'Ανεβάστε προσαύξηση torrent', + 'filters' => [ + \App\Models\Exam::FILTER_USER_CLASS => 'Κλάση χρήστη', + \App\Models\Exam::FILTER_USER_REGISTER_TIME_RANGE => 'Εγγραφή χρονικού εύρους', + \App\Models\Exam::FILTER_USER_DONATE => 'Δωρεά', + \App\Models\Exam::FILTER_USER_REGISTER_DAYS_RANGE => 'Εύρος ημερών εγγραφής', + ], + 'require_value' => 'Απαιτείται', + 'current_value' => 'Τρέχων', + 'result' => 'Αποτέλεσμα', + + 'result_pass_for_exam' => 'Πέρασε!', + 'result_pass_for_task' => 'Ολοκληρώθηκε!', + 'result_not_pass_for_exam' => 'Not Passed!', + 'result_not_pass_for_task' => 'Not Completed!', + 'checkout_pass_message_subject_for_exam' => 'Η εξέταση πέρασε!', + 'checkout_pass_message_content_for_exam' => 'Συγχαρητήρια! Έχετε περάσει την εξέταση: :exam_name εγκαίρως (:start ~ :end)', + 'checkout_not_pass_message_subject_for_exam' => 'Οι εξετάσεις δεν περνούν και ο λογαριασμός έχει αποκλειστεί!', + 'checkout_not_pass_message_content_for_exam' => 'Δεν περάσατε τις εξετάσεις: :exam_name εγκαίρως (:start ~ :end), και ο λογαριασμός σας έχει αποκλειστεί!', + + 'checkout_pass_message_subject_for_task' => 'Η εργασία ολοκληρώθηκε!', + 'checkout_pass_message_content_for_task' => 'Συγχαρητήρια! Έχετε ολοκληρώσει την εργασία: :exam_name εγκαίρως (:start ~ :end), πήρε μπόνους: :success_reward_bonus', + 'checkout_not_pass_message_subject_for_task' => 'Η εργασία δεν ολοκληρώθηκε!', + 'checkout_not_pass_message_content_for_task' => 'Δεν ολοκληρώνετε την εργασία: :exam_name εγκαίρως (:begin ~ :end), deduct bonus: :fail_deduct_bonus.', + + 'ban_log_reason' => 'Μη πλήρης εξέταση: :exam_name στο χρόνο (:start ~ :end)', + 'ban_user_modcomment' => 'Λόγω μη πλήρη εξέταση: :exam_name(:start ~ :end), απαγόρευση από το σύστημα.', + 'admin' => [ + 'list' => [ + 'page_title' => 'Λίστα Εξετάσεων' + ] + ], + 'recurring' => 'επαναλαμβανόμενη', + 'recurring_daily' => 'μία φορά την ημέρα', + 'recurring_weekly' => 'μία φορά την εβδομάδα', + 'recurring_monthly' => 'μία φορά το μήνα', + 'recurring_help' => 'Εάν ορίζεται ως περιοδική, ο χρόνος έναρξης της εξέτασης είναι ο χρόνος έναρξης του τρέχοντος κύκλου, και ο χρόνος λήξης είναι ο χρόνος λήξης του τρέχοντος κύκλου, που είναι όλες οι φυσικές ημέρες/εβδομάδες/μήνες όπως αναφέρεται εδώ. Εάν ο τύπος εξετάζεται, στο τέλος κάθε κύκλου, εάν ο χρήστης εξακολουθεί να πληροί τα κριτήρια διαλογής, ο χρήστης θα ανατεθεί αυτόματα μια εξέταση για τον επόμενο κύκλο.' , + + 'time_condition_invalid' => 'Η παράμετρος χρόνου δεν έχει νόημα, υπάρχουν και μόνο ένα από τα τρία στοιχεία: χρόνος έναρξης + χρόνος λήξης / διάρκεια / επαναλαμβανόμενη', + + 'type_exam' => 'Εξετάσεις', + 'type_task' => 'Εργασία', + 'type' => 'Τύπος', + 'type_help' => 'Οι εξετάσεις είναι τακτικές εξετάσεις και η αποτυχία τους θα οδηγήσει στην απαγόρευση του λογαριασμού. Οι εργασίες μπορούν να ρυθμιστούν σε μπόνους ανταμοιβής ή έκπτωση μπόνους ανάλογα με το αν έχουν ολοκληρωθεί ή όχι', + + 'fail_deduct_bonus' => 'Μείωση μπόνους για αποτυχία', + 'success_reward_bonus' => 'Επιπλέον ανταμοιβή για την ολοκλήρωση', + + 'action_claim_task' => 'Claim', + 'confirm_to_claim' => 'Σίγουρα θέλετε να αξιώσετε?' , + 'claim_by_yourself_only' => 'Διεκδικήστε μόνο από τον εαυτό σας!' , + 'not_match_target_user' => 'Δεν είστε χρήστης που να ταιριάζει!' , + 'has_other_on_the_way' => 'Υπάρχει ένα άλλο :type_text σε εξέλιξη!' , + 'claimed_already' => 'Ήδη διεκδικημένο', + 'not_between_begin_end_time' => 'Όχι μεταξύ της ώρας έναρξης & λήξης', + 'reach_max_user_count' => 'Ο αριθμός των ισχυριζόμενων χρηστών έχει φτάσει το μέγιστο όριο', + 'claimed_user_count' => 'Διεκδικείται', + 'max_user_count' => 'Μέγιστη μέτρηση αξίωση χρήστη (0 σημαίνει απεριόριστη)', + 'background_color' => 'Χρώμα φόντου πλαισίου πληροφοριών', +]; diff --git a/resources/lang/el/file.php b/resources/lang/el/file.php new file mode 100644 index 00000000..311fdfd2 --- /dev/null +++ b/resources/lang/el/file.php @@ -0,0 +1,6 @@ + [ + 'page_title' => 'Αρχεία', + ], +]; diff --git a/resources/lang/el/forum.php b/resources/lang/el/forum.php new file mode 100644 index 00000000..ea470c52 --- /dev/null +++ b/resources/lang/el/forum.php @@ -0,0 +1,12 @@ + [ + 'replied_notify_subject' => 'Το θέμα έχει μια νέα απάντηση', + 'replied_notify_body' => 'Το θέμα σας::topic_subject έχει μια νέα απάντηση.', + ], + 'post' => [ + 'edited_notify_subject' => 'Η ανάρτηση απάντησης τροποποιήθηκε', + 'edited_notify_body' => 'Η απάντησή σας στο θέμα: :topic_subject τροποποιήθηκε από: :editor.', + ] +]; diff --git a/resources/lang/el/fun.php b/resources/lang/el/fun.php new file mode 100644 index 00000000..0717d069 --- /dev/null +++ b/resources/lang/el/fun.php @@ -0,0 +1,15 @@ + "Το στοιχείο διασκέδασης αποκλείστηκε", + 'msg_your_fun_item' => "Το διασκεδαστικό σου αντικείμενο '", + 'msg_is_ban_by' => "' έχει απαγορευτεί από ", + 'msg_reason' => ". Αιτία: ", + 'msg_fun_item_reward' => "Ανταμοιβή στοιχείου διασκέδασης", + 'msg_out_of' => " εκτός από ", + 'msg_people_think' => " σκεφτείτε το διασκεδαστικό στοιχείο που δημοσιεύσατε ", + 'msg_is_fun' => " είναι διασκέδαση. Έτσι, εδώ είναι ", + 'msg_bonus_as_reward' => " karma points ως ανταμοιβή.", + 'msg_fun_item_dull' => "Διασκεδαστικό στοιχείο θαμπό", + 'msg_is_dull' => " είναι στην πραγματικότητα θαμπό :thumbsdown: . Έτσι έχει αφαιρεθεί από την αρχική σελίδα. Ίσως πρέπει να βελτιώσετε την αίσθηση του χιούμορ σας.", +]; diff --git a/resources/lang/el/hr.php b/resources/lang/el/hr.php new file mode 100644 index 00000000..b665329c --- /dev/null +++ b/resources/lang/el/hr.php @@ -0,0 +1,28 @@ + 'Επιθεώρηση', + 'status_' . \App\Models\HitAndRun::STATUS_REACHED => 'Έφτασε', + 'status_' . \App\Models\HitAndRun::STATUS_UNREACHED => 'Αδύνατο', + 'status_' . \App\Models\HitAndRun::STATUS_PARDONED => 'Σκελετός', + + 'mode_' . \App\Models\HitAndRun::MODE_DISABLED => 'Απενεργοποιημένο', + 'mode_' . \App\Models\HitAndRun::MODE_MANUAL => 'Χειροκίνητα', + 'mode_' . \App\Models\HitAndRun::MODE_GLOBAL => 'Καθολικό', + + 'reached_by_seed_time_comment' => 'Έως το::now,seed time: :seed_time Ώρα(ες) έφτασε το :seed_time_minimum Ώρα(ες)', + 'reached_by_share_ratio_comment' => "Up to::now \nseed time: :seed_time Hour(s) Unreached :seed_time_minimum Hour(s) \nShare ratio: :share_ratio reached standard::ignore_when_ratio_reach", + 'reached_by_special_user_class_comment' => "Η κλάση χρήστη σας: :user_class_text ή ο χρήστης που δωρήθηκε, αγνοήστε αυτό το H&R", + 'reached_message_subject' => 'H&R(ID: :hit_and_run_id) έφτασε!', + 'reached_message_content' => 'Συγχαρητήρια! Το torrent: :torrent_name(ID: :torrent_id) που κατεβάζετε στο: :completed_at έχει φτάσει την απαίτηση.', + + 'unreached_comment' => "Μέχρι το::now \nχρόνος σπόρου: :seed_time Ώρα(ες) Δεν πληρούται η απαίτηση::seed_time_minimum Ώρα(ες) \nαναλογία μετοχής::share_ratio δεν έφτασε στην απαίτηση::ignore_when_ratio_reach πάρα πολύ", + 'unreached_message_subject' => 'H&R(ID: :hit_and_run_id) δεν επιτεύχθηκε!', + 'unreached_message_content' => 'Το torrent :torrent_name(ID: :torrent_id) που κατεβάσατε στο :completed_at: δεν έφτασε! Παρακαλώ σημειώστε ότι η συσσώρευση ενός ορισμένου αριθμού H&R του λογαριασμού σας θα απενεργοποιηθεί.', + + 'unreached_disable_comment' => 'Η ποσότητα H&R έφτασε το ανώτατο όριο και ο λογαριασμός απενεργοποιήθηκε από το σύστημα', + 'unreached_disable_message_content' => 'Ο λογαριασμός σας έχει απενεργοποιηθεί επειδή έχει επιτευχθεί αθροιστική μέτρηση H&R στο όριο συστήματος: :ban_user_when_counts_reach', + + 'bonus_cancel_comment' => 'δαπάνησε :bonus ακυρώθηκε', + 'remove_confirm_msg' => 'Εξαλείψτε ένα H&R αφαιρώντας :bonus μπόνους, OK?', +]; diff --git a/resources/lang/el/imdb.php b/resources/lang/el/imdb.php new file mode 100644 index 00000000..bed7a877 --- /dev/null +++ b/resources/lang/el/imdb.php @@ -0,0 +1,15 @@ + [ + 'en-US' => 'Αγγλικά (Ηνωμένες Πολιτείες)', + 'fr-CA' => 'French (Canada)', + 'fr-FR' => 'Γαλλικά (Γαλλία)', + 'de-DE' => 'Γερμανικά', + 'hi-IN' => 'Χίντι', + 'it-IT' => 'Ιταλικά', + 'pt-BR' => 'Πορτογαλικά (Βραζιλίας)', + 'es-ES' => 'Ισπανικά (Ισπανία)', + 'es-MX' => 'Ισπανικά (Μεξικό)', + ], +]; diff --git a/resources/lang/el/index.php b/resources/lang/el/index.php new file mode 100644 index 00000000..ca5d8ed5 --- /dev/null +++ b/resources/lang/el/index.php @@ -0,0 +1,5 @@ + 'Μη έγκυρο inviter! Ο κωδικός πρόσκλησης έχει αποκλειστεί!', + 'fields' => [ + 'inviter' => 'Αποστολέας', + 'invitee' => 'Λήψη email', + 'time_invited' => 'Χρόνος αποστολής', + 'valid' => 'Valid', + 'invitee_register_uid' => 'Εγγεγραμμένο UID', + 'invitee_register_email' => 'Εγγεγραμμένο email', + 'invitee_register_username' => 'Όνομα χρήστη', + 'expired_at' => 'το hash έληξε στις', + 'time_invited_begin' => 'Αποστολή χρόνου gte', + 'time_invited_end' => 'Αποστολή ώρας lte', + ], + 'send_deny_reasons' => [ + 'invite_system_closed' => 'Το σύστημα πρόσκλησης είναι κλειστό', + 'no_permission' => 'Απαίτηση :class ή πάνω για αποστολή προσκλήσεων', + 'invite_not_enough' => 'Δεν υπάρχουν αρκετές προσκλήσεις', + ], + 'send_allow_text' => 'Προσκαλέστε κάποιον', + 'pre_register_username' => 'Προ-εγγραφή ονόματος χρήστη', + 'pre_register_username_help' => 'Το όνομα χρήστη και το email δεν θα αλλάξουν όταν ο χρήστης εγγραφεί με αυτόν τον κωδικό πρόσκλησης', + 'require_pre_register_username' => "Το προεγγεγραμμένο όνομα χρήστη δεν μπορεί να είναι κενό", +]; diff --git a/resources/lang/el/label.php b/resources/lang/el/label.php new file mode 100644 index 00000000..b15de693 --- /dev/null +++ b/resources/lang/el/label.php @@ -0,0 +1,381 @@ + 'Όνομα', + 'email' => 'E-mail', + 'image' => 'Εικόνα', + 'expire_at' => 'Λήγει στις', + 'username' => 'Χρήστης', + 'status' => 'Κατάσταση', + 'enabled' => 'Ενεργοποιημένο', + 'disabled' => 'Απενεργοποιημένο', + 'created_at' => 'Δημιουργήθηκε στις', + 'updated_at' => 'Ενημερώθηκε στις', + 'begin' => 'Ώρα έναρξης', + 'end' => 'Ώρα λήξης', + 'uploaded' => 'Ανέβηκε', + 'downloaded' => 'Λήφθηκε', + 'ratio' => 'Κοινοποίηση αναλογίας', + 'seed_time_required' => 'Απαιτείται χρόνος σπόρου', + 'inspect_time_left' => 'Χρόνος επιθεώρησης που απομένει', + 'added' => 'Προσθήκη χρόνου', + 'last_access' => 'Τελευταία ώρα πρόσβασης', + 'priority' => 'Προτεραιότητα', + 'priority_help' => 'Όσο υψηλότερη είναι η τιμή, τόσο υψηλότερη είναι η κατάταξη', + 'comment' => 'Σχόλιο', + 'duration' => 'Διάρκεια', + 'description' => 'Περιγραφή', + 'price' => 'Τιμή', + 'deadline' => 'Προθεσμία', + 'permanent' => 'Μόνιμο', + 'operator' => 'Χειριστής', + 'action' => 'Ενέργεια', + 'submit' => 'Υποβολή', + 'cancel' => 'Ακύρωση', + 'reset' => 'Reset', + 'anonymous' => 'Ανώνυμος', + 'infinite' => 'Inf.', + 'save' => 'Αποθήκευση', + 'country' => 'Χώρα', + 'city' => 'Πόλη', + 'client' => 'Πελάτης', + 'reason' => 'Λόγος', + 'change' => 'Αλλαγή', + 'create' => 'Δημιουργία', + 'created_at_begin' => 'Δημιουργήθηκε κατά την έναρξη', + 'created_at_end' => 'Δημιουργήθηκε στο τέλος', + 'text_quote' => 'Παράθεση', + 'text_code' => "ΚΩΔΙΚΟΣ", + 'setting' => [ + 'nav_text' => 'Ρύθμιση', + 'backup' => [ + 'tab_header' => 'Αντίγραφα Ασφαλείας', + 'enabled' => 'Ενεργοποιημένο', + 'enabled_help' => 'Ενεργοποίηση αντιγράφων ασφαλείας ή όχι', + 'frequency' => 'Συχνότητα', + 'frequency_help' => 'Συχνότητα αντιγράφων ασφαλείας', + 'hour' => 'Ώρα', + 'hour_help' => 'Δημιουργία αντιγράφων ασφαλείας αυτή την ώρα', + 'minute' => 'Λεπτό', + 'minute_help' => "Το αντίγραφο ασφαλείας εκτελείται τη στιγμή της προηγούμενης ώρας. Αν η συχνότητα πατηθεί 'ώρα', αυτή η τιμή θα αγνοηθεί", + 'google_drive_client_id' => 'Αναγνωριστικό πελάτη Google Drive', + 'google_drive_client_secret' => 'Μυστικό πελάτη Google Drive', + 'google_drive_refresh_token' => 'Ανανέωση διακριτικού Google Drive', + 'google_drive_folder_id' => 'Αναγνωριστικό φακέλου Google Drive', + 'via_ftp' => 'Αντίγραφο ασφαλείας μέσω FTP', + 'via_ftp_help' => 'Αν θα αποθηκευτεί μέσω FTP. Αν ναι, προσθέστε τις πληροφορίες ρύθμισης παραμέτρων στο αρχείο .env, ανατρέξτε στο Laravel doc', + 'via_sftp' => 'Αντίγραφο ασφαλείας μέσω SFTP', + 'via_sftp_help' => 'Αν θα αποθηκευτεί μέσω FTP. Αν ναι, προσθέστε τις πληροφορίες ρύθμισης παραμέτρων στο αρχείο .env, ανατρέξτε στο Laravel doc', + ], + 'hr' => [ + 'tab_header' => 'Ε&Α', + 'mode' => 'Λειτουργία', + 'inspect_time' => 'Ώρα επιθεώρησης', + 'inspect_time_help' => 'Η διάρκεια της εξέτασης υπολογίζεται από την ολοκλήρωση της λήψης, σε ώρες', + 'seed_time_minimum' => 'Ελάχιστος χρόνος σποράς', + 'seed_time_minimum_help' => 'Το συντομότερο χρονικό διάστημα για να κάνετε τους σπόρους για να πληρούν τα πρότυπα, σε ώρες, πρέπει να είναι μικρότερο από το μήκος της αποστολής', + 'ignore_when_ratio_reach' => 'Ποσοστό Κοινής Χρήσης Επιτευγμάτων', + 'ignore_when_ratio_reach_help' => 'Το ελάχιστο ποσοστό επιμερισμού για την τήρηση των προτύπων', + 'ban_user_when_counts_reach' => 'Όριο μετρήσεων H&R', + 'ban_user_when_counts_reach_help' => 'Ο αριθμός H&R φτάνει αυτή την τιμή και ο λογαριασμός θα απενεργοποιηθεί', + 'include_rate' => 'Απαιτείται ρυθμός ολοκλήρωσης', + 'include_rate_help' => 'Μέτρηση H&R μόνο όταν ο ρυθμός ολοκλήρωσης λήψης (δεκαδικός μεταξύ 0 ~ 1) φτάσει σε αυτήν την τιμή. Προεπιλογή: 1' + ], + 'seed_box' => [ + 'tab_header' => 'Πλαίσιο Σπόρου', + 'enabled_help' => 'Ενεργοποίηση κανόνων SeedBox ή όχι', + 'no_promotion' => 'Χωρίς προώθηση', + 'no_promotion_help' => 'Καμία προσφορά, μεταφορτώθηκε/κατεβασμένο υπολογίζεται σύμφωνα με την πραγματική τιμή', + 'max_uploaded' => 'Πολλαπλασιαστής μέγιστου όγκου μεταφόρτωσης', + 'max_uploaded_help' => 'Ο συνολικός όγκος μεταφόρτωσης είναι το πολύ πολλαπλάσιος του τόμου. Ρυθμίστε στο 0 Χωρίς περιορισμό', + 'not_seed_box_max_speed' => 'Μέγιστη ταχύτητα μεταφόρτωσης του SeedBox', + 'not_seed_box_max_speed_help' => 'Μονάδα: Mbps, αν γίνει υπέρβαση αυτής της τιμής και η εγγραφή του SeedBox δεν μπορεί να ταιριαστεί, το δικαίωμα λήψης είναι απενεργοποιημένο', + 'max_uploaded_duration' => 'Μέγιστο εύρος χρόνου πολλαπλασιαστή έντασης ανεβάσματος', + 'max_uploaded_duration_help' => 'Μονάδα: ώρες. Ο πολλαπλασιαστής της μέγιστης έντασης ανεβάσματος αρχίζει να ισχύει μέσα σε αυτό το χρονικό διάστημα μετά τη δημοσίευση του torrent και δεν παράγει αποτελέσματα πέρα από αυτό το εύρος. Μια ρύθμιση 0 είναι πάντα σε ισχύ', + ], + 'meilisearch' => [ + 'tab_header' => 'Meilisearch', + 'enabled' => 'Αν θα ενεργοποιηθεί η Meilisearch', + 'enabled_help' => 'Παρακαλώ εγκαταστήστε και ρυθμίστε τα και εισαγάγετε τα δεδομένα πριν τα ενεργοποιήσετε, αλλιώς δεν υπάρχουν δεδομένα για την αναζήτηση torrent.', + 'search_description' => 'Meilisearch αν θα αναζητήσετε περιγραφές', + 'search_description_help' => "Προεπιλογή: 'Όχι'. Αν 'Ναι', θα επιστραφεί περιγραφή που περιέχει λέξεις-κλειδιά και ο αριθμός των επιτυχιών μπορεί να είναι υψηλότερος.", + 'default_search_mode' => 'Προεπιλεγμένη λειτουργία αναζήτησης', + 'default_search_mode_help' => "Προεπιλογή: 'Ακριβές'. 'Και' θα διαχωριστεί, το 'Ακριβές' δεν είναι χωρισμένο", + ], + 'system' => [ + 'tab_header' => 'Σύστημα', + 'change_username_card_allow_characters_outside_the_alphabets' => 'Μήπως η κάρτα αλλαγής ονόματος επιτρέπει χαρακτήρες άλλους από τα αγγλικά γράμματα', + 'change_username_min_interval_in_days' => 'Οι ελάχιστες ημέρες διαστήματος του Αλλαγή ονόματος χρήστη', + 'maximum_number_of_medals_can_be_worn' => 'Μέγιστος αριθμός μεταλλίων που μπορούν να φορεθούν', + 'cookie_valid_days' => 'Έγκυρες ημέρες Cookie', + 'maximum_upload_speed' => 'Μέγιστη ταχύτητα αποστολής', + 'maximum_upload_speed_help' => 'Αυτή η τιμή επηρεάζει την μαζική ανίχνευση και είναι η μέγιστη ταχύτητα μεταφόρτωσης για ένα συντηρητικό επίπεδο ανίχνευσης. Πραγματικό Όριο Ταχύτητας = Μέγιστη Ταχύτητα Αποστολής / Επίπεδο Ανίχνευσης, από Συντηρητικό σε Ύποπτο είναι 1 έως 4. Εάν το μέγιστο όριο ταχύτητας είναι 1000, και το επίπεδο ανίχνευσης είναι συντηρητικό, το πραγματικό όριο ταχύτητας είναι 1000/1 = 1000, και το Επίπεδο Ανίχνευσης είναι Ύποπτο, το Πραγματικό Όριο Ταχύτητας είναι 1000/4 = 250. Μια ενιαία ταχύτητα αποστολής που υπερβαίνει το Πραγματικό Όριο Ταχύτητας θα απενεργοποιήσει αμέσως το λογαριασμό. Η μονάδα εδώ είναι Mbps, π.χ.: 100 Mbps = 12,5 MB/s.', + 'is_invite_pre_email_and_username' => 'Πρόσκληση για προ-κράτηση ενός email και ενός ονόματος χρήστη', + 'is_invite_pre_email_and_username_help' => "Προεπιλογή: 'Όχι'. Εάν είναι προ-δεσμευμένο, το email και το όνομα χρήστη δεν μπορούν να αλλάξουν όταν ο χρήστης εγγραφεί.", + 'access_admin_class_min' => 'Ελάχιστη κλάση για σύνδεση στο σύστημα υποστήριξης διαχειριστή', + 'access_admin_class_min_help' => 'Προεπιλογή: ο διαχειριστής, οι χρήστες με κλάση χρήστη μεγαλύτερη ή ίση με την καθορισμένη τιμή μπορούν να συνδεθούν στο σύστημα υποστήριξης διαχειριστή', + 'alarm_email_receiver' => 'Δέκτης ειδοποίησης', + 'alarm_email_receiver_help' => "Συμπληρώστε το UID του χρήστη, διαχωρισμένο με κενό, και το μήνυμα ειδοποίησης θα σταλεί στην αντίστοιχη διεύθυνση ηλεκτρονικού ταχυδρομείου του χρήστη. @ info: whatsthis Αν δεν το συμπληρώσετε, θα γραφτεί στο αρχείο καταγραφής χρόνου εκτέλεσης και το επίπεδο καταγραφής θα είναι σφάλμα", + ], + 'image_hosting' => [ + 'driver' => 'Τοποθεσία αποθήκευσης', + 'driver_help' => 'Αν επιλέξετε τοπικό, η προεπιλογή είναι να το αποθηκεύσετε τοπικά στο διακομιστή όπου βρίσκεται η ιστοσελίδα, αλλιώς ανεβάστε το στον αντίστοιχο διακομιστή εικόνας', + 'tab_header' => 'Φιλοξενία εικόνας', + 'upload_api_endpoint' => 'Μεταφόρτωση διεύθυνσης διασύνδεσης', + 'base_url' => 'Πρόθεμα URL εικόνας', + 'upload_token' => 'Διακριτικό αποστολής', + ] + ], + 'user' => [ + 'label' => 'Χρήστης', + 'uploaded' => 'Ανέβηκε', + 'downloaded' => 'Λήφθηκε', + 'invites' => 'Προσκληθέντα', + 'seedbonus' => 'Μπόνους', + 'attendance_card' => 'Συμμετοχή σε ard', + 'class' => 'Κλάση', + 'status' => 'Κατάσταση', + 'enabled' => 'Ενεργοποιημένο', + 'username' => 'Όνομα Χρήστη', + 'invite_by' => 'Προσφέρεται', + 'two_step_authentication' => 'Ταυτοποίηση δύο βημάτων', + 'seed_points' => 'Σημεία σποράς', + 'downloadpos' => 'Λήψη δικαιωμάτων', + 'parked' => 'Παραγεμισμένα', + 'offer_allowed_count' => 'Προσφορά επιτρέπεται καταμέτρηση', + 'tmp_invites' => 'Προσωρινή πρόσκληση', + ], + 'medal' => [ + 'label' => 'Μετάλλιο', + 'image_large' => 'Μεγάλο μέγεθος εικόνας', + 'image_small' => 'Μικρή εικόνα', + 'get_type' => 'Λήψη τύπου', + 'duration' => 'Διάρκεια', + 'duration_help' => 'Μονάδα: ημέρες. Αν μείνει κενό, ο χρήστης έχει μόνιμη κατοχή', + ], + 'user_medal' => [ + 'label' => 'Μετάλλιο χρήστη', + ], + 'exam' => [ + 'label' => 'Εξέταση & Εργασία', + 'is_done' => 'Ολοκληρώθηκε', + 'is_discovered' => 'Ανακαλύφθηκε', + 'register_time_range' => [ + 'begin' => 'Έναρξη ώρας εγγραφής', + 'end' => 'Εγγραφή λήξης χρόνου', + ], + 'register_days_range' => [ + 'begin' => 'Ελάχιστες ημέρες εγγραφής', + 'end' => 'Μέγιστες ημέρες εγγραφής', + ], + 'donated' => 'Δωρεά', + 'index_formatted' => 'Εξετάστε ευρετήρια', + 'filter_formatted' => 'Target users', + 'section_base_info' => 'Βασικές πληροφορίες', + 'priority_help' => 'Όσο υψηλότερη είναι η τιμή, τόσο υψηλότερη είναι η προτεραιότητα, και όταν πολλαπλές εξετάσεις ταιριάζουν με τον ίδιο χρήστη, αυτή με την υψηλότερη προτεραιότητα ανατίθεται.', + 'section_time' => 'Ώρα', + 'duration_help' => 'Μονάδα: ημέρες. Όταν αναθέτετε στον χρήστη, να αρχίσει και να τελειώσει χρησιμοποιούνται αν έχουν καθοριστεί. Αλλιώς ώρα έναρξης είναι η ώρα κατά την εκχώρηση, και ο χρόνος λήξης είναι η ώρα κατά την ανάθεση συν τη διάρκεια.', + 'section_target_user' => 'Χρήστης προορισμού', + 'index_required_value' => 'Απαιτείται τιμή', + 'index_required_label' => 'Δείκτης', + 'index_placeholder' => 'Ανεβάστε/Λήψη προσαύξησης σε GB και μέσο όρο χρόνου σπόρου στην ώρα', + 'index_current_value' => 'Τρέχουσα τιμή', + 'index_result' => 'Αποτέλεσμα', + ], + 'exam_user' => [ + 'label' => 'Εξετάσεις χρήστη', + 'is_done' => 'Ολοκληρώθηκε', + ], + 'torrent' => [ + 'label' => 'Torrent', + 'owner' => 'Ιδιοκτήτης', + 'size' => 'Μέγεθος', + 'ttl' => 'TTL', + 'seeders' => 'Σπόροι', + 'leechers' => 'Leechers', + 'times_completed' => 'Complete', + 'category' => 'Κατηγορία', + 'approval_status' => 'Κατάσταση έγκρισης', + 'pos_state' => 'Κατάσταση POS', + 'sp_state' => 'Προώθηση', + 'visible' => 'Ενεργό', + 'source' => 'Πηγή', + 'codec' => 'Κωδικοποιητής', + 'audiocodec' => 'Κωδικοποιητής ήχου', + 'medium' => 'Μεσαίο', + 'team' => 'Ομάδα', + 'processing' => 'Επεξεργασία', + 'standard' => 'Τυπικό', + 'picktype' => 'Προτείνετε', + 'promotion_time_type' => 'Χρόνος τύπου προώθησης', + 'hr' => 'Ε&Α', + 'added_begin' => 'Προστέθηκε μεγαλύτερο από', + 'added_end' => 'Προστέθηκε λιγότερο από', + 'size_begin' => 'Μέγεθος μεγαλύτερο από', + 'size_end' => 'Μέγεθος μικρότερο από', + 'price' => 'Τιμή', + 'price_help' => 'Όταν ένας χρήστης κατεβάσει ένα torrent, ο αποστολέας θα λάβει έσοδα, λιγότερο τον αντίστοιχο φορολογικό συντελεστή, τον τρέχοντα φορολογικό συντελεστή: :tax_factor', + 'max_price_help' => 'Μέγιστο::max_Τιμή', + ], + 'hit_and_run' => [ + 'label' => 'Χρήστης H&R', + ], + 'tag' => [ + 'label' => 'Ετικέτα', + 'color' => 'Χρώμα φόντου', + 'font_color' => 'Font color', + 'font_size' => 'Font size', + 'margin' => 'Περιθώριο', + 'padding' => 'Padding', + 'border_radius' => 'Ακτίνα περιγράμματος', + 'torrents_count' => 'Αριθμός torrents', + 'torrents_sum_size' => 'Μέγεθος Torrents', + ], + 'agent_allow' => [ + 'label' => 'Επιτρέπονται οι πράκτορες', + 'family' => 'Οικογένεια', + 'start_name' => 'Όνομα έναρξης', + 'peer_id_start' => 'Έναρξη ταυτότητας ομότιμου', + 'peer_id_pattern' => 'Μοτίβο ID ομότιμου', + 'peer_id_matchtype' => 'Τύπος αντιστοίχισης Peer ID', + 'peer_id_match_num' => 'Αναγνωριστικό ομοτίμου num', + 'agent_start' => 'Εκκίνηση παράγοντα', + 'agent_pattern' => 'Μοτίβο παράγοντα', + 'agent_matchtype' => 'Τύπος αντιστοίχισης παράγοντα', + 'agent_match_num' => 'Αντιστοίχηση παράγοντα num', + 'exception' => 'Εξαίρεση', + 'allowhttps' => 'Να επιτρέπονται https', + ], + 'agent_deny' => [ + 'label' => 'Άρνηση πράκτορα', + 'peer_id' => 'Ξεκινά το Peer ID', + 'agent' => 'Παράγοντας', + ], + 'claim' => [ + 'label' => 'Ισχυρισμός χρήστη', + 'last_settle_at' => 'Τελευταία διευθέτηση στις', + 'seed_time_this_month' => 'St. αυτό το μήνα', + 'uploaded_this_month' => 'Up. αυτό το μήνα', + 'is_reached_this_month' => 'Έφτασε', + ], + 'torrent_state' => [ + 'label' => 'Παγκόσμια προώθηση', + 'global_sp_state' => 'Παγκόσμια κατάσταση προώθησης', + ], + 'role' => [ + 'class' => 'Σχετίζεται κλάση χρήστη', + ], + 'seed_box_record' => [ + 'label' => 'Εγγραφές SeedBox', + 'type' => 'Προσθήκη τύπου', + 'operator' => 'Χειριστής', + 'bandwidth' => 'Εύρος Ζώνης (Mbps)', + 'ip' => 'IP(Κύκλωμα)', + 'ip_begin' => 'Έναρξη IP', + 'ip_end' => 'Τέλος IP', + 'ip_help' => 'Συμπληρώστε το ASN/start IP + end IP/IP (Block), μόνο ένα από τα τρία', + 'status' => 'Κατάσταση', + 'is_allowed' => 'Είναι επιτρεπτή λίστα', + 'is_allowed_help' => 'Οι διευθύνσεις IP στη λίστα επιτρεπόμενων δεν επηρεάζονται από τον κανόνα SeedBox', + 'asn' => 'ASN', + ], + 'menu' => [ + 'label' => 'Προσαρμοσμένο μενού', + 'enable_help' => 'Αν θα ενεργοποιηθεί το προσαρμοσμένο μενού', + ], + 'menu_item' => [ + 'label' => 'Στοιχεία μενού', + 'url' => 'Σύνδεσμος', + 'text' => 'Κείμενο', + 'target' => 'Τύπος ανοίγματος', + 'style' => 'Στυλ', + 'parent_id' => 'Γονικός', + 'min_class' => 'Ελάχιστη ορατή κλάση', + ], + 'user_meta' => [ + 'meta_keys' => [ + \App\Models\UserMeta::META_KEY_CHANGE_USERNAME => 'Αλλαγή Ονόματος Κάρτας', + \App\Models\UserMeta::META_KEY_PERSONALIZED_USERNAME => 'Αναγνωριστικό Ουράνιο Τόξο', + ], + ], + 'search_box' => [ + 'label' => 'Πλαίσιο αναζήτησης', + 'name' => 'Όνομα SearchBox', + 'name_help' => 'Επιτρεπόμενοι χαρακτήρες: [a-z] (σε χαμηλότερη περίπτωση), [0-9], [_./].', + 'section_name' => 'Όνομα ενότητας', + 'section_name_help' => 'Αν οριστεί, εμφανίζεται στο μενού', + 'is_default' => 'Προεπιλογή ή όχι', + 'showsubcat' => 'Εμφάνιση υποκατηγορίας', + 'taxonomies' => 'Ταξινόμηση', + 'taxonomy_display_text' => 'Εμφάνιση κειμένου', + 'torrent_field' => 'Torrents πεδίο πίνακα', + 'catsperrow' => 'Αντικείμενα ανά γραμμή', + 'catsperrow_help' => "Ορίστε πόσα αντικείμενα θα εμφανίζονται σε μια γραμμή στο πλαίσιο αναζήτησης, π.χ. '8'.", + 'catpadding' => "Γέμισμα μεταξύ αντικειμένων", + 'catpadding_help' => "Σε εικονοστοιχεία. Ο ορίζων χώρος γεμίσματος μεταξύ αντικειμένων στο πλαίσιο αναζήτησης, π.χ. '3'.", + 'custom_fields' => 'Ενεργοποίηση προσαρμοσμένου πεδίου ', + 'custom_fields_display_name' => 'Όνομα εμφάνισης προσαρμοσμένου πεδίου', + 'custom_fields_display' => 'Εμφάνιση προσαρμοσμένων πεδίων', + 'custom_fields_display_help' => "Χρησιμοποιήστε 'συγκεκριμένη ετικέτα' για να αναπαραστήσετε την ετικέτα και την τιμή του προσαρμοσμένου πεδίου, όπως το όνομα ενός προσαρμοσμένου πεδίου είναι 'καλλιτέχνης', +τότε είναι ετικέτα:<%artist.label%>, είναι τιμή:<%artist.value%>", + 'category' => 'Κατηγορία', + 'torrent_field_duplicate' => 'Πεδίο πίνακα torrent: :field δεν μπορεί να επαναχρησιμοποιηθεί!', + 'other' => 'Άλλο', + 'taxonomy' => [ + 'name' => 'Όνομα', + 'sort_index' => 'Ταξινόμηση', + 'sort_index_help' => "Αξιοσημείωτα, δηλαδή το '0' έρχεται πρώτο.", + 'class_name' => 'χαρακτηριστικό κλάσης', + 'class_name_help' => "Το όνομα του αρχείου εικόνας. Επιτρεπόμενοι χαρακτήρες: [a-z] (σε χαμηλότερη περίπτωση), [0-9], [_./].", + 'image' => 'Εικόνα', + 'image_help' => 'Το όνομα του αρχείου εικόνας. Επιτρεπόμενοι χαρακτήρες: [a-z] (σε χαμηλότερη περίπτωση), [0-9], [_./].', + 'icon_id' => 'Πακέτο εικονιδίων κατηγοριών', + 'mode' => 'Πλαίσιο Αναζήτησης', + 'mode_help' => 'Αφήστε κενό για να δείξει ότι ισχύει για όλα τα SearchBox', + ], + ], + 'icon' => [ + 'label' => 'Εικονίδιο κατηγορίας', + 'folder' => 'Φάκελος Πακέτου Εικονιδίων', + 'folder_help' => "Το όνομα φακέλου του πακέτου εικονιδίων. Επιτρεπόμενοι χαρακτήρες: [a-z] (σε χαμηλότερη περίπτωση), [0-9], [_. ].ΠΡΕΠΕΙ να προσθέσετε μια τελική κάθετο (/) στο τέλος, π.χ. 'mycaticon/'", + 'cssfile' => 'CSS αρχείο', + 'cssfile_help' => "Αρχείο CSS για αυτό το πακέτο εικονιδίων. Εισάγετε την πλήρη διαδρομή, π.χ. 'styles/scenetorrents.css'. Αφήστε το κενό αν δεν υπάρχει. +Επιτρεπόμενοι χαρακτήρες: [a-z] (σε χαμηλότερη περίπτωση), [0-9], [_./].", + 'multilang' => 'Πολλαπλών lang.', + 'multilang_help' => "Αν θα χρησιμοποιηθούν διαφορετικά εικονίδια κατηγοριών για διαφορετικές γλώσσες. Αν επιλέξετε 'ναι', βάλτε πολλά πακέτα εικονιδίων σε πολλούς φακέλους με το όνομα 'en', 'chs', κλπ.", + 'secondicon' => 'Δεύτερο Εικονίδιο', + 'secondicon_help' => "Αν θα χρησιμοποιηθούν δεύτερα εικονίδια για περισσότερες πληροφορίες. Αν επιλέξετε 'ναι', βάλτε τα δεύτερα εικονίδια σε ένα φάκελο με το όνομα 'πρόσθετο' μαζί με τα κανονικά εικονίδια.", + 'designer' => 'Σχεδιαστής', + 'designer_help' => 'Το άτομο που σχεδίασε το πακέτο εικονιδίων.', + 'comment' => 'Σχόλιο', + 'comment_help' => ' Πληροφορίες σχετικά με το πακέτο εικονιδίων.', + 'desc' => "Πρέπει να βάλετε τα εικονίδια στον σωστό κατάλογο για να λειτουργήσουν αυτές οι ρυθμίσεις. Βάλτε τα κανονικά εικονίδια στο 'pic/category/searchbox_name/icon_pack_folder[language_short_name/]' και το δεύτερο εικονίδιο στο 'pic/category/searchbox_name/icon_pack_folder[language_short_name/]additional/'. +Μην το πάρετε? Δείτε αν τα ακόλουθα παραδείγματα θα μπορούσαν να βοηθήσουν: +Όταν + searchbox_name='nhd' + icon_pack_folder='scenetorrents/' + multi-lang='yes' + second_icon='no' +θα πρέπει να βάλετε ένα αγγλικό κανονικό αρχείο εικονιδίων για ταινίες (π. χ. . 'movies.png') στο 'pic/category/nhd/scenetorrents/el/' . +Όταν + searchbox_name='chd' + icon_pack_folder='nanosofts/' + multi-lang='no' + second_icon='yes' +θα πρέπει να βάλετε ένα κανονικό αρχείο εικονιδίων για ταινίες (π. χ. . ταινίες. ng) στο 'pic/category/chd/nanosofts/' και ένα επιπλέον αρχείο εικονιδίων (π.χ. 'bdh264.png') στο 'pic/category/chd/nanosofts/additional/'. + +Σημείωση: Στο 1. , το τμήμα 'searchbox_name' μπορεί να παραλειφθεί, δηλαδή ο κανόνας είναι 'pic/category/icon_pack_folder[language_short_name/].' +", + ], + 'second_icon' => [ + 'label' => 'Δεύτερο εικονίδιο', + 'name' => 'Όνομα', + 'name_help' => "Μην χρησιμοποιείτε μακρύ όνομα. Προτείνετε λιγότερο από 10 γράμματα.", + 'image' => "Εικόνα", + 'image_help' => "Το όνομα του αρχείου εικόνας. Επιτρεπόμενοι χαρακτήρες: [a-z] (σε χαμηλότερη περίπτωση), [0-9], [_./].", + 'class_name' => 'χαρακτηριστικό κλάσης', + 'class_name_help' => "Η τιμή του χαρακτηριστικού 'class' της εικόνας. Αφήστε την κενή αν δεν υπάρχει. Επιτρεπόμενοι χαρακτήρες: [a-z] (σε χαμηλότερη περίπτωση), [0-9], [_], και το πρώτο γράμμα πρέπει να είναι σε [a-z].", + 'select_section' => 'Επιλογές', + 'select_section_help' => "Αν δεν έχει οριστεί μια επιλογή, όλες οι επιλογές από την επιλογή επιτρέπονται για τον κανόνα. Πρέπει να οριστεί τουλάχιστον μία επιλογή.", + ], +]; diff --git a/resources/lang/el/medal.php b/resources/lang/el/medal.php new file mode 100644 index 00000000..aafd3a76 --- /dev/null +++ b/resources/lang/el/medal.php @@ -0,0 +1,51 @@ + 'Μετάλλιο', + 'action_wearing' => 'Φοράτε', + 'admin' => [ + 'list' => [ + 'page_title' => 'Λίστα μεταλλίων' + ] + ], + 'get_types' => [ + \App\Models\Medal::GET_TYPE_EXCHANGE => 'Χρηματιστήριο', + \App\Models\Medal::GET_TYPE_GRANT => 'Παραχώρηση', + ], + 'fields' => [ + 'get_type' => 'Λήψη τύπου', + 'description' => 'Περιγραφή', + 'image_large' => 'Εικόνα', + 'price' => 'Τιμή', + 'duration' => 'Ισχύει μετά την αγορά (ημέρες)', + 'sale_begin_time' => 'Ώρα έναρξης πώλησης', + 'sale_begin_time_help' => 'Ο χρήστης μπορεί να αγοράσει μετά από αυτό το διάστημα, αφήστε κενό χωρίς περιορισμό', + 'sale_end_time' => 'Χρόνος λήξης πώλησης', + 'sale_end_time_help' => 'Ο χρήστης μπορεί να αγοράσει πριν από αυτή τη φορά, αφήστε κενό χωρίς περιορισμό', + 'inventory' => 'Απόθεμα', + 'inventory_help' => 'Αφήστε κενό χωρίς περιορισμό', + 'sale_begin_end_time' => 'Διαθέσιμο για πώληση', + 'users_count' => 'Πλήθος πουλιών', + 'bonus_addition_factor' => 'Συντελεστής προσθήκης μπόνους', + 'bonus_addition' => 'Επιπλέον μπόνους', + 'bonus_addition_factor_help' => 'Για παράδειγμα: 0.01 σημαίνει 1% addition, leave blank no addition', + 'gift_fee_factor' => 'Συντελεστής τέλους δώρων', + 'gift_fee' => 'Χρέωση δώρου', + 'gift_fee_factor_help' => 'Το πρόσθετο τέλος που χρεώνεται για δώρα σε άλλους χρήστες ισούται με την τιμή πολλαπλασιαζόμενη με αυτόν τον συντελεστή', + ], + 'buy_already' => 'Ήδη αγοράστε', + 'buy_btn' => 'Αγορά', + 'confirm_to_buy' => 'Σίγουρα θέλετε να αγοράσετε?', + 'require_more_bonus' => 'Απαιτείται περισσότερο μπόνους', + 'grant_only' => 'Μόνο χορήγηση', + 'before_sale_begin_time' => 'Πριν από την πώληση ώρα έναρξης', + 'after_sale_end_time' => 'Μετά την πώληση ώρα λήξης', + 'inventory_empty' => 'Κενό απόθεμα', + 'gift_btn' => 'Δώρο', + 'confirm_to_gift' => 'Επιβεβαίωση δώρου στο χρήστη ', + 'max_allow_wearing' => 'Ένα μέγιστο :count μετάλλια μπορεί να φορεθεί ταυτόχρονα', + 'wearing_status_text' => [ + 0 => 'Φορώντας', + 1 => 'Δεν φοράει' + ], +]; diff --git a/resources/lang/el/message.php b/resources/lang/el/message.php new file mode 100644 index 00000000..8b7b3550 --- /dev/null +++ b/resources/lang/el/message.php @@ -0,0 +1,68 @@ + [ + 'page_title' => 'Λίστα μηνυμάτων', + ], + 'show' => [ + 'page_title' => 'Λεπτομέρειες μηνύματος', + ], + 'field_value_change_message_body' => ':field is changed from :old to :new by :operator. Reason::reason.', + 'field_value_change_message_subject' => ':field άλλαξε', + + 'download_disable' => [ + 'subject' => 'Ακυρώθηκε η άδεια λήψης', + 'body' => 'Τα δικαιώματα λήψης σας έχουν ανακληθεί, πιθανώς λόγω χαμηλών ποσοστών κοινής χρήσης ή δυσσυμπεριφοράς. Από: :operator', + ], + 'download_disable_upload_over_speed' => [ + 'subject' => 'Ακυρώθηκε η άδεια λήψης', + 'body' => 'Η άδεια λήψης έχει ακυρωθεί λόγω υπερβολικής ταχύτητας μεταφόρτωσης, παρακαλώ κάντε αρχείο, αν είστε χρήστης του πλαισίου σπόρου.' , + ], + 'download_disable_announce_paid_torrent_too_many_times' => [ + 'subject' => 'Ακυρώθηκε η άδεια λήψης', + 'body' => 'Η άδεια λήψης έχει ακυρωθεί λόγω ανακοίνωσης σε πληρωμένο torrent πάρα πολλές φορές, βεβαιωθείτε ότι έχετε αρκετά μπόνους.' , + ], + 'download_enable' => [ + 'subject' => 'Έγινε επαναφορά δικαιωμάτων λήψης', + 'body' => 'Τα προνόμια λήψης σας αποκαταστάθηκαν, μπορείτε τώρα να κατεβάσετε torrents. Από: :operator', + ], + 'temporary_invite_change' => [ + 'subject' => 'Προσωρινή πρόσκληση :change_type', + 'body' => 'Ο προσωρινός αριθμός πρόσκλησής σας είχε :change_type :count από :operator, λόγος: λόγος.', + ], + 'receive_medal' => [ + 'subject' => 'Λάβετε δώρο μετάλλιο', + 'body' => "Ο χρήστης :username αγόρασε ένα μετάλλιο [:medal_name] με κόστος :cost_bonus και σου το έδωσε. Το μετάλλιο αξίζει :price, η αμοιβή είναι :gift_fee_total(παράγοντας: :gift_fee_factor), θα έχετε αυτό το μετάλλιο μέχρι: :expire_at, και ο συντελεστής προσθήκης μπόνους του μεταλλίου είναι: :bonus_addition_factor.", + ], + 'login_notify' => [ + 'subject' => ':site_name Συναγερμός σύνδεσης Offsite', + 'body' => << +Τελευταία σύνδεση time:::last_login_time, IP:last_ip, τοποθεσία::last_location.
    +Αν δεν είναι δική σας λειτουργία, ο κωδικός πρόσβασης του λογαριασμού μπορεί να έχει διαρρεύσει, παρακαλώ αλλάξτε τον εγκαίρως! +BODY, + ], + 'buy_torrent_success' => [ + 'subject' => 'Επιτυχής υπενθύμιση αγοράς torrent', + 'body' => 'Περάσατε :bonus για να αγοράσετε με επιτυχία το torrent:[url=:url]:torrent_name[/url]', + ], + 'exam_user_end_time_updated' => [ + 'subject' => 'Η ώρα λήξης εξετάσεων :exam_name άλλαξε', + 'body' => 'Η ώρα λήξης της εξέτασης σας σε εξέλιξη :exam_name έχει αλλάξει από :old_end_time σε :new_end_time. admin: :operator, αιτία: :reason.', + ], + + 'mail_dear' => "Dear ", + 'mail_you_received_a_pm' => "Έχετε λάβει ένα PM.", + 'mail_sender' => "Αποστολέας ", + 'mail_subject' => "Θέμα ", + 'mail_date' => "Ημερομηνία/Ημερομηνία ", + 'mail_use_following_url' => "You can click ", + 'mail_use_following_url_1' => " to view the message (you may have to login).", + 'mail_yours' => "
    Yours,", + 'mail_the_site_team' => "Η Ομάδα %s.", + 'mail_received_pm_from' => "Έχετε λάβει ένα PM από ", + 'mail_here' => "ΕΔΩ", + 'msg_system' => "Σύστημα", + 'msg_original_message_from' => "Αρχικό μήνυμα από ", +]; diff --git a/resources/lang/el/nexus.php b/resources/lang/el/nexus.php new file mode 100644 index 00000000..3d9ad270 --- /dev/null +++ b/resources/lang/el/nexus.php @@ -0,0 +1,24 @@ + 'Μη έγκυρο όρισμα', + 'require_argument' => ':argument δεν μπορεί να είναι κενό', + 'select_one_please' => 'Παρακαλώ επιλέξτε ένα', + 'user_not_exists' => '(ορφανά)', + 'time_units' => [ + 'week' => 'εβδομάδες', + ], + 'select_all' => 'Επιλογή όλων', + 'unselect_all' => 'Αποεπιλογή όλων', + 'increment' => 'αύξηση', + 'decrement' => 'διάταγμα', + 'action' => 'Ενέργεια', + 'no_limit' => 'Χωρίς όριο', + 'sum' => 'Sum', + 'do_not_repeat' => 'Παρακαλώ μην επαναλάβετε τη λειτουργία!', + 'no_permission' => 'Κανένα δικαίωμα!', + 'sort' => 'ταξινόμηση πεδίου', + 'order' => 'ταξινόμηση', + 'asc' => 'αύξουσα σειρά', + 'desc' => 'φθίνουσα σειρά', +]; diff --git a/resources/lang/el/oauth.php b/resources/lang/el/oauth.php new file mode 100644 index 00000000..07d7790a --- /dev/null +++ b/resources/lang/el/oauth.php @@ -0,0 +1,30 @@ + 'Πελάτης', + 'redirect' => 'URL Ανακατεύθυνσης', + 'secret' => 'Μυστικό', + 'revoked' => 'Valid', + 'access_token' => 'Διακριτικό πρόσβασης', + 'refresh_token' => 'Ανανέωση διακριτικού', + 'authorization_request_title' => 'Αίτημα Εξουσιοδότησης', + 'authorization_request_desc' => 'ζητά άδεια για πρόσβαση στο λογαριασμό σας', + 'btn_approve' => 'Εξουσιοδότηση', + 'btn_deny' => 'Ακύρωση', + 'skips_authorization' => 'Παράλειψη εξουσιοδότησης', + 'client_id' => 'Ταυτότητα Πελάτη', + 'authorization_endpoint_url' => 'URL Εξουσιοδότησης', + 'token_endpoint_url' => 'Get token URL', + 'user_info_endpoint_url' => 'Λάβετε πληροφορίες χρήστη URL', + 'id_claim' => 'Απαίτηση ID', + 'username_claim' => 'αξίωση ονόματος χρήστη', + 'email_claim' => 'διεκδίκηση email', + 'level_claim' => 'Όνομα πεδίου επιπέδου', + 'level_limit' => 'Όριο επιπέδου', + 'level_limit_help' => 'Επιτρέψτε μόνο στους χρήστες να συνδεθούν κάτω από αυτό το επίπεδο', + 'get_access_token_error' => 'Λάβετε σφάλμα διακριτικού πρόσβασης: :error', + 'get _provider_user_id_error' => 'Αδυναμία λήψης αναγνωριστικού χρήστη μέσω του πεδίου :id_claim', + 'get_provider_level_error' => 'Αδυναμία λήψης του επιπέδου χρήστη μέσω του πεδίου :level_claim', + 'provider_level_not_ allowed' => 'Μόνο οι χρήστες με επίπεδο :level_limit ή παραπάνω επιτρέπεται να συνδεθούν', + 'provider_email_already_exists' => 'Email: :email είναι ήδη σε χρήση', + 'get_provider_email_error' => 'Δεν είναι δυνατή η λήψη email χρήστη μέσω του πεδίου :email_claim', +]; diff --git a/resources/lang/el/offer.php b/resources/lang/el/offer.php new file mode 100644 index 00000000..0cd7de92 --- /dev/null +++ b/resources/lang/el/offer.php @@ -0,0 +1,17 @@ + " σας έχει επιτρέψει να ανεβάσετε ", + 'msg_find_offer_option' => "Θα βρείτε μια νέα επιλογή στη σελίδα μεταφόρτωσης.", + 'msg_your_offer_allowed' => "Η προσφορά σας έχει επιτραπεί", + 'msg_offer_voted_on' => "Η προσφορά σας έχει ψηφιστεί. Επιτρέπετε να ανεβάσετε ", + 'msg_offer_voted_off' => "Η προσφορά σας έχει ψηφιστεί. Δεν επιτρέπεται να ανεβάσετε ", + 'msg_voted_on' => " έχει ψηφιστεί", + 'msg_offer_deleted' => "Η προσφορά σας διαγράφηκε", + 'msg_your_offer' => "Η προσφορά σας", + 'msg_was_deleted_by' => "' διαγράφηκε από ", + 'msg_blank' => ".", + 'msg_you_must_upload_in' => "Παρακαλούμε ανεβάστε την προσφορά εντός ", + 'msg_hours_otherwise' => " ώρες. Διαφορετικά, η προσφορά θα διαγραφεί.", + 'msg_reason_is' => "Ο λόγος: ", +]; diff --git a/resources/lang/el/peer.php b/resources/lang/el/peer.php new file mode 100644 index 00000000..303ac4b5 --- /dev/null +++ b/resources/lang/el/peer.php @@ -0,0 +1,7 @@ + [ + 'page_title' => 'Υπολογιστές', + ], +]; diff --git a/resources/lang/el/permission.php b/resources/lang/el/permission.php new file mode 100644 index 00000000..b5ac1942 --- /dev/null +++ b/resources/lang/el/permission.php @@ -0,0 +1,220 @@ + [ + 'text' => 'Έγκριση Torrent', + 'desc' => 'Να επιτρέπεται, η άρνηση ή να επισημανθεί ως μη αναθεωρημένη', + ], + 'torrent-set-special-tag' => [ + 'text' => 'Ορισμός ειδικών ετικετών torrent', + 'desc' => 'Ορίστε την ετικέτα Official/Zero bonus στα torrents', + ], + 'torrent-approval-allow-automatic' => [ + 'text' => 'Η έγκριση torrent επιτρέπει αυτόματα', + 'desc' => 'Torrent είναι η έγκριση επιτρέπουν την κατάσταση μετά την αυτόματη αποστολή', + ], + 'torrent-set-price' => [ + 'text' => 'Ορισμός πληρωμένου torrent', + 'desc' => 'Ορισμός πληρωμένου torrent', + ], + 'defaultclass' => [ + 'text' => 'Default Class', + 'desc' => ' Κατηγορία κατά την εγγραφή', + ], + 'staffmem' => [ + 'text' => 'Μέλος Προσωπικού', + 'desc' => 'Μαθήματα που θεωρούνται μέλη του προσωπικού, π.χ. μπορούν να δουν το προσωπικό', + ], + 'newsmanage' => [ + 'text' => 'Διαχείριση Ειδήσεων', + 'desc' => 'Προσθήκη νέας, επεξεργασία, διαγραφή ειδήσεων', + ], + 'newfunitem' => [ + 'text' => 'Δημοσίευση στοιχείου funbox', + 'desc' => "Δημοσιεύστε νέα στοιχεία funbox και επεξεργαστείτε τα στοιχεία funbox του ιδιοκτήτη", + ], + 'funmanage' => [ + 'text' => 'Διαχείριση Funbox', + 'desc' => "Επεξεργασία, διαγραφή, απαγόρευση στοιχείων funbox κανενός", + ], + 'sbmanage' => [ + 'text' => 'Διαχείριση Shoutbox', + 'desc' => 'Διαγραφή μηνυμάτων στο shoutbox και στο helpbox', + ], + 'pollmanage' => [ + 'text' => 'Διαχείριση Δημοσκόπησης', + 'desc' => 'Προσθήκη νέας επεξεργασίας, διαγραφή δημοσκοπήσεων', + ], + 'applylink' => [ + 'text' => 'Αίτηση για Σύνδεσμοι', + 'desc' => 'Αίτηση για συνδέσμους στην κύρια σελίδα', + ], + 'linkmanage' => [ + 'text' => 'Διαχείριση Συνδέσμων', + 'desc' => ' Προσθήκη νέου, επεξεργασία, διαγραφή συνδέσμων', + ], + 'postmanage' => [ + 'text' => 'Διαχείριση Δημοσιεύσεων Φόρουμ', + 'desc' => 'Επεξεργασία, διαγραφή, κίνηση, ραβδί, κλείδωμα δημοσιεύσεων φόρουμ', + ], + 'commanage' => [ + 'text' => 'Διαχείριση Σχολίων', + 'desc' => 'Επεξεργασία, διαγραφή σχολίων torrents, προσφορές', + ], + 'forummanage' => [ + 'text' => 'Διαχείριση Φόρουμ', + 'desc' => 'Προσθήκη νέας επεξεργασίας, διαγραφή, μετακίνηση φόρουμ', + ], + 'viewuserlist' => [ + 'text' => 'Προβολή Λίστας Χρηστών', + 'desc' => 'Προβολή, λίστα χρηστών αναζήτησης', + ], + 'user-delete' => [ + 'text' => 'Διαγραφή χρήστη', + 'desc' => 'Πλήρης διαγραφή πληροφοριών λογαριασμού χρήστη από τη βάση δεδομένων', + ], + 'user-change-class' => [ + 'text' => 'Αλλαγή κλάσης χρήστη', + 'desc' => "Τροποποίηση του επιπέδου του χρήστη, δεν μπορεί να τροποποιηθεί σε επίπεδο υψηλότερο ή ίσο με το δικό τους", + ], + 'torrentmanage' => [ + 'text' => 'Διαχείριση Torrent', + 'desc' => 'Επεξεργασία torrents, εξαιρουμένων των ρυθμίσεων torrent sticky ή προώθησης ή διαγραφής', + ], + 'torrent-delete' => [ + 'text' => 'Διαγραφή torrent', + 'desc' => 'Διαγραφή torrent', + ], + 'torrentsticky' => [ + 'text' => 'Κολλημένο Torrent', + 'desc' => ' Ορίστε κολλώδη torrents', + ], + 'torrentonpromotion' => [ + 'text' => 'Torrent κατά την προώθηση', + 'desc' => 'Ορισμός torrents κατά την προώθηση', + ], + 'torrent_hr' => [ + 'text' => 'Ορισμός H&R Torrent', + 'desc' => '.Set torrent μπείτε στην επιθεώρηση H&R', + ], + 'askreseed' => [ + 'text' => 'Ερώτηση για reseed', + 'desc' => 'Ερώτηση για reseed όταν τα torrent είναι νεκρά', + ], + 'viewnfo' => [ + 'text' => 'Προβολή NFO', + 'desc' => 'Προβολή αρχείων NFO', + ], + 'torrentstructure' => [ + 'text' => 'Προβολή Δομής Torrent', + 'desc' => 'Προβολή δομής αρχείων torrent', + ], + 'sendinvite' => [ + 'text' => 'Αποστολή Πρόσκλησης', + 'desc' => 'Αποστολή πρόσκλησης μέλους σε άλλους', + ], + 'viewhistory' => [ + 'text' => 'Προβολή Ιστορικού', + 'desc' => "Δείτε το ιστορικό των άλλων και αναρτήσεων", + ], + 'topten' => [ + 'text' => 'Προβολή Topten', + 'desc' => 'Προβολή Επάνω Δέκα', + ], + 'log' => [ + 'text' => 'Προβολή Γενικού Καταγραφής', + 'desc' => 'Προβολή γενικού αρχείου καταγραφής, εξαιρουμένου του εμπιστευτικού αρχείου καταγραφής', + ], + 'confilog' => [ + 'text' => 'Προβολή Εμπιστευτικού Καταγραφής', + 'desc' => 'Προβολή εμπιστευτικού αρχείου καταγραφής, π.χ. αλλαγές ρύθμισης τοποθεσίας', + ], + 'userprofile' => [ + 'text' => "Προβολή Εμπιστευτικού Προφίλ Χρήστη", + 'desc' => "Προβολή εμπιστευτικού προφίλ χρήστη, π.χ. διεύθυνση IP, διεύθυνση ηλεκτρονικού ταχυδρομείου", + ], + 'torrenthistory' => [ + 'text' => "Προβολή Ιστορικού Torrent Του Χρήστη", + 'desc' => "Προβολή του ιστορικού torrent του χρήστη, π.χ. κατεβασμένα torrents.Έγκυρο μόνο όταν η ρύθμιση του χρήστη για το επίπεδο απορρήτου δεν είναι 'ισχυρή'" + ], + 'prfmanage' => [ + 'text' => "Διαχείριση Γενικών Προφίλ Του Χρήστη", + 'desc' => " Αλλάξτε το προφίλ του χρήστη, εξαιρουμένων των κρίσιμων π.χ. email, όνομα χρήστη, φορτωμένο και κατεβασμένο ποσό, μπόνους" + ], + 'cruprfmanage' => [ + 'text' => "Διαχείριση Κρίσιμων Προφίλ Χρήστη", + 'desc' => "Αλλάξτε το κρίσιμο προφίλ του χρήστη, εξαιρουμένης της δωρεάς (μόνο ο Αρχηγός Προσωπικού μπορεί να διαχειριστεί δωρεά)", + ], + 'uploadsub' => [ + 'text' => 'Μεταφόρτωση υπότιτλου', + 'desc' => 'Ανεβάστε υπότιτλους για torrent', + ], + 'delownsub' => [ + 'text' => "Διαγραφή υπότιτλων", + 'desc' => 'Διαγραφή υπότιτλων που μεταφορτώθηκαν από τον εαυτό τους', + ], + 'submanage' => [ + 'text' => 'Διαχείριση Υποτίτλων', + 'desc' => 'Διαγραφή υποτίτλων', + ], + 'updateextinfo' => [ + 'text' => 'Ενημέρωση Εξωτερικών Πληροφοριών', + 'desc' => 'Ενημέρωση ξεπερασμένων εξωτερικών εισροών, π.χ. πληροφορίες IMDb', + ], + 'viewanonymous' => [ + 'text' => 'Προβολή Ανώνυμων', + 'desc' => 'Προβολή ποιος είναι ανώνυμος', + ], + 'beanonymous' => [ + 'text' => 'Να Είναι Ανώνυμος', + 'desc' => 'Ανεβάστε torrents, υπότιτλους ανώνυμα', + ], + 'addoffer' => [ + 'text' => 'Προσθήκη Προσφοράς', + 'desc' => ' Προσθήκη προσφορών για μεταφόρτωση', + ], + 'offermanage' => [ + 'text' => 'Διαχείριση Προσφοράς', + 'desc' => 'Μέτρηση, Επεξεργασία, Διαγραφή προσφοράς', + ], + 'upload' => [ + 'text' => 'Μεταφόρτωση Torrent', + 'desc' => 'Ανεβάστε torrent στην ενότητα Torrents', + ], + 'uploadspecial' => [ + 'text' => 'Φόρτωση Ειδικού Torrent', + 'desc' => 'Ανεβάστε torrent στην ειδική ενότητα', + ], + 'view_special_torrent' => [ + 'text' => 'Προβολή Ειδικού Torrent', + 'desc' => 'Προβολή torrent σε Ειδική ενότητα', + ], + 'movetorrent' => [ + 'text' => 'Μετακίνηση Torrent', + 'desc' => 'Μετακίνηση torrent μεταξύ τμημάτων', + ], + 'chrmanage' => [ + 'text' => 'Διαχείριση Χρονικών', + 'desc' => 'Προσθήκη, επεξεργασία, διαγραφή χρονικού', + ], + 'viewinvite' => [ + 'text' => 'Προβολή Πρόσκλησης', + 'desc' => "Προβολή ιστορικού προσκλήσεων του χρήστη", + ], + 'buyinvite' => [ + 'text' => 'Αγοράστε Προσκλήσεις', + 'desc' => 'Αγοράστε προσκλήσεις στο κέντρο μπόνους', + ], + 'seebanned' => [ + 'text' => 'Δείτε Τα Απαγορευμένα Torrents', + 'desc' => 'Δείτε και κατεβάστε απαγορευμένα torrents', + ], + 'againstoffer' => [ + 'text' => 'Ψηφοφορία Κατά Προσφορών', + 'desc' => 'Ψηφίστε κατά των προσφορών', + ], + 'userbar' => [ + 'text' => 'Επίτρεψε Τη Γραμμή Χρήστη', + 'desc' => ' Αποκτήστε το χρήστη του', + ], +]; diff --git a/resources/lang/el/plugin.php b/resources/lang/el/plugin.php new file mode 100644 index 00000000..fc4b3cd0 --- /dev/null +++ b/resources/lang/el/plugin.php @@ -0,0 +1,42 @@ + [ + 'install' => 'εγκατάσταση', + 'delete' => 'διαγραφή', + 'update' => 'αναβάθμιση', + 'install_or_update' => 'εγκατάσταση/αναβάθμιση', + ], + 'labels' => [ + 'display_name' => 'όνομα', + 'package_ name' => 'όνομα πακέτου', + 'remote_url' => 'repository_address', + 'installed_version' => 'εγκατεστημένη_έκδοση', + 'latest_version' => 'latest_version', + 'status' => 'κατάσταση', + 'updated_at' => 'last_executed_action', + ' release_date' => 'ενημερώθηκε στις', + 'install_title' => 'Μεταβείτε στον κατάλογο: :web_root, και εκτελέστε τις ακόλουθες εντολές για να τις εγκαταστήσετε ως χρήστη root: ', + 'introduce' => 'Λεπτομέρειες', + 'view_on_blog' => 'Προβολή στο ιστολόγιο', + ' config_plugin_address' => 'Ρύθμιση διεύθυνσης πρόσθετου', + 'download_specific_version' => 'Κατεβάστε την επέκταση. Η τελευταία έκδοση εμφανίζεται εδώ, αν χρειαστεί να εγκαταστήσετε μια άλλη έκδοση (δείτε στο blog για να δείτε όλες τις εκδόσεις) αντικαταστήστε τον εαυτό σας', + 'execute_install' => 'Εκτέλεση εγκατάστασης', + ], + 'status' => [ + \App\Models\Plugin::STATUS_NORMAL => 'Κανονικό', + \App\Models\Plugin::STATUS_NOT_INSTALLED => 'Δεν έχει εγκατασταθεί', + + \App\Models\Plugin::STATUS_PRE_INSTALL => 'Έτοιμο για εγκατάσταση', + \App\Models\Plugin::STATUS_INSTALLING => 'Εγκατάσταση', + \App\Models\Plugin::STATUS_INSTALL_FAILED => 'Αποτυχία εγκατάστασης', + + \App\Models\Plugin::STATUS_PRE_UPDATE => 'Έτοιμο για αναβάθμιση', + \App\Models\Plugin::STATUS_UPDATING => 'Αναβάθμιση', + \App\Models\Plugin::STATUS_UPDATE_FAILED => 'Αποτυχία αναβάθμισης', + + \App\Models\Plugin::STATUS_PRE_DELETE => 'Έτοιμο για αφαίρεση', + \App\Models\Plugin::STATUS_DELETING => 'Αφαίρεση', + \App\Models\Plugin::STATUS_DELETE_FAILED => 'Κατάργηση αποτυχίας', + ], +]; diff --git a/resources/lang/el/ptgen.php b/resources/lang/el/ptgen.php new file mode 100644 index 00000000..2a963ce0 --- /dev/null +++ b/resources/lang/el/ptgen.php @@ -0,0 +1,7 @@ + 'PT-Gen', + 'tooltip' => 'Link comes from::sites ', + 'btn_get_desc' => 'Λήψη desc', +]; diff --git a/resources/lang/el/reward.php b/resources/lang/el/reward.php new file mode 100644 index 00000000..06106b0f --- /dev/null +++ b/resources/lang/el/reward.php @@ -0,0 +1,9 @@ + [ + 'page_title' => 'Ανταμοιβές', + ] + +]; diff --git a/resources/lang/el/route-permission.php b/resources/lang/el/route-permission.php new file mode 100644 index 00000000..94d53a96 --- /dev/null +++ b/resources/lang/el/route-permission.php @@ -0,0 +1,20 @@ + [ + 'text' => 'Μεταφόρτωση torrent', + 'desc' => 'Μεταφόρτωση torrent', + ], + 'torrent:list' => [ + 'text' => 'Λήψη λίστας torrent', + 'desc' => 'Λήψη λίστας torrent', + ], + 'torrent:view' => [ + 'text' => 'Προβολή λεπτομερειών torrent', + 'desc' => 'Προβολή λεπτομερειών torrent', + ], + 'user:view' => [ + 'text' => 'Προβολή βασικών πληροφοριών χρήστη', + 'desc' => 'Προβολή βασικών πληροφοριών χρήστη', + ], +]; diff --git a/resources/lang/el/search.php b/resources/lang/el/search.php new file mode 100644 index 00000000..0dec2b50 --- /dev/null +++ b/resources/lang/el/search.php @@ -0,0 +1,17 @@ + 'Καθολική Αναζήτηση', + 'search_keyword' => 'Keyword', + 'search_area' => 'Range', + 'search_area_options' => [ + '0' => 'Τίτλος', + '1' => 'Περιγραφή', + '3' => 'Μεταφόρτωση', + '4' => 'URL IMDB' + ], + 'search_modes' => [ + 'and' => 'Και', + 'exact' => 'Ακριβής', + ], +]; diff --git a/resources/lang/el/searchbox.php b/resources/lang/el/searchbox.php new file mode 100644 index 00000000..2f6ec3a1 --- /dev/null +++ b/resources/lang/el/searchbox.php @@ -0,0 +1,20 @@ + 'Κατηγορία', + 'sub_category_source_label' => 'Πηγή', + 'sub_category_medium_label' => 'Πολυμέσα', + 'sub_category_standard_label' => 'Τυπικό', + 'sub_category_team_label' => 'Ομάδα', + 'sub_category_processing_label' => 'Επεξεργασία', + 'sub_category_codec_label' => 'Κωδικοποιητής', + 'sub_category_audiocodec_label' => 'AudioCodec', + 'extras' => [ + \App\Models\SearchBox::EXTRA_DISPLAY_COVER_ON_TORRENT_LIST => 'Εμφάνιση εξώφυλλου στη λίστα torrent', + \App\Models\SearchBox::EXTRA_DISPLAY_SEED_BOX_ICON_ON_TORRENT_LIST => 'Εμφάνιση εικονιδίου πλαισίου seed στη λίστα torrent', + ], + 'sections' => [ + 'browse' => 'Torrents', + 'special' => 'Ειδικό', + ], +]; diff --git a/resources/lang/el/seed-box.php b/resources/lang/el/seed-box.php new file mode 100644 index 00000000..e791bc54 --- /dev/null +++ b/resources/lang/el/seed-box.php @@ -0,0 +1,19 @@ + [ + \App\Models\SeedBoxRecord::TYPE_USER => 'Χρήστης', + \App\Models\SeedBoxRecord::TYPE_ADMIN => 'Διαχειριστής', + ], + 'status_text' => [ + \App\Models\SeedBoxRecord::STATUS_UNAUDITED => 'Μη ελεγμένο', + \App\Models\SeedBoxRecord::STATUS_ALLOWED => 'Επιτρέπεται', + \App\Models\SeedBoxRecord::STATUS_DENIED => 'Απορρίφθηκε', + ], + 'status_change_message' => [ + 'subject' => 'Η κατάσταση εγγραφής SeedBox άλλαξε', + 'body' => 'Η κατάσταση της εγγραφής σας στο SeedBox με ID :id άλλαξε από :operator από :old_status σε :new_status. Λόγος: :reason', + ], + 'is_seed_box_yes' => 'Αυτό το IP είναι SeedBox, αναγνωρίζεται από την εγγραφή με αναγνωριστικό :id', + 'is_seed_box_no' => 'Αυτό το IP δεν είναι SeedBox', +]; diff --git a/resources/lang/el/seedbox.php b/resources/lang/el/seedbox.php new file mode 100644 index 00000000..a72e04f7 --- /dev/null +++ b/resources/lang/el/seedbox.php @@ -0,0 +1,8 @@ + [ + \App\Models\SeedBoxRecord::TYPE_USER => 'Χρήστης', + \App\Models\SeedBoxRecord::TYPE_ADMIN => 'Διαχειριστής', + ], +]; diff --git a/resources/lang/el/signup.php b/resources/lang/el/signup.php new file mode 100644 index 00000000..7d243291 --- /dev/null +++ b/resources/lang/el/signup.php @@ -0,0 +1,8 @@ + "Οι κωδικοί πρόσβασης δεν ταιριάζουν! Musthave typoed. Δοκιμάστε ξανά.", + 'password_too_short' => "Λυπούμαστε, ο κωδικός πρόσβασης είναι πολύ μικρός (το ελάχιστο είναι 6 χαρακτήρες)", + 'password_too_long' => "Λυπούμαστε, ο κωδικός είναι πολύ μεγάλος (μέγιστο είναι 40 χαρακτήρες)", + 'password_equals_username' => "Συγγνώμη, ο κωδικός πρόσβασης δεν μπορεί να είναι ίδιος με το όνομα χρήστη.", +]; diff --git a/resources/lang/el/snatch.php b/resources/lang/el/snatch.php new file mode 100644 index 00000000..617029e3 --- /dev/null +++ b/resources/lang/el/snatch.php @@ -0,0 +1,8 @@ + 'Inf.', + 'index' => [ + 'page_title' => 'Άρπαλα', + ], +]; diff --git a/resources/lang/el/subtitle.php b/resources/lang/el/subtitle.php new file mode 100644 index 00000000..1b855419 --- /dev/null +++ b/resources/lang/el/subtitle.php @@ -0,0 +1,7 @@ + " διέγραψε τον υπότιτλο που φορτώσατε. ", + 'msg_your_sub_deleted' => "Ο υπότιτλος σας διαγράφηκε", + 'msg_reason_is' => "Ο λόγος: ", +]; diff --git a/resources/lang/el/thank.php b/resources/lang/el/thank.php new file mode 100644 index 00000000..0b21f4d1 --- /dev/null +++ b/resources/lang/el/thank.php @@ -0,0 +1,6 @@ + [ + 'page_title' => 'Ευχαριστούμε', + ], +]; diff --git a/resources/lang/el/token.php b/resources/lang/el/token.php new file mode 100644 index 00000000..098edc54 --- /dev/null +++ b/resources/lang/el/token.php @@ -0,0 +1,10 @@ + 'Διακριτικό Πρόσβασης', + 'permission' => 'Δικαιώματα', + 'maximum_allow_number_reached' => 'Ο αριθμός φτάνει το ανώτερο όριο', + 'create_success_tip' => 'Το διακριτικό δημιουργήθηκε με επιτυχία, αυτά τα δεδομένα εμφανίζονται μόνο μία φορά, παρακαλώ αποθηκεύστε τα σωστά

    :token', + 'last_used_at' => 'Πρόσφατος χρόνος χρήσης', + 'token' => 'summary', +); diff --git a/resources/lang/el/torrent-operation-log.php b/resources/lang/el/torrent-operation-log.php new file mode 100644 index 00000000..b5f9a01b --- /dev/null +++ b/resources/lang/el/torrent-operation-log.php @@ -0,0 +1,7 @@ + [ + 'action_type' => 'Τύπος ενέργειας', + ], +]; diff --git a/resources/lang/el/torrent.php b/resources/lang/el/torrent.php new file mode 100644 index 00000000..a7b353d6 --- /dev/null +++ b/resources/lang/el/torrent.php @@ -0,0 +1,109 @@ + 'Κανονικό', + 'pos_state_sticky' => 'Κολλημένο πρώτα', + 'pos_state_r_sticky' => 'Κολλημένο δευτερόλεπτο', + + 'index' => [ + 'page_title' => 'Λίστα torrent', + ], + 'show' => [ + 'page_title' => 'Λεπτομέρειες torrent', + 'basic_category' => 'Κατηγορία', + 'basic_audio_codec' => 'Κωδικοποιητής ήχου', + 'basic_codec' => 'Κωδικοποιητής βίντεο', + 'basic_media' => 'Πολυμέσα', + 'basic_source' => 'Πηγή', + 'basic_standard' => 'Τυπικό', + 'basic_team' => 'Ομάδα', + 'size' => 'Μέγεθος', + 'comments_label' => 'Σχόλια', + 'times_completed_label' => 'Άρπαξε', + 'peers_count_label' => 'Υπολογιστές', + 'thank_users_count_label' => 'Ευχαριστούμε', + 'numfiles_label' => 'Αρχεία', + 'bookmark_yes_label' => 'Σελιδοδείκτης', + 'bookmark_no_label' => 'Προσθήκη στο σελιδοδείκτη', + 'reward_logs_label' => 'Ανταμοιβή', + 'reward_yes_label' => 'Ανταμοιβή', + 'reward_no_label' => 'Ανταμοιβή', + 'download_label' => 'Λήψη', + 'thanks_yes_label' => 'Thanked', + 'thanks_no_label' => 'Ευχαριστούμε', + ], + 'pick_info' => [ + 'normal' => 'Κανονικό', + 'hot' => 'Ζεστό', + 'classic' => 'Κλασικό', + 'recommended' => 'Προτείνετε', + ], + 'claim_already' => 'Ήδη διεκδικημένη', + 'no_snatch' => 'Να μην γίνεται ποτέ λήψη αυτού του torrent', + 'can_no_be_claimed_yet' => 'Δεν μπορεί να υποστηριχθεί ακόμα', + 'claim_number_reach_user_maximum' => 'Επιτεύχθηκε ο μέγιστος αριθμός χρηστών', + 'claim_number_reach_torrent_maximum' => 'Επιτεύχθηκε ο μέγιστος αριθμός torrent', + 'claim_disabled' => 'Η αξίωση είναι απενεργοποιημένη', + 'operation_log' => [ + \App\Models\TorrentOperationLog::ACTION_TYPE_APPROVAL_DENY => [ + 'type_text' => 'Επιτρέπεται', + 'notify_subject' => 'Το Torrent επετράπη', + 'notify_msg' => 'Το torrent:[url=:detail_url]:torrent_name[/url] επιτράπηκε από τον :operator, Λόγο: :reason', + ], + \App\Models\TorrentOperationLog::ACTION_TYPE_APPROVAL_ALLOW => [ + 'type_text' => 'Απορρίφθηκε', + 'notify_subject' => 'Το Torrent απορρίφθηκε', + 'notify_msg' => 'Το torrent σας: [url=:detail_url]:torrent_name[/url] απορρίφθηκε από :operator', + ], + \App\Models\TorrentOperationLog::ACTION_TYPE_APPROVAL_NONE => [ + 'type_text' => 'Δεν ελέγχθηκε', + 'notify_subject' => 'Το torrent ήταν σημάδι ως δεν αναθεωρήθηκε', + 'notify_msg' => 'Το torrent σας: [url=:detail_url]:torrent_name[/url] δεν αναθεωρήθηκε από :operator', + ], + \App\Models\TorrentOperationLog::ACTION_TYPE_EDIT => [ + 'type_text' => 'Επεξεργασία', + 'notify_subject' => 'Το torrent επεξεργάστηκε', + 'notify_msg' => 'Το torrent σας: [url=:detail_url]:torrent_name[/url] επεξεργάστηκε από :operator', + ], + \App\Models\TorrentOperationLog::ACTION_TYPE_DELETE => [ + 'type_text' => 'Διαγραφή', + 'notify_subject' => 'Το torrent διαγράφηκε', + 'notify_msg' => 'Το torrent σας: :torrent_name διαγράφηκε από τον :operator', + ] + ], + 'owner_update_torrent_subject' => 'Το αρνήθηκε το torrent ενημερώθηκε', + 'owner_update_torrent_msg' => 'Torrent:[url=:detail_url]:torrent_name[/url] έχει ενημερωθεί από τον ιδιοκτήτη, μπορείτε να ελέγξετε αν πληροί τις απαιτήσεις και να επιτρέψετε', + 'approval' => [ + 'modal_title' => 'Έγκριση Torrent', + 'status_label' => 'Κατάσταση έγκρισης', + 'comment_label' => 'Σχόλιο(προαιρετικό)', + 'status_text' => [ + \App\Models\Torrent::APPROVAL_STATUS_NONE => 'Δεν ελέγχθηκε', + \App\Models\Torrent::APPROVAL_STATUS_ALLOW => 'Επιτρέπεται', + \App\Models\Torrent::APPROVAL_STATUS_DENY => 'Απορρίφθηκε', + ], + 'deny_comment_show' => 'Απορρίφθηκε, λόγος: :reason', + 'logs_label' => 'Αρχεία καταγραφής έγκρισης' + ], + 'show_hide_media_info' => 'Εμφάνιση/Απόκρυψη ακατέργαστου MediaInfo', + 'promotion_time_types' => [ + \App\Models\Torrent::PROMOTION_TIME_TYPE_GLOBAL => 'Καθολικό', + \App\Models\Torrent::PROMOTION_TIME_TYPE_PERMANENT => 'Μόνιμο', + \App\Models\Torrent::PROMOTION_TIME_TYPE_DEADLINE => 'Μέχρι', + ], + 'paid_torrent' => 'Καταβεβλημένο torrent', + 'msg_torrent_deleted' => "Το torrent σας διαγράφηκε", + 'msg_the_torrent_you_uploaded' => "Το torrent που ανεβάσατε '", + 'msg_was_deleted_by' => "' διαγράφηκε από ", + 'msg_reason_is' => ". Ο λόγος: ", + 'msg_reseed_request' => "Αίτημα Ανησυχίας", + 'msg_reseed_user' => "Χρήστης ", + 'msg_ask_reseed' => " ζήτησε έναν reseed στο torrent ", + 'msg_thank_you' => " !\nThank You!", + + 'msg_offer_you_voted' => "Η Προσφορά που ψηφίσατε: ", + 'msg_was_uploaded_by' => " φορτώθηκε από ", + 'msg_you_can_download' => ".\nYou can Download the Torrent", + 'msg_here' => " [b]here[/b]", + 'msg_offer' => "Προσφορά ", +]; diff --git a/resources/lang/el/upload.php b/resources/lang/el/upload.php new file mode 100644 index 00000000..cb2ffac8 --- /dev/null +++ b/resources/lang/el/upload.php @@ -0,0 +1,68 @@ + 'Μη έγκυρη τιμή: :price', + 'invalid_category' => 'Invalid type', + 'invalid_section' => 'Μη έγκυρη ενότητα', + 'invalid_hr' => 'Μη έγκυρη τιμή H&R', + 'invalid_pos_state' => 'Μη έγκυρη θέση: :pos_state', + 'invalid_pos_state_until' => 'Μη έγκυρη ημερομηνία θέσης', + 'not_supported_sub_category_field' => 'Μη υποστηριζόμενα πεδία υποκατηγορίας: :field', + 'invalid_sub_category_value' => 'Πεδίο υποκατηγορίας: :label(:field) τιμή: :value μη έγκυρη', + 'invalid_tag' => 'Μη έγκυρη ετικέτα::tag', + 'invalid_pick_type' => 'Μη έγκυρη σύσταση:pick_type', + 'require_name' => 'Ο τίτλος δεν μπορεί να είναι κενός', + 'price_too_much' => 'Η τιμή υπερβαίνει το επιτρεπόμενο εύρος', + 'approval_deny_reach_upper_limit' => 'Ο αριθμός του torrent που απορρίφθηκε για την τρέχουσα αξιολόγηση: Το %s φτάνει το ανώτατο όριο και η δημοσίευση δεν επιτρέπεται.', + 'special_section_not_enabled' => 'Η ειδική ζώνη δεν είναι ενεργοποιημένη.', + 'paid_torrent_not_enabled' => 'Το πληρωμένο torrent δεν είναι ενεργοποιημένο.', + 'no_permission_to_set_torrent_hr' => 'Δεν έχετε δικαίωμα να ορίσετε το torrent H&R.', + 'no_permission_to_set_torrent_pos_state' => 'Δεν υπάρχει άδεια για να ορίσετε την κορυφή του torrent.', + 'no_permission_to_set_torrent_price' => 'Δεν έχετε άδεια να ορίσετε χρεώσεις torrent.', + 'no_permission_to_pick_torrent' => 'Δεν υπάρχει άδεια να προτείνουμε βίντεο.', + 'no_permission_to_be_anonymous' => 'Δεν υπάρχει άδεια για να δημοσιεύσετε ανώνυμα.', + 'torrent_save_dir_not_exists' => 'Ο κατάλογος αποθήκευσης torrent δεν υπάρχει.', + 'torrent_save_dir_not_writable' => 'Ο κατάλογος αποθήκευσης torrent δεν είναι εγγράψιμος.', + 'save_torrent_file_failed' => 'Η αποθήκευση του αρχείου torrent απέτυχε.', + 'upload_failed' => 'Η μεταφόρτωση απέτυχε!', + 'missing_form_data' => 'Παρακαλούμε συμπληρώστε τα απαιτούμενα αντικείμενα', + 'missing_torrent_file' => 'Λείπει το αρχείο torrent', + 'empty_filename' => 'Το όνομα του αρχείου δεν μπορεί να είναι κενό!', + 'zero_byte_nfo' => 'Το αρχείο NFO είναι κενό', + 'nfo_too_big' => 'Το αρχείο NFO είναι πολύ μεγάλο! Μέγιστο επιτρεπόμενο από 65,535 bytes.', + 'nfo_upload_failed' => 'Αποτυχία μεταφόρτωσης αρχείου NFO', + 'blank_description' => 'Πρέπει να συμπληρώσετε την εισαγωγή!', + 'category_unselected' => 'Πρέπει να επιλέξετε τον τύπο!', + 'invalid_filename' => 'Μη έγκυρο όνομα αρχείου!', + 'filename_not_torrent' => 'Μη έγκυρο όνομα αρχείου (όχι .torrent αρχείο).', + 'empty_file' => 'Κενό αρχείο!', + 'not_bencoded_file' => 'Τι είναι η κόλαση που κάνετε? Αυτό που ανεβάσατε δεν είναι ένα αρχείο Bencode!', + 'not_a_dictionary' => 'Δεν είναι φάκελος', + 'dictionary_is_missing_key' => 'Κατάλογος που λείπει', + 'invalid_entry_in_dictionary' => 'Μη έγκυρη καταχώρηση καταλόγου', + 'invalid_dictionary_entry_type' => 'Μη έγκυρος τύπος στοιχείου καταλόγου', + 'invalid_pieces' => 'Μη έγκυρο μπλοκ αρχείων', + 'missing_length_and_files' => 'Λείπει μήκος και αρχείο', + 'filename_errors' => 'Όνομα αρχείου σφάλματος', + 'uploaded_not_offered' => 'Μπορείτε να ανεβάσετε μόνο το torrent που περνά τον υποψήφιο. Παρακαλούμε επιστρέψτε για να επιλέξετε το κατάλληλο έργο στο υποψήφια πριν από την αποστολή!', + 'unauthorized_upload_freely' => 'Δεν έχετε την άδεια να ανεβάσετε ελεύθερα!', + 'torrent_existed' => 'Το torrent υπάρχει ήδη!id: :id', + 'torrent_file_too_big' => 'Το αρχείο torrent είναι πολύ μεγάλο! Μέγιστο επιτρεπόμενο', + 'remake_torrent_note' => 'bytes. Παρακαλώ δημιουργήστε ξανά το αρχείο torrent με μεγαλύτερο μέγεθος μπλοκ ή χωρίστε το περιεχόμενο σε πολλαπλάσιο torrent για δημοσίευση.', + 'email_notification_body' => 'Hello, +A new torrent has been uploaded. + +Name::name +Size::size +Type::category +Uploader::upload_by + +Introduction: +:description + +View more detailed information and download it (you may need to log in), please click here: here +:torrent_url + +:site_name Website', + 'email_notification_subject' => ':site_name Νέα ειδοποίηση torrent', +); diff --git a/resources/lang/el/user.php b/resources/lang/el/user.php new file mode 100644 index 00000000..d6aa3dd0 --- /dev/null +++ b/resources/lang/el/user.php @@ -0,0 +1,112 @@ + 'Απενεργοποίηση από το διαχειριστή', + 'deleted_username' => 'ο χρήστης δεν υπάρχει', + 'admin' => [ + 'list' => [ + 'page_title' => 'Λίστα χρηστών' + ] + ], + 'labels' => [ + 'seedbonus' => 'Μπόνους', + 'seed_points' => 'Σημεία σποράς', + 'uploaded' => 'Ανέβηκε', + 'downloaded' => 'Λήφθηκε', + 'invites' => 'Προσκληθέντα', + 'attendance_card' => 'Παρακολούθηση κάρτας', + 'props' => 'Βοηθήματα', + 'class' => 'Κλάση', + 'vip_added' => 'Η κατάσταση VIP λαμβάνεται με μπόνους', + 'vip_added_help' => 'Είναι η κατάσταση VIP εξαργυρώθηκε από το μπόνους.', + 'vip_until' => 'Ώρα λήξης κατάστασης VIP', + 'vip_until_help' => "Η μορφή της ώρας είναι 'Ώρα-έτος-μήνας-ημέρα:Λεπτό:Δεύτερη Η ώρα που τελειώνει η κατάσταση VIP. Η κατάσταση VIP επιτυγχάνεται με το μπόνους» πρέπει να οριστεί σε «Ναι» για να τεθεί σε ισχύ αυτός ο κανόνας.", + ], + 'class_names' => [ + \App\Models\User::CLASS_VIP => 'Vip', + \App\Models\User::CLASS_RETIREE => 'Συνταξιούχος', + \App\Models\User::CLASS_UPLOADER => 'Μεταφόρτωση', + \App\Models\User::CLASS_MODERATOR => 'Συντονιστής', + \App\Models\User::CLASS_ADMINISTRATOR => 'Διαχειριστής', + \App\Models\User::CLASS_SYSOP => 'Sysop', + \App\Models\User::CLASS_STAFF_LEADER => 'Επικεφαλής Προσωπικού', + ], + 'change_username_lte_min_interval' => 'Τελευταία αλλαγή ώρα: :last_change_time, ελάχιστο διάστημα χωρίς ικανοποίηση: :interval ημέρες', + 'destroy_by_admin' => 'Φυσική διαγραφή από το διαχειριστή', + 'disable_by_admin' => 'Απενεργοποίηση από το διαχειριστή', + 'genders' => [ + \App\Models\User::GENDER_MALE => 'Άντρας', + \App\Models\User::GENDER_FEMALE => 'Γυναίκα', + \App\Models\User::GENDER_UNKNOWN => 'Άγνωστο', + ], + 'grant_props_notification' => [ + 'subject' => 'Get Props::name', + 'body' => ':operator Χορηγήστε :name, Περίοδος εγκυρότητας: :duration.', + ], + 'metas' => [ + 'already_valid_forever' => ':meta_key_text είναι ήδη έγκυρο για πάντα', + ], + 'edit_notifications' => [ + 'change_class' => [ + 'promote' => 'Προώθηση', + 'demote' => 'Demote', + 'subject' => 'Η τάξη άλλαξε', + 'body' => 'Είχατε :action σε :new_class, διαχειριστής: :operator, αιτία: :reason.', + ], + ], + 'username_already_exists' => 'Όνομα χρήστη::όνομα χρήστη υπάρχει ήδη', + 'username_invalid' => 'Όνομα χρήστη::όνομα χρήστη μη έγκυρο', + + 'msg_promoted' => "προωθήθηκε", + 'msg_demoted' => "υποβιβασμένο", + 'msg_class_change' => "Αλλαγή Κλάσης", + 'msg_you_have_been' => "Έχετε πάει ", + 'msg_to' => " προς ", + 'msg_by' => " από ", + 'msg_warn_removed' => "Η Προειδοποίηση Αφαιρέθηκε", + 'msg_your_warning_removed_by' => "Η προειδοποίησή σας έχει αφαιρεθεί από", + 'msg_you_are_warned_by' => "Έχετε ειδοποιηθεί [url=rules.php#warning][/url] από ", + 'msg_reason' => "\n\nΑιτία: ", + 'msg_week' => " εβδομάδα", + 'msg_s' => "ίνα", + 'msg_you_are_warned_for' => "Έχετε ειδοποιηθεί [url=rules.php#warning][/url] για ", + 'msg_you_are_warned' => "Προειδοποιηθήκατε", + 'msg_posting_rights_restored' => "Αποκατάσταση Δικαιωμάτων Ανάρτησης", + 'msg_your_posting_rights_restored' => "Τα δικαιώματα ανάρτησής σας έχουν δοθεί από " , + 'msg_you_can_post' => ". Μπορείτε να δημοσιεύσετε ξανά στο φόρουμ.", + 'msg_posting_rights_removed' => "Αφαιρέθηκαν Δικαιώματα Ανάρτησης", + 'msg_your_posting_rights_removed' => "Τα δικαιώματα Ανάρτησης σας έχουν καταργηθεί από ", + 'msg_probable_reason' => ", πιθανώς λόγω κακής στάσης ή κακής ανάρτησης περιεχόμενο.", + 'msg_upload_rights_restored' => "Επαναφορά Δικαιωμάτων Αποστολής", + 'msg_your_upload_rights_restored' => "Τα δικαιώματα μεταφόρτωσης σας έχουν δοθεί ξανά από ", + 'msg_you_upload_can_upload' => ". Μπορείτε να ανεβάσετε τα torrents ξανά.", + 'msg_upload_rights_removed' => "Αφαιρέθηκαν Δικαιώματα Μεταφόρτωσης", + 'msg_your_upload_rights_removed' => "Τα δικαιώματα αποστολής σας έχουν καταργηθεί από ", + 'msg_probably_reason_two' => ", πιθανώς λόγω της κακής torrent, .nfo ή περιγραφή.", + 'msg_download_rights_restored' => "Επαναφορά Δικαιωμάτων Λήψης", + 'msg_your_download_rights_restored' => "Τα δικαιώματα λήψης σας έχουν δοθεί από ", + 'msg_you_can_download' => ". Μπορείτε να κατεβάσετε torrent και πάλι.", + 'msg_download_rights_removed' => "Αφαιρέθηκαν Δικαιώματα Λήψης", + 'msg_your_download_rights_removed' => "Τα δικαιώματα λήψης σας έχουν αφαιρεθεί από ", + 'msg_probably_reason_three' => ", πιθανώς λόγω χαμηλής αναλογίας ή κακής συμπεριφοράς.", + 'msg_email_change' => "Αλλαγή ηλεκτρονικού ταχυδρομείου", + 'msg_your_email_changed_from' => "Η διεύθυνση ηλεκτρονικού ταχυδρομείου σας έχει αλλάξει από ", + 'msg_username_change' => "Αλλαγή ονόματος χρήστη", + 'msg_your_username_changed_from' => "Το όνομα χρήστη σας έχει αλλάξει από ", + 'msg_downloaded_change' => "Αλλαγή ποσού που λήφθηκε", + 'msg_your_downloaded_changed_from' => "Το ληφθέν ποσό έχει αλλάξει από ", + 'msg_uploaded_change' => "Αλλαγή ποσού για ανέβασμα", + 'msg_your_uploaded_changed_from' => "Το ποσό που φορτώσατε έχει αλλάξει από ", + 'msg_bonus_change' => "Αλλαγή ποσού μπόνους", + 'msg_your_bonus_changed_from' => "Το ποσό του μπόνους σας έχει αλλάξει από ", + 'msg_invite_change' => "Πρόσκληση αλλαγής ποσού", + 'msg_your_invite_changed_from' => "Το ποσό της πρόσκλησής σας έχει αλλάξει από ", + 'msg_to_new' =>" προς ", + 'msg_your_vip_status_changed' => "Η κατάσταση VIP σας άλλαξε", + 'msg_vip_status_changed_by' => "Η κατάσταση VIP σας άλλαξε από ", + 'msg_your_donor_status_changed' => "Η κατάσταση του δότη σας άλλαξε", + 'msg_donor_status_changed_by' => "Η κατάσταση του δότη σας άλλαξε από ", + 'msg_invited_user_has_registered' => "Ο προσκεκλημένος χρήστης έχει εγγραφεί", + 'msg_user_you_invited' => "Ο χρήστης που προσκαλέσατε ", + 'msg_has_registered' => " έχει εγγραφεί μόλις τώρα.", +]; diff --git a/resources/lang/el/username-change-log.php b/resources/lang/el/username-change-log.php new file mode 100644 index 00000000..e1bf347b --- /dev/null +++ b/resources/lang/el/username-change-log.php @@ -0,0 +1,13 @@ + [ + \App\Models\UsernameChangeLog::CHANGE_TYPE_USER => 'Χρήστης', + \App\Models\UsernameChangeLog::CHANGE_TYPE_ADMIN => 'Διαχειριστής', + ], + 'labels' => [ + 'username_old' => 'Παλιό όνομα χρήστη', + 'username_new' => 'Νέο όνομα χρήστη', + 'change_type' => 'Αλλαγή τύπου', + ], +]; diff --git a/resources/lang/es/admin.php b/resources/lang/es/admin.php index 09bd25ce..141515ce 100644 --- a/resources/lang/es/admin.php +++ b/resources/lang/es/admin.php @@ -43,6 +43,8 @@ return [ 'oauth_auth_code' => 'Códigos de autenticación', 'oauth_refresh_token' => 'Actualizar seales', 'token' => 'Tokens de acceso', + 'oauth_provider' => 'Proveedor de autorización', + 'queue_monitor' => 'Monitor de cola', ], 'resources' => [ 'agent_allow' => [ diff --git a/resources/lang/es/claim.php b/resources/lang/es/claim.php index a50eaaf7..ce79109d 100644 --- a/resources/lang/es/claim.php +++ b/resources/lang/es/claim.php @@ -17,12 +17,12 @@ return [ 'msg_title' => 'Resultado de reclamación el último mes(:month):', 'msg_subject' => ':month liquidación de reclamación', - 'claim_total' => 'Reclamar un total del torrent: :total', - 'claim_reached_counts' => 'Cuentas de torrent alcanzadas: :counts', - 'claim_reached_summary' => 'Obtener bonificación de torrent alcanzado por hora: :bonus_per_hour, promedio de tiempo de semilla (hora): :horas, obtener bonificación total: :bonus_total', - 'claim_unreached_remain_counts' => 'Unreached torrent remain counts: :counts', - 'claim_unreached_remove_counts' => 'Cuentas de eliminación de torrent no alcanzadas: :counts', - 'claim_unreached_summary' => 'Deducir bonificación por torrent::deduct_per_torrent, total deduct: :deduct_total', + 'claim_total' => 'Reclamar un total del torrent: [b]:total[/b]', + 'claim_reached_counts' => 'Cuentas de torrent alcanzadas: [b]:counts[/b]', + 'claim_reached_summary' => 'Obtener bonificación de torrent alcanzado por hora: [b]:bonus_per_hour[/b], promedio de tiempo de semilla (hora): [b]:horas[/b], obtener bonificación total: [b]:bonus_total[/b]', + 'claim_unreached_remain_counts' => 'Unreached torrent remain counts: [b]:counts[/b]', + 'claim_unreached_remove_counts' => 'Cuentas de eliminación de torrent no alcanzadas: [b]:counts[/b]', + 'claim_unreached_summary' => 'Deducir bonificación por torrent:[b]:deduct_per_torrent[/b], total deduct: [b]:deduct_total[/b]', 'confirm_give_up' => '¿Estás seguro de que quieres dejar de reclamar este torrent?', 'add_claim' => 'Claim', diff --git a/resources/lang/es/label.php b/resources/lang/es/label.php index f2fffb84..fbf77a5d 100644 --- a/resources/lang/es/label.php +++ b/resources/lang/es/label.php @@ -34,7 +34,7 @@ return [ 'cancel' => 'Cancelar', 'reset' => 'Reset', 'anonymous' => 'Anónimo', - 'infinite' => 'Infinito', + 'infinite' => 'Inf.', 'save' => 'Guardar', 'country' => 'País', 'city' => 'Ciudad', @@ -44,6 +44,8 @@ return [ 'create' => 'Crear', 'created_at_begin' => 'Creado al principio', 'created_at_end' => 'Creado al final', + 'text_quote' => 'Cotización', + 'text_code' => "CÓDIGO", 'setting' => [ 'nav_text' => 'Ajustes', 'backup' => [ diff --git a/resources/lang/es/nexus.php b/resources/lang/es/nexus.php index 961ebec3..1307ddbd 100644 --- a/resources/lang/es/nexus.php +++ b/resources/lang/es/nexus.php @@ -17,4 +17,8 @@ return [ 'sum' => 'Sum', 'do_not_repeat' => '¡Por favor, no repita la operación!', 'no_permission' => '¡Sin permiso!', + 'sort' => 'ordenar campo', + 'order' => 'ordenar', + 'asc' => 'orden ascendente', + 'desc' => 'orden descendente', ]; diff --git a/resources/lang/es/oauth.php b/resources/lang/es/oauth.php index 6d17ec6c..16537108 100644 --- a/resources/lang/es/oauth.php +++ b/resources/lang/es/oauth.php @@ -11,4 +11,20 @@ return [ 'btn_approve' => 'Autorizar', 'btn_deny' => 'Cancelar', 'skips_authorization' => 'Autorización de saltos', + 'client_id' => 'ID de cliente', + 'authorization_endpoint_url' => 'URL de autorización', + 'token_endpoint_url' => 'Get token URL', + 'user_info_endpoint_url' => 'Obtener URL de información de usuario', + 'id_claim' => 'Reclamo de ID', + 'username_claim' => 'reclamación de nombre de usuario', + 'email_claim' => 'reclamación por email', + 'level_claim' => 'Nombre del campo de nivel', + 'level_limit' => 'Límite de nivel', + 'level_limit_help' => 'Permitir a los usuarios que no estén por debajo de este nivel iniciar sesión', + 'get_access_token_error' => 'Error de token de acceso: :error', + 'get _provider_user_id_error' => 'No se puede obtener el ID de usuario a través del campo :id_claim', + 'get_provider_level_error' => 'No se puede obtener el nivel de usuario a través del campo :level_claim', + 'provider_level_not_ allowed' => 'Sólo los usuarios con nivel :level_limit o superior pueden iniciar sesión', + 'provider_email_already_exists' => 'Correo electrónico: :email ya está en uso', + 'get_provider_email_error' => 'No se puede obtener el correo electrónico del usuario a través del campo :email_claim', ]; diff --git a/resources/lang/es/plugin.php b/resources/lang/es/plugin.php index 4ef8a553..de823ece 100644 --- a/resources/lang/es/plugin.php +++ b/resources/lang/es/plugin.php @@ -2,17 +2,26 @@ return [ 'actions' => [ - 'install' => 'Instalar', - 'delete' => 'Eliminar', - 'update' => 'Mejorar', + 'install' => 'instalar', + 'delete' => 'borrar', + 'update' => 'mejorar', + 'install_or_update' => 'instalar/actualizar', ], 'labels' => [ - 'display_name' => 'Nombre', - 'package_name' => 'Nombre del paquete', - 'remote_url' => 'Dirección del repositorio', - 'installed_version' => 'Versión instalada', - 'status' => 'Estado', - 'updated_at' => 'Última acción en', + 'display_name' => 'nombre', + 'package_ name' => 'paquete_name', + 'remote_url' => 'dirección_repositorio', + 'installed_version' => 'versión instalada', + 'latest_version' => 'última versión', + 'status' => 'estado', + 'updated_at' => 'última acción ejecutada', + ' release_date' => 'actualizado el', + 'install_title' => 'Ve al directorio: :web_root, y ejecuta los siguientes comandos para instalarlo como usuario root: ', + 'introduce' => 'Detalles', + 'view_on_blog' => 'Ver en el blog', + ' config_plugin_address' => 'Configurar la dirección del plugin', + 'download_specific_version' => 'Descargar la extensión. La última versión se muestra aquí, si necesitas instalar otra versión (ver en el blog para ver todas las versiones) reemplazarla tú mismo', + 'execute_install' => 'Ejecutar instalación', ], 'status' => [ \App\Models\Plugin::STATUS_NORMAL => 'Normal', diff --git a/resources/lang/fi/admin.php b/resources/lang/fi/admin.php index be9e566b..02c10581 100644 --- a/resources/lang/fi/admin.php +++ b/resources/lang/fi/admin.php @@ -43,6 +43,8 @@ return [ 'oauth_auth_code' => 'Auth koodit', 'oauth_refresh_token' => 'Päivitä tokenit', 'token' => 'Pääsy poletteihin', + 'oauth_provider' => 'Valtuutuksen tarjoaja', + 'queue_monitor' => 'Jonon monitori', ], 'resources' => [ 'agent_allow' => [ diff --git a/resources/lang/fi/claim.php b/resources/lang/fi/claim.php index 50a9f30d..8581522c 100644 --- a/resources/lang/fi/claim.php +++ b/resources/lang/fi/claim.php @@ -17,12 +17,12 @@ return [ 'msg_title' => 'Lunasta lopputulos viime kuussa(:kk):', 'msg_subject' => ':month claim settlement', - 'claim_total' => 'Lunasta torrent yhteensä: :total', - 'claim_reached_counts' => 'Saavutettu torrenttien määrä: :counts', - 'claim_reached_summary' => 'Saavutettu torrent-tiedosto saa bonuksen tunnissa: :bonus_per_hour, seed time average(hour): :hours, saat bonuksen yhteensä: :bonus_total', - 'claim_unreached_remain_counts' => 'Päättämättömät torrent-tiedosto jäävät määrään: :counts', - 'claim_unreached_remove_counts' => 'Saavuttamattomat torrent- poistomäärät: :counts', - 'claim_unreached_summary' => 'Vähennä bonus jokaisesta keskeneräisestä torrent::deduct_per_torrent, vähennys yhteensä: :deduct_total', + 'claim_total' => 'Lunasta torrent yhteensä: [b]:total[/b]', + 'claim_reached_counts' => 'Saavutettu torrenttien määrä: [b]:counts[/b]', + 'claim_reached_summary' => 'Saavutettu torrent-tiedosto saa bonuksen tunnissa: [b]:bonus_per_hour[/b], seed time average(hour): [b]:hours[/b], saat bonuksen yhteensä: [b]:bonus_total[/b]', + 'claim_unreached_remain_counts' => 'Päättämättömät torrent-tiedosto jäävät määrään: [b]:counts[/b]', + 'claim_unreached_remove_counts' => 'Saavuttamattomat torrent- poistomäärät: [b]:counts[/b]', + 'claim_unreached_summary' => 'Vähennä bonus jokaisesta keskeneräisestä torrent:[b]:deduct_per_torrent[/b], vähennys yhteensä: [b]:deduct_total[/b]', 'confirm_give_up' => 'Oletko varma, että haluat luopua tämän torrentin vaatimuksesta?', 'add_claim' => 'Claim', diff --git a/resources/lang/fi/label.php b/resources/lang/fi/label.php index c106838b..95f61826 100644 --- a/resources/lang/fi/label.php +++ b/resources/lang/fi/label.php @@ -34,7 +34,7 @@ return [ 'cancel' => 'Peruuta', 'reset' => 'Reset', 'anonymous' => 'Anonyymi', - 'infinite' => 'Loputon', + 'infinite' => 'Inf.', 'save' => 'Tallenna', 'country' => 'Maa', 'city' => 'Kaupunki', @@ -44,6 +44,8 @@ return [ 'create' => 'Luo', 'created_at_begin' => 'Luotu alkaessa', 'created_at_end' => 'Luotu lopussa', + 'text_quote' => 'Tarjous', + 'text_code' => "KOODI", 'setting' => [ 'nav_text' => 'Asetus', 'backup' => [ diff --git a/resources/lang/fi/nexus.php b/resources/lang/fi/nexus.php index 2426a4a1..56953c18 100644 --- a/resources/lang/fi/nexus.php +++ b/resources/lang/fi/nexus.php @@ -17,4 +17,8 @@ return [ 'sum' => 'Sum', 'do_not_repeat' => 'Älkää toistako toimenpidettä!', 'no_permission' => 'Ei käyttöoikeutta!', + 'sort' => 'lajittele kenttä', + 'order' => 'lajittele', + 'asc' => 'nouseva järjestys', + 'desc' => 'laskeva järjestys', ]; diff --git a/resources/lang/fi/oauth.php b/resources/lang/fi/oauth.php index 47fbeda9..59cada9c 100644 --- a/resources/lang/fi/oauth.php +++ b/resources/lang/fi/oauth.php @@ -11,4 +11,20 @@ return [ 'btn_approve' => 'Valtuuta', 'btn_deny' => 'Peruuta', 'skips_authorization' => 'Ohita valtuutus', + 'client_id' => 'Asiakkaan Tunnus', + 'authorization_endpoint_url' => 'Valtuutuksen URL', + 'token_endpoint_url' => 'Get token URL', + 'user_info_endpoint_url' => 'Hae käyttäjätiedot URL-osoite', + 'id_claim' => 'Henkilöllisyyden vaatimus', + 'username_claim' => 'käyttäjänimen väite', + 'email_claim' => 'sähköpostin lunastus', + 'level_claim' => 'Tason kentän nimi', + 'level_limit' => 'Tason raja', + 'level_limit_help' => 'Salli vain käyttäjät eivät alle tämän tason kirjautua sisään', + 'get_access_token_error' => 'Haetaan pääsytunnuksen virhe: :error', + 'get _provider_user_id_error' => 'Käyttäjätunnusta ei voitu ladata kentän :id_claim kautta', + 'get_provider_level_error' => 'Käyttäjätasoa ei voitu ladata kentän kautta :level_claim', + 'provider_level_not_ allowed' => 'Vain käyttäjät, joilla on taso :level_limit tai yli, voivat kirjautua sisään', + 'provider_email_already_exists' => 'Sähköposti: :email on jo käytössä', + 'get_provider_email_error' => 'Käyttäjän sähköpostia ei voitu ladata kentän kautta :email_claim', ]; diff --git a/resources/lang/fi/plugin.php b/resources/lang/fi/plugin.php index 261d9f8d..730d2f29 100644 --- a/resources/lang/fi/plugin.php +++ b/resources/lang/fi/plugin.php @@ -2,17 +2,26 @@ return [ 'actions' => [ - 'install' => 'Asenna', - 'delete' => 'Poista', - 'update' => 'Päivitä', + 'install' => 'asenna', + 'delete' => 'poista', + 'update' => 'päivitä', + 'install_or_update' => 'asenna/päivitä', ], 'labels' => [ - 'display_name' => 'Nimi', - 'package_name' => 'Paketin nimi', - 'remote_url' => 'Versiovaraston osoite', - 'installed_version' => 'Asennettu versio', - 'status' => 'Tila', - 'updated_at' => 'Viimeisin toiminto osoitteessa', + 'display_name' => 'nimi', + 'package_ name' => 'paketin_nimi', + 'remote_url' => 'repository_address', + 'installed_version' => 'installed_version', + 'latest_version' => 'latest_version', + 'status' => 'tila', + 'updated_at' => 'viimeiset_suoritettu toiminto', + ' release_date' => 'päivitetty klo', + 'install_title' => 'Mene hakemistoon: :web_root, ja suorita seuraavat komennot asentaaksesi sen pääkäyttäjänä: ', + 'introduce' => 'Yksityiskohdat', + 'view_on_blog' => 'Näytä blogissa', + ' config_plugin_address' => 'Määritä liitännäisen osoite', + 'download_specific_version' => 'Lataa laajennus. Viimeisin versio näytetään tässä, jos haluat asentaa toisen version (näytä blogista nähdäksesi kaikki versiot) korvaa sen itse', + 'execute_install' => 'Suorita asennus', ], 'status' => [ \App\Models\Plugin::STATUS_NORMAL => 'Normaali', diff --git a/resources/lang/fr/admin.php b/resources/lang/fr/admin.php index 56add24d..cf39ad57 100644 --- a/resources/lang/fr/admin.php +++ b/resources/lang/fr/admin.php @@ -43,6 +43,8 @@ return [ 'oauth_auth_code' => 'Codes d\'authentification', 'oauth_refresh_token' => 'Rafraîchir les jetons', 'token' => 'Jetons d\'accès', + 'oauth_provider' => 'Fournisseur d\'autorisation', + 'queue_monitor' => 'Moniteur de file d\'attente', ], 'resources' => [ 'agent_allow' => [ diff --git a/resources/lang/fr/claim.php b/resources/lang/fr/claim.php index 6506eeb5..8320e265 100644 --- a/resources/lang/fr/claim.php +++ b/resources/lang/fr/claim.php @@ -17,12 +17,12 @@ return [ 'msg_title' => 'Résultat de la demande de règlement le mois dernier(:mois):', 'msg_subject' => 'règlement de réclamation de :month', - 'claim_total' => 'Réclamer le total du torrent : :total', - 'claim_reached_counts' => 'Nombre de torrents atteints: :count', - 'claim_reached_summary' => 'Bonus de gain de torrent atteint par heure: :bonus_per_hour, durée moyenne de la seed (heure): :hours, gain de bonus total: :bonus_total', - 'claim_unreached_remain_counts' => 'Nombre de torrents restants non atteints: :count', - 'claim_unreached_remove_counts' => 'Nombre de suppressions de torrent non atteint : :count', - 'claim_unreached_summary' => 'Déduire le bonus à chaque torrent::deduct_per_torrent, total déduit : :deduct_total', + 'claim_total' => 'Réclamer le total du torrent : [b]:total[/b]', + 'claim_reached_counts' => 'Nombre de torrents atteints: [b]:count[/b]', + 'claim_reached_summary' => 'Bonus de gain de torrent atteint par heure: [b]:bonus_per_hour[/b], durée moyenne de la seed (heure): [b]:hours[/b], gain de bonus total: [b]:bonus_total[/b]', + 'claim_unreached_remain_counts' => 'Nombre de torrents restants non atteints: [b]:count[/b]', + 'claim_unreached_remove_counts' => 'Nombre de suppressions de torrent non atteint : [b]:count[/b]', + 'claim_unreached_summary' => 'Déduire le bonus à chaque torrent:[b]:deduct_per_torrent[/b], total déduit : [b]:deduct_total[/b]', 'confirm_give_up' => 'Êtes-vous sûr de vouloir renoncer à revendiquer ce torrent?', 'add_claim' => 'Claim', diff --git a/resources/lang/fr/label.php b/resources/lang/fr/label.php index 945c6309..96d05a55 100644 --- a/resources/lang/fr/label.php +++ b/resources/lang/fr/label.php @@ -34,7 +34,7 @@ return [ 'cancel' => 'Abandonner', 'reset' => 'Reset', 'anonymous' => 'Anonyme', - 'infinite' => 'Infini', + 'infinite' => 'Inf', 'save' => 'Enregistrer', 'country' => 'Pays', 'city' => 'Ville', @@ -44,6 +44,8 @@ return [ 'create' => 'Créer', 'created_at_begin' => 'Créé au début', 'created_at_end' => 'Créé à la fin', + 'text_quote' => 'Devis', + 'text_code' => "CODE", 'setting' => [ 'nav_text' => 'Réglages', 'backup' => [ diff --git a/resources/lang/fr/nexus.php b/resources/lang/fr/nexus.php index e3feec1a..a07cf05f 100644 --- a/resources/lang/fr/nexus.php +++ b/resources/lang/fr/nexus.php @@ -17,4 +17,8 @@ return [ 'sum' => 'Sum', 'do_not_repeat' => 'Veuillez ne pas répéter l\'opération !', 'no_permission' => 'Pas de permission!', + 'sort' => 'champ de tri', + 'order' => 'trier', + 'asc' => 'ordre croissant', + 'desc' => 'ordre décroissant', ]; diff --git a/resources/lang/fr/oauth.php b/resources/lang/fr/oauth.php index d7cb2d04..b6265c4d 100644 --- a/resources/lang/fr/oauth.php +++ b/resources/lang/fr/oauth.php @@ -11,4 +11,20 @@ return [ 'btn_approve' => 'Autoriser', 'btn_deny' => 'Abandonner', 'skips_authorization' => 'Ignorer l\'autorisation', + 'client_id' => 'ID du client', + 'authorization_endpoint_url' => 'URL d\'autorisation', + 'token_endpoint_url' => 'Get token URL', + 'user_info_endpoint_url' => 'Obtenir l\'URL des informations de l\'utilisateur', + 'id_claim' => 'Revendication de l\'ID', + 'username_claim' => 'revendication du nom d\'utilisateur', + 'email_claim' => 'réclamation d\'email', + 'level_claim' => 'Nom du champ de niveau', + 'level_limit' => 'Limite de niveau', + 'level_limit_help' => 'Autoriser uniquement les utilisateurs qui ne sont pas en dessous de ce niveau à se connecter', + 'get_access_token_error' => 'Erreur de jeton d\'accès : :error', + 'get _provider_user_id_error' => 'Impossible d\'obtenir l\'ID de l\'utilisateur via le champ :id_claim', + 'get_provider_level_error' => 'Impossible d\'obtenir le niveau de l\'utilisateur via le champ :level_claim', + 'provider_level_not_ allowed' => 'Seuls les utilisateurs ayant le niveau :level_limit ou supérieur sont autorisés à se connecter', + 'provider_email_already_exists' => 'E-mail: :email est déjà utilisé', + 'get_provider_email_error' => 'Impossible d\'obtenir l\'email de l\'utilisateur via le champ :email_claim', ]; diff --git a/resources/lang/fr/plugin.php b/resources/lang/fr/plugin.php index 34266627..76a8a11f 100644 --- a/resources/lang/fr/plugin.php +++ b/resources/lang/fr/plugin.php @@ -2,17 +2,26 @@ return [ 'actions' => [ - 'install' => 'Installer', - 'delete' => 'Retirer', - 'update' => 'Mise à jour', + 'install' => 'installer', + 'delete' => 'supprimer', + 'update' => 'mise à jour', + 'install_or_update' => 'installer/mettre à jour', ], 'labels' => [ 'display_name' => 'Nom', - 'package_name' => 'Nom du paquet', + 'package_ name' => 'nom_du_paquet', 'remote_url' => 'Adresse du dépôt', 'installed_version' => 'Version installée', - 'status' => 'Statut', - 'updated_at' => 'Dernière action à', + 'latest_version' => 'dernier_version', + 'status' => 'statuts', + 'updated_at' => 'action_dernière_exécutée', + ' release_date' => 'mis à jour le', + 'install_title' => 'Allez dans le répertoire: :web_root, et exécutez les commandes suivantes pour l\'installer en tant qu\'utilisateur root: ', + 'introduce' => 'Détails du produit', + 'view_on_blog' => 'Voir sur le blog', + ' config_plugin_address' => 'Configurer l\'adresse du plugin', + 'download_specific_version' => 'Télécharger l\'extension. La dernière version est affichée ici, si vous avez besoin d\'installer une autre version (afficher sur le blog pour voir toutes les versions) le remplacer vous-même', + 'execute_install' => 'Exécuter l\'installation', ], 'status' => [ \App\Models\Plugin::STATUS_NORMAL => 'Normale', diff --git a/resources/lang/hr/auth.php b/resources/lang/hr/auth.php deleted file mode 100644 index a34dd1c5..00000000 --- a/resources/lang/hr/auth.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Ovi podaci ne odgovaraju našima.', - 'password' => 'Lozinka je pogrešna.', - 'throttle' => 'Previše pokušaja prijave. Molim Vas pokušajte ponovno za :seconds sekundi.', -]; diff --git a/resources/lang/hr/pagination.php b/resources/lang/hr/pagination.php deleted file mode 100644 index 1cf1cd17..00000000 --- a/resources/lang/hr/pagination.php +++ /dev/null @@ -1,8 +0,0 @@ - 'Sljedeća »', - 'previous' => '« Prethodna', -]; diff --git a/resources/lang/hr/passwords.php b/resources/lang/hr/passwords.php deleted file mode 100644 index 98ceb8cb..00000000 --- a/resources/lang/hr/passwords.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Lozinka je ponovno postavljena!', - 'sent' => 'E-mail sa poveznicom za ponovno postavljanje lozinke je poslan!', - 'throttled' => 'Molimo pričekajte prije ponovnog pokušaja!', - 'token' => 'Oznaka za ponovno postavljanje lozinke više nije važeća.', - 'user' => 'Korisnik s navedenom e-mail adresom nije pronađen.', -]; diff --git a/resources/lang/hr/validation.php b/resources/lang/hr/validation.php deleted file mode 100644 index da17f2ec..00000000 --- a/resources/lang/hr/validation.php +++ /dev/null @@ -1,153 +0,0 @@ - 'Polje :attribute mora biti prihvaćeno.', - 'accepted_if' => 'Polje :attribute mora biti prihvaćeno kada je :other jednako :value.', - 'active_url' => 'Polje :attribute nije ispravan URL.', - 'after' => 'Polje :attribute mora biti datum nakon :date.', - 'after_or_equal' => 'Polje :attribute mora biti datum veći ili jednak :date.', - 'alpha' => 'Polje :attribute smije sadržavati samo slova.', - 'alpha_dash' => 'Polje :attribute smije sadržavati samo slova, brojeve i crtice.', - 'alpha_num' => 'Polje :attribute smije sadržavati samo slova i brojeve.', - 'array' => 'Polje :attribute mora biti niz.', - 'ascii' => 'Polje :attribute smije sadržavati samo slova, brojeve i simbole veličine jednog bajta.', - 'before' => 'Polje :attribute mora biti datum prije :date.', - 'before_or_equal' => 'Polje :attribute mora biti datum manji ili jednak :date.', - 'between' => [ - 'array' => 'Polje :attribute mora imati između :min - :max stavki.', - 'file' => 'Polje :attribute mora biti između :min - :max kilobajta.', - 'numeric' => 'Polje :attribute mora biti između :min - :max.', - 'string' => 'Polje :attribute mora biti između :min - :max znakova.', - ], - 'boolean' => 'Polje :attribute mora biti false ili true.', - 'can' => 'Polje :attribute sadrži neovlaštenu vrijednost.', - 'confirmed' => 'Potvrda polja :attribute se ne podudara.', - 'contains' => 'The :attribute field is missing a required value.', - 'current_password' => 'Lozinka nije ispravna.', - 'date' => 'Polje :attribute nije ispravan datum.', - 'date_equals' => 'Stavka :attribute mora biti jednaka :date.', - 'date_format' => 'Polje :attribute ne podudara s formatom :format.', - 'decimal' => 'Polje :attribute mora sadržavati :decimal decimalnih mjesta.', - 'declined' => 'Polje :attribute mora biti odbijeno.', - 'declined_if' => 'Polje :attribute mora biti odbijeno kada je :other jednako :value.', - 'different' => 'Polja :attribute i :other moraju biti različita.', - 'digits' => 'Polje :attribute mora sadržavati :digits znamenki.', - 'digits_between' => 'Polje :attribute mora imati između :min i :max znamenki.', - 'dimensions' => 'Polje :attribute ima neispravne dimenzije slike.', - 'distinct' => 'Polje :attribute ima dupliciranu vrijednost.', - 'doesnt_end_with' => 'Polje :attribute ne smije završavati s jednom od sljedećih vrijednosti: :values.', - 'doesnt_start_with' => 'Polje :attribute ne smije počinjati s jednom od sljedećih vrijednosti: :values.', - 'email' => 'Polje :attribute mora biti ispravna e-mail adresa.', - 'ends_with' => ':Attribute bi trebao završiti s jednim od sljedećih: :values.', - 'enum' => 'Odabrano polje :attribute nije ispravno.', - 'exists' => 'Odabrano polje :attribute nije ispravno.', - 'extensions' => 'Polje :attribute mora imati jedno od sljedećih proširenja: :values.', - 'file' => 'Polje :attribute mora biti datoteka.', - 'filled' => 'Polje :attribute je obavezno.', - 'gt' => [ - 'array' => 'Polje :attribute mora biti veće od :value stavki.', - 'file' => 'Polje :attribute mora biti veće od :value kilobajta.', - 'numeric' => 'Polje :attribute mora biti veće od :value.', - 'string' => 'Polje :attribute mora biti veće od :value karaktera.', - ], - 'gte' => [ - 'array' => 'Polje :attribute mora imati najmanje :value stavki.', - 'file' => 'Polje :attribute mora imati najmanje :value kilobajta.', - 'numeric' => 'Polje :attribute mora biti veće ili jednako :value.', - 'string' => 'Polje :attribute mora biti veće ili jednako :value znakova.', - ], - 'hex_color' => 'Polje :attribute mora biti važeća heksadecimalna boja.', - 'image' => 'Polje :attribute mora biti slika.', - 'in' => 'Odabrano polje :attribute nije ispravno.', - 'in_array' => 'Polje :attribute ne postoji u :other.', - 'integer' => 'Polje :attribute mora biti broj.', - 'ip' => 'Polje :attribute mora biti ispravna IP adresa.', - 'ipv4' => 'Polje :attribute mora biti ispravna IPv4 adresa.', - 'ipv6' => 'Polje :attribute mora biti ispravna IPv6 adresa.', - 'json' => 'Polje :attribute mora biti ispravan JSON string.', - 'list' => 'Polje :attribute mora biti popis.', - 'lowercase' => 'Polje :attribute mora sadržavati samo mala slova.', - 'lt' => [ - 'array' => 'Polje :attribute mora biti manje od :value stavki.', - 'file' => 'Polje :attribute mora biti manje od :value kilobajta.', - 'numeric' => 'Polje :attribute mora biti manje od :value.', - 'string' => 'Polje :attribute mora biti manje od :value znakova.', - ], - 'lte' => [ - 'array' => 'Polje :attribute ne smije imati više od :value stavki.', - 'file' => 'Polje :attribute mora biti manje ili jednako :value kilobajta.', - 'numeric' => 'Polje :attribute mora biti manje ili jednako :value.', - 'string' => 'Polje :attribute mora biti manje ili jednako :value znakova.', - ], - 'mac_address' => 'Polje :attribute mora biti ispravna MAC adresa.', - 'max' => [ - 'array' => 'Polje :attribute ne smije imati više od :max stavki.', - 'file' => 'Polje :attribute mora biti manje od :max kilobajta.', - 'numeric' => 'Polje :attribute mora biti manje od :max.', - 'string' => 'Polje :attribute mora sadržavati manje od :max znakova.', - ], - 'max_digits' => 'Polje :attribute ne smije imati više od :max znamenaka.', - 'mimes' => 'Polje :attribute mora biti datoteka tipa: :values.', - 'mimetypes' => 'Polje :attribute mora biti datoteka tipa: :values.', - 'min' => [ - 'array' => 'Polje :attribute mora sadržavati najmanje :min stavki.', - 'file' => 'Polje :attribute mora biti najmanje :min kilobajta.', - 'numeric' => 'Polje :attribute mora biti najmanje :min.', - 'string' => 'Polje :attribute mora sadržavati najmanje :min znakova.', - ], - 'min_digits' => 'Polje :attribute mora sadržavati najmanje :min znamenaka.', - 'missing' => 'Polje :attribute mora nedostajati.', - 'missing_if' => 'Polje :attribute mora nedostajati kada je :other :value.', - 'missing_unless' => 'Polje :attribute mora nedostajati osim ako je :other :value.', - 'missing_with' => 'Polje :attribute mora nedostajati kada je :values prisutno.', - 'missing_with_all' => 'Polje :attribute mora nedostajati kada je :values prisutno.', - 'multiple_of' => 'Broj :attribute mora biti višekratnik :value', - 'not_in' => 'Odabrano polje :attribute nije ispravno.', - 'not_regex' => 'Format polja :attribute je neispravan.', - 'numeric' => 'Polje :attribute mora biti broj.', - 'password' => [ - 'letters' => 'Polje :attribute mora sadržavati najmanje jedno slovo.', - 'mixed' => 'Polje :attribute mora sadržavati najmanje jedno veliko i jedno malo slovo.', - 'numbers' => 'Polje :attribute mora sadržavati najmanje jedan broj.', - 'symbols' => 'Polje :attribute mora sadržavati najmanje jedan simbol.', - 'uncompromised' => 'Vrijednost u :attribute se pojavila u curenju informacija. Molimo vas da odaberete drugu vrijednost za :attribute.', - ], - 'present' => 'Polje :attribute mora biti prisutno.', - 'present_if' => 'Polje :attribute mora biti prisutno kada je :other :value.', - 'present_unless' => 'Polje :attribute mora biti prisutno osim ako je :other :value.', - 'present_with' => 'Polje :attribute mora biti prisutno kada je prisutno :values.', - 'present_with_all' => 'Polje :attribute mora biti prisutno kada je prisutno :values.', - 'prohibited' => 'Polje :attribute je zabranjeno.', - 'prohibited_if' => 'Polje :attribute zabranjeno je kada je :other :value.', - 'prohibited_unless' => 'Polje :attribute zabranjeno je, osim ako :other nije u :values.', - 'prohibits' => 'Polje :attribute zabranjuje da polje :other bude prisutno.', - 'regex' => 'Polje :attribute se ne podudara s formatom.', - 'required' => 'Polje :attribute je obavezno.', - 'required_array_keys' => 'Polje :attribute mora sadržavati unose za: :values.', - 'required_if' => 'Polje :attribute je obavezno kada polje :other sadrži :value.', - 'required_if_accepted' => 'Polje :attribute je obavezno kada je prihvaćeno polje :other.', - 'required_if_declined' => 'The :attribute field is required when :other is declined.', - 'required_unless' => 'Polje :attribute je obavezno osim :other je u :values.', - 'required_with' => 'Polje :attribute je obavezno kada postoji polje :values.', - 'required_with_all' => 'Polje :attribute je obavezno kada postje polja :values.', - 'required_without' => 'Polje :attribute je obavezno kada ne postoji polje :values.', - 'required_without_all' => 'Polje :attribute je obavezno kada nijedno od polja :values ne postoji.', - 'same' => 'Polja :attribute i :other se moraju podudarati.', - 'size' => [ - 'array' => 'Polje :attribute mora sadržavati :size stavki.', - 'file' => 'Polje :attribute mora biti :size kilobajta.', - 'numeric' => 'Polje :attribute mora biti :size.', - 'string' => 'Polje :attribute mora biti :size znakova.', - ], - 'starts_with' => 'Stavka :attribute mora započinjati jednom od narednih stavki: :values', - 'string' => 'Polje :attribute mora biti riječ.', - 'timezone' => 'Polje :attribute mora biti ispravna vremenska zona.', - 'ulid' => 'Polje :attribute mora biti valjani ULID.', - 'unique' => 'Polje :attribute već postoji.', - 'uploaded' => 'Polje :attribute nije uspešno učitano.', - 'uppercase' => 'Polje :attribute mora sadržavati samo velika slova.', - 'url' => 'Polje :attribute mora biti ispravan URL.', - 'uuid' => 'Polje :attribute mora biti valjani UUID.', -]; diff --git a/resources/lang/it/admin.php b/resources/lang/it/admin.php new file mode 100644 index 00000000..2061e9e3 --- /dev/null +++ b/resources/lang/it/admin.php @@ -0,0 +1,131 @@ + [ + 'exam_users' => 'Esami Utenti', + 'hit_and_runs' => 'Colpisci E Corre', + 'users_list' => 'Utenti', + 'tags_list' => 'Etichette', + 'agent_allows' => 'Agente Consente', + 'agent_denies' => 'Negazioni Agenti', + 'exams_list' => 'Esami E Attività', + 'medals_list' => 'Medaglie', + 'settings' => 'Impostazioni', + 'users_medals' => 'Medaglie utente', + 'claims' => 'Reclami utente', + 'torrent_list' => 'Torrent', + 'torrent_state' => 'Free leach', + 'roles_list' => 'Ruoli', + 'ability_list' => 'Permessi', + 'seed_box_records' => 'SeedBox', + 'upload_speed' => 'Velocità di caricamento', + 'download_speed' => 'Velocità di download', + 'isp' => 'ISP', + 'menu' => 'Menu personalizzato', + 'username_change_log' => 'Log cambio nome utente', + 'torrent_deny_reason' => 'Nega I Motivi', + 'roles' => 'Ruolo', + 'permissions' => 'Permessi', + 'section' => 'Riquadri di ricerca', + 'icon' => 'Icone categoria', + 'plugin' => 'Plugin', + 'category' => 'Categorie', + 'second_icon' => 'Seconda icone', + 'torrent_operation_log' => 'Log delle operazioni torrent', + 'invite' => 'Inviti', + 'user_props' => 'Props utente', + 'login_log' => 'Log di login', + 'bonus_log' => 'Log bonus', + 'torrent_buy_log' => 'Registro acquisto torrent', + 'attendance_log' => 'Registri di partecipazione', + 'oauth_client' => 'Client', + 'oauth_access_token' => 'Token di accesso', + 'oauth_auth_code' => 'Codici di autenticazione', + 'oauth_refresh_token' => 'Aggiorna i token', + 'token' => 'Token di accesso', + 'oauth_provider' => 'Provider di autorizzazione', + 'queue_monitor' => 'Monitor coda', + ], + 'resources' => [ + 'agent_allow' => [ + 'check_modal_btn' => 'Controlla', + 'check_modal_header' => 'Rileva se il client è permesso', + 'check_pass_msg' => 'Congratulazioni, questo client è stato passato dalla regola :id!', + ], + 'user' => [ + 'actions' => [ + 'enable_modal_btn' => 'Abilita', + 'enable_modal_title' => 'Abilita utente', + 'enable_disable_reason' => 'Motivo', + 'enable_disable_reason_placeholder' => 'Facoltativo', + 'disable_modal_btn' => 'Disabilita', + 'disable_modal_title' => 'Disabilita utente', + 'disable_two_step_authentication' => 'Annulla autenticazione in due passaggi', + 'change_bonus_etc_btn' => 'Cambia caricato ecc.', + 'change_bonus_etc_action_increment' => 'Incremento', + 'change_bonus_etc_action_decrement' => 'Decrementa', + 'change_bonus_etc_field_label' => 'Campo', + 'change_bonus_etc_action_label' => 'Azione', + 'change_bonus_etc_value_label' => 'Valore', + 'change_bonus_etc_value_help' => 'Se il tipo è caricato/scaricare, l\'unità è: GB', + 'change_bonus_etc_reason_label' => 'Motivo', + 'reset_password_btn' => 'Reimposta password', + 'reset_password_label' => 'Nuova password', + 'reset_password_confirmation_label' => 'Conferma la nuova password', + 'assign_exam_btn' => 'Assegna esame', + 'assign_exam_exam_label' => 'Seleziona esame', + 'assign_exam_begin_label' => 'Ora di inizio', + 'assign_exam_end_label' => 'Ora di fine', + 'assign_exam_end_help' => 'Se non si specifica un\'ora di inizio/fine, verrà utilizzato l\'intervallo di tempo impostato dall\'esame stesso', + 'grant_medal_btn' => 'Concedi medaglia', + 'grant_medal_medal_label' => 'Seleziona medaglia', + 'grant_medal_duration_label' => 'Durata', + 'grant_medal_duration_help' => 'Unità: giorni. Se lasciato vuoto, l\'utente ha un possesso permanente', + 'confirm_btn' => 'Conferma', + 'disable_download_privileges_btn' => 'Abilita download', + 'enable_download_privileges_btn' => 'Disabilita il download', + 'grant_prop_btn' => 'Concedi prop', + 'grant_prop_form_prop' => 'Seleziona prop', + 'grant_prop_form_duration' => 'Durata', + 'grant_prop_form_duration_help' => 'Unità: giorni. Se lasciato vuoto, l\'utente lo ha definitivamente. Nota: non c\'è alcun limite di tempo per la scheda Cambia nome, ignora questo valore.' , + 'confirm_bulk' => 'Conferma alla rinfusa', + 'change_bonus_etc_duration_label' => 'Durata', + 'change_bonus_etc_duration_help' => 'Richiesto quando si aggiunge un invito temporaneo, in giorni', + 'change_class_btn' => 'Cambia classe', + ] + ], + 'exam_user' => [ + 'bulk_action_avoid_label' => 'Evita alla rinfusa', + 'bulk_action_update_end_label' => 'Modificare in massa l\'ora di fine', + 'action_avoid' => 'Evita', + 'action_update_end' => 'Modifica ora di fine', + 'result_passed' => 'Passato!', + 'result_not_passed' => 'Non passato!', + ], + 'exam' => [ + 'index_duplicate' => 'Indice::index duplicato !', + ], + 'hit_and_run' => [ + 'bulk_action_pardon' => 'Bulk pardon', + 'action_pardon' => 'Pardon', + ], + 'torrent' => [ + 'bulk_action_pos_state' => 'Appiccicoso', + 'bulk_action_remove_tag' => 'Rimuovi tag', + 'bulk_action_attach_tag' => 'Allega tag', + 'action_approval' => 'Omologazione', + 'bulk_action_attach_tag_remove_old' => 'Elimina anche i vecchi tag', + 'bulk_action_recommend' => 'Consiglia', + 'bulk_action_sp_state' => 'Promozione', + 'bulk_action_hr' => 'H&R', + ], + 'seed_box_record' => [ + 'toggle_status' => 'Cambia stato', + 'check_modal_btn' => 'Controlla', + 'check_modal_header' => 'Rileva se l\'IP è SeedBox', + ], + 'tag' => [ + 'detach_torrents' => 'Scollega tutti i torrent', + ], + ] +]; diff --git a/resources/lang/it/attendance.php b/resources/lang/it/attendance.php new file mode 100644 index 00000000..0ca80d86 --- /dev/null +++ b/resources/lang/it/attendance.php @@ -0,0 +1,14 @@ + "Non sono ancora presenti", + 'target_date_can_no_be_retroactive' => 'Data::date non può essere retroattiva', + 'already_attendance' => 'Già presente', + 'card_not_enough' => 'Carta di partecipazione non sufficiente', + 'ranking' => "Classifica Di Oggi: :Classifica / :counts", + 'fields' => [ + 'date' => 'Data', + 'points' => 'Ottenuto bonus', + 'is_retroactive' => 'È retroattivo', + ], +]; diff --git a/resources/lang/it/bonus-log.php b/resources/lang/it/bonus-log.php new file mode 100644 index 00000000..ce9b9fea --- /dev/null +++ b/resources/lang/it/bonus-log.php @@ -0,0 +1,37 @@ + [ + \App\Models\BonusLogs::BUSINESS_TYPE_CANCEL_HIT_AND_RUN => 'Annulla H&R', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_MEDAL => 'Acquista medaglia', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_ATTENDANCE_CARD => 'Acquista carta di frequenza', + \App\Models\BonusLogs::BUSINESS_TYPE_STICKY_PROMOTION => 'Promozione adesiva', + \App\Models\BonusLogs::BUSINESS_TYPE_POST_REWARD => 'Ricompensa post', + \App\Models\BonusLogs::BUSINESS_TYPE_EXCHANGE_UPLOAD => 'Exchange caricato', + \App\Models\BonusLogs::BUSINESS_TYPE_EXCHANGE_INVITE => 'Acquista invito', + \App\Models\BonusLogs::BUSINESS_TYPE_CUSTOM_TITLE => 'Titolo personalizzato', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_VIP => 'Acquista VIP', + \App\Models\BonusLogs::BUSINESS_TYPE_GIFT_TO_SOMEONE => 'Regalo a qualcuno', + \App\Models\BonusLogs::BUSINESS_TYPE_NO_AD => 'Annulla annuncio', + \App\Models\BonusLogs::BUSINESS_TYPE_GIFT_TO_LOW_SHARE_RATIO => 'Rapporto da regalo a basso rapporto di condivisione', + \App\Models\BonusLogs::BUSINESS_TYPE_LUCKY_DRAW => 'Disegno fortunato', + \App\Models\BonusLogs::BUSINESS_TYPE_EXCHANGE_DOWNLOAD => 'Scambio scaricato', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_TEMPORARY_INVITE => 'Acquista invito temporaneo', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_RAINBOW_ID => 'Acquista ID arcobaleno', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_CHANGE_USERNAME_CARD => 'Acquista cambiare nome utente carta', + \App\Models\BonusLogs::BUSINESS_TYPE_GIFT_MEDAL => 'Medaglia regalo', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_TORRENT => 'Acquista torrent', + + \App\Models\BonusLogs::BUSINESS_TYPE_ROLE_WORK_SALARY => 'Salario del ruolo del lavoro', + \App\Models\BonusLogs::BUSINESS_TYPE_TORRENT_BE_DOWNLOADED => 'Torrent da scaricare', + \App\Models\BonusLogs::BUSINESS_TYPE_RECEIVE_REWARD => 'Ricevi ricompensa', + \App\Models\BonusLogs::BUSINESS_TYPE_RECEIVE_GIFT => 'Ricevi un regalo', + \App\Models\BonusLogs::BUSINESS_TYPE_UPLOAD_TORRENT => 'Carica torrent', + ], + 'fields' => [ + 'business_type' => 'Tipo di business', + 'old_total_value' => 'Valore pre-negoziazione', + 'value' => 'Valore dello scambio', + 'new_total_value' => 'Valore post-negoziazione', + ], +]; diff --git a/resources/lang/it/bonus.php b/resources/lang/it/bonus.php new file mode 100644 index 00000000..ba3adfe8 --- /dev/null +++ b/resources/lang/it/bonus.php @@ -0,0 +1,35 @@ + 'Spendi :bonus bonus buy :medal_name', + 'comment_buy_attendance_card' => 'Spendi :bonus bonus acquista una scheda frequente', + 'comment_buy_temporary_invite' => 'Spendi :bonus bonus buy :count invito temporaneo', + 'comment_buy_rainbow_id' => 'Spendi :bonus bonus buy :duration giorni arcobaleno ID', + 'comment_buy_change_username_card' => 'Spendi :bonus bonus acquistare cambiare nome utente carta', + 'comment_gift_medal' => 'Spendi :bonus bonus acquista :medal_name e regalo a :to_username', + 'comment_buy_torrent' => 'Spendi :bonus bonus buy torrent: :torrent_id', + 'comment_torrent_be_downloaded' => 'Proventi dal torrent scaricato da :username(UID: :uid)', + 'table_thead' => [ + 'reward_type' => 'Tipo ricompensa', + 'count' => 'Conteggio', + 'size' => 'Dimensione', + 'a_value' => 'Un Valore', + 'bonus_base' => 'Bonus base', + 'factor' => 'Fattore', + 'got_bonus' => 'Ottenuto bonus', + 'total' => 'Totale', + ], + 'reward_types' => [ + 'basic' => 'Ricompensa base', + 'harem_addition' => 'Aggiunta di harem', + 'official_addition' => 'Aggiunta ufficiale', + 'medal_addition' => 'Aggiunta medaglia', + ], + 'not_enough' => 'Nessun bonus sufficiente! Richiede :require_bonus, attualmente hai solo: :now_bonus', + 'msg_someone_loves_you' => "Qualcuno ti ama", + 'msg_you_have_been_given' => "Ti è stato dato un dono di ", + 'msg_after_tax' => " (dopo le tasse è ", + 'msg_karma_points_by' => ") Punti Karma di ", + 'msg_personal_message_from' => "Messaggio personale da ", + 'msg_colon' => ": ", +]; diff --git a/resources/lang/it/bookmark.php b/resources/lang/it/bookmark.php new file mode 100644 index 00000000..0c599be8 --- /dev/null +++ b/resources/lang/it/bookmark.php @@ -0,0 +1,8 @@ + [ + 'store_success' => 'Aggiungi al segnalibro con successo!', + 'delete_success' => 'Cancellare il segnalibro riuscito!', + ] +]; diff --git a/resources/lang/it/claim.php b/resources/lang/it/claim.php new file mode 100644 index 00000000..4a405ccb --- /dev/null +++ b/resources/lang/it/claim.php @@ -0,0 +1,38 @@ + 'Dettaglio reclamo torrent', + 'title_for_user' => 'Dettaglio reclamo utente', + 'th_id' => 'ID', + 'th_username' => 'Utente', + 'th_torrent_name' => 'Nome del torrent', + 'th_torrent_size' => 'Dimensione del torrent', + 'th_torrent_ttl' => 'Torrent TTL', + 'th_claim_at' => 'Indicazione a', + 'th_last_settle' => 'Ultima risoluzione alle', + 'th_seed_time_this_month' => 'Se. questo mese', + 'th_uploaded_this_month' => 'Up. questo mese', + 'th_reached_or_not' => 'Raggiunto', + 'th_action' => 'Azione', + + 'msg_title' => 'Richiedi il risultato del settle il mese scorso(:mese):', + 'msg_subject' => 'regolamento dei crediti :month', + 'claim_total' => 'Richiedi torrent totale: [b]:total[/b]', + 'claim_reached_counts' => 'Numero di torrent raggiunto: [b]:counts[/b]', + 'claim_reached_summary' => 'Raggiunto il torrent ottenere bonus all\'ora: [b]:bonus_per_hour[/b], seme tempo medio(ora): [b]:hours[/b], ottenere bonus totale: [b]:bonus_total[/b]', + 'claim_unreached_remain_counts' => 'I torrent non raggiunti rimangono conti: [b]:counts[/b]', + 'claim_unreached_remove_counts' => 'Conteggi di rimozione torrent non raggiunti: [b]:counts[/b]', + 'claim_unreached_summary' => 'Deduca bonus ogni torrent:[b]:deduct_per_torrent[/b], deduzione totale: [b]:deduct_total[/b]', + + 'confirm_give_up' => 'Sei sicuro di voler rinunciare a richiedere questo torrent?', + 'add_claim' => 'Claim', + 'add_claim_confirm' => 'Confermi di reclamare?', + 'remove_claim' => 'Abbandona', + 'remove_claim_confirm' => 'Confermi di rinunciare al reclamo?', + 'already_claimed' => 'Richiesto', + 'not_claim_yet' => 'Non Richiesto', + 'fields' => [ + 'torrent_id' => 'Id Torrent', + ], + 'claim_all_seeding_confirmation' => 'Sei sicuro di voler reclamare tutti i torrent che stanno per essere in seme?' , +]; diff --git a/resources/lang/it/cleanup.php b/resources/lang/it/cleanup.php new file mode 100644 index 00000000..d4bca8d9 --- /dev/null +++ b/resources/lang/it/cleanup.php @@ -0,0 +1,36 @@ + 'Bandito dal sistema a causa di sonnolenza è scaduto.', + 'disable_user_unconfirmed' => 'Disabilita per sistema a causa di scadenza eccessiva non confermata.', + 'disable_user_no_transfer_alt_last_access_time' => 'Disabilita account utente inattivi, nessun trasferimento. Alt: ultimo tempo di accesso.', + 'disable_user_no_transfer_alt_register_time' => 'Disabilita gli account utente inattivi, nessun trasferimento. Alt: tempo di registrazione.', + 'disable_user_not_parked' => 'Disabilita gli account utente inattivi, non parcheggiati.', + 'disable_user_parked' => 'Disabilita gli account utente inattivi, parcheggiati.', + 'destroy_disabled_account' => 'Eliminazione fisica temporizzata degli account disabilitati', + 'alarm_email_subject' => '[:site_name] eccezione per l\'attività di pulizia dello sfondo', + 'alarm_email_body' => 'Ora attuale: :now_time, livello :level, L\'ultima volta di esecuzione era: :last_time, è stato più di: :elapsed_seconds seconds(:elapsed_seconds_human) da quando è stato eseguito, l\'intervallo di esecuzione impostato è: :interval seconds(:interval_human), per favore controlla!', + 'alarm_email_subject_for_queue_failed_jobs' => '[:site_name]Eccezione Attività Asincrona', + 'alarm_email_body_for_queue_failed_jobs' => 'Ci sono un totale di :count lavori asincroni falliti da :poiché, registrato nella tabella del database :failed_job_table, si prega di controllare!', + + 'msg_low_ratio_warning_removed' => "Avviso A Basso Rapporto Rimosso", + 'msg_your_ratio_warning_removed' => "Il tuo avviso di basso rapporto è stato rimosso e auto-promosso a [b]utente[/b]. Ti consigliamo vivamente di mantenere il tuo rapporto fino a non essere avvisato di nuovo.\n", + 'msg_promoted_to' => "Promosso a ", + 'msg_now_you_are' => "Congratulazioni, sei stato auto-promosso a [b]", + 'msg_see_faq' => "[/b]. :)\nPer favore consulta [b][url=faq.php#id22]FAQ[/url][/b] per quello che puoi fare ora.\n", + 'msg_demoted_to' => "Demotato a ", + 'msg_demoted_from' => "Sei stato automaticamente degradato da [b]", + 'msg_to' => "Da [/b] a [b]", + 'msg_because_ratio_drop_below' => "[/b] perché il tuo rapporto di condivisione è sceso sotto ", + 'msg_must_fix_ratio_within' => "Sei stato avvertito e auto-degradato da [b]utente[/b] a [b]contadino[/b] a causa di un basso rapporto. È necessario risolvere il problema all'interno ", + 'msg_days_or_get_banned' => " giorni o il tuo account sarà bandito. Se non hai idea di cosa sia il rapporto o come ti influenzi, ti suggeriamo di leggere [url=faq. hp#idid17][b]FAQ[/b][/url].", + 'msg_vip_status_removed' => "Stato VIP rimosso dal sistema.", + 'msg_vip_status_removed_body' => "Il tuo stato VIP è scaduto ed è stato rimosso automaticamente dal sistema. Diventa di nuovo un VIP scambiando alcuni Punti Bonus Karma. Saluti!", + 'msg_donor_status_removed' => "Stato del donatore rimosso dal sistema.", + 'msg_donor_status_removed_body' => "Il tuo status di donatore è scaduto ed è stato rimosso automaticamente dal sistema. Diventa un donatore di nuovo donando a noi. Saluti!", + 'msg_warning_removed' => "Attenzione rimossa dal sistema", + 'msg_your_warning_removed' => "Il tuo avviso viene rimosso dal sistema. Speriamo che ci si comporti da ora in avanti.", + 'msg_your_torrent_deleted' => "Il tuo torrent è stato eliminato", + 'msg_your_torrent' => "Il tuo torrent ", + 'msg_was_deleted_because_dead' => " è stato eliminato dal sistema perché è morto per molto tempo. Tuttavia, si mantiene il bonus karma per caricare il torrent.", +]; diff --git a/resources/lang/it/comment.php b/resources/lang/it/comment.php new file mode 100644 index 00000000..59df1ad0 --- /dev/null +++ b/resources/lang/it/comment.php @@ -0,0 +1,8 @@ + "Nuovo commento", + 'msg_torrent_receive_comment' => "Hai ricevuto un commento sul tuo torrent ", + 'msg_offer_receive_comment' => "Hai ricevuto un commento sulla tua offerta ", + 'msg_request_receive_comment' => "Hai ricevuto un commento sulla tua richiesta " +]; diff --git a/resources/lang/it/dashboard.php b/resources/lang/it/dashboard.php new file mode 100644 index 00000000..f65a36db --- /dev/null +++ b/resources/lang/it/dashboard.php @@ -0,0 +1,65 @@ + [ + 'page_title' => 'Statistiche utente', + 'total' => 'Totale', + 'unconfirmed' => 'Non Confermato', + 'visit_last_one_day' => 'PV degli ultimi 1 giorno', + 'visit_last_one_week' => 'PV degli ultimi 7 giorni', + 'visit_last_30_days' => 'PV degli ultimi 30 giorni', + 'vip' => 'Vip', + 'donated' => 'Donato', + 'warned' => 'Avvertito', + 'disabled' => 'Disabilitato', + 'gender_male' => 'Maschio', + 'gender_Male' => 'Maschio', + 'gender_female' => 'Femmina', + 'gender_Female' => 'Femmina', + 'gender_N/A' => 'Sesso sconosciuto', + ], + 'torrent' => [ + 'page_title' => 'Statistiche torrent', + 'total' => 'Totale', + 'dead' => 'Morto', + 'seeders' => 'Seminatrici', + 'leechers' => 'Leechers', + 'seeders_leechers' => 'Peers', + 'seeders_leechers_ratio' => 'Seeders / Leechers', + 'active_web_users' => 'Utenti web attivi', + 'active_tracker_users' => 'Utenti del Tracker attivi', + 'total_torrent_size' => 'Dimensione totale del torrent', + 'total_uploaded' => 'Dimensione caricata', + 'total_downloaded' => 'Dimensione scaricata', + 'total_uploaded_downloaded' => 'Caricato + dimensione scaricata', + ], + 'user_class' => [ + 'page_title' => 'Classe utente', + ], + 'system_info' => [ + 'page_title' => 'Informazioni di sistema', + 'nexus_version' => 'Versione di NexusPHP', + 'nexus_release_date' => 'NexusPHP release date', + 'laravel_version' => 'Versione di Laravel', + 'php_version' => 'Versione PHP', + 'mysql_version' => 'Versione di MySQL', + 'os' => 'OS', + 'server_software' => 'Software web', + 'load_average' => 'Carico medio del server', + 'filament_version' => 'Versione del filamento', + 'redis_version' => 'Versione di Redis', + ], + 'latest_user' => [ + 'page_title' => 'Utente più recente', + ], + 'latest_torrent' => [ + 'page_title' => 'Torrent più recente', + ], + 'torrent_trend' => [ + 'page_title' => 'Tendenza torrent', + ], + 'user_trend' => [ + 'page_title' => 'Tendenza utente', + ], + +]; diff --git a/resources/lang/it/exam-user.php b/resources/lang/it/exam-user.php new file mode 100644 index 00000000..c930c10f --- /dev/null +++ b/resources/lang/it/exam-user.php @@ -0,0 +1,16 @@ + [ + 'list' => [ + 'page_title' => 'Utenti dell\'esame' + ] + ], + 'status' => [ + \App\Models\ExamUser::STATUS_FINISHED => 'Finito', + \App\Models\ExamUser::STATUS_AVOIDED => 'Evitata', + \App\Models\ExamUser::STATUS_NORMAL => 'Normale', + ], + 'end_can_not_before_begin' => "Ora di fine: la fine non può essere prima dell'ora di inizio: :start", + 'status_not_allow_update_end' => 'Lo stato attuale non è status_text, non è in grado di modificare l\'ora di fine', +]; diff --git a/resources/lang/it/exam.php b/resources/lang/it/exam.php new file mode 100644 index 00000000..bc7cdf04 --- /dev/null +++ b/resources/lang/it/exam.php @@ -0,0 +1,72 @@ + 'Esame', + 'name' => 'Nome dell\'esame', + 'index' => 'Indice di esame', + 'time_range' => 'Tempo di esame', + 'index_text_' . \App\Models\Exam::INDEX_UPLOADED => 'Incremento caricamento', + 'index_text_' . \App\Models\Exam::INDEX_SEED_TIME_AVERAGE => 'Media tempo di seme', + 'index_text_' . \App\Models\Exam::INDEX_DOWNLOADED => 'Incremento download', + 'index_text_' . \App\Models\Exam::INDEX_SEED_BONUS => 'Incremento bonus', + 'index_text_' . \App\Models\Exam::INDEX_SEED_POINTS => 'Incremento punti seme', + 'index_text_' . \App\Models\Exam::INDEX_UPLOAD_TORRENT_COUNT => 'Carica incremento torrent', + 'filters' => [ + \App\Models\Exam::FILTER_USER_CLASS => 'Classe utente', + \App\Models\Exam::FILTER_USER_REGISTER_TIME_RANGE => 'Intervallo orario di registrazione', + \App\Models\Exam::FILTER_USER_DONATE => 'Donato', + \App\Models\Exam::FILTER_USER_REGISTER_DAYS_RANGE => 'Intervallo di giorni di registrazione', + ], + 'require_value' => 'Richiede', + 'current_value' => 'Corrente', + 'result' => 'Risultato', + + 'result_pass_for_exam' => 'Passato!', + 'result_pass_for_task' => 'Completato!', + 'result_not_pass_for_exam' => 'Non Passato!', + 'result_not_pass_for_task' => 'Non Completato!', + 'checkout_pass_message_subject_for_exam' => 'Esami passato!', + 'checkout_pass_message_content_for_exam' => 'Congratulazioni! Hai superato l\'esame: :exam_name in tempo(:start ~ :end)', + 'checkout_not_pass_message_subject_for_exam' => 'L\'esame non passa, e l\'account è bandito!', + 'checkout_not_pass_message_content_for_exam' => 'Non hai superato l\'esame: :exam_name in tempo(:start ~ :end), e il tuo account è stato bandito!', + + 'checkout_pass_message_subject_for_task' => 'Attività completata!', + 'checkout_pass_message_content_for_task' => 'Congratulazioni! Hai completato il compito: :exam_name in tempo(:start ~ :end), ottenuto bonus: :success_reward_bonus', + 'checkout_not_pass_message_subject_for_task' => 'Attività non completata!', + 'checkout_not_pass_message_content_for_task' => 'Non si completa il compito: :exam_name in tempo (:start ~ :end), dedurre bonus: :fail_deduct_bonus.', + + 'ban_log_reason' => 'Esame non completo: :exam_name in tempo(:start ~ :end)', + 'ban_user_modcomment' => 'A causa dell\'esame non completo: :exam_name(:start ~ :end), ban by system.', + 'admin' => [ + 'list' => [ + 'page_title' => 'Elenco Esami' + ] + ], + 'recurring' => 'ricorrente', + 'recurring_daily' => 'una volta al giorno', + 'recurring_weekly' => 'una volta alla settimana', + 'recurring_monthly' => 'una volta al mese', + 'recurring_help' => 'Se specificato come periodico, l\'ora di inizio dell\'esame è l\'ora di inizio del ciclo corrente, e l\'ora di fine è l\'ora di fine del ciclo corrente, che sono tutti i giorni naturali/settimane/mesi come indicato in questa sede. Se il tipo è esame, alla fine di ogni ciclo, se l\'utente soddisfa ancora i criteri di screening, all\'utente verrà assegnato automaticamente un esame per il ciclo successivo.' , + + 'time_condition_invalid' => 'Il parametro orario non ha senso, ci sono e solo uno dei tre elementi: ora di inizio + ora di fine / durata / ricorrente', + + 'type_exam' => 'Esame', + 'type_task' => 'Attività', + 'type' => 'Tipo', + 'type_help' => 'L\'esame è esame regolare e fallendoli comporterà il divieto dell\'account. Le attività possono essere impostate per ricompensare bonus o dedurre bonus a seconda che siano completati o meno', + + 'fail_deduct_bonus' => 'Deduca bonus per fallimento', + 'success_reward_bonus' => 'Bonus ricompensa per il completamento', + + 'action_claim_task' => 'Claim', + 'confirm_to_claim' => 'Sei sicuro di voler reclamare?' , + 'claim_by_yourself_only' => 'Richiedi solo da soli!' , + 'not_match_target_user' => 'Non sei un utente di destinazione corrispondente!' , + 'has_other_on_the_way' => 'C\'è un altro :type_text in corso!' , + 'claimed_already' => 'Già reclamato', + 'not_between_begin_end_time' => 'Non tra l\' ora di inizio e di fine', + 'reach_max_user_count' => 'Il numero di utilizzatori rivendicati ha raggiunto il suo massimo', + 'claimed_user_count' => 'Richiesto', + 'max_user_count' => 'Numero massimo di utenti della richiesta (0 significa illimitato)', + 'background_color' => 'Colore sfondo casella informazioni', +]; diff --git a/resources/lang/it/file.php b/resources/lang/it/file.php new file mode 100644 index 00000000..a6d23efe --- /dev/null +++ b/resources/lang/it/file.php @@ -0,0 +1,6 @@ + [ + 'page_title' => 'File', + ], +]; diff --git a/resources/lang/it/forum.php b/resources/lang/it/forum.php new file mode 100644 index 00000000..005e74e8 --- /dev/null +++ b/resources/lang/it/forum.php @@ -0,0 +1,12 @@ + [ + 'replied_notify_subject' => 'L\'argomento ha una nuova risposta', + 'replied_notify_body' => 'Il tuo topic::topic_subject ha una nuova risposta.', + ], + 'post' => [ + 'edited_notify_subject' => 'La risposta del post è stata modificata', + 'edited_notify_body' => 'La tua risposta all\'argomento: :topic_subject è stata modificata da: :editor.', + ] +]; diff --git a/resources/lang/it/fun.php b/resources/lang/it/fun.php new file mode 100644 index 00000000..d3b1a8f5 --- /dev/null +++ b/resources/lang/it/fun.php @@ -0,0 +1,15 @@ + "Oggetti divertenti banditi", + 'msg_your_fun_item' => "Il tuo divertente oggetto '", + 'msg_is_ban_by' => "' è vietato da ", + 'msg_reason' => ". Motivo: ", + 'msg_fun_item_reward' => "Ricompensa oggetto divertente", + 'msg_out_of' => " fuori da ", + 'msg_people_think' => " pensa che l'oggetto divertente che hai pubblicato ", + 'msg_is_fun' => " è divertente. Quindi, ecco ", + 'msg_bonus_as_reward' => " punti karma come ricompensa.", + 'msg_fun_item_dull' => "Elemento divertente opaco", + 'msg_is_dull' => " è in realtà noioso :thumbsdown: . Quindi è stato rimosso dalla pagina iniziale. Forse è necessario migliorare il tuo senso dell'umorismo.", +]; diff --git a/resources/lang/it/hr.php b/resources/lang/it/hr.php new file mode 100644 index 00000000..4c092bf4 --- /dev/null +++ b/resources/lang/it/hr.php @@ -0,0 +1,28 @@ + 'Ispezione', + 'status_' . \App\Models\HitAndRun::STATUS_REACHED => 'Raggiunto', + 'status_' . \App\Models\HitAndRun::STATUS_UNREACHED => 'Non Raggiunto', + 'status_' . \App\Models\HitAndRun::STATUS_PARDONED => 'Perdonato', + + 'mode_' . \App\Models\HitAndRun::MODE_DISABLED => 'Disabilitato', + 'mode_' . \App\Models\HitAndRun::MODE_MANUAL => 'Manuale', + 'mode_' . \App\Models\HitAndRun::MODE_GLOBAL => 'Globale', + + 'reached_by_seed_time_comment' => 'Fino a::now,seed time: :seed_time Hour(s) raggiunto :seed_time_minimum Hour(s)', + 'reached_by_share_ratio_comment' => "Fino a::now \ntempo del seme: :seed_time Ore non raggiunte :seed_time_minimum Ore \nShare ratio: :share_ratio ha raggiunto lo standard::ignore_when_ratio_reach", + 'reached_by_special_user_class_comment' => "La tua classe utente: :user_class_text o utente donato, ignora questo H&R", + 'reached_message_subject' => 'H&R(ID: :hit_and_run_id) raggiunto!', + 'reached_message_content' => 'Congratulazioni! Il torrent: :torrent_name(ID: :torrent_id) che scarichi a: :completed_at ha raggiunto il requisito.', + + 'unreached_comment' => "Fino a::now \ntempo di seed: :seed_time Ore non raggiunte il requisito::seed_time_minimum Ore \nratio::share_ratio non raggiunse il requisito::ignore_when_ratio_reach too", + 'unreached_message_subject' => 'H&R(ID: :hit_and_run_id) non raggiunto!', + 'unreached_message_content' => 'Il torrent :torrent_name(ID: :torrent_id) che hai scaricato su :completed_at: non è stato raggiunto! Nota che accumulare un certo numero di H&R il tuo account sarà disabilitato.', + + 'unreached_disable_comment' => 'La quantità di H&R ha raggiunto il limite superiore e l\'account è stato disabilitato dal sistema', + 'unreached_disable_message_content' => 'Il tuo account è stato disabilitato perché il conteggio H&R cumulativo è stato raggiunto il limite di sistema: :ban_user_when_counts_reach', + + 'bonus_cancel_comment' => 'spendere :bonus annullato', + 'remove_confirm_msg' => 'Eliminare un H&R detraendo :bonus bonus, OK?', +]; diff --git a/resources/lang/it/imdb.php b/resources/lang/it/imdb.php new file mode 100644 index 00000000..1e21244a --- /dev/null +++ b/resources/lang/it/imdb.php @@ -0,0 +1,15 @@ + [ + 'en-US' => 'Inglese (Stati Uniti)', + 'fr-CA' => 'French (Canada)', + 'fr-FR' => 'Francese (Francia)', + 'de-DE' => 'Tedesco', + 'hi-IN' => 'Hindi', + 'it-IT' => 'Italiano', + 'pt-BR' => 'Portoghese (Brasile)', + 'es-ES' => 'Spagnolo (Spagna)', + 'es-MX' => 'Spagnolo (Messico)', + ], +]; diff --git a/resources/lang/it/index.php b/resources/lang/it/index.php new file mode 100644 index 00000000..ca5d8ed5 --- /dev/null +++ b/resources/lang/it/index.php @@ -0,0 +1,5 @@ + 'Invitatore non valido! Il codice d\'invito è bandito!', + 'fields' => [ + 'inviter' => 'Mittente', + 'invitee' => 'Ricevi email', + 'time_invited' => 'Tempo di invio', + 'valid' => 'Valid', + 'invitee_register_uid' => 'UID Registrato', + 'invitee_register_email' => 'E-mail registrata', + 'invitee_register_username' => 'Nome utente registrato', + 'expired_at' => 'hash scaduto il', + 'time_invited_begin' => 'Invia tempo gte', + 'time_invited_end' => 'Invia tempo lte', + ], + 'send_deny_reasons' => [ + 'invite_system_closed' => 'Il sistema di invito è chiuso', + 'no_permission' => 'Richiedi :class o superiore per inviare inviti', + 'invite_not_enough' => 'Inviti non sufficienti', + ], + 'send_allow_text' => 'Invita qualcuno', + 'pre_register_username' => 'Pre-registrazione username', + 'pre_register_username_help' => 'Il nome utente e l\'email non verranno cambiati quando l\'utente si registra con questo codice di invito', + 'require_pre_register_username' => "Il nome utente pre-registrazione non può essere vuoto", +]; diff --git a/resources/lang/it/label.php b/resources/lang/it/label.php new file mode 100644 index 00000000..69845aca --- /dev/null +++ b/resources/lang/it/label.php @@ -0,0 +1,381 @@ + 'Nome', + 'email' => 'Email', + 'image' => 'Immagine', + 'expire_at' => 'Scadenza alle', + 'username' => 'Utente', + 'status' => 'Stato', + 'enabled' => 'Abilitato', + 'disabled' => 'Disabilitato', + 'created_at' => 'Creato il', + 'updated_at' => 'Aggiornato il', + 'begin' => 'Ora di inizio', + 'end' => 'Ora di fine', + 'uploaded' => 'Caricato', + 'downloaded' => 'Scaricato', + 'ratio' => 'Rapporto di condivisione', + 'seed_time_required' => 'Tempo di seme richiesto', + 'inspect_time_left' => 'Esamina il tempo rimanente', + 'added' => 'Aggiungi ora', + 'last_access' => 'Ultima ora di accesso', + 'priority' => 'Priorità', + 'priority_help' => 'Maggiore è il valore, maggiore è la classifica', + 'comment' => 'Commento', + 'duration' => 'Durata', + 'description' => 'Descrizione', + 'price' => 'Prezzo', + 'deadline' => 'Scadenza', + 'permanent' => 'Permanente', + 'operator' => 'Operatore', + 'action' => 'Azione', + 'submit' => 'Invia', + 'cancel' => 'Annulla', + 'reset' => 'Reset', + 'anonymous' => 'Anonimo', + 'infinite' => 'Inf.', + 'save' => 'Salva', + 'country' => 'Paese', + 'city' => 'Città', + 'client' => 'Client', + 'reason' => 'Motivo', + 'change' => 'Cambia', + 'create' => 'Crea', + 'created_at_begin' => 'Creato all\'inizio', + 'created_at_end' => 'Creato alla fine', + 'text_quote' => 'Preventivo', + 'text_code' => "CODICE", + 'setting' => [ + 'nav_text' => 'Impostazione', + 'backup' => [ + 'tab_header' => 'Backup', + 'enabled' => 'Abilitato', + 'enabled_help' => 'Abilita il backup o meno', + 'frequency' => 'Frequenza', + 'frequency_help' => 'Frequenza di backup', + 'hour' => 'Ora', + 'hour_help' => 'Fai il backup a questa ora', + 'minute' => 'Minuto', + 'minute_help' => "Il backup viene eseguito al minuto dell'ora precedente. Se la frequenza viene premuta 'oraria', questo valore verrà ignorato", + 'google_drive_client_id' => 'ID client Google Drive', + 'google_drive_client_secret' => 'Google Drive client segreto', + 'google_drive_refresh_token' => 'Token di aggiornamento Google Drive', + 'google_drive_folder_id' => 'Id cartella Google Drive', + 'via_ftp' => 'Backup tramite FTP', + 'via_ftp_help' => 'Se salvare tramite FTP. In tal caso, aggiungere le informazioni di configurazione al file .env, fare riferimento a Laravel doc', + 'via_sftp' => 'Backup tramite SFTP', + 'via_sftp_help' => 'Se salvare tramite FTP. In tal caso, aggiungere le informazioni di configurazione al file .env, fare riferimento a Laravel doc', + ], + 'hr' => [ + 'tab_header' => 'H&R', + 'mode' => 'Modalità', + 'inspect_time' => 'Tempo di ispezione', + 'inspect_time_help' => 'La durata dell’esame è calcolata dal completamento del download, in ore', + 'seed_time_minimum' => 'Tempo di seme minimo', + 'seed_time_minimum_help' => 'Il tempo più breve per fare i semi per soddisfare lo standard, in ore, deve essere inferiore alla lunghezza della spedizione', + 'ignore_when_ratio_reach' => 'Tasso Di Condivisione Risultati', + 'ignore_when_ratio_reach_help' => 'Il tasso minimo di condivisione per soddisfare lo standard', + 'ban_user_when_counts_reach' => 'Limite conteggio H&R', + 'ban_user_when_counts_reach_help' => 'Il numero di H&R raggiunge questo valore e l\'account sarà disabilitato', + 'include_rate' => 'Richiedi tasso di completamento', + 'include_rate_help' => 'Contare H&R solo quando il tasso di completamento del download (decimale tra 0 ~ 1) raggiunge questo valore. Predefinito: 1' + ], + 'seed_box' => [ + 'tab_header' => 'SeedBox', + 'enabled_help' => 'Abilita o meno le regole SeedBox', + 'no_promotion' => 'Nessuna promozione', + 'no_promotion_help' => 'Nessuna Promozione, caricata/scaricata viene calcolata in base al valore effettivo', + 'max_uploaded' => 'Moltiplicatore massimo volume di caricamento', + 'max_uploaded_help' => 'Il volume totale di caricamento è al massimo un multiplo del suo volume. Impostare a 0 Nessuna limitazione', + 'not_seed_box_max_speed' => 'Velocità massima di caricamento non SeedBox', + 'not_seed_box_max_speed_help' => 'Unità: Mbps, se questo valore è superato e il record SeedBox non può essere corrisposto, il permesso di download è disabilitato', + 'max_uploaded_duration' => 'Massimo volume di caricamento moltiplicatore intervallo di tempo effettivo', + 'max_uploaded_duration_help' => 'Unità: ore. Il moltiplicatore massimo del volume di upload ha effetto entro questo intervallo di tempo dopo la pubblicazione del torrent e non ha effetto oltre questo intervallo. Un\'impostazione di 0 è sempre in vigore', + ], + 'meilisearch' => [ + 'tab_header' => 'Meilisearch', + 'enabled' => 'Indica se abilitare Meilisearch', + 'enabled_help' => 'Si prega di installare e configurare e importare i dati prima di abilitarli, altrimenti non ci sono dati per la ricerca di torrent.', + 'search_description' => 'Cerca se cercare le descrizioni', + 'search_description_help' => "Predefinito: 'No'. Se 'Sì', verrà restituita anche la descrizione contenente le parole chiave e il numero di colpi potrebbe essere più alto. Necessità di re-importare immediatamente dopo il cambiamento", + 'default_search_mode' => 'Modalità di ricerca predefinita', + 'default_search_mode_help' => "Predefinito: 'Exact'. 'An will be split, 'Exact' is not split", + ], + 'system' => [ + 'tab_header' => 'Sistema', + 'change_username_card_allow_characters_outside_the_alphabets' => 'Il nome cambia carta permette caratteri diversi dalle lettere inglesi', + 'change_username_min_interval_in_days' => 'L\'intervallo minimo di giorni di Cambia nome utente', + 'maximum_number_of_medals_can_be_worn' => 'Numero massimo di medaglie che possono essere indossate', + 'cookie_valid_days' => 'Cookie Valido giorni', + 'maximum_upload_speed' => 'Velocità massima di caricamento', + 'maximum_upload_speed_help' => 'Questo valore influisce sul rilevamento degli cheater ed è la massima velocità di caricamento per un livello di rilevamento conservativo. Limite di velocità effettivo = velocità massima di caricamento/livello di rilevamento, dal conservatore al sospetto è 1 a 4. Se il limite massimo di velocità è 1000, e il livello di rilevamento è conservatore, il limite effettivo di velocità è 1000/1 = 1000, e il livello di rilevamento è sospetto, il limite effettivo di velocità è 1000/4 = 250. Una singola velocità di caricamento che supera il Limite di Velocità Attuale disabiliterà istantaneamente l\'account. L\'unità qui è Mbps, ad esempio: 100 Mbps = 12,5 MB/s.', + 'is_invite_pre_email_and_username' => 'Invita se pre-prenotare un\'email e un nome utente', + 'is_invite_pre_email_and_username_help' => "Predefinito: 'No'. Se pre-prenotato, email e nome utente non possono essere modificati quando l'utente si registra.", + 'access_admin_class_min' => 'Classe minima per accedere al backend amministratore', + 'access_admin_class_min_help' => 'Predefinito: amministratore, gli utenti con una classe utente maggiore o uguale al valore impostato possono accedere al backend amministratore', + 'alarm_email_receiver' => 'Ricevitore email allarme', + 'alarm_email_receiver_help' => "Compila l'UID dell'utente, separato dallo spazio, e l'email di avviso verrà inviata all'indirizzo email dell'utente corrispondente. Se non lo compili, verrà scritto nel registro di runtime e il livello di log sarà un errore", + ], + 'image_hosting' => [ + 'driver' => 'Posizione di archiviazione', + 'driver_help' => 'Se si sceglie locale, il valore predefinito è quello di salvarlo localmente sul server in cui si trova il sito web, altrimenti caricalo sul corrispondente server di immagini', + 'tab_header' => 'hosting di immagini', + 'upload_api_endpoint' => 'Carica indirizzo interfaccia', + 'base_url' => 'Prefisso URL immagine', + 'upload_token' => 'Carica token', + ] + ], + 'user' => [ + 'label' => 'Utente', + 'uploaded' => 'Caricato', + 'downloaded' => 'Scaricato', + 'invites' => 'Inviti', + 'seedbonus' => 'Bonus', + 'attendance_card' => 'Partecipazione a ard', + 'class' => 'Classe', + 'status' => 'Stato', + 'enabled' => 'Abilitato', + 'username' => 'Username', + 'invite_by' => 'Invito', + 'two_step_authentication' => 'Autenticazione in due passaggi', + 'seed_points' => 'Punti di seme', + 'downloadpos' => 'Scarica privilegi', + 'parked' => 'Parcheggiato', + 'offer_allowed_count' => 'Conteggio offerta consentita', + 'tmp_invites' => 'Invito temporaneo', + ], + 'medal' => [ + 'label' => 'Medaglia', + 'image_large' => 'Immagine grande', + 'image_small' => 'Immagine piccola', + 'get_type' => 'Ottieni tipo', + 'duration' => 'Durata', + 'duration_help' => 'Unità: giorni. Se lasciato vuoto, l\'utente ha un possesso permanente', + ], + 'user_medal' => [ + 'label' => 'Medaglia utente', + ], + 'exam' => [ + 'label' => 'Esami E Attività', + 'is_done' => 'È finito', + 'is_discovered' => 'Scoperto', + 'register_time_range' => [ + 'begin' => 'Inizio orario di registrazione', + 'end' => 'Tempo di registrazione fine', + ], + 'register_days_range' => [ + 'begin' => 'Giorni minimi di registrazione', + 'end' => 'Giorni massimi di registrazione', + ], + 'donated' => 'Donato', + 'index_formatted' => 'Indice dell\'esame', + 'filter_formatted' => 'Target users', + 'section_base_info' => 'Informazioni di base', + 'priority_help' => 'Maggiore è il valore, maggiore è la priorità, e quando l\'esame multiplo corrisponde allo stesso utente, viene assegnato quello con la massima priorità.', + 'section_time' => 'Tempo', + 'duration_help' => 'Unità: giorni. Quando l\'assegnazione all\'utente, inizia e finisce sono usati se sono specificati. Altrimenti l\'ora di inizio è l\'ora di assegnazione, e l\'ora di fine è l\'ora di assegnazione più la durata.', + 'section_target_user' => 'Utente destinatario', + 'index_required_value' => 'Richiede valore', + 'index_required_label' => 'Indice', + 'index_placeholder' => 'Incremento caricamento/download in GB e media del tempo del seed in ora', + 'index_current_value' => 'Valore attuale', + 'index_result' => 'Risultato', + ], + 'exam_user' => [ + 'label' => 'Utente dell\'esame', + 'is_done' => 'È finito', + ], + 'torrent' => [ + 'label' => 'Torrent', + 'owner' => 'Proprietario', + 'size' => 'Dimensione', + 'ttl' => 'TTL', + 'seeders' => 'Seminatrici', + 'leechers' => 'Leechers', + 'times_completed' => 'Complete', + 'category' => 'Categoria', + 'approval_status' => 'Status di approvazione', + 'pos_state' => 'Stato del PO', + 'sp_state' => 'Promozione', + 'visible' => 'Attivo', + 'source' => 'Fonte', + 'codec' => 'Codec', + 'audiocodec' => 'Codec audio', + 'medium' => 'Medio', + 'team' => 'Squadra', + 'processing' => 'Elaborazione', + 'standard' => 'Standard', + 'picktype' => 'Consiglia', + 'promotion_time_type' => 'Tempo tipo promozione', + 'hr' => 'H&R', + 'added_begin' => 'Aggiunto maggiore di', + 'added_end' => 'Aggiunto meno di', + 'size_begin' => 'Dimensione maggiore di', + 'size_end' => 'Dimensione inferiore a', + 'price' => 'Prezzo', + 'price_help' => 'Quando un utente scarica un torrent, il caricatore riceverà entrate, meno l\'aliquota fiscale corrispondente, l\'aliquota fiscale corrente: :tax_factor', + 'max_price_help' => 'Maximum::max_price', + ], + 'hit_and_run' => [ + 'label' => 'H&R Utente', + ], + 'tag' => [ + 'label' => 'Tag', + 'color' => 'Colore di sfondo', + 'font_color' => 'Font color', + 'font_size' => 'Font size', + 'margin' => 'Margine', + 'padding' => 'Padding', + 'border_radius' => 'Raggio bordo', + 'torrents_count' => 'Conteggio torrent', + 'torrents_sum_size' => 'Dimensione torrent', + ], + 'agent_allow' => [ + 'label' => 'Agente consentire', + 'family' => 'Famiglia', + 'start_name' => 'Inizio nome', + 'peer_id_start' => 'Partenza ID peer', + 'peer_id_pattern' => 'Schema ID peer', + 'peer_id_matchtype' => 'Tipo di corrispondenza ID peer', + 'peer_id_match_num' => 'Numero ID peer', + 'agent_start' => 'Avvio agente', + 'agent_pattern' => 'Modello agente', + 'agent_matchtype' => 'Tipo di corrispondenza agente', + 'agent_match_num' => 'Agente partita num', + 'exception' => 'Eccezione', + 'allowhttps' => 'Consenti https', + ], + 'agent_deny' => [ + 'label' => 'Agente negato', + 'peer_id' => 'Partenza ID peer', + 'agent' => 'Agente', + ], + 'claim' => [ + 'label' => 'Reclamo utente', + 'last_settle_at' => 'Ultima risoluzione alle', + 'seed_time_this_month' => 'San questo mese', + 'uploaded_this_month' => 'Up. questo mese', + 'is_reached_this_month' => 'Raggiunto', + ], + 'torrent_state' => [ + 'label' => 'Promozione globale', + 'global_sp_state' => 'Stato della promozione globale', + ], + 'role' => [ + 'class' => 'Relaziona classe utente', + ], + 'seed_box_record' => [ + 'label' => 'SeedBox Records', + 'type' => 'Aggiungi tipo', + 'operator' => 'Operatore', + 'bandwidth' => 'Larghezza Di Banda (Mbps)', + 'ip' => 'IP(Block)', + 'ip_begin' => 'Inizia IP', + 'ip_end' => 'IP Finale', + 'ip_help' => 'Compila l\'IP ASN/start + IP/IP finale (Block), solo uno dei tre', + 'status' => 'Stato', + 'is_allowed' => 'È whitelist', + 'is_allowed_help' => 'Gli IP nella whitelist non sono influenzati dalla regola SeedBox', + 'asn' => 'ASN', + ], + 'menu' => [ + 'label' => 'Menu personalizzato', + 'enable_help' => 'Indica se abilitare il menu personalizzato', + ], + 'menu_item' => [ + 'label' => 'Voci di menu', + 'url' => 'Link', + 'text' => 'Testo', + 'target' => 'Tipo di apertura', + 'style' => 'Stile', + 'parent_id' => 'Genitore', + 'min_class' => 'Classe minima visibile', + ], + 'user_meta' => [ + 'meta_keys' => [ + \App\Models\UserMeta::META_KEY_CHANGE_USERNAME => 'Nome Cambia Carta', + \App\Models\UserMeta::META_KEY_PERSONALIZED_USERNAME => 'Id Arcobaleno', + ], + ], + 'search_box' => [ + 'label' => 'Casella di ricerca', + 'name' => 'Nome SearchBox', + 'name_help' => 'Caratteri consentiti: [a-z] (in minuscolo), [0-9], [_./].', + 'section_name' => 'Nome sezione', + 'section_name_help' => 'Se impostato, visualizzato nel menu', + 'is_default' => 'Predefinito o no', + 'showsubcat' => 'Mostra sottocategoria', + 'taxonomies' => 'Tassonomia', + 'taxonomy_display_text' => 'Visualizza testo', + 'torrent_field' => 'Campo tabella torrent', + 'catsperrow' => 'Oggetti per riga', + 'catsperrow_help' => "Imposta quanti elementi devono mostrare in una riga nella casella di ricerca, ad esempio '8'.", + 'catpadding' => "Distanza tra gli elementi", + 'catpadding_help' => "In pixel. Lo spazio di riempimento horizionale tra gli elementi nella casella di ricerca, ad esempio '3'.", + 'custom_fields' => 'Abilita campo personalizzato ', + 'custom_fields_display_name' => 'Nome visualizzazione campo personalizzato', + 'custom_fields_display' => 'Visualizzazione campo personalizzato', + 'custom_fields_display_help' => "Usa 'etichetta specifica' per rappresentare l'etichetta e il valore del campo personalizzato, come il nome di un campo personalizzato è 'artista', +allora è l'etichetta:<%artist.label%>,è il valore:<%artist.value%>", + 'category' => 'Categoria', + 'torrent_field_duplicate' => 'Il campo della tabella Torrent non può essere riutilizzato!', + 'other' => 'Altro', + 'taxonomy' => [ + 'name' => 'Nome', + 'sort_index' => 'Ordina', + 'sort_index_help' => "Ascendente, cioè '0' viene per primo.", + 'class_name' => 'attributo classe', + 'class_name_help' => "Il nome del file immagine. Caratteri consentiti: [a-z] (in minuscolo), [0-9], [_./].", + 'image' => 'Immagine', + 'image_help' => 'Il nome del file immagine. Caratteri consentiti: [a-z] (in minuscolo), [0-9], [_./].', + 'icon_id' => 'Pacchetto icone categoria', + 'mode' => 'SearchBox', + 'mode_help' => 'Lasciare vuoto per indicare che si applica a tutti SearchBox', + ], + ], + 'icon' => [ + 'label' => 'Icona categoria', + 'folder' => 'Cartella Pacchetto Icone', + 'folder_help' => "Il nome della cartella del pacchetto di icone. Caratteri consentiti: [a-z] (in minuscolo), [0-9], [_. ].DEVE aggiungere una barra finale (/) alla fine, ad esempio 'mycaticon/'", + 'cssfile' => 'File CSS', + 'cssfile_help' => "File CSS per questo pacchetto di icone. Inserisci il percorso completo, ad esempio 'styles/scenetorrents.css'. Lascialo vuoto se non lo è. +Caratteri consentiti: [a-z] (in minuscolo), [0-9], [_./].", + 'multilang' => 'Multi-lang.', + 'multilang_help' => "Indica se usare icone di categoria diverse per lingue diverse. Se impostato a 'sì', inserisci diversi pacchetti di icone in diverse cartelle denominate 'en', 'chs', ecc.", + 'secondicon' => 'Seconda Icona', + 'secondicon_help' => "Indica se usare le seconde icone per informazioni aggiuntive. Se impostato a 'sì', inserisci le seconde icone in una cartella chiamata 'addizionale' insieme alle normali icone.", + 'designer' => 'Designer', + 'designer_help' => 'La persona che ha progettato il pacchetto di icone.', + 'comment' => 'Commento', + 'comment_help' => ' Infomazione sul pacchetto delle icone.', + 'desc' => "È necessario mettere le icone nella directory giusta per far funzionare queste impostazioni. Inserire le normali icone in 'pic/category/searchbox_name/icon_pack_folder[language_short_name/]' e le seconde icone in 'pic/category/searchbox_name/icon_pack_folder[language_short_name/]additional/'. +Non prenderlo? Vedi se i seguenti esempi potrebbero aiutare: +When + searchbox_name='nhd' + icon_pack_folder='scenetorrents/' + multi-lang='yes' + second_icon='no' +dovresti mettere un normale file di icone inglese per i film (e. . 'movies.png') in 'pic/category/nhd/scenetorrents/en/' . +Quando + searchbox_name='chd' + icon_pack_folder='nanosofts/' + multi-lang='no' + second_icon='yes' +dovresti inserire un normale file di icone per i film (e. . film. ng) in 'pic/category/chd/nanosofts/' e un file icona aggiuntivo (ad esempio 'bdh264.png') in 'pic/category/chd/nanosofts/additional/'. + +Nota: in 1. , la parte 'searchbox_name' può essere omessa, cioè la regola è 'pic/category/icon_pack_folder[language_short_name/].' +", + ], + 'second_icon' => [ + 'label' => 'Seconda icona', + 'name' => 'Nome', + 'name_help' => "Non usare il nome lungo. Raccomanda meno di 10 lettere.", + 'image' => "Immagine", + 'image_help' => "Il nome del file immagine. Caratteri consentiti: [a-z] (in minuscolo), [0-9], [_./].", + 'class_name' => 'attributo classe', + 'class_name_help' => "Il valore dell'attributo 'classe' dell'immagine. Lascialo vuoto se non lo è. Caratteri consentiti: [a-z] (in minuscolo), [0-9], [_]e la prima lettera deve essere in [a-z].", + 'select_section' => 'Selezioni', + 'select_section_help' => "Se una selezione non è definita, tutte le opzioni della selezione sono consentite per la regola. Almeno una selezione deve essere definita.", + ], +]; diff --git a/resources/lang/it/medal.php b/resources/lang/it/medal.php new file mode 100644 index 00000000..b9394b65 --- /dev/null +++ b/resources/lang/it/medal.php @@ -0,0 +1,51 @@ + 'Medaglia', + 'action_wearing' => 'Indossare', + 'admin' => [ + 'list' => [ + 'page_title' => 'Elenco medaglie' + ] + ], + 'get_types' => [ + \App\Models\Medal::GET_TYPE_EXCHANGE => 'Borsa', + \App\Models\Medal::GET_TYPE_GRANT => 'Concedi', + ], + 'fields' => [ + 'get_type' => 'Ottieni tipo', + 'description' => 'Descrizione', + 'image_large' => 'Immagine', + 'price' => 'Prezzo', + 'duration' => 'Valido dopo l\'acquisto (giorni)', + 'sale_begin_time' => 'Tempo inizio vendita', + 'sale_begin_time_help' => 'L\'utente può acquistare dopo questo tempo, lasciare vuoto senza restrizioni', + 'sale_end_time' => 'Tempo di fine vendita', + 'sale_end_time_help' => 'L\'utente può acquistare prima di questo periodo, lasciare vuoto senza restrizioni', + 'inventory' => 'Inventario', + 'inventory_help' => 'Lascia vuoto senza restrizioni', + 'sale_begin_end_time' => 'Disponibile per la vendita', + 'users_count' => 'Conti venduti', + 'bonus_addition_factor' => 'Fattore di addizione bonus', + 'bonus_addition' => 'Aggiunta bonus', + 'bonus_addition_factor_help' => 'Per esempio: 0,01 significa 1% di aggiunta, lasciare vuoto senza aggiunta', + 'gift_fee_factor' => 'Fattore commissione regalo', + 'gift_fee' => 'Tariffa regalo', + 'gift_fee_factor_help' => 'Il costo aggiuntivo addebitato per i regali ad altri utenti è pari al prezzo moltiplicato per questo fattore', + ], + 'buy_already' => 'Già acquistato', + 'buy_btn' => 'Acquista', + 'confirm_to_buy' => 'Sei sicuro di voler comprare?', + 'require_more_bonus' => 'Richiedi più bonus', + 'grant_only' => 'Concedi solo', + 'before_sale_begin_time' => 'Prima della vendita inizia il tempo', + 'after_sale_end_time' => 'Tempo di fine vendita', + 'inventory_empty' => 'Inventario vuoto', + 'gift_btn' => 'Regalo', + 'confirm_to_gift' => 'Conferma per regalare all\'utente ', + 'max_allow_wearing' => 'Un massimo di :count medaglie può essere indossato allo stesso tempo', + 'wearing_status_text' => [ + 0 => 'Indossare', + 1 => 'Non indossato' + ], +]; diff --git a/resources/lang/it/message.php b/resources/lang/it/message.php new file mode 100644 index 00000000..a7f54e14 --- /dev/null +++ b/resources/lang/it/message.php @@ -0,0 +1,68 @@ + [ + 'page_title' => 'Elenco messaggi', + ], + 'show' => [ + 'page_title' => 'Dettaglio messaggio', + ], + 'field_value_change_message_body' => ':field è cambiato da :old a :new da :operator. Reason::reason.', + 'field_value_change_message_subject' => ':field cambiato', + + 'download_disable' => [ + 'subject' => 'Autorizzazione di download annullata', + 'body' => 'I tuoi privilegi di download sono stati revocati, forse a causa di bassi tassi di condivisione o di comportamenti errati. Da: :operator', + ], + 'download_disable_upload_over_speed' => [ + 'subject' => 'Autorizzazione di download annullata', + 'body' => 'Il tuo permesso di download è stato annullato a causa della velocità di caricamento eccessiva, per favore file se sei un utente di seed box.' , + ], + 'download_disable_announce_paid_torrent_too_many_times' => [ + 'subject' => 'Autorizzazione di download annullata', + 'body' => 'Il tuo permesso di download è stato annullato a causa di un annuncio di torrent pagato troppe volte, assicurati di avere abbastanza bonus.' , + ], + 'download_enable' => [ + 'subject' => 'Autorizzazione download ripristinata', + 'body' => 'I tuoi privilegi di download ripristinati, ora puoi scaricare i torrent. Dy: :operator', + ], + 'temporary_invite_change' => [ + 'subject' => 'Invito temporaneo :change_type', + 'body' => 'Il tuo numero di inviti temporanei aveva :change_type :count da :operator, motivo: :reason.', + ], + 'receive_medal' => [ + 'subject' => 'Ricevi medaglia regalo', + 'body' => "Utente :username ha acquistato una medaglia [:medal_name] al costo di :cost_bonus e l'ha dato a voi. La medaglia vale :price, la commissione è :gift_fee_total(fattore: :gift_fee_factor), avrai questa medaglia fino a: :expire_at, e il fattore bonus della medaglia è: :bonus_addition_factor.", + ], + 'login_notify' => [ + 'subject' => ':site_name Avviso di accesso fuori sito', + 'body' => << +Ultima volta di login::last_login_time, IP::last_ip, location::last_location.
    +Se non è la tua operazione, la password dell'account potrebbe essere stata perduta, per favore cambiala in tempo! +BODY, + ], + 'buy_torrent_success' => [ + 'subject' => 'Promemoria acquisto torrent riuscito', + 'body' => 'Hai speso :bonus bonus per acquistare con successo il torrent:[url=:url]:torrent_name[/url]', + ], + 'exam_user_end_time_updated' => [ + 'subject' => 'Esami :exam_name tempo di fine cambiato', + 'body' => 'L\'ora di fine dell\'esame in corso :exam_name è cambiata da :old_end_time a :new_end_time. admin: :operator, reason: :reason.', + ], + + 'mail_dear' => "Dear ", + 'mail_you_received_a_pm' => "Hai ricevuto un PM.", + 'mail_sender' => "SendererName ", + 'mail_subject' => "Soggetto. ", + 'mail_date' => "Data ", + 'mail_use_following_url' => "Puoi cliccare su ", + 'mail_use_following_url_1' => " per visualizzare il messaggio (potrebbe essere necessario effettuare il login).", + 'mail_yours' => "
    Yours,", + 'mail_the_site_team' => "La Squadra %s.", + 'mail_received_pm_from' => "Hai ricevuto un PM da ", + 'mail_here' => "QUI", + 'msg_system' => "Sistema", + 'msg_original_message_from' => "Messaggio originale da ", +]; diff --git a/resources/lang/it/nexus.php b/resources/lang/it/nexus.php new file mode 100644 index 00000000..40f22ea3 --- /dev/null +++ b/resources/lang/it/nexus.php @@ -0,0 +1,24 @@ + 'Argomento non valido', + 'require_argument' => ':argument non può essere vuoto', + 'select_one_please' => 'Si prega di selezionare uno', + 'user_not_exists' => '(orfano)', + 'time_units' => [ + 'week' => 'settimane', + ], + 'select_all' => 'Seleziona tutto', + 'unselect_all' => 'Deseleziona tutto', + 'increment' => 'incremento', + 'decrement' => 'decremento', + 'action' => 'Azione', + 'no_limit' => 'Nessun limite', + 'sum' => 'Sum', + 'do_not_repeat' => 'Per favore, non ripetere l\'operazione!', + 'no_permission' => 'Nessun permesso!', + 'sort' => 'ordina campo', + 'order' => 'ordina', + 'asc' => 'ordine crescente', + 'desc' => 'ordine decrescente', +]; diff --git a/resources/lang/it/oauth.php b/resources/lang/it/oauth.php new file mode 100644 index 00000000..070c7261 --- /dev/null +++ b/resources/lang/it/oauth.php @@ -0,0 +1,30 @@ + 'Client', + 'redirect' => 'Reindirizza URL', + 'secret' => 'Segreto', + 'revoked' => 'Valid', + 'access_token' => 'Token di accesso', + 'refresh_token' => 'Aggiorna token', + 'authorization_request_title' => 'Richiesta Di Autorizzazione', + 'authorization_request_desc' => 'sta richiedendo l\'autorizzazione per accedere al tuo account', + 'btn_approve' => 'Autorizza', + 'btn_deny' => 'Annulla', + 'skips_authorization' => 'Ignora autorizzazione', + 'client_id' => 'ID Client', + 'authorization_endpoint_url' => 'Url Di Autorizzazione', + 'token_endpoint_url' => 'Get token URL', + 'user_info_endpoint_url' => 'Ottieni URL informazioni utente', + 'id_claim' => 'ID reclamo', + 'username_claim' => 'nome utente', + 'email_claim' => 'reclamo email', + 'level_claim' => 'Nome campo livello', + 'level_limit' => 'Limite di livello', + 'level_limit_help' => 'Consenti solo agli utenti non sotto questo livello di accedere', + 'get_access_token_error' => 'Ottenere l\'errore del token di accesso: :error', + 'get _provider_user_id_error' => 'Impossibile ottenere l\'ID utente tramite il campo :id_claim', + 'get_provider_level_error' => 'Impossibile ottenere il livello utente tramite il campo :level_claim', + 'provider_level_not_ allowed' => 'Solo gli utenti con livello :level_limit o superiore possono accedere', + 'provider_email_already_exists' => 'Email: :email è già in uso', + 'get_provider_email_error' => 'Impossibile ottenere l\'email dell\'utente tramite il campo :email_claim', +]; diff --git a/resources/lang/it/offer.php b/resources/lang/it/offer.php new file mode 100644 index 00000000..a354ac27 --- /dev/null +++ b/resources/lang/it/offer.php @@ -0,0 +1,17 @@ + " ti ha permesso di caricare ", + 'msg_find_offer_option' => "Troverai una nuova opzione sulla pagina di caricamento.", + 'msg_your_offer_allowed' => "La tua offerta è stata consentita", + 'msg_offer_voted_on' => "La tua Offerta è stata votata. Puoi caricare ", + 'msg_offer_voted_off' => "La tua offerta è stata respinta. Non hai il permesso di caricare ", + 'msg_voted_on' => " è stato votato il", + 'msg_offer_deleted' => "La tua offerta è stata cancellata", + 'msg_your_offer' => "La tua offerta '", + 'msg_was_deleted_by' => "' è stato eliminato da ", + 'msg_blank' => ".", + 'msg_you_must_upload_in' => "Si prega di caricare l'offerta all'interno ", + 'msg_hours_otherwise' => " ore. Altrimenti l'offerta verrebbe cancellata.", + 'msg_reason_is' => "Il motivo: ", +]; diff --git a/resources/lang/it/peer.php b/resources/lang/it/peer.php new file mode 100644 index 00000000..f261dc84 --- /dev/null +++ b/resources/lang/it/peer.php @@ -0,0 +1,7 @@ + [ + 'page_title' => 'Peers', + ], +]; diff --git a/resources/lang/it/permission.php b/resources/lang/it/permission.php new file mode 100644 index 00000000..a6d04da5 --- /dev/null +++ b/resources/lang/it/permission.php @@ -0,0 +1,220 @@ + [ + 'text' => 'Torrent Di Approvazione', + 'desc' => 'Permetti, nega o contrassegna come non recensito', + ], + 'torrent-set-special-tag' => [ + 'text' => 'Imposta tag speciali torrent', + 'desc' => 'Imposta il tag bonus Ufficiale/Zero ai torrent', + ], + 'torrent-approval-allow-automatic' => [ + 'text' => 'L\'approvazione del torrent consente automaticamente', + 'desc' => 'Torrent è lo stato di autorizzazione di approvazione dopo il caricamento automatico', + ], + 'torrent-set-price' => [ + 'text' => 'Imposta torrent pagato', + 'desc' => 'Imposta torrent pagato', + ], + 'defaultclass' => [ + 'text' => 'Default Class', + 'desc' => ' Classe al momento della registrazione', + ], + 'staffmem' => [ + 'text' => 'Membro Del Personale', + 'desc' => 'Lezioni considerate come membri del personale, ad esempio possono visualizzare staffbox', + ], + 'newsmanage' => [ + 'text' => 'Gestione Notizie', + 'desc' => 'Aggiungi nuova, modifica, elimina le notizie', + ], + 'newfunitem' => [ + 'text' => 'Post articolo funbox', + 'desc' => "Pubblica nuovi elementi di funbox e modifica gli elementi di funbox", + ], + 'funmanage' => [ + 'text' => 'Gestione Funbox', + 'desc' => "Modificare, eliminare, bandire gli elementi di funbox di chiunque", + ], + 'sbmanage' => [ + 'text' => 'Shoutbox Management', + 'desc' => 'Elimina messaggi in shoutbox e helpbox', + ], + 'pollmanage' => [ + 'text' => 'Gestione Sondaggi', + 'desc' => 'Aggiungi sondaggi nuovi, modificati, elimina', + ], + 'applylink' => [ + 'text' => 'Applica per i link', + 'desc' => 'Richiedi link nella pagina principale', + ], + 'linkmanage' => [ + 'text' => 'Gestione Link', + 'desc' => ' Aggiungi nuovi link modificati, elimina', + ], + 'postmanage' => [ + 'text' => 'Gestione Post Forum', + 'desc' => 'Modificare, eliminare, spostare, bastone, bloccare i messaggi del forum', + ], + 'commanage' => [ + 'text' => 'Gestione Dei Commenti', + 'desc' => 'Modificare, eliminare i commenti dei torrent, offerte', + ], + 'forummanage' => [ + 'text' => 'Gestione Forum', + 'desc' => 'Aggiungi forum, modifica, cancella, sposta forum', + ], + 'viewuserlist' => [ + 'text' => 'Visualizza Elenco Utenti', + 'desc' => 'Visualizza, cerca elenco utenti', + ], + 'user-delete' => [ + 'text' => 'Elimina utente', + 'desc' => 'Eliminare completamente le informazioni dell\'account utente dal database', + ], + 'user-change-class' => [ + 'text' => 'Cambia classe utente', + 'desc' => "Modificare il livello dell'utente, non può essere modificato in un livello superiore o uguale al proprio", + ], + 'torrentmanage' => [ + 'text' => 'Gestione Torrent', + 'desc' => 'Modifica torrent, escludendo l\'impostazione torrent sticky o su promozione o cancella', + ], + 'torrent-delete' => [ + 'text' => 'Elimina torrent', + 'desc' => 'Elimina torrent', + ], + 'torrentsticky' => [ + 'text' => 'Torrent Sticky', + 'desc' => ' Imposta torrent sticky', + ], + 'torrentonpromotion' => [ + 'text' => 'Torrent on Promotion', + 'desc' => 'Imposta torrent alla promozione', + ], + 'torrent_hr' => [ + 'text' => 'Imposta H&R Torrent', + 'desc' => '.Impostare il torrent unire l\'ispezione H&R', + ], + 'askreseed' => [ + 'text' => 'Richiedi reseed', + 'desc' => 'Chiedi di risistemare quando i torrent sono morti', + ], + 'viewnfo' => [ + 'text' => 'Visualizza NFO', + 'desc' => 'Visualizza file NFO', + ], + 'torrentstructure' => [ + 'text' => 'Visualizza Struttura Torrent', + 'desc' => 'Visualizza la struttura dei file torrent', + ], + 'sendinvite' => [ + 'text' => 'Invia Invito', + 'desc' => 'Invia invito di adesione ad altri', + ], + 'viewhistory' => [ + 'text' => 'Visualizza Cronologia', + 'desc' => "Visualizza la cronologia dei commenti e dei post degli altri", + ], + 'topten' => [ + 'text' => 'Visualizza Topten', + 'desc' => 'Visualizza Dieci Superiori', + ], + 'log' => [ + 'text' => 'Visualizza Registro Generale', + 'desc' => 'Visualizza log generale, escluso il log confidenziale', + ], + 'confilog' => [ + 'text' => 'Visualizza Registro Confidenziale', + 'desc' => 'Visualizza il registro riservato, ad esempio le modifiche dell\'impostazione del sito', + ], + 'userprofile' => [ + 'text' => "Visualizza Il Profilo Riservato Dell'Utente", + 'desc' => "Visualizza il profilo riservato dell'utente, ad esempio indirizzo IP, indirizzo email", + ], + 'torrenthistory' => [ + 'text' => "Visualizza Cronologia Torrent Utente", + 'desc' => "Visualizza la cronologia dei torrent dell'utente, ad esempio i torrent scaricati. Valido solo quando l'impostazione dell'utente per il livello di privacy non è 'forte'" + ], + 'prfmanage' => [ + 'text' => "Gestione Profilo Generale Utente", + 'desc' => " Cambia il profilo dell'utente, esclusi quelli cruciali per esempio email, nome utente, importo caricato e scaricato, bonus" + ], + 'cruprfmanage' => [ + 'text' => "Gestione Profilo Cruciale Dell'Utente", + 'desc' => "Cambia il profilo cruciale dell'utente, escludendo la donazione (solo il leader dello staff può gestire la donazione)", + ], + 'uploadsub' => [ + 'text' => 'Carica sottotitoli', + 'desc' => 'Carica sottotitoli per i torrent', + ], + 'delownsub' => [ + 'text' => "Elimina sottotitolo", + 'desc' => 'Elimina sottotitoli caricati da soli', + ], + 'submanage' => [ + 'text' => 'Gestione Sottotitoli', + 'desc' => 'Elimina qualsiasi sottotitolo', + ], + 'updateextinfo' => [ + 'text' => 'Aggiorna Informazioni Esterne', + 'desc' => 'Aggiornamento informazioni esterne obsolete, ad esempio informazioni IMDb', + ], + 'viewanonymous' => [ + 'text' => 'Visualizza Anonimo', + 'desc' => 'Vedi chi è anonimo', + ], + 'beanonymous' => [ + 'text' => 'Sii Anonimo', + 'desc' => 'Carica torrent, sottotitoli in modo anonimo', + ], + 'addoffer' => [ + 'text' => 'Aggiungi Offerta', + 'desc' => ' Aggiungi offerte da caricare', + ], + 'offermanage' => [ + 'text' => 'Gestione Offerta', + 'desc' => 'Permette, modifica, cancella offerta', + ], + 'upload' => [ + 'text' => 'Carica Torrent', + 'desc' => 'Carica torrent nella sezione Torrent', + ], + 'uploadspecial' => [ + 'text' => 'Carica Torrent Speciale', + 'desc' => 'Carica torrent in sezione speciale', + ], + 'view_special_torrent' => [ + 'text' => 'Visualizza Torrent Speciale', + 'desc' => 'Visualizza torrent nella sezione Speciale', + ], + 'movetorrent' => [ + 'text' => 'Sposta Torrent', + 'desc' => 'Sposta torrent tra le sezioni', + ], + 'chrmanage' => [ + 'text' => 'Gestione Cronache', + 'desc' => 'Aggiungi, modifica, elimina cronaca', + ], + 'viewinvite' => [ + 'text' => 'Visualizza Invito', + 'desc' => "Visualizza la cronologia degli inviti dell'utente", + ], + 'buyinvite' => [ + 'text' => 'Acquista Inviti', + 'desc' => 'Acquista inviti al centro bonus', + ], + 'seebanned' => [ + 'text' => 'Vedi Torrent Bannati', + 'desc' => 'Vedi e scarica i torrent banditi', + ], + 'againstoffer' => [ + 'text' => 'Vota Contro Le Offerte', + 'desc' => 'Vota contro le offerte', + ], + 'userbar' => [ + 'text' => 'Consenti Barra Utente', + 'desc' => ' Ottieni il suo userba', + ], +]; diff --git a/resources/lang/it/plugin.php b/resources/lang/it/plugin.php new file mode 100644 index 00000000..87b2a59a --- /dev/null +++ b/resources/lang/it/plugin.php @@ -0,0 +1,42 @@ + [ + 'install' => 'installa', + 'delete' => 'elimina', + 'update' => 'aggiorna', + 'install_or_update' => 'installa/aggiorna', + ], + 'labels' => [ + 'display_name' => 'nome', + 'package_ name' => 'nome_pacchetto', + 'remote_url' => 'indirizzo_repository', + 'installed_version' => 'installed_version', + 'latest_version' => 'latest_version', + 'status' => 'stato', + 'updated_at' => 'last_executed_action', + ' release_date' => 'aggiornato il', + 'install_title' => 'Vai alla directory: :web_root, ed esegui i seguenti comandi per installarlo come utente root. ', + 'introduce' => 'Dettagli', + 'view_on_blog' => 'Visualizza sul blog', + ' config_plugin_address' => 'Configura indirizzo plugin', + 'download_specific_version' => 'Scarica l\'estensione. L\'ultima versione è mostrata qui, se è necessario installare un\'altra versione (visualizzare sul blog per vedere tutte le versioni) sostituirlo da soli', + 'execute_install' => 'Esegui installazione', + ], + 'status' => [ + \App\Models\Plugin::STATUS_NORMAL => 'Normale', + \App\Models\Plugin::STATUS_NOT_INSTALLED => 'Non installato', + + \App\Models\Plugin::STATUS_PRE_INSTALL => 'Pronto per l\'installazione', + \App\Models\Plugin::STATUS_INSTALLING => 'Installazione', + \App\Models\Plugin::STATUS_INSTALL_FAILED => 'Installazione fallita', + + \App\Models\Plugin::STATUS_PRE_UPDATE => 'Pronto per l\'aggiornamento', + \App\Models\Plugin::STATUS_UPDATING => 'Aggiornamento', + \App\Models\Plugin::STATUS_UPDATE_FAILED => 'Aggiornamento fallito', + + \App\Models\Plugin::STATUS_PRE_DELETE => 'Pronto a rimuovere', + \App\Models\Plugin::STATUS_DELETING => 'Rimozione', + \App\Models\Plugin::STATUS_DELETE_FAILED => 'Rimuovi fallito', + ], +]; diff --git a/resources/lang/it/ptgen.php b/resources/lang/it/ptgen.php new file mode 100644 index 00000000..1c4fa4d7 --- /dev/null +++ b/resources/lang/it/ptgen.php @@ -0,0 +1,7 @@ + 'PT-Gen', + 'tooltip' => 'Link proviene da::sites ', + 'btn_get_desc' => 'Ottieni desc', +]; diff --git a/resources/lang/it/reward.php b/resources/lang/it/reward.php new file mode 100644 index 00000000..47ad2f1d --- /dev/null +++ b/resources/lang/it/reward.php @@ -0,0 +1,9 @@ + [ + 'page_title' => 'Ricompensa', + ] + +]; diff --git a/resources/lang/it/route-permission.php b/resources/lang/it/route-permission.php new file mode 100644 index 00000000..33612651 --- /dev/null +++ b/resources/lang/it/route-permission.php @@ -0,0 +1,20 @@ + [ + 'text' => 'Carica torrent', + 'desc' => 'Carica torrent', + ], + 'torrent:list' => [ + 'text' => 'Recupera elenco torrent', + 'desc' => 'Recupera elenco torrent', + ], + 'torrent:view' => [ + 'text' => 'Visualizza dettaglio torrent', + 'desc' => 'Visualizza dettaglio torrent', + ], + 'user:view' => [ + 'text' => 'Visualizza informazioni di base dell\'utente', + 'desc' => 'Visualizza informazioni di base dell\'utente', + ], +]; diff --git a/resources/lang/it/search.php b/resources/lang/it/search.php new file mode 100644 index 00000000..7e4a596a --- /dev/null +++ b/resources/lang/it/search.php @@ -0,0 +1,17 @@ + 'Ricerca Globale', + 'search_keyword' => 'Keyword', + 'search_area' => 'Range', + 'search_area_options' => [ + '0' => 'Titolo', + '1' => 'Descrizione', + '3' => 'Uploader', + '4' => 'URL IMDB' + ], + 'search_modes' => [ + 'and' => 'E', + 'exact' => 'Esatto', + ], +]; diff --git a/resources/lang/it/searchbox.php b/resources/lang/it/searchbox.php new file mode 100644 index 00000000..01644ebb --- /dev/null +++ b/resources/lang/it/searchbox.php @@ -0,0 +1,20 @@ + 'Categoria', + 'sub_category_source_label' => 'Fonte', + 'sub_category_medium_label' => 'Media', + 'sub_category_standard_label' => 'Standard', + 'sub_category_team_label' => 'Squadra', + 'sub_category_processing_label' => 'Elaborazione', + 'sub_category_codec_label' => 'Codec', + 'sub_category_audiocodec_label' => 'AudioCodec', + 'extras' => [ + \App\Models\SearchBox::EXTRA_DISPLAY_COVER_ON_TORRENT_LIST => 'Mostra copertina nella lista torrent', + \App\Models\SearchBox::EXTRA_DISPLAY_SEED_BOX_ICON_ON_TORRENT_LIST => 'Visualizza l\'icona della casella dei seed nell\'elenco dei torrent', + ], + 'sections' => [ + 'browse' => 'Torrent', + 'special' => 'Speciale', + ], +]; diff --git a/resources/lang/it/seed-box.php b/resources/lang/it/seed-box.php new file mode 100644 index 00000000..3b71ffa7 --- /dev/null +++ b/resources/lang/it/seed-box.php @@ -0,0 +1,19 @@ + [ + \App\Models\SeedBoxRecord::TYPE_USER => 'Utente', + \App\Models\SeedBoxRecord::TYPE_ADMIN => 'Amministratore', + ], + 'status_text' => [ + \App\Models\SeedBoxRecord::STATUS_UNAUDITED => 'Non verificato', + \App\Models\SeedBoxRecord::STATUS_ALLOWED => 'Consentito', + \App\Models\SeedBoxRecord::STATUS_DENIED => 'Negato', + ], + 'status_change_message' => [ + 'subject' => 'Stato record SeedBox cambiato', + 'body' => 'Lo stato del tuo record SeedBox con ID :id è stato cambiato da :operator da :old_status a :new_status. Motivo: :reason', + ], + 'is_seed_box_yes' => 'Questo IP è SeedBox, identificato dal record con ID :id', + 'is_seed_box_no' => 'Questo IP non è SeedBox', +]; diff --git a/resources/lang/it/seedbox.php b/resources/lang/it/seedbox.php new file mode 100644 index 00000000..7e1a7a10 --- /dev/null +++ b/resources/lang/it/seedbox.php @@ -0,0 +1,8 @@ + [ + \App\Models\SeedBoxRecord::TYPE_USER => 'Utente', + \App\Models\SeedBoxRecord::TYPE_ADMIN => 'Amministratore', + ], +]; diff --git a/resources/lang/it/signup.php b/resources/lang/it/signup.php new file mode 100644 index 00000000..89e7d450 --- /dev/null +++ b/resources/lang/it/signup.php @@ -0,0 +1,8 @@ + "Le password non corrispondono! Deve essere stato battuto. Riprova.", + 'password_too_short' => "Siamo spiacenti, la password è troppo corta (min è 6 caratteri)", + 'password_too_long' => "Siamo spiacenti, la password è troppo lunga (max 40 caratteri)", + 'password_equals_username' => "Siamo spiacenti, la password non può essere la stessa del nome utente.", +]; diff --git a/resources/lang/it/snatch.php b/resources/lang/it/snatch.php new file mode 100644 index 00000000..6bef05f7 --- /dev/null +++ b/resources/lang/it/snatch.php @@ -0,0 +1,8 @@ + 'Inf.', + 'index' => [ + 'page_title' => 'Strappi', + ], +]; diff --git a/resources/lang/it/subtitle.php b/resources/lang/it/subtitle.php new file mode 100644 index 00000000..ddea8a2d --- /dev/null +++ b/resources/lang/it/subtitle.php @@ -0,0 +1,7 @@ + " ha eliminato il sottotitolo che hai caricato. ", + 'msg_your_sub_deleted' => "Il sottotitolo è stato eliminato", + 'msg_reason_is' => "Il motivo: ", +]; diff --git a/resources/lang/it/thank.php b/resources/lang/it/thank.php new file mode 100644 index 00000000..3dcaff07 --- /dev/null +++ b/resources/lang/it/thank.php @@ -0,0 +1,6 @@ + [ + 'page_title' => 'Grazie', + ], +]; diff --git a/resources/lang/it/token.php b/resources/lang/it/token.php new file mode 100644 index 00000000..c4afdad9 --- /dev/null +++ b/resources/lang/it/token.php @@ -0,0 +1,10 @@ + 'Token Di Accesso', + 'permission' => 'Permessi', + 'maximum_allow_number_reached' => 'Il numero raggiunge il limite superiore', + 'create_success_tip' => 'Il token è stato creato con successo, questi dati vengono visualizzati solo una volta, si prega di salvarli correttamente

    :token', + 'last_used_at' => 'Tempo di utilizzo recente', + 'token' => 'summary', +); diff --git a/resources/lang/it/torrent-operation-log.php b/resources/lang/it/torrent-operation-log.php new file mode 100644 index 00000000..2985e601 --- /dev/null +++ b/resources/lang/it/torrent-operation-log.php @@ -0,0 +1,7 @@ + [ + 'action_type' => 'Tipo di azione', + ], +]; diff --git a/resources/lang/it/torrent.php b/resources/lang/it/torrent.php new file mode 100644 index 00000000..b42feadd --- /dev/null +++ b/resources/lang/it/torrent.php @@ -0,0 +1,109 @@ + 'Normale', + 'pos_state_sticky' => 'Appiccicoso prima', + 'pos_state_r_sticky' => 'Adesivo secondo', + + 'index' => [ + 'page_title' => 'Lista torrent', + ], + 'show' => [ + 'page_title' => 'Dettaglio torrent', + 'basic_category' => 'Categoria', + 'basic_audio_codec' => 'Codec audio', + 'basic_codec' => 'Codifica video', + 'basic_media' => 'Media', + 'basic_source' => 'Fonte', + 'basic_standard' => 'Standard', + 'basic_team' => 'Squadra', + 'size' => 'Dimensione', + 'comments_label' => 'Commenti', + 'times_completed_label' => 'Trascinato', + 'peers_count_label' => 'Peers', + 'thank_users_count_label' => 'Grazie', + 'numfiles_label' => 'File', + 'bookmark_yes_label' => 'Segnalibro', + 'bookmark_no_label' => 'Aggiungi al segnalibro', + 'reward_logs_label' => 'Ricompensa', + 'reward_yes_label' => 'Ricompensata', + 'reward_no_label' => 'Ricompensa', + 'download_label' => 'Scarica', + 'thanks_yes_label' => 'Ringraziato', + 'thanks_no_label' => 'Grazie', + ], + 'pick_info' => [ + 'normal' => 'Normale', + 'hot' => 'Caldo', + 'classic' => 'Classico', + 'recommended' => 'Consiglia', + ], + 'claim_already' => 'Richiesto già', + 'no_snatch' => 'Non scaricare ancora questo torrent', + 'can_no_be_claimed_yet' => 'Non può ancora essere reclamato', + 'claim_number_reach_user_maximum' => 'Raggiunto il numero massimo di utenti', + 'claim_number_reach_torrent_maximum' => 'Raggiunto il numero massimo di torrent', + 'claim_disabled' => 'Sinistro disabilitato', + 'operation_log' => [ + \App\Models\TorrentOperationLog::ACTION_TYPE_APPROVAL_DENY => [ + 'type_text' => 'Consentito', + 'notify_subject' => 'Il torrent era permesso', + 'notify_msg' => 'Il tuo torrent:[url=:detail_url]:torrent_name[/url] è stato permesso da :operator, Reason: :reason', + ], + \App\Models\TorrentOperationLog::ACTION_TYPE_APPROVAL_ALLOW => [ + 'type_text' => 'Negato', + 'notify_subject' => 'Torrent è stato negato', + 'notify_msg' => 'Il tuo torrent: [url=:detail_url]:torrent_name[/url] negato da :operator', + ], + \App\Models\TorrentOperationLog::ACTION_TYPE_APPROVAL_NONE => [ + 'type_text' => 'Non recensito', + 'notify_subject' => 'Torrent è stato contrassegnato come non recensito', + 'notify_msg' => 'Il tuo torrent: [url=:detail_url]:torrent_name[/url] era contrassegnato come non esaminato da :operator', + ], + \App\Models\TorrentOperationLog::ACTION_TYPE_EDIT => [ + 'type_text' => 'Modifica', + 'notify_subject' => 'Torrent è stato modificato', + 'notify_msg' => 'Il tuo torrent: [url=:detail_url]:torrent_name[/url] è stato modificato da :operator', + ], + \App\Models\TorrentOperationLog::ACTION_TYPE_DELETE => [ + 'type_text' => 'Elimina', + 'notify_subject' => 'Torrent è stato eliminato', + 'notify_msg' => 'Il tuo torrent: :torrent_name è stato eliminato da :operator', + ] + ], + 'owner_update_torrent_subject' => 'Il torrent negato è stato aggiornato', + 'owner_update_torrent_msg' => 'Torrent:[url=:detail_url]:torrent_name[/url] è stato aggiornato dal proprietario, è possibile verificare se soddisfa i requisiti e consentire', + 'approval' => [ + 'modal_title' => 'Approvazione torrent', + 'status_label' => 'Status di approvazione', + 'comment_label' => 'Commento(facoltativo)', + 'status_text' => [ + \App\Models\Torrent::APPROVAL_STATUS_NONE => 'Non recensito', + \App\Models\Torrent::APPROVAL_STATUS_ALLOW => 'Consentito', + \App\Models\Torrent::APPROVAL_STATUS_DENY => 'Negato', + ], + 'deny_comment_show' => 'Negato, motivo: :reason', + 'logs_label' => 'Log di omologazione' + ], + 'show_hide_media_info' => 'Mostra/Nascondi MediaInfo grezze', + 'promotion_time_types' => [ + \App\Models\Torrent::PROMOTION_TIME_TYPE_GLOBAL => 'Globale', + \App\Models\Torrent::PROMOTION_TIME_TYPE_PERMANENT => 'Permanente', + \App\Models\Torrent::PROMOTION_TIME_TYPE_DEADLINE => 'Fino A', + ], + 'paid_torrent' => 'Torrent pagato', + 'msg_torrent_deleted' => "Il tuo torrent è stato eliminato", + 'msg_the_torrent_you_uploaded' => "Il torrent che hai caricato '", + 'msg_was_deleted_by' => "' è stato eliminato da ", + 'msg_reason_is' => ". Il motivo: ", + 'msg_reseed_request' => "Riseed Request", + 'msg_reseed_user' => "Utente ", + 'msg_ask_reseed' => " ha chiesto una risistemazione sul torrent ", + 'msg_thank_you' => " !\nGrazie!", + + 'msg_offer_you_voted' => "L'Offerta che hai votato per: ", + 'msg_was_uploaded_by' => " è stato caricato da ", + 'msg_you_can_download' => "\nÈ possibile scaricare il Torrent", + 'msg_here' => " [b]qui[/b]", + 'msg_offer' => "Offerta ", +]; diff --git a/resources/lang/it/upload.php b/resources/lang/it/upload.php new file mode 100644 index 00000000..6dac67a6 --- /dev/null +++ b/resources/lang/it/upload.php @@ -0,0 +1,68 @@ + 'Prezzo non valido: :price', + 'invalid_category' => 'Invalid type', + 'invalid_section' => 'Sezione non valida', + 'invalid_hr' => 'Valore H&R non valido', + 'invalid_pos_state' => 'Posizione non valida: :pos_state', + 'invalid_pos_state_until' => 'Scadenza posizione non valida', + 'not_supported_sub_category_field' => 'Campi di sottocategoria non supportati: :field', + 'invalid_sub_category_value' => 'Campo sottocategoria: :label(:field) valore: :value non valido', + 'invalid_tag' => 'Tag non valido:', + 'invalid_pick_type' => 'Raccomandazione non valida::pick_type', + 'require_name' => 'Il titolo non può essere vuoto', + 'price_too_much' => 'Il prezzo supera l\'intervallo ammissibile', + 'approval_deny_reach_upper_limit' => 'Il numero di torrent rifiutato per la recensione corrente: %s raggiunge il limite superiore e la pubblicazione non è consentita.', + 'special_section_not_enabled' => 'La zona speciale non è abilitata.', + 'paid_torrent_not_enabled' => 'Il torrent pagato non è abilitato.', + 'no_permission_to_set_torrent_hr' => 'Nessun permesso per impostare H&R torrente.', + 'no_permission_to_set_torrent_pos_state' => 'Non ci sono permessi per impostare il torrent top.', + 'no_permission_to_set_torrent_price' => 'Nessun permesso per impostare le spese del torrent.', + 'no_permission_to_pick_torrent' => 'Nessun permesso per raccomandare video.', + 'no_permission_to_be_anonymous' => 'Nessun permesso per la pubblicazione anonima.', + 'torrent_save_dir_not_exists' => 'La directory di salvataggio del torrent non esiste.', + 'torrent_save_dir_not_writable' => 'La directory di salvataggio del torrent non è scrivibile.', + 'save_torrent_file_failed' => 'Salvataggio del file torrent non riuscito.', + 'upload_failed' => 'Caricamento fallito!', + 'missing_form_data' => 'Si prega di compilare gli elementi richiesti', + 'missing_torrent_file' => 'File torrent mancante', + 'empty_filename' => 'Il nome del file non può essere vuoto!', + 'zero_byte_nfo' => 'Il file NFO è vuoto', + 'nfo_too_big' => 'Il file NFO è troppo grande! Massimo consentito per 65.535 byte.', + 'nfo_upload_failed' => 'Caricamento file NFO non riuscito', + 'blank_description' => 'Devi compilare l\'introduzione!', + 'category_unselected' => 'Devi scegliere il tipo!', + 'invalid_filename' => 'Nome file non valido!', + 'filename_not_torrent' => 'Nome file non valido (non file .torrent).', + 'empty_file' => 'File vuoto!', + 'not_bencoded_file' => 'Che diavolo stai facendo? Quello che hai caricato non è un file Bencode!', + 'not_a_dictionary' => 'Non è una directory', + 'dictionary_is_missing_key' => 'Valore mancante directory', + 'invalid_entry_in_dictionary' => 'Voce directory non valida', + 'invalid_dictionary_entry_type' => 'Tipo di elemento di directory non valido', + 'invalid_pieces' => 'Blocco file non valido', + 'missing_length_and_files' => 'Lunghezza e file mancanti', + 'filename_errors' => 'Errore nome file', + 'uploaded_not_offered' => 'Puoi caricare solo torrent che superano il candidato. Per favore torna a selezionare il progetto appropriato in il tuo candidato prima di caricare!', + 'unauthorized_upload_freely' => 'Non hai il permesso di caricare liberamente!', + 'torrent_existed' => 'Il torrent esiste già!id: :id', + 'torrent_file_too_big' => 'Il file torrent è troppo grande! Massimo consentito', + 'remake_torrent_note' => 'byte. Si prega di ricreare il file torrent con una dimensione di blocco più grande o dividere il contenuto in più torrent da pubblicare.', + 'email_notification_body' => 'Ciao, +Un nuovo torrent è stato caricato. + +Name::name +Dimensione::size +Type::category +Uploader::upload_by + +Introduzione: +:description + +Visualizza informazioni più dettagliate e scaricarle (potrebbe essere necessario effettuare il login), clicca qui: qui +:torrent_url + +:site_name Website', + 'email_notification_subject' => ':site_name Nuova notifica torrent', +); diff --git a/resources/lang/it/user.php b/resources/lang/it/user.php new file mode 100644 index 00000000..1f7466c2 --- /dev/null +++ b/resources/lang/it/user.php @@ -0,0 +1,112 @@ + 'Disabilita dall\'amministratore', + 'deleted_username' => 'utente non esiste', + 'admin' => [ + 'list' => [ + 'page_title' => 'Elenco utenti' + ] + ], + 'labels' => [ + 'seedbonus' => 'Bonus', + 'seed_points' => 'Punti di seme', + 'uploaded' => 'Caricato', + 'downloaded' => 'Scaricato', + 'invites' => 'Inviti', + 'attendance_card' => 'Partecipa alla carta', + 'props' => 'Props', + 'class' => 'Classe', + 'vip_added' => 'Lo stato VIP è ottenuto con bonus', + 'vip_added_help' => 'È lo status VIP riscattato con bonus.', + 'vip_until' => 'Ora fine stato VIP', + 'vip_until_help' => "Il formato orario è 'Anno-Anno-Mese-Giorno Ora:Minuto:Secondo Il tempo in cui lo stato VIP finisce. Lo stato VIP è ottenuto con bonus' deve essere impostato su 'Sì' perché questa regola abbia effetto.", + ], + 'class_names' => [ + \App\Models\User::CLASS_VIP => 'Vip', + \App\Models\User::CLASS_RETIREE => 'Ritirata', + \App\Models\User::CLASS_UPLOADER => 'Uploader', + \App\Models\User::CLASS_MODERATOR => 'Moderatore', + \App\Models\User::CLASS_ADMINISTRATOR => 'Amministratore', + \App\Models\User::CLASS_SYSOP => 'Sysop', + \App\Models\User::CLASS_STAFF_LEADER => 'Capo Personale', + ], + 'change_username_lte_min_interval' => 'Ultima modifica: :last_change_time, intervallo minimo non soddisfatto: :interval days', + 'destroy_by_admin' => 'Eliminazione fisica da parte dell\'amministratore', + 'disable_by_admin' => 'Disabilita dall\'amministratore', + 'genders' => [ + \App\Models\User::GENDER_MALE => 'Maschio', + \App\Models\User::GENDER_FEMALE => 'Femmina', + \App\Models\User::GENDER_UNKNOWN => 'Sconosciuto', + ], + 'grant_props_notification' => [ + 'subject' => 'Get Props::name', + 'body' => ':operator Concedere :name, Periodo di validità: :duration.', + ], + 'metas' => [ + 'already_valid_forever' => ':meta_key_text già valido per sempre', + ], + 'edit_notifications' => [ + 'change_class' => [ + 'promote' => 'Promuovi', + 'demote' => 'Demota', + 'subject' => 'Classe cambiata', + 'body' => 'Eri stato :action a :new_class, amministratore: :operator, reason: :reason.', + ], + ], + 'username_already_exists' => 'Username::username esiste già', + 'username_invalid' => 'Username::username non valido', + + 'msg_promoted' => "promosso", + 'msg_demoted' => "demoted", + 'msg_class_change' => "Cambio Classe", + 'msg_you_have_been' => "Sei stato ", + 'msg_to' => " a ", + 'msg_by' => " di ", + 'msg_warn_removed' => "Attenzione Rimossa", + 'msg_your_warning_removed_by' => "Il tuo avviso è stato rimosso da", + 'msg_you_are_warned_by' => "Sei stato [url=rules.php#warning]avvisato[/url] da ", + 'msg_reason' => "Motivo \n\n: ", + 'msg_week' => " settimana", + 'msg_s' => "s", + 'msg_you_are_warned_for' => "Sei stato [url=rules.php#warning]ammonito[/url] per ", + 'msg_you_are_warned' => "Sei Avvertito", + 'msg_posting_rights_restored' => "Diritti Di Pubblicazione Ripristinati", + 'msg_your_posting_rights_restored' => "I tuoi diritti di pubblicazione sono stati restituiti da " , + 'msg_you_can_post' => ". Puoi postare di nuovo sul forum.", + 'msg_posting_rights_removed' => "Diritti Di Pubblicazione Rimossi", + 'msg_your_posting_rights_removed' => "I tuoi diritti di pubblicazione sono stati rimossi da ", + 'msg_probable_reason' => ", probabilmente a causa di cattivo atteggiamento o cattivo contenuto postale.", + 'msg_upload_rights_restored' => "Carica Diritti Ripristinati", + 'msg_your_upload_rights_restored' => "I tuoi diritti di caricamento sono stati restituiti da ", + 'msg_you_upload_can_upload' => ". Puoi caricare di nuovo i torrent.", + 'msg_upload_rights_removed' => "Diritti Di Caricamento Rimossi", + 'msg_your_upload_rights_removed' => "I tuoi diritti di caricamento sono stati rimossi da ", + 'msg_probably_reason_two' => ", probabilmente a causa di torrent difettoso, .nfo o descrizione.", + 'msg_download_rights_restored' => "Scarica I Diritti Ripristinati", + 'msg_your_download_rights_restored' => "I tuoi diritti di download sono stati restituiti da ", + 'msg_you_can_download' => ". Puoi scaricare di nuovo i torrent.", + 'msg_download_rights_removed' => "Scarica I Diritti Rimossi", + 'msg_your_download_rights_removed' => "I tuoi diritti di download sono stati rimossi da ", + 'msg_probably_reason_three' => ", probabilmente a causa del basso rapporto o del cattivo comportamento.", + 'msg_email_change' => "Modifica email", + 'msg_your_email_changed_from' => "Il tuo indirizzo email è stato modificato da ", + 'msg_username_change' => "Cambio nome utente", + 'msg_your_username_changed_from' => "Il tuo nome utente è stato modificato da ", + 'msg_downloaded_change' => "Modifica importo scaricata", + 'msg_your_downloaded_changed_from' => "L'importo scaricato è stato modificato da ", + 'msg_uploaded_change' => "Modifica importo caricato", + 'msg_your_uploaded_changed_from' => "L'importo caricato è stato modificato da ", + 'msg_bonus_change' => "Cambio importo bonus", + 'msg_your_bonus_changed_from' => "Il tuo importo bonus è stato modificato da ", + 'msg_invite_change' => "Invita modifica importo", + 'msg_your_invite_changed_from' => "L'importo dell'invito è stato modificato da ", + 'msg_to_new' =>" a ", + 'msg_your_vip_status_changed' => "Il tuo stato VIP è cambiato", + 'msg_vip_status_changed_by' => "Il tuo stato VIP è cambiato da ", + 'msg_your_donor_status_changed' => "Il tuo stato donatore è cambiato", + 'msg_donor_status_changed_by' => "Il tuo stato donatore è cambiato da ", + 'msg_invited_user_has_registered' => "L'utente invitato si è registrato", + 'msg_user_you_invited' => "L'utente che hai invitato ", + 'msg_has_registered' => " si è appena registrato.", +]; diff --git a/resources/lang/it/username-change-log.php b/resources/lang/it/username-change-log.php new file mode 100644 index 00000000..86ac1a6d --- /dev/null +++ b/resources/lang/it/username-change-log.php @@ -0,0 +1,13 @@ + [ + \App\Models\UsernameChangeLog::CHANGE_TYPE_USER => 'Utente', + \App\Models\UsernameChangeLog::CHANGE_TYPE_ADMIN => 'Amministratore', + ], + 'labels' => [ + 'username_old' => 'Vecchio nome utente', + 'username_new' => 'Nuovo nome utente', + 'change_type' => 'Cambia tipo', + ], +]; diff --git a/resources/lang/ja/admin.php b/resources/lang/ja/admin.php index c7f0fcf6..1f44dadf 100644 --- a/resources/lang/ja/admin.php +++ b/resources/lang/ja/admin.php @@ -1,138 +1,131 @@ - array ( - 'exam_users' => 'ユーザー評価', - 'hit_and_runs' => 'ユーザーH&R', - 'users_list' => 'ユーザーリスト', - 'tags_list' => 'ラベル', - 'agent_allows' => 'クライアントを許可します', - 'agent_denies' => 'クライアントを拒否します', - 'exams_list' => '評価とタスク', - 'medals_list' => 'メダル', - 'settings' => '設定', - 'users_medals' => 'ユーザーメダル', - 'claims' => '受信したユーザー', - 'torrent_list' => 'シード', - 'torrent_state' => 'サイト全体の割引', - 'seed_box_records' => 'シードボックス', - 'upload_speed' => 'アップリンク帯域幅', - 'download_speed' => 'ダウンリンク帯域幅', - 'isp' => 'ISP', - 'menu' => 'メニューをカスタマイズします', - 'username_change_log' => '名前の変更レコード', - 'torrent_deny_reason' => '拒絶の理由', - 'roles' => '役割', - 'permissions' => '権限', - 'section' => '分類モード', - 'icon' => 'カテゴリアイコン', - 'plugin' => 'プラグイン', - 'category' => 'メインカテゴリ', - 'second_icon' => '2番目のアイコン', - 'torrent_operation_log' => 'シード操作記録', - 'invite' => 'ユーザーの招待', - 'user_props' => 'ユーザーの小道具', - 'login_log' => 'ログイン履歴', - 'bonus_log' => 'マジックレコード', - 'torrent_buy_log' => '種子購入', - 'attendance_log' => 'サインインの歴史', - 'oauth_client' => 'クライアント', - 'oauth_access_token' => 'アクセストークン', - 'oauth_auth_code' => '承認コード', - 'oauth_refresh_token' => 'トークンを更新します', - 'token' => 'アクセストークン', - ), - 'resources' => - array ( - 'agent_allow' => - array ( - 'check_modal_btn' => 'テスト', - 'check_modal_header' => 'クライアントが許可されているかどうかを確認してください', - 'check_pass_msg' => 'おめでとうございます、このクライアントはルール:IDによって渡されます!', - ), - 'user' => - array ( - 'actions' => - array ( - 'enable_modal_btn' => '有効にする', - 'enable_modal_title' => 'ユーザーを有効にします', - 'enable_disable_reason' => '理由', - 'enable_disable_reason_placeholder' => 'オプション', - 'disable_modal_btn' => '無効', - 'disable_modal_title' => 'ユーザーを無効にします', - 'disable_two_step_authentication' => '2段階のログイン検証をキャンセルします', - 'change_bonus_etc_btn' => 'アップロードボリュームなどを変更します。', - 'change_bonus_etc_action_increment' => '増加', - 'change_bonus_etc_action_decrement' => '減らす', - 'change_bonus_etc_field_label' => 'カテゴリ', - 'change_bonus_etc_action_label' => 'アクション', - 'change_bonus_etc_value_label' => '量', - 'change_bonus_etc_value_help' => 'カテゴリがアップロード/ダウンロードの場合、ユニットは次のとおりです', - 'change_bonus_etc_reason_label' => '理由', - 'reset_password_btn' => 'パスワードをリセットします', - 'reset_password_label' => '新しいパスワード', - 'reset_password_confirmation_label' => '新しいパスワードを確認します', - 'assign_exam_btn' => '割り当て評価', - 'assign_exam_exam_label' => '評価を選択します', - 'assign_exam_begin_label' => '開始時間', - 'assign_exam_end_label' => '終了時間', - 'assign_exam_end_help' => '開始/終了時間が指定されていない場合、評価自体によって設定された時間範囲が使用されます', - 'grant_medal_btn' => 'メダルを受賞', - 'grant_medal_medal_label' => 'メダルを選択します', - 'grant_medal_duration_label' => '有効な期間', - 'grant_medal_duration_help' => 'ユニット:日。空白のままにすると、ユーザーは常にそれを持っています', - 'confirm_btn' => '確認する', - 'disable_download_privileges_btn' => 'ダウンロード許可を無効にします', - 'enable_download_privileges_btn' => 'ダウンロード権限を有効にします', - 'grant_prop_btn' => '小道具を付与します', - 'grant_prop_form_prop' => '小道具を選択します', - 'grant_prop_form_duration' => '有効な期間', - 'grant_prop_form_duration_help' => 'ユニット:日。空白のままにしておくと、ユーザーはそれを永久に持っています。注:名前カードを変更するための時間制限はありません。この値を無視します。', - 'confirm_bulk' => 'バッチ確認', - 'change_bonus_etc_duration_label' => '有効期間', - 'change_bonus_etc_duration_help' => '一時的な招待状を追加するとき、ユニット:日', - 'change_class_btn' => 'レベルを変更します', - ), - ), - 'exam_user' => - array ( - 'bulk_action_avoid_label' => 'バルク免除', - 'bulk_action_update_end_label' => 'バッチ変更の時間の終了', - 'action_avoid' => '免除', - 'action_update_end' => '変更の終了時間', - 'result_passed' => '合格!', - 'result_not_passed' => '失敗した!', - ), - 'exam' => - array ( - 'index_duplicate' => 'インジケータ::インデックスリピート!', - ), - 'hit_and_run' => - array ( - 'bulk_action_pardon' => 'バッチの免除', - 'action_pardon' => '免除', - ), - 'torrent' => - array ( - 'bulk_action_pos_state' => 'トップ', - 'bulk_action_remove_tag' => 'クリアタグ', - 'bulk_action_attach_tag' => 'タグの設定', - 'action_approval' => 'レビュー', - 'bulk_action_attach_tag_remove_old' => '古いタグを同時に削除します', - 'bulk_action_recommend' => '推薦する', - 'bulk_action_sp_state' => '割引', - 'bulk_action_hr' => 'H&R', - ), - 'seed_box_record' => - array ( - 'toggle_status' => 'ステータスを変更します', - 'check_modal_btn' => 'テスト', - 'check_modal_header' => 'IPがシードボックスであるかどうかを検出します', - ), - 'tag' => - array ( - 'detach_torrents' => 'すべての種子を分離します', - ), - ), -); +return [ + 'sidebar' => [ + 'exam_users' => '試験ユーザー', + 'hit_and_runs' => 'ヒットして実行', + 'users_list' => 'ユーザー', + 'tags_list' => 'タグ', + 'agent_allows' => 'エージェントの許可', + 'agent_denies' => 'エージェントの拒否', + 'exams_list' => '試験とタスク', + 'medals_list' => 'Medal', + 'settings' => '設定', + 'users_medals' => 'ユーザーのメダル数', + 'claims' => 'ユーザーの要求', + 'torrent_list' => 'Torrent', + 'torrent_state' => 'Free leach', + 'roles_list' => 'ロール', + 'ability_list' => 'アクセス許可', + 'seed_box_records' => 'SeedBox', + 'upload_speed' => 'アップロード速度', + 'download_speed' => 'ダウンロード速度', + 'isp' => 'ISP', + 'menu' => 'カスタムメニュー', + 'username_change_log' => 'ユーザー名の変更ログ', + 'torrent_deny_reason' => '理由を拒否', + 'roles' => 'ロール', + 'permissions' => 'アクセス許可', + 'section' => '検索ボックス', + 'icon' => 'カテゴリアイコン', + 'plugin' => 'プラグイン', + 'category' => 'カテゴリ', + 'second_icon' => '2番目のアイコン', + 'torrent_operation_log' => 'トレント操作ログ', + 'invite' => '招待', + 'user_props' => 'User props', + 'login_log' => 'ログインログ', + 'bonus_log' => 'ボーナスログ', + 'torrent_buy_log' => 'Torrent 購入ログ', + 'attendance_log' => '出席ログ', + 'oauth_client' => 'クライアント', + 'oauth_access_token' => 'アクセストークン', + 'oauth_auth_code' => '認証コード', + 'oauth_refresh_token' => 'トークンを更新', + 'token' => 'アクセストークン', + 'oauth_provider' => '認証プロバイダー', + 'queue_monitor' => 'キューモニター', + ], + 'resources' => [ + 'agent_allow' => [ + 'check_modal_btn' => 'チェック', + 'check_modal_header' => 'クライアントが許可されているかどうかを検出する', + 'check_pass_msg' => 'おめでとうございます。このクライアントはルール :id で渡されました!', + ], + 'user' => [ + 'actions' => [ + 'enable_modal_btn' => '有効にする', + 'enable_modal_title' => 'ユーザーを有効にする', + 'enable_disable_reason' => '理由:', + 'enable_disable_reason_placeholder' => '省略可能', + 'disable_modal_btn' => '無効', + 'disable_modal_title' => 'ユーザーを無効にする', + 'disable_two_step_authentication' => '2段階認証をキャンセル', + 'change_bonus_etc_btn' => '変更アップロードなど', + 'change_bonus_etc_action_increment' => '増分', + 'change_bonus_etc_action_decrement' => 'Decrement', + 'change_bonus_etc_field_label' => 'フィールド', + 'change_bonus_etc_action_label' => 'アクション', + 'change_bonus_etc_value_label' => '値', + 'change_bonus_etc_value_help' => '型がアップロード/ダウンロードされている場合、単位はGB', + 'change_bonus_etc_reason_label' => '理由:', + 'reset_password_btn' => 'パスワードのリセット', + 'reset_password_label' => '新しいパスワード', + 'reset_password_confirmation_label' => '新しいパスワードを確認', + 'assign_exam_btn' => 'テストを割り当てる', + 'assign_exam_exam_label' => '試験を選択', + 'assign_exam_begin_label' => '開始時刻', + 'assign_exam_end_label' => '終了時間', + 'assign_exam_end_help' => '開始/終了時間を指定しない場合は、試験自体で設定された時間範囲が使用されます', + 'grant_medal_btn' => 'メダルを付与する', + 'grant_medal_medal_label' => 'メダルを選択', + 'grant_medal_duration_label' => '期間', + 'grant_medal_duration_help' => '単位:日数。空白の場合、ユーザーは永久所有権を持っています', + 'confirm_btn' => '確認する', + 'disable_download_privileges_btn' => 'ダウンロードを有効化', + 'enable_download_privileges_btn' => 'ダウンロードを無効にする', + 'grant_prop_btn' => 'プロパティを付与する', + 'grant_prop_form_prop' => 'プロパティを選択', + 'grant_prop_form_duration' => '期間', + 'grant_prop_form_duration_help' => '単位:日数。空白の場合、ユーザーは永久にそれを持っています。注:名前変更カードの時間制限はありません、この値を無視します。' , + 'confirm_bulk' => '一括確認', + 'change_bonus_etc_duration_label' => '期間', + 'change_bonus_etc_duration_help' => '招待状を追加するには日数で必須', + 'change_class_btn' => 'クラスを変更', + ] + ], + 'exam_user' => [ + 'bulk_action_avoid_label' => '一括回避', + 'bulk_action_update_end_label' => '終了時間を一括変更', + 'action_avoid' => '回避する', + 'action_update_end' => '終了時刻を変更', + 'result_passed' => '合格!', + 'result_not_passed' => '合格していません!', + ], + 'exam' => [ + 'index_duplicate' => 'インデックス::index duplication!', + ], + 'hit_and_run' => [ + 'bulk_action_pardon' => 'Bulk pardon', + 'action_pardon' => 'Pardon', + ], + 'torrent' => [ + 'bulk_action_pos_state' => 'Sticky', + 'bulk_action_remove_tag' => 'タグを削除', + 'bulk_action_attach_tag' => 'タグを添付', + 'action_approval' => '承認', + 'bulk_action_attach_tag_remove_old' => '古いタグも削除', + 'bulk_action_recommend' => 'Recommend', + 'bulk_action_sp_state' => 'プロモーション', + 'bulk_action_hr' => 'H&R', + ], + 'seed_box_record' => [ + 'toggle_status' => 'ステータスの変更', + 'check_modal_btn' => 'チェック', + 'check_modal_header' => 'IP が SeedBox であるかどうかを検出', + ], + 'tag' => [ + 'detach_torrents' => 'すべての Torrent を切断する', + ], + ] +]; diff --git a/resources/lang/ja/attendance.php b/resources/lang/ja/attendance.php index 549e6bff..963263ae 100644 --- a/resources/lang/ja/attendance.php +++ b/resources/lang/ja/attendance.php @@ -1,15 +1,14 @@ 'まだ署名していません', - 'target_date_can_no_be_retroactive' => '日付::日付を再署名することはできません', - 'already_attendance' => 'サインイン', - 'card_not_enough' => '不十分な再署名カード', - 'ranking' => '今日のサインインランキング::ランキング/:カウント', - 'fields' => - array ( - 'date' => '日付', - 'points' => '魔法を獲得します', - 'is_retroactive' => '再署名するかどうか', - ), -); +return [ + 'have_not_attendance_yet' => "まだ出席していません", + 'target_date_can_no_be_retroactive' => '日付::date は遡って使用できません', + 'already_attendance' => '既に出欠しています', + 'card_not_enough' => '出席カードが足りません', + 'ranking' => "今日のランキング: :ranking / :count", + 'fields' => [ + 'date' => '日付', + 'points' => 'ボーナス獲得', + 'is_retroactive' => '後退しています', + ], +]; diff --git a/resources/lang/ja/bonus-log.php b/resources/lang/ja/bonus-log.php index a4271ea9..e1e72c44 100644 --- a/resources/lang/ja/bonus-log.php +++ b/resources/lang/ja/bonus-log.php @@ -1,40 +1,37 @@ - array ( - 1 => 'H&Rを排除します', - 2 => 'メダルを購入します', - 3 => '再署名に購入してサインアップします', - 4 => 'トッププロモーション', - 5 => '報酬を投稿します', - 6 => 'アップロードボリュームを交換します', - 7 => '招待状を購入します', - 8 => 'カスタムタイトル', - 9 => 'VIPを購入します', - 10 => '誰かに寄付してください', - 11 => '広告を排除します', - 12 => '低共有率に寄付します', - 13 => 'ラッキーカルーセル', - 14 => 'ダウンロードを引き換えます', - 15 => '購入への一時的な招待', - 16 => 'レインボーIDを購入します', - 17 => '名前変更カードを購入します', - 18 => 'メダルを与える', - 19 => '種を買う', - 21 => 'ミッション完了報酬', - 20 => '未完成のタスクの控除', - 1000 => 'ワーキンググループの給与', - 1001 => '種子がダウンロードされます', - 1002 => '報酬を受け取りました', - 1003 => '贈り物を受け取りました', - 1004 => '種子を放出します', - ), - 'fields' => - array ( - 'business_type' => 'ビジネスタイプ', - 'old_total_value' => 'トレード前の値', - 'value' => 'トランザクション値', - 'new_total_value' => 'トランザクション後の値', - ), -); +return [ + 'business_types' => [ + \App\Models\BonusLogs::BUSINESS_TYPE_CANCEL_HIT_AND_RUN => 'H&Rをキャンセル', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_MEDAL => '勲章を購入', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_ATTENDANCE_CARD => '出席カードを購入する', + \App\Models\BonusLogs::BUSINESS_TYPE_STICKY_PROMOTION => '定番プロモーション', + \App\Models\BonusLogs::BUSINESS_TYPE_POST_REWARD => '報酬を投稿する', + \App\Models\BonusLogs::BUSINESS_TYPE_EXCHANGE_UPLOAD => 'Exchangeがアップロードされました', + \App\Models\BonusLogs::BUSINESS_TYPE_EXCHANGE_INVITE => '招待を購入', + \App\Models\BonusLogs::BUSINESS_TYPE_CUSTOM_TITLE => 'カスタムタイトル', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_VIP => 'VIPを購入', + \App\Models\BonusLogs::BUSINESS_TYPE_GIFT_TO_SOMEONE => '誰かに贈りましょう', + \App\Models\BonusLogs::BUSINESS_TYPE_NO_AD => '広告をキャンセル', + \App\Models\BonusLogs::BUSINESS_TYPE_GIFT_TO_LOW_SHARE_RATIO => 'ギフトに対する低シェア率', + \App\Models\BonusLogs::BUSINESS_TYPE_LUCKY_DRAW => 'ラッキードロー(抽選)', + \App\Models\BonusLogs::BUSINESS_TYPE_EXCHANGE_DOWNLOAD => 'Exchangeがダウンロードされました', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_TEMPORARY_INVITE => '一時招待を購入する', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_RAINBOW_ID => 'レインボーIDを購入', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_CHANGE_USERNAME_CARD => 'ユーザー名カードの変更を購入する', + \App\Models\BonusLogs::BUSINESS_TYPE_GIFT_MEDAL => '勲章を贈ろう', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_TORRENT => 'トレントを購入', + + \App\Models\BonusLogs::BUSINESS_TYPE_ROLE_WORK_SALARY => 'ロールワーク給与(給与)', + \App\Models\BonusLogs::BUSINESS_TYPE_TORRENT_BE_DOWNLOADED => 'Torrent をダウンロードする', + \App\Models\BonusLogs::BUSINESS_TYPE_RECEIVE_REWARD => '報酬を受け取る', + \App\Models\BonusLogs::BUSINESS_TYPE_RECEIVE_GIFT => 'ギフトを受け取る', + \App\Models\BonusLogs::BUSINESS_TYPE_UPLOAD_TORRENT => 'Torrent をアップロード', + ], + 'fields' => [ + 'business_type' => 'ビジネスタイプ', + 'old_total_value' => '取引前の値', + 'value' => '取引値', + 'new_total_value' => '注文後の値', + ], +]; diff --git a/resources/lang/ja/bonus.php b/resources/lang/ja/bonus.php index 4255d37e..65747854 100644 --- a/resources/lang/ja/bonus.php +++ b/resources/lang/ja/bonus.php @@ -1,31 +1,35 @@ 'コスト:ボーナスマジック購入:Medal_Name', - 'comment_buy_attendance_card' => 'コスト:ボーナスマジックは、1つの再署名カードを購入しました', - 'comment_buy_temporary_invite' => '支出:ボーナスマジック購入:一時的な招待状をカウントします', - 'comment_buy_rainbow_id' => '支出:購入したボーナスマジック:空の虹のID', - 'comment_buy_change_username_card' => 'コスト:ボーナスマジックは名前の変更カードを購入しました', - 'comment_gift_medal' => '支出:ボーナスマジック購入:medal_nameとそれを与えた:to_username', - 'comment_buy_torrent' => '支出:ボーナスマジック購入シード:: torrent_id', - 'comment_torrent_be_downloaded' => 'ゲインはシードダウンロードから来ます:username(uid :: uid)', - 'table_thead' => - array ( - 'reward_type' => '報酬タイプ', - 'count' => '量', - 'size' => '音量', - 'a_value' => '値', - 'bonus_base' => '基本的な魔法', - 'factor' => '係数', - 'got_bonus' => '魔法を獲得します', - 'total' => '合計', - ), - 'reward_types' => - array ( - 'basic' => '基本的な報酬', - 'harem_addition' => 'ハーレムボーナス', - 'official_addition' => '公式ボーナス', - 'medal_addition' => 'メダルボーナス', - ), - 'not_enough' => '不十分な魔法!要求:require_bonus、あなたは:: now_bonusのみを持っています', -); +return [ + 'comment_buy_medal' => '支出:bonus buy :medal_name', + 'comment_buy_attendance_card' => ':bonus bonus buy one attential card.', + 'comment_buy_temporary_invite' => ':bonus bonus buy :count temporary invite', + 'comment_buy_rainbow_id' => ':bonus bonus buy :duration days レインボーID を使う', + 'comment_buy_change_username_card' => 'USend :bonus bonus buy change username card', + 'comment_gift_medal' => ':bonus bonus buy :medal_name and gift to :to_username', + 'comment_buy_torrent' => ':bonus bonus buy torrent: :torrent_id', + 'comment_torrent_be_downloaded' => ':username(UID:uid)がダウンロードしたトレントから収益を得ます。', + 'table_thead' => [ + 'reward_type' => '報酬タイプ', + 'count' => 'カウント', + 'size' => 'サイズ', + 'a_value' => '値', + 'bonus_base' => '基本ボーナス', + 'factor' => '係数', + 'got_bonus' => 'ボーナス獲得', + 'total' => '合計', + ], + 'reward_types' => [ + 'basic' => '基本報酬', + 'harem_addition' => 'ハーレムの追加', + 'official_addition' => '公式追加', + 'medal_addition' => '勲章追加', + ], + 'not_enough' => 'ボーナスが足りません!:require_bonusが必要です。現在のボーナスは:now_bonです。', + 'msg_someone_loves_you' => "誰かがあなたを愛しています", + 'msg_you_have_been_given' => "以下のギフトが与えられました ", + 'msg_after_tax' => " (税金の後 ", + 'msg_karma_points_by' => ") カルマポイント ", + 'msg_personal_message_from' => "個人からのメッセージ ", + 'msg_colon' => ": ", +]; diff --git a/resources/lang/ja/bookmark.php b/resources/lang/ja/bookmark.php index b9eec45e..aaa145dc 100644 --- a/resources/lang/ja/bookmark.php +++ b/resources/lang/ja/bookmark.php @@ -1,9 +1,8 @@ - array ( - 'store_success' => 'お気に入りを正常に追加します!', - 'delete_success' => 'コレクションを正常にキャンセルします!', - ), -); +return [ + 'actions' => [ + 'store_success' => 'ブックマークに追加しました!', + 'delete_success' => 'ブックマークをキャンセルしました!', + ] +]; diff --git a/resources/lang/ja/claim.php b/resources/lang/ja/claim.php index 797873f5..72c73877 100644 --- a/resources/lang/ja/claim.php +++ b/resources/lang/ja/claim.php @@ -1,37 +1,38 @@ 'シードクレームの詳細', - 'title_for_user' => '種子を主張するユーザーの詳細', - 'th_id' => 'id', - 'th_username' => 'ユーザー', - 'th_torrent_name' => 'シード名', - 'th_torrent_size' => '種子サイズ', - 'th_torrent_ttl' => '種子は生き残ります', - 'th_claim_at' => '請求時間', - 'th_last_settle' => '最後のチェックアウト時間', - 'th_seed_time_this_month' => '今月の植え付け時間', - 'th_uploaded_this_month' => '今月はアップロードします', - 'th_reached_or_not' => '今月は基準が満たされますか', - 'th_action' => '動作します', - 'msg_title' => '先月の請求決済(:月)は次のとおりです。', - 'msg_subject' => ':月の請求決済', - 'claim_total' => '主張された種子の数::合計', - 'claim_reached_counts' => '会議基準の数::カウント', - 'claim_reached_summary' => '1時間あたりの魔法::bonus_per_hour 、種子の平均数::時間、魔法を取得::bonus_total ', - 'claim_unreached_remain_counts' => '保持カウントは満たされていません::カウント', - 'claim_unreached_remove_counts' => '満たされていない削除の数::カウント', - 'claim_unreached_summary' => '各シードの魔法のパワーを差し引く::decuct_per_torrent 、総控除魔法のパワー::decuct_total ', - 'confirm_give_up' => 'この種を主張するのをあきらめたいですか?', - 'add_claim' => '請求', - 'add_claim_confirm' => '請求を確認しますか?', - 'remove_claim' => 'あきらめる', - 'remove_claim_confirm' => '主張をあきらめることを確認しますか?', - 'already_claimed' => '認識された', - 'not_claim_yet' => '請求されていない', - 'fields' => - array ( - 'torrent_id' => 'シードID', - ), - 'claim_all_seeding_confirmation' => '現在生産中のすべての種子を請求したいですか?', -); +return [ + 'title_for_torrent' => 'トレント請求の詳細', + 'title_for_user' => 'ユーザークレームの詳細', + 'th_id' => 'ID', + 'th_username' => 'ユーザー', + 'th_torrent_name' => 'トレント名', + 'th_torrent_size' => 'トレントサイズ', + 'th_torrent_ttl' => 'Torrent TTL', + 'th_claim_at' => '請求先', + 'th_last_settle' => '最終決済日時', + 'th_seed_time_this_month' => '今月', + 'th_uploaded_this_month' => '今月のアップ', + 'th_reached_or_not' => '到達しました', + 'th_action' => 'アクション', + + 'msg_title' => '先月決済結果を請求(:month):', + 'msg_subject' => ':month クレーム決済', + 'claim_total' => 'トレント総額: [b]:total[/b]', + 'claim_reached_counts' => 'トレント数に達しました: [b]:counts[/b]', + 'claim_reached_summary' => 'トレントが1時間あたりボーナスを獲得しました: [b]:bonus_per_hour[/b], シード時間平均(時間): [b]:hours[/b], ボーナス合計: [b]:bonus_total[/b]', + 'claim_unreached_remain_counts' => '未達トレントの残り数: [b]:counts[/b]', + 'claim_unreached_remove_counts' => '未達の Torrent 削除数: [b]:counts[/b]', + 'claim_unreached_summary' => '未到のトレント:[b]:deduct_per_torrent[/b]、合計控除額: [b]:deduct_total[/b]', + + 'confirm_give_up' => 'このトレントの主張を放棄してもよろしいですか?', + 'add_claim' => 'Claim', + 'add_claim_confirm' => '請求しますか?', + 'remove_claim' => '諦めます', + 'remove_claim_confirm' => '請求を放棄しますか?', + 'already_claimed' => '請求済み', + 'not_claim_yet' => '未請求', + 'fields' => [ + 'torrent_id' => 'Torrent ID', + ], + 'claim_all_seeding_confirmation' => '現在シード中のすべてのトレントを請求してもよろしいですか?' , +]; diff --git a/resources/lang/ja/cleanup.php b/resources/lang/ja/cleanup.php index a42f88ba..20856c1f 100644 --- a/resources/lang/ja/cleanup.php +++ b/resources/lang/ja/cleanup.php @@ -1,15 +1,36 @@ 'アップロード警告は期限切れになり、システムによって無効になります。', - 'disable_user_unconfirmed' => 'タイムアウトは確認されておらず、システムによってブロックされました。', - 'disable_user_no_transfer_alt_last_access_time' => '最新の訪問時間によって決定される、非アクティブなトラフィックフリーアカウントをブロックします。', - 'disable_user_no_transfer_alt_register_time' => '非アクティブなトラフィックフリーアカウントの禁止は、登録時間によって決定されます。', - 'disable_user_not_parked' => '未払いの非アクティブアカウントを定期的に禁止します。', - 'disable_user_parked' => '保留中の非アクティブアカウントを定期的にブロックします。', - 'destroy_disabled_account' => '禁止されたアカウントのタイムリーな物理的削除', - 'alarm_email_subject' => '[:site_name]バックグラウンドクリーニングタスクの例外', - 'alarm_email_body' => '現在の時刻:: now_time、level:level Level Last Running timeは:: last_timeでした。セットの実行間隔は::間隔秒(:interval_human)、確認してください!', - 'alarm_email_subject_for_queue_failed_jobs' => '[:site_name] asyncタスクの例外', - 'alarm_email_body_for_queue_failed_jobs' => 'それ以来、データテーブルに記録されているカウント不合格の非同期タスクがあります。', -); +return [ + 'ban_user_with_leech_warning_expired' => 'リーチ警告の有効期限が切れたため、システムで禁止されています。', + 'disable_user_unconfirmed' => '未確認の期限が過ぎたため、システムで無効になります。', + 'disable_user_no_transfer_alt_last_access_time' => '非アクティブなユーザーアカウントを無効にし、転送を無効にします。Alt: 最後のアクセス時間。', + 'disable_user_no_transfer_alt_register_time' => '非アクティブなユーザーアカウントを無効にし、転送を無効にします。 Alt: 登録時間。', + 'disable_user_not_parked' => '非アクティブなユーザーアカウントを無効にします。無効にします。', + 'disable_user_parked' => '無効なユーザーアカウントを無効にします。', + 'destroy_disabled_account' => '無効なアカウントの時間制限付き物理削除', + 'alarm_email_subject' => '[:site_name] バックグラウンドクリーンアップタスク例外', + 'alarm_email_body' => '現在の時間: :now_time, level :level, 前回の実行時間は:last_time, 実行されてから:elapsed_seconds(:elapsed_seconds_human) 設定した実行間隔は:interval seconds(:interval_human), 確認してください!', + 'alarm_email_subject_for_queue_failed_jobs' => '[:site_name]非同期タスク例外', + 'alarm_email_body_for_queue_failed_jobs' => 'データベーステーブル:failed_job_tableに記録されている:since 以降、合計:count 失敗した非同期ジョブがあります。確認してください!', + + 'msg_low_ratio_warning_removed' => "低比率の警告が削除されました", + 'msg_your_ratio_warning_removed' => "Your warning of low ratio have been removed and auto-promoted to [b]User[/b]. We highly recommend you to keep a your ratio up to not be warned again.\n", + 'msg_promoted_to' => "プロモーション先 ", + 'msg_now_you_are' => "Congratulations, you have been auto-promoted to [b]", + 'msg_see_faq' => "[/b]. :)\nPlease see the [b][url=faq.php#id22]FAQ[/url][/b] for what you can do now.\n", + 'msg_demoted_to' => "降格者: ", + 'msg_demoted_from' => "You have been auto-demoted from [b]", + 'msg_to' => "[/b] から [b]", + 'msg_because_ratio_drop_below' => "[/b] シェア比率が下回ったためです ", + 'msg_must_fix_ratio_within' => "[b]ユーザー[/b] から [b]小作農[/b] に自動降格されました。比率が低いためです。以下で修正する必要があります ", + 'msg_days_or_get_banned' => " さもないとアカウントは禁止されます。 比率が何であるか、またはそれがどのようにあなたに影響するかについて知らないなら、[url=faq] を読むことをお勧めします。 hp#idid17][b]FAQ[/b][/url].", + 'msg_vip_status_removed' => "システムによってVIPステータスが削除されました。", + 'msg_vip_status_removed_body' => "VIPステータスがタイムアウトし、システムによって自動的に削除されました。カルマボーナスポイントを交換して、VIPになりましょう。乾杯!", + 'msg_donor_status_removed' => "寄付ステータスがシステムによって削除されました。", + 'msg_donor_status_removed_body' => "あなたのドナーステータスはタイムアウトしました。システムによって自動的に削除されました。ドナーになってください。", + 'msg_warning_removed' => "システムによって削除された警告", + 'msg_your_warning_removed' => "警告はシステムによって削除されます。今後も動作することを願っています。", + 'msg_your_torrent_deleted' => "トレントが削除されました", + 'msg_your_torrent' => "Torrent ", + 'msg_was_deleted_because_dead' => " 長い間死んでいたため、システムによって削除されましたが、トレントをアップロードするカルマボーナスは保持されます。", +]; diff --git a/resources/lang/ja/comment.php b/resources/lang/ja/comment.php index cc1142fc..c0171858 100644 --- a/resources/lang/ja/comment.php +++ b/resources/lang/ja/comment.php @@ -1,8 +1,8 @@ - array ( - 'page_title' => 'コメントリスト', - ), -); +return [ + 'msg_new_comment' => "新しいコメント", + 'msg_torrent_receive_comment' => "トレントにコメントを受け取りました ", + 'msg_offer_receive_comment' => "オファーに関するコメントを受け取りました ", + 'msg_request_receive_comment' => "リクエストにコメントを受け取りました " +]; diff --git a/resources/lang/ja/dashboard.php b/resources/lang/ja/dashboard.php index 1a847032..ec5c4052 100644 --- a/resources/lang/ja/dashboard.php +++ b/resources/lang/ja/dashboard.php @@ -1,72 +1,65 @@ - array ( - 'page_title' => 'ユーザー統計', - 'total' => '合計', - 'unconfirmed' => '確認されていません', - 'visit_last_one_day' => '最後の1日に訪問しました', - 'visit_last_one_week' => '過去1週間に訪問しました', - 'visit_last_30_days' => '過去30日間に訪問しました', - 'vip' => 'VIP', - 'donated' => '寄付する', - 'warned' => '警告', - 'disabled' => '無効', - 'gender_male' => '男の子', - 'gender_Male' => '男の子', - 'gender_female' => '女の子', - 'gender_Female' => '女の子', - 'gender_N/A' => '性別不明', - ), - 'torrent' => - array ( - 'page_title' => '種子統計', - 'total' => '合計', - 'dead' => '死んだ種', - 'seeders' => '種子の数', - 'leechers' => 'ダウンロード数', - 'seeders_leechers' => '仲間', - 'seeders_leechers_ratio' => '種子の数 /ダウンロード比', - 'active_web_users' => '訪問したユーザーの現在の数', - 'active_tracker_users' => '現在のトラッカーユーザー', - 'total_torrent_size' => '総種子サイズ', - 'total_uploaded' => '合計アップロード', - 'total_downloaded' => '総ダウンロード', - 'total_uploaded_downloaded' => '総データボリューム', - ), - 'user_class' => - array ( - 'page_title' => 'ユーザーレベルの分布', - ), - 'system_info' => - array ( - 'page_title' => 'システム情報', - 'nexus_version' => 'NEXUSPHPバージョン', - 'nexus_release_date' => 'NEXUSPHPリリース日', - 'laravel_version' => 'Laravelバージョン', - 'php_version' => 'PHPバージョン', - 'mysql_version' => 'mysqlバージョン', - 'os' => 'オペレーティング·システム', - 'server_software' => 'Webソフトウェア', - 'load_average' => 'サーバーの負荷平均', - 'filament_version' => 'フィラメントバージョン', - 'redis_version' => 'Redisバージョン', - ), - 'latest_user' => - array ( - 'page_title' => '最新のユーザー', - ), - 'latest_torrent' => - array ( - 'page_title' => '最新の種', - ), - 'torrent_trend' => - array ( - 'page_title' => 'シードトレンド', - ), - 'user_trend' => - array ( - 'page_title' => 'ユーザーのトレンド', - ), -); +return [ + 'user' => [ + 'page_title' => 'ユーザーの統計', + 'total' => '合計', + 'unconfirmed' => '未確認', + 'visit_last_one_day' => 'PV of last 1 day', + 'visit_last_one_week' => 'PV of last 7 days', + 'visit_last_30_days' => 'PV of last 30 days', + 'vip' => 'Vip', + 'donated' => '寄付済み', + 'warned' => '警告済み', + 'disabled' => '無効', + 'gender_male' => '男性', + 'gender_Male' => '男性', + 'gender_female' => '女性', + 'gender_Female' => '女性', + 'gender_N/A' => '性別不明', + ], + 'torrent' => [ + 'page_title' => 'トレント統計', + 'total' => '合計', + 'dead' => '死亡者数', + 'seeders' => 'Seeders', + 'leechers' => 'Leechers', + 'seeders_leechers' => 'ピア', + 'seeders_leechers_ratio' => 'シーダー/リーチャ', + 'active_web_users' => 'アクティブなウェブユーザー', + 'active_tracker_users' => 'アクティブなトラッカーユーザー', + 'total_torrent_size' => 'トレントの合計サイズ', + 'total_uploaded' => 'アップロードされたサイズ', + 'total_downloaded' => 'ダウンロードしたサイズ', + 'total_uploaded_downloaded' => 'アップロードされた+ダウンロードしたサイズ', + ], + 'user_class' => [ + 'page_title' => 'ユーザクラス', + ], + 'system_info' => [ + 'page_title' => 'システム情報', + 'nexus_version' => 'NexusPHP バージョン', + 'nexus_release_date' => 'NexusPHP release date', + 'laravel_version' => 'Laravelバージョン', + 'php_version' => 'PHPのバージョン', + 'mysql_version' => 'MySQLバージョン', + 'os' => 'OS', + 'server_software' => 'Webソフトウェア', + 'load_average' => 'サーバー負荷平均', + 'filament_version' => 'フィラメントバージョン', + 'redis_version' => 'Redis バージョン', + ], + 'latest_user' => [ + 'page_title' => '最新のユーザー', + ], + 'latest_torrent' => [ + 'page_title' => '最新の Torrent', + ], + 'torrent_trend' => [ + 'page_title' => 'トレントトレンド', + ], + 'user_trend' => [ + 'page_title' => 'ユーザートレンド', + ], + +]; diff --git a/resources/lang/ja/exam-user.php b/resources/lang/ja/exam-user.php index 7a7bb986..1f52ef30 100644 --- a/resources/lang/ja/exam-user.php +++ b/resources/lang/ja/exam-user.php @@ -1,19 +1,16 @@ - array ( - 'list' => - array ( - 'page_title' => '評価ユーザーリスト', - ), - ), - 'status' => - array ( - 1 => '終了しました', - -1 => '免除', - 0 => 'アンダー評価', - ), - 'end_can_not_before_begin' => '終了時間::終了は開始時間前にできません:: begin', - 'status_not_allow_update_end' => '現在のステータスは:: status_textではありません、終了時間は変更できません', -); +return [ + 'admin' => [ + 'list' => [ + 'page_title' => '試験ユーザー' + ] + ], + 'status' => [ + \App\Models\ExamUser::STATUS_FINISHED => '完了', + \App\Models\ExamUser::STATUS_AVOIDED => '回避', + \App\Models\ExamUser::STATUS_NORMAL => '標準', + ], + 'end_can_not_before_begin' => "終了時間: :end cannot be before begin: :begin", + 'status_not_allow_update_end' => '現在のステータスはnot::status_textで、終了時刻を変更できません', +]; diff --git a/resources/lang/ja/exam.php b/resources/lang/ja/exam.php index dd745c60..580c7bff 100644 --- a/resources/lang/ja/exam.php +++ b/resources/lang/ja/exam.php @@ -1,70 +1,72 @@ '評価', - 'name' => '名前', - 'index' => '索引', - 'time_range' => '時間', - 'index_text_1' => '増分をアップロードします', - 'index_text_2' => '平均植え付け時間', - 'index_text_3' => '増分をダウンロードします', - 'index_text_4' => '魔法の増加', - 'index_text_5' => 'ポイントの増分を作成します', - 'index_text_6' => '排出量の増加', - 'filters' => - array ( - 'classes' => 'ユーザーレベル', - 'register_time_range' => '登録時間範囲', - 'donate_status' => '寄付するかどうか', - 'register_days_range' => '登録日の範囲', - ), - 'require_value' => '必要とする', - 'current_value' => '現在', - 'result' => '結果', - 'result_pass_for_exam' => '合格!', - 'result_pass_for_task' => '仕上げる!', - 'result_not_pass_for_exam' => '失敗! ', - 'result_not_pass_for_task' => '完成していない! ', - 'checkout_pass_message_subject_for_exam' => '評価に合格しました!', - 'checkout_pass_message_content_for_exam' => 'おめでとう!指定された時間内に評価が正常に完了しました(:begin〜:end):: Exam_Name。', - 'checkout_not_pass_message_subject_for_exam' => '評価が失敗した場合、アカウントは無効になります!', - 'checkout_not_pass_message_content_for_exam' => '評価を完了していません::指定された時間内(:begin〜:end)内でexam_name、アカウントは無効になっています。', - 'checkout_pass_message_subject_for_task' => 'ミッションは完了しました!', - 'checkout_pass_message_content_for_task' => 'おめでとう!指定された時間内にタスクを正常に完了しました:: Exam_Name(:begin〜:end)を受け取り、報酬マジック:: success_reward_bonusを受け取りました', - 'checkout_not_pass_message_subject_for_task' => 'ミッションは完了していません!', - 'checkout_not_pass_message_content_for_task' => '指定された時間内にタスクを完了していません(:begin〜:end):: exam_name、DETUCT MAGIC :: FAIL_DEDUCT_BONUS。', - 'ban_log_reason' => '未完成の評価:: Exam_Name(:begin〜:end)', - 'ban_user_modcomment' => '評価は完了していません:: exam_name(:begin〜:end)、システムによって無効になっています。', - 'deduct_bonus_comment' => '未完のタスク:: exam_name(:begin〜:end)、魔法を差し引く:: fail_deduct_bonus。', - 'reward_bonus_comment' => 'タスクを完了する:: exam_name(:begin〜:end)、報酬魔法:: success_reward_bonus。', - 'admin' => - array ( - 'list' => - array ( - 'page_title' => '評価リスト', - ), - ), - 'recurring' => '周期性', - 'recurring_daily' => '1日1回', - 'recurring_weekly' => '週に一度', - 'recurring_monthly' => '月に一度', - 'recurring_help' => '周期性として指定されている場合、評価開始時間は現在のサイクルの開始時間であり、終了時間は現在のサイクルの終了時間です。ここで言及されているのは、自然な日/週/月です。タイプの評価のために、各サイクルが終わった後もユーザーがフィルタリング条件を満たしている場合、次のサイクルの評価はユーザーに自動的に割り当てられます。', - 'time_condition_invalid' => '時間パラメーターは不合理であり、3つの項目のいずれかの1つだけがあります:開始時間 +終了時間/日付/定期性', - 'type_exam' => '評価', - 'type_task' => 'タスク', - 'type' => 'タイプ', - 'type_help' => '評価は定期的な評価であり、失敗した場合、アカウントから禁止されます。タスクは、魔法に報いるか、完了に応じて魔法を差し引くように設定できます', - 'fail_deduct_bonus' => '魔法を差し引かない', - 'success_reward_bonus' => '報酬の魔法を完成させます', - 'action_claim_task' => '受け取る', - 'confirm_to_claim' => 'あなたはそれを主張したいですか?', - 'claim_by_yourself_only' => '私はそれを自分で主張することができます!', - 'not_match_target_user' => 'あなたは一致するターゲットユーザーではありません!', - 'has_other_on_the_way' => '他にも進行中です:type_text', - 'claimed_already' => '主張しました', - 'not_between_begin_end_time' => '開始および終了時間範囲内ではありません', - 'reach_max_user_count' => '請求者の数は上限に達しました', - 'claimed_user_count' => '請求者の数', - 'max_user_count' => '請求者の最大数(0は無制限です)', - 'background_color' => '情報ボックスの背景色', -); +return [ + 'label' => '試験', + 'name' => '試験名', + 'index' => '試験インデックス', + 'time_range' => '試験時間', + 'index_text_' . \App\Models\Exam::INDEX_UPLOADED => '増分をアップロード', + 'index_text_' . \App\Models\Exam::INDEX_SEED_TIME_AVERAGE => 'シード時間平均', + 'index_text_' . \App\Models\Exam::INDEX_DOWNLOADED => '増分をダウンロード', + 'index_text_' . \App\Models\Exam::INDEX_SEED_BONUS => 'ボーナスインクリメント', + 'index_text_' . \App\Models\Exam::INDEX_SEED_POINTS => 'Seed points increment', + 'index_text_' . \App\Models\Exam::INDEX_UPLOAD_TORRENT_COUNT => 'Torrent の増分をアップロード', + 'filters' => [ + \App\Models\Exam::FILTER_USER_CLASS => 'ユーザクラス', + \App\Models\Exam::FILTER_USER_REGISTER_TIME_RANGE => '時間範囲の登録', + \App\Models\Exam::FILTER_USER_DONATE => '寄付済み', + \App\Models\Exam::FILTER_USER_REGISTER_DAYS_RANGE => '登録日の範囲', + ], + 'require_value' => '必須', + 'current_value' => '現在', + 'result' => '結果', + + 'result_pass_for_exam' => '合格!', + 'result_pass_for_task' => '完了!', + 'result_not_pass_for_exam' => '合格していません!', + 'result_not_pass_for_task' => '未完了!', + 'checkout_pass_message_subject_for_exam' => '試験合格!', + 'checkout_pass_message_content_for_exam' => 'おめでとうございます!時間内に:exam_name(:begin ~ :end) に合格しました。', + 'checkout_not_pass_message_subject_for_exam' => '試験に合格していないため、アカウントは禁止されています!', + 'checkout_not_pass_message_content_for_exam' => '試験に合格しませんでした: 時間内に:exam_name (:begin ~ :end) あなたのアカウントは禁止されています!', + + 'checkout_pass_message_subject_for_task' => 'タスク完了!', + 'checkout_pass_message_content_for_task' => 'おめでとうございます! タスクを完了しました: :exam_name in time(:begin ~ :end), got bonus: :success_reward_bonce', + 'checkout_not_pass_message_subject_for_task' => 'タスクが完了していません。', + 'checkout_not_pass_message_content_for_task' => 'タスクを完了しないようにしてください: :exam_name in time (:begin ~ :end)、ボーナスを差し引いてください: :fail_deduct_bonus', + + 'ban_log_reason' => 'テストが完了していません: :exam_name in time(:begin ~ :end)', + 'ban_user_modcomment' => 'テストが完了していないため: :exam_name(:begin ~ :end)、システムによるBAN。', + 'admin' => [ + 'list' => [ + 'page_title' => '試験一覧' + ] + ], + 'recurring' => '繰り返し', + 'recurring_daily' => '1日に一度', + 'recurring_weekly' => '週に一度', + 'recurring_monthly' => '月に1回', + 'recurring_help' => '定期的に指定された場合、試験の開始時刻は現在のサイクルの開始時刻です。 そして、ここで述べたように、すべての自然な日/週/月である、現在のサイクルの終了時間です。 タイプが試験の場合、各サイクルの終わりに、ユーザーがまだスクリーニング基準を満たしている場合。 次の周期のために自動的に試験が割り当てられます' , + + 'time_condition_invalid' => '時間パラメータは意味をなさない、3つの項目のうちの1つだけがあります: 開始時間+終了時間/期間/定期的な', + + 'type_exam' => '試験', + 'type_task' => 'タスク', + 'type' => 'タイプ', + 'type_help' => '試験は通常の試験であり、失敗するとアカウントの禁止になります。 タスクは報酬ボーナスに設定できます。完了しているかどうかによってボーナスを差し引くことができます。', + + 'fail_deduct_bonus' => '失敗のための控除ボーナス', + 'success_reward_bonus' => '完了のボーナスボーナス', + + 'action_claim_task' => 'Claim', + 'confirm_to_claim' => '請求しますか?' , + 'claim_by_yourself_only' => '自分だけで要求しよう!' , + 'not_match_target_user' => '一致するターゲットユーザーではありません!' , + 'has_other_on_the_way' => '他の :type_text が進行中です!' , + 'claimed_already' => '既に受け取っています', + 'not_between_begin_end_time' => '開始時間と終了時間の間ではありません', + 'reach_max_user_count' => '要求されたユーザーの数が上限に達しました', + 'claimed_user_count' => '請求済み', + 'max_user_count' => '最大請求ユーザー数(0は無制限)', + 'background_color' => '情報ボックスの背景色', +]; diff --git a/resources/lang/ja/file.php b/resources/lang/ja/file.php index 5d292182..5263a80c 100644 --- a/resources/lang/ja/file.php +++ b/resources/lang/ja/file.php @@ -1,8 +1,6 @@ - array ( - 'page_title' => 'ファイルリスト', - ), -); +return [ + 'index' => [ + 'page_title' => 'ファイル', + ], +]; diff --git a/resources/lang/ja/forum.php b/resources/lang/ja/forum.php index 818282f1..f833e9ba 100644 --- a/resources/lang/ja/forum.php +++ b/resources/lang/ja/forum.php @@ -1,14 +1,12 @@ - array ( - 'replied_notify_subject' => '投稿への新しい返信', - 'replied_notify_body' => 'あなたの投稿:: topic_subjectは新しい返信を受け取りました。', - ), - 'post' => - array ( - 'edited_notify_subject' => '返信を投稿しました', - 'edited_notify_body' => '投稿での返信:: topic_subjectは:: editorによって変更されました。', - ), -); +return [ + 'topic' => [ + 'replied_notify_subject' => 'トピックに新しい返信があります', + 'replied_notify_body' => 'トピック::topic_subjectに新しい返信があります。', + ], + 'post' => [ + 'edited_notify_subject' => '返信が変更されました', + 'edited_notify_body' => 'トピックへの返信:topic_subjectは:editorによって変更されました。', + ] +]; diff --git a/resources/lang/ja/fun.php b/resources/lang/ja/fun.php new file mode 100644 index 00000000..f59442bd --- /dev/null +++ b/resources/lang/ja/fun.php @@ -0,0 +1,15 @@ + "楽しいアイテムが禁止されました", + 'msg_your_fun_item' => "あなたの楽しいアイテム '", + 'msg_is_ban_by' => "' は禁止されています ", + 'msg_reason' => "理由: ", + 'msg_fun_item_reward' => "楽しいアイテムボーナス", + 'msg_out_of' => " のうち ", + 'msg_people_think' => " お前が投稿した楽しいアイテムを考えろ ", + 'msg_is_fun' => " これは楽しいことです ", + 'msg_bonus_as_reward' => " カルマポイントを報酬として。", + 'msg_fun_item_dull' => "楽しいアイテムが鈍いです", + 'msg_is_dull' => " は実際には鈍い :thumbsdown: です。ホームページから削除されました。ユーモアのセンスを向上させる必要があるかもしれません。", +]; diff --git a/resources/lang/ja/hr.php b/resources/lang/ja/hr.php index b18a7410..76800249 100644 --- a/resources/lang/ja/hr.php +++ b/resources/lang/ja/hr.php @@ -1,27 +1,28 @@ '調査中', - 'status_2' => '基準を満たします', - 'status_3' => '基準を満たすことができませんでした', - 'status_4' => '免除', - 'mode_disabled' => '無効にします', - 'mode_manual' => 'マニュアル', - 'mode_global' => 'グローバル', - 'reached_by_seed_time_comment' => '締め切り::今、シードタイム:: Seed_time Hourが標準を満たしています:Seed_time_minimum hour(s)', - 'reached_by_share_ratio_comment' => '締め切り::今 -シード生産時間:: Seed_time Hour(s)は標準を満たしていません:Seed_time_minimum hour(s) -共有レート:: share_ratio MET AGNORE CRITERAIA :: INGRORE_WHEN_RATIO_REACH', - 'reached_by_special_user_class_comment' => 'あなたは:: user_class_textまたはユーザーを寄付するか、このH&Rを無視してください', - 'reached_message_subject' => 'H&R(ID :: HIT_AND_RUN_ID)が標準を満たしています!', - 'reached_message_content' => 'ダウンロードしたシード:completed_at :: torrent_name(id :: torrent_id)H&Rは標準を満たしました。おめでとうございます!', - 'unreached_comment' => '締め切り::今 -シード生産時間:: Seed_time時間は要件を満たしていません:: Seed_time_minimum hour(s) -共有レート:: share_ratio無知の基準は満たさなかった:: nagnore_when_ratio_reach', - 'unreached_message_subject' => 'H&R(ID :: HIT_AND_RUN_ID)は標準を満たすことができませんでした!', - 'unreached_message_content' => 'あなたがダウンロードしたシード:completed_at :: torrent_name(id :: torrent_id)H&Rは標準を満たすことができませんでした!蓄積された特定の数のアカウントは無効になります。ご注意ください。', - 'unreached_disable_comment' => 'H&R数は上限に達し、システムによって無効になります。', - 'unreached_disable_message_content' => 'H&Rの累積数がシステムの制限に達しているため、::ban_user_when_counts_reachは、アカウントが無効になっています。', - 'bonus_cancel_comment' => '支出:ボーナスマジックは排除されます', - 'remove_confirm_msg' => 'H&Rを排除するには、控除する必要があります:ボーナスマジック、それは確かですか?', -); +return [ + 'status_' . \App\Models\HitAndRun::STATUS_INSPECTING => '検査', + 'status_' . \App\Models\HitAndRun::STATUS_REACHED => '到達しました', + 'status_' . \App\Models\HitAndRun::STATUS_UNREACHED => '未達です', + 'status_' . \App\Models\HitAndRun::STATUS_PARDONED => 'Pardoned', + + 'mode_' . \App\Models\HitAndRun::MODE_DISABLED => '無効', + 'mode_' . \App\Models\HitAndRun::MODE_MANUAL => 'マニュアル', + 'mode_' . \App\Models\HitAndRun::MODE_GLOBAL => 'グローバル', + + 'reached_by_seed_time_comment' => '::now,seed時間:seed_time 時間が:seed_time_minimum Hours(s) に達しました', + 'reached_by_share_ratio_comment' => "::now \nシード時間: :seed_time Hours(s) Unreached :seed_time_minimum Hours(s) \nシェア比率: :share_ratio が標準::ignore_when_ratio_reach", + 'reached_by_special_user_class_comment' => "あなたのユーザークラス: :user_class_text または寄付されたユーザーは、この H&R を無視してください", + 'reached_message_subject' => 'H&R(ID: :hit_and_run_id) に達しました!', + 'reached_message_content' => 'おめでとうございます!ダウンロードしたトレント: :torrent_name(ID: :torrent_id) :completed_at が要件に達しました。', + + 'unreached_comment' => "::now \nシード時間: :seed_time 時間::seed_time_minimum Hours(s) \nシェア率::share_ratio が::ignore_when_ratio_reach の要件に達していません", + 'unreached_message_subject' => 'H&R(ID: :hit_and_run_id) に達していません!', + 'unreached_message_content' => ':completed_at: にダウンロードした Torrent の :torrent_name(ID: :torrent_id) に到達しませんでした!アカウントが一定数のH&R を累積すると無効になりますのでご注意ください。', + + 'unreached_disable_comment' => 'H&R数量が上限に達し、アカウントはシステムによって無効にされました', + 'unreached_disable_message_content' => 'H&Rの累積数がシステム上限に達したため、あなたのアカウントは無効になっています: :ban_user_when_counts_reach', + + 'bonus_cancel_comment' => ':ボーナスをキャンセルしました', + 'remove_confirm_msg' => ':bonus ボーナスを差し引いてH&Rを排除しますか?', +]; diff --git a/resources/lang/ja/imdb.php b/resources/lang/ja/imdb.php index 43fe10d4..bd070029 100644 --- a/resources/lang/ja/imdb.php +++ b/resources/lang/ja/imdb.php @@ -1,16 +1,15 @@ - array ( - 'en-US' => '英語(私たち)', - 'fr-CA' => 'フランス語(カナダ)', - 'fr-FR' => 'フランス語(フランス)', - 'de-DE' => 'ドイツ語(ドイツ)', - 'hi-IN' => 'ヒンディー語(インド)', - 'it-IT' => 'イタリア語(イタリア)', - 'pt-BR' => 'ポルトガル語(ブラジル)', - 'es-ES' => 'スペイン語(メキシコ)', - 'es-MX' => 'スペイン語(スペイン)', - ), -); +return [ + 'languages' => [ + 'en-US' => '英語 (アメリカ合衆国)', + 'fr-CA' => 'French (Canada)', + 'fr-FR' => 'フランス語(フランス)', + 'de-DE' => 'ドイツ語', + 'hi-IN' => 'ヒンディー語', + 'it-IT' => 'イタリア語', + 'pt-BR' => 'ポルトガル語 (ブラジル)', + 'es-ES' => 'スペイン語(スペイン)', + 'es-MX' => 'スペイン語(メキシコ)', + ], +]; diff --git a/resources/lang/ja/index.php b/resources/lang/ja/index.php index 4e88d47a..ca5d8ed5 100644 --- a/resources/lang/ja/index.php +++ b/resources/lang/ja/index.php @@ -1,4 +1,5 @@ '違法な侵入!この招待コードは無効になっています!', - 'fields' => - array ( - 'inviter' => '招待状を送信します', - 'invitee' => 'メールを受信します', - 'time_invited' => '招待時間', - 'valid' => '有効かどうか', - 'invitee_register_uid' => '登録ユーザーUID', - 'invitee_register_email' => 'ユーザーメールを登録します', - 'invitee_register_username' => '登録ユーザー名', - 'expired_at' => 'ハッシュの有効期限', - 'time_invited_begin' => '招待時間はより大きくなります', - 'time_invited_end' => '招待時間は以下です', - ), - 'send_deny_reasons' => - array ( - 'invite_system_closed' => '招待システムは閉じられています', - 'no_permission' => '招待状は、上記のレベルでのみ送信できます', - 'invite_not_enough' => '不十分な招待状', - ), - 'send_allow_text' => '他の人を招待します', - 'pre_register_username' => '事前に登録されたユーザー名', - 'pre_register_username_help' => 'この招待状コードに登録すると、ユーザー名と電子メールを変更できません', - 'require_pre_register_username' => '事前に登録されたユーザー名は空にすることはできません', -); +return [ + 'invalid_inviter' => '無効な招待者です!招待コードは禁止されています!', + 'fields' => [ + 'inviter' => '送信者', + 'invitee' => 'メールを受け取る', + 'time_invited' => '時間を送信', + 'valid' => 'Valid', + 'invitee_register_uid' => '登録UID', + 'invitee_register_email' => '登録されたメールアドレス', + 'invitee_register_username' => '登録されたユーザー名', + 'expired_at' => 'ハッシュの有効期限が切れた日時', + 'time_invited_begin' => '時間gteを送信', + 'time_invited_end' => '送信時間 lte', + ], + 'send_deny_reasons' => [ + 'invite_system_closed' => '招待システムは閉じられています', + 'no_permission' => '招待状を送信するには:class以上が必要です', + 'invite_not_enough' => '招待が足りません', + ], + 'send_allow_text' => '誰かを招待', + 'pre_register_username' => 'ユーザー名を事前登録', + 'pre_register_username_help' => 'この招待コードでユーザーが登録した場合、ユーザー名とメールアドレスは変更されません', + 'require_pre_register_username' => "事前登録ユーザー名を空にすることはできません", +]; diff --git a/resources/lang/ja/label.php b/resources/lang/ja/label.php index 0bc44d51..ca93e6ee 100644 --- a/resources/lang/ja/label.php +++ b/resources/lang/ja/label.php @@ -1,411 +1,381 @@ '名前', - 'email' => '郵便', - 'image' => '写真', - 'expire_at' => '有効期限', - 'username' => 'ユーザー', - 'status' => '州', - 'enabled' => '有効にする', - 'disabled' => '無効', - 'created_at' => '作成時間', - 'updated_at' => '時間を更新します', - 'begin' => '開始時間', - 'end' => '終了時間', - 'uploaded' => 'ボリュームをアップロードします', - 'downloaded' => 'ダウンロード', - 'ratio' => '共有率', - 'seed_time_required' => 'まだ植える必要があります', - 'inspect_time_left' => '残りの時間の検査', - 'added' => '時間を追加します', - 'last_access' => '最後の訪問時間', - 'priority' => '優先度', - 'priority_help' => '値が大きいほど、より高い', - 'comment' => '述べる', - 'duration' => '間隔', - 'description' => '説明する', - 'price' => '価格', - 'deadline' => '締め切り', - 'permanent' => '永続的に効果的です', - 'operator' => 'オペレーター', - 'action' => '動作します', - 'submit' => '提出する', - 'cancel' => 'キャンセル', - 'reset' => 'リセット', - 'anonymous' => '匿名', - 'infinite' => '無制限', - 'save' => '保存', - 'country' => '国家', - 'city' => '市', - 'client' => 'クライアント', - 'reason' => '理由', - 'change' => '改訂', - 'create' => '作成する', - 'created_at_begin' => '作成時間が始まります', - 'created_at_end' => '作成時間の終わり', - 'setting' => - array ( - 'nav_text' => '設定', - 'backup' => - array ( - 'tab_header' => 'バックアップ', - 'enabled' => '有効にするかどうか', - 'enabled_help' => 'バックアップ機能を有効にするかどうか', - 'frequency' => '頻度', - 'frequency_help' => 'バックアップ周波数', - 'hour' => '時間', - 'hour_help' => 'この時間にバックアップ', - 'minute' => '分', - 'minute_help' => '前のマイナスのこの瞬間にバックアップ。周波数が「時給」を押すと、この値は無視されます', - 'google_drive_client_id' => 'GoogleドライブクライアントID', - 'google_drive_client_secret' => 'Googleドライブクライアントの秘密', - 'google_drive_refresh_token' => 'Googleドライブの更新トークン', - 'google_drive_folder_id' => 'GoogleドライブフォルダーID', - 'via_ftp' => 'FTP経由で保存します', - 'via_ftp_help' => 'FTP経由で保存するかどうか。渡された場合は、構成情報を.envファイルに追加します。', - 'via_sftp' => 'SFTPを介して保存します', - 'via_sftp_help' => 'SFTP経由で保存するかどうか。渡された場合は、構成情報を.envファイルに追加します。', - ), - 'hr' => - array ( - 'tab_header' => 'H&R', - 'mode' => 'モデル', - 'inspect_time' => '検査期間', - 'inspect_time_help' => '検査時間は、ダウンロードが完了した後に計算されます、ユニット:時間', - 'seed_time_minimum' => '種子の期間', - 'seed_time_minimum_help' => '標準を満たすための最小種子生産時間、ユニット:時間、検査時間よりも短い必要があります', - 'ignore_when_ratio_reach' => 'コンプライアンスの共有率', - 'ignore_when_ratio_reach_help' => '会議基準の最小共有率', - 'ban_user_when_counts_reach' => 'H&R数量制限', - 'ban_user_when_counts_reach_help' => 'H&Rの数がこの値に達すると、アカウントは無効になります', - 'include_rate' => '完了率に含まれています', - 'include_rate_help' => 'H&Rは、ダウンロード完了率(0〜1の小数)がこの値に達した場合にのみカウントされます。デフォルト:1', - ), - 'seed_box' => - array ( - 'tab_header' => 'シードボックス', - 'enabled_help' => 'シードボックスルールを有効にするかどうか', - 'no_promotion' => '割引なし', - 'no_promotion_help' => '割引はありません、アップロードボリューム/ダウンロードボリュームは実際の値に基づいて計算されます', - 'max_uploaded' => '最大アップロード倍数', - 'max_uploaded_help' => 'アップロードの最大数は、その体積の数です。そのような制限は0に設定されていません', - 'not_seed_box_max_speed' => '非シードボックスの最大速度制限', - 'not_seed_box_max_speed_help' => 'ユニット:MBPS。この値が超過してSeedboxレコードと一致できない場合、ダウンロード許可は無効になります。', - 'max_uploaded_duration' => '最大アップロード複数の有効な時間範囲', - 'max_uploaded_duration_help' => 'ユニット:時間。この時間の範囲内で、種子が放出された後、最大アップロードされた複数の倍数が有効になり、この範囲の後は有効になりません。 0に設定し、常に有効になります', - ), - 'meilisearch' => - array ( - 'tab_header' => '私を検索してください', - 'enabled' => 'Meilisearchを有効にするかどうか', - 'enabled_help' => '最初にデータをインストールして設定して、有効にする前にデータをインストールしてください。そうしないと、シード検索にデータがありません', - 'search_description' => '説明を検索するかどうか', - 'search_description_help' => 'デフォルト:「いいえ」。 「はい」の場合、説明に含まれるキーワードも返され、さらにヒットがある可能性があります。変更の直後に再輸入されます', - 'default_search_mode' => 'デフォルトの検索モード', - 'default_search_mode_help' => 'デフォルト:「正確」。 \'そして、「正確」は区別されません', - ), - 'system' => - array ( - 'tab_header' => 'システム', - 'change_username_card_allow_characters_outside_the_alphabets' => '名前の変更カードは、英語の文字以外の文字を許可していますか?', - 'change_username_min_interval_in_days' => 'ユーザー名の変更の間の最小日数', - 'maximum_number_of_medals_can_be_worn' => 'ウェアラブルメダルの最大数', - 'cookie_valid_days' => 'Cookie有効な日', - 'maximum_upload_speed' => '最大アップロード速度', - 'maximum_upload_speed_help' => 'この値は、詐欺師の検出に影響を及ぼし、保守的な検出レベルの最大アップロード速度です。実際の速度制限=最大アップロード速度/検出レベル、保守的〜疑わしいものから1〜4まで。最大速度制限が1000の場合、検出レベルは保守的で、実際の速度制限は1000/1 = 1000、検出レベルは疑わしく、実際の速度制限は1000/4 = 250です。単一のアップロード速度が実際の速度制限を超えると、アカウントはすぐに無効になります。ここのユニットは、次のようなMBPSです。100Mbps= 12.5 MB/s。', - 'is_invite_pre_email_and_username' => '電子メールとユーザー名の招待を予約するかどうか', - 'is_invite_pre_email_and_username_help' => 'デフォルト:「いいえ」。予約を行うと、ユーザーは登録時に電子メールアドレスとユーザー名を変更できません。', - 'access_admin_class_min' => 'ログイン管理の背景の最小レベル', - 'access_admin_class_min_help' => 'デフォルト:管理者、ユーザーレベルが設定値以上のユーザーが管理の背景にログインできるユーザー', - 'alarm_email_receiver' => 'アラームメール受信者', - 'alarm_email_receiver_help' => 'ユーザーUIDに入力し、複数のスペースを個別に入力すると、システム例外アラームメールが対応するユーザーのメールアドレスに送信されます。記入されていない場合、それは実行ログに書き込まれ、ログレベルはエラーです', - ), - 'image_hosting' => - array ( - 'driver' => 'ストレージの場所', - 'driver_help' => '[ローカル]を選択すると、対応するデフォルトはウェブサイトがあるサーバーにローカルに保存されます。それ以外の場合は、対応する画像サーバーにアップロードされます。', - 'tab_header' => '写真ベッド', - 'upload_api_endpoint' => 'インターフェイスアドレスをアップロードします', - 'base_url' => '画像URLプレフィックス', - 'upload_token' => 'トークンをアップロードします', - ), - ), - 'user' => - array ( - 'label' => 'ユーザー', - 'uploaded' => 'ボリュームをアップロードします', - 'downloaded' => 'ダウンロード', - 'invites' => '招待する', - 'seedbonus' => '魔法', - 'attendance_card' => 'カードを再署名します', - 'class' => '学年', - 'status' => '州', - 'enabled' => '有効にする', - 'username' => 'ユーザー名', - 'invite_by' => '招待者', - 'two_step_authentication' => '2段階の検証', - 'seed_points' => 'スコアを作ります', - 'downloadpos' => '許可をダウンロードします', - 'parked' => '電話を切る', - 'offer_allowed_count' => '候補者の数', - 'tmp_invites' => '一時的な招待', - ), - 'medal' => - array ( - 'label' => 'メダル', - 'image_large' => '大きな写真', - 'image_small' => '小さな写真', - 'get_type' => '取得方法', - 'duration' => '有効な期間', - 'duration_help' => 'ユニット:日。空白のままにすると、ユーザーは常にそれを持っています', - 'display_on_medal_page' => 'メダルページに表示されます', - ), - 'user_medal' => - array ( - 'label' => 'ユーザーメダル', - ), - 'exam' => - array ( - 'label' => '評価とタスク', - 'is_done' => 'それは完了ですか', - 'is_discovered' => '自動発見', - 'register_time_range' => - array ( - 'begin' => '登録時間が始まります', - 'end' => '登録時間の終了', - ), - 'register_days_range' => - array ( - 'begin' => '登録日の最小数', - 'end' => '最も登録日', - ), - 'donated' => '寄付するかどうか', - 'index_formatted' => '評価指標', - 'filter_formatted' => 'ターゲットユーザー', - 'section_base_info' => '基本情報', - 'priority_help' => '値が高いほど、優先度が高くなります。ユーザーが複数の評価を一致させると、優先度の高い割り当てが優先度が高くなります。', - 'section_time' => '時間', - 'duration_help' => 'ユニット:日。ユーザーに割り当てられた場合、開始/終了時間が指定されている場合、ユーザー評価の時間範囲はこの範囲です。それ以外の場合、ユーザー評価の開始時間は割り当てられた時間であり、終了時間は開始時間と期間です。', - 'section_target_user' => 'ターゲットユーザー', - 'index_required_value' => '必要な数量', - 'index_required_label' => '索引', - 'index_placeholder' => '増分/ダウンロード増分ユニットはGBで、平均時間単位は次のとおりです。', - 'index_current_value' => '現在の量', - 'index_result' => '結果', - ), - 'exam_user' => - array ( - 'label' => 'ユーザー評価', - 'is_done' => 'それは完了ですか', - ), - 'torrent' => - array ( - 'label' => 'シード', - 'owner' => '発行', - 'size' => 'サイズ', - 'ttl' => '生存の時間', - 'seeders' => '種を作る', - 'leechers' => 'ダウンロード', - 'times_completed' => '完了時間数', - 'category' => 'タイプ', - 'approval_status' => 'ステータスを確認します', - 'pos_state' => 'トップ', - 'sp_state' => '割引', - 'visible' => '生きている種', - 'source' => 'ソース', - 'codec' => 'コーディング', - 'audiocodec' => 'オーディオエンコーディング', - 'medium' => '中くらい', - 'team' => '制作チーム', - 'processing' => '対処する', - 'standard' => '解決', - 'picktype' => '推薦する', - 'promotion_time_type' => '割引時間タイプ', - 'hr' => 'H&R', - 'added_begin' => '以下のリリース時間', - 'added_end' => 'リリース時間は未満です', - 'size_begin' => 'より大きい', - 'size_end' => 'より小さい', +return [ + 'name' => '名前', + 'email' => 'Eメールアドレス', + 'image' => '画像', + 'expire_at' => '有効期限', + 'username' => 'ユーザー', + 'status' => 'ステータス', + 'enabled' => '有効', + 'disabled' => '無効', + 'created_at' => '作成日時', + 'updated_at' => '更新日時', + 'begin' => '開始時刻', + 'end' => '終了時間', + 'uploaded' => 'アップロードしました', + 'downloaded' => 'ダウンロード済み', + 'ratio' => 'シェア率', + 'seed_time_required' => 'シード時間が必要です', + 'inspect_time_left' => '残り時間を調べる', + 'added' => '時間を追加', + 'last_access' => '最終アクセス日時', + 'priority' => '優先度', + 'priority_help' => '値が高いほど、順位が高くなります', + 'comment' => 'コメント', + 'duration' => '期間', + 'description' => '説明', 'price' => '価格', - 'price_help' => 'ユーザーがシードをダウンロードすると、出版社は収入を受け取りますが、対応する税率は差し引かれます。現在の税率:: tax_factor', - 'max_price_help' => '最大許可:: max_price', - ), - 'hit_and_run' => - array ( - 'label' => 'ユーザーH&R', - ), - 'tag' => - array ( - 'label' => 'ラベル', - 'color' => '背景色', - 'font_color' => 'フォントカラー', - 'font_size' => 'フォントサイズ', - 'margin' => '外縁', - 'padding' => '内側のマージン', - 'border_radius' => '境界線の角', - 'torrents_count' => '種子の数', - 'torrents_sum_size' => 'シードボリューム', - ), - 'agent_allow' => - array ( - 'label' => 'クライアントを許可します', - 'family' => 'シリーズ', - 'start_name' => '開始名', - 'peer_id_start' => 'ピアIDスタート', - 'peer_id_pattern' => 'ピアIDの規則性', - 'peer_id_matchtype' => 'ピアIDマッチタイプ', - 'peer_id_match_num' => 'ピアIDの一致時間', - 'agent_start' => 'エージェントスタート', - 'agent_pattern' => 'エージェントの規則性', - 'agent_matchtype' => 'エージェントマッチタイプ', - 'agent_match_num' => 'エージェントマッチ', - 'exception' => '除外します', - 'allowhttps' => 'HTTPSを許可します', - ), - 'agent_deny' => - array ( - 'label' => 'クライアントを拒否します', - 'peer_id' => 'ピアIDスタート', - 'agent' => 'エージェント', - ), - 'claim' => - array ( - 'label' => '受信したユーザー', - 'last_settle_at' => '最後のチェックアウト時間', - 'seed_time_this_month' => '今月の植え付け時間', - 'uploaded_this_month' => '今月はアップロードします', - 'is_reached_this_month' => '今月は基準が満たされますか', - ), - 'torrent_state' => - array ( - 'label' => 'サイト全体の割引', - 'global_sp_state' => 'サイト全体の割引', - ), - 'role' => - array ( - 'class' => '関連するユーザーレベル', - ), - 'ability' => - array ( - 'name' => 'ロゴ', - 'title' => '名前', - ), - 'seed_box_record' => - array ( - 'label' => 'シードボックスレコード', - 'type' => 'タイプを追加します', - 'operator' => 'オペレーター', - 'bandwidth' => '帯域幅(MBPS)', - 'ip' => 'IP(セグメント)', - 'ip_begin' => 'IPを開始します', - 'ip_end' => 'IPを終了します', - 'ip_help' => 'asn/start ip + end ip/ip(segment)に入力してください。同時に記入しないでください', - 'status' => '州', - 'is_allowed' => 'ホワイトリストですか?', - 'is_allowed_help' => 'ホワイトリストのIPSはシードボックスルールの影響を受けません', - 'asn' => 'asn', - ), - 'menu' => - array ( - 'label' => 'メニューをカスタマイズします', - 'enable_help' => 'カスタムメニューを有効にするかどうか', - ), - 'menu_item' => - array ( - 'label' => 'メニュー項目', - 'url' => 'リンク', - 'text' => 'テキストを表示します', - 'target' => 'オープンメソッド', - 'style' => 'スタイル', - 'parent_id' => '親メニュー', - 'min_class' => '最小可視レベル', - ), - 'user_meta' => - array ( - 'meta_keys' => - array ( - 'CHANGE_USERNAME' => '名前の変更カード', - 'PERSONALIZED_USERNAME' => 'レインボーID', - ), - ), - 'search_box' => - array ( - 'label' => '分類モード', - 'name' => '名前', - 'section_name' => 'パーティション名', - 'section_name_help' => '設定すると、メニューに表示されます', - 'is_default' => 'デフォルトかどうか', - 'showsubcat' => 'サブカテゴリ', - 'taxonomies' => '分類方法', - 'taxonomy_display_text' => 'ドキュメントを表示します', - 'torrent_field' => 'シードテーブルフィールド', - 'catsperrow' => '1行あたりのアイテム数', - 'catsperrow_help' => '「8」など、検索ボックスに各行に表示されるアイテムの数を設定します。', - 'catpadding' => 'プロジェクト間隔', - 'catpadding_help' => 'ユニットはピクセルです。 「3」など、ボックス内のアイテムの水平間隔距離を検索します。', - 'custom_fields' => '自己単語の意味フィールドを有効にします', - 'custom_fields_display_name' => 'カスタムフィールド表示名', - 'custom_fields_display' => 'カスタムフィールド表示', - 'custom_fields_display_help' => '特別なラベルを使用して、フィールドの名前と価値を表します。フィールドにアーティストの名前がある場合、その名前は次のとおりです。', - 'category' => '分類', - 'torrent_field_duplicate' => 'シードテーブルフィールド::フィールドは再利用できません!', - 'other' => '他の', - 'taxonomy' => - array ( - 'name' => '名前', - 'sort_index' => '選別', - 'sort_index_help' => 'インクリメンタルソート、つまり、「0」が上部にあります。', - 'class_name' => 'クラス属性値', - 'class_name_help' => '画像のクラス属性値を指定します。そうでない場合は、空白のままにしてください。許可された文字:[a-z](小文字)、[0-9]、[_]、最初の文字は文字でなければなりません。', - 'image' => '画像ファイル名', - 'image_help' => '画像ファイルの名前。許可された文字:[a-z](小文字)、[0-9]、[_。/]。', - 'icon_id' => 'カテゴリアイコン', - 'mode' => '分類モード', - 'mode_help' => 'すべてのクラスモードに適用するために空白のままにします', - ), - ), - 'icon' => - array ( - 'label' => 'カテゴリアイコン', - 'folder' => 'アイコンフォルダー', - 'folder_help' => 'カテゴリアイコンが存在するフォルダーの名前。許可された文字:[a-z](小文字)、[0-9]、[_。/]。 「mycaticon/」など、最後にスラッシュ(/)を追加する必要があります', - 'cssfile' => 'CSSファイル', - 'cssfile_help' => 'この分類アイコンにCSSファイルを指定します。 「スタイル/sceneTorrents.css」などのフルパスを埋めます。そうでない場合は、空白のままにしてください。許可された文字:[a-z](小文字)、[0-9]、[_。/]。', - 'multilang' => '多言語', - 'multilang_help' => '異なる言語で異なる分類アイコンを使用するかどうか。 「はい」に設定されている場合、「en」という名前のフォルダー、「CHS」などに複数のアイコンを入れます。', - 'secondicon' => '2番目のアイコン', - 'secondicon_help' => '2番目のアイコンを使用して補足情報を表示するかどうか。 「はい」に設定されている場合、2番目のアイコンを通常のアイコンディレクトリに「追加」という名前のフォルダーに配置します。', - 'designer' => 'デザイナー', - 'designer_help' => 'このアイコンセットのデザイナー。', - 'comment' => '説明します', - 'comment_help' => 'このアイコンセットの説明。', - 'desc' => '次の設定を機能させるには、サーバーの正しいディレクトリにアイコンファイルを配置する必要があります。通常の分類アイコンを「PIC/カテゴリ/分類パターン名/アイコンフォルダー[言語略語/]」に入れ、2番目のアイコンを「PIC/カテゴリ/分類パターン名/アイコンフォルダー[言語略語/]追加/」に入れます。わかりませんか?次の例を参照してください。 -いつ - 分類パターン名= \'NHD\' - ICON FOLDER = \'SceneTorrents/\' - MultiNINGUAL = \'はい\' - 2番目のicon = \'no\' -英語ムービータイプのアイコン( \'movies.png\'など)ファイルを「pic/category/nhd/scenetorrents/en/」に入れる必要があります。 -いつ - 分類パターンname = \'chd\' - アイコンフォルダー= \'nanosofts/\' - MultIningual = \'no\' - 2番目のアイコン= \'はい\' -ムービータイプのアイコン( \'movies.png\'など)ファイルを「pic/category/chd/nanosofts/」に、2番目のアイコン( \'bdh264.png\'など)に「pic/category/chd/nanosofts/aditional/\'に入れる必要があります。 + 'deadline' => '期限', + 'permanent' => '恒久的', + 'operator' => '演算子', + 'action' => 'アクション', + 'submit' => '送信', + 'cancel' => 'キャンセル', + 'reset' => 'Reset', + 'anonymous' => '匿名です', + 'infinite' => 'Inf ファイル.', + 'save' => '保存', + 'country' => '国', + 'city' => '市区町村名', + 'client' => 'クライアント', + 'reason' => '理由:', + 'change' => '変更', + 'create' => '作成', + 'created_at_begin' => '開始時に作成', + 'created_at_end' => '最後に作成', + 'text_quote' => '引用', + 'text_code' => "コード", + 'setting' => [ + 'nav_text' => '設定', + 'backup' => [ + 'tab_header' => 'バックアップ', + 'enabled' => '有効', + 'enabled_help' => 'バックアップを有効にするかどうか', + 'frequency' => '利息支払回数', + 'frequency_help' => 'バックアップ頻度', + 'hour' => '時間', + 'hour_help' => 'この時間にバックアップを行う', + 'minute' => '分', + 'minute_help' => "バックアップは、前の時間の分に実行されます。頻度が「時速」の場合、この値は無視されます。", + 'google_drive_client_id' => 'Google Drive クライアントID', + 'google_drive_client_secret' => 'Google Driveクライアントシークレット', + 'google_drive_refresh_token' => 'Google ドライブの更新トークン', + 'google_drive_folder_id' => 'Google DriveフォルダID', + 'via_ftp' => 'FTP 経由でバックアップ', + 'via_ftp_help' => 'FTP経由で保存するかどうか。設定情報を.envファイルに追加する場合は、 Laravel doc を参照してください。', + 'via_sftp' => 'SFTP 経由でバックアップ', + 'via_sftp_help' => 'FTP経由で保存するかどうか。設定情報を.envファイルに追加する場合は、 Laravel doc を参照してください。', + ], + 'hr' => [ + 'tab_header' => 'H&R', + 'mode' => 'モード', + 'inspect_time' => '検査時間', + 'inspect_time_help' => '試験の期間は、ダウンロードの完了から時間単位で計算されます', + 'seed_time_minimum' => '最小シード時間', + 'seed_time_minimum_help' => '標準を満たすために種子を行うための最短時間, 時間内, 遠征の長さより小さくなければなりません', + 'ignore_when_ratio_reach' => '実績シェアレート', + 'ignore_when_ratio_reach_help' => '標準を満たすための最小シェアレート', + 'ban_user_when_counts_reach' => 'H&Rカウント上限', + 'ban_user_when_counts_reach_help' => 'H&Rの数がこの値に達し、アカウントは無効になります。', + 'include_rate' => '完了率を要求', + 'include_rate_help' => 'ダウンロード完了率(小数点以下0〜1)がこの値に達した場合のみH&Rをカウントします。デフォルト: 1' + ], + 'seed_box' => [ + 'tab_header' => 'SeedBox', + 'enabled_help' => 'SeedBox ルールを有効にするかどうか', + 'no_promotion' => 'プロモーションなし', + 'no_promotion_help' => 'プロモーションなし、アップロード/ダウンロードは、実際の値に従って計算されます', + 'max_uploaded' => '最大アップロード音量の乗算', + 'max_uploaded_help' => 'アップロード量の合計は最大でそのボリュームの倍数です。0に設定してください。制限はありません', + 'not_seed_box_max_speed' => 'SeedBox のアップロード速度が制限されていません', + 'not_seed_box_max_speed_help' => '単位: Mbps、この値を超えてSeedBoxレコードを一致させることができない場合は、ダウンロード権限が無効になります', + 'max_uploaded_duration' => '最大アップロード音量倍率有効時間', + 'max_uploaded_duration_help' => '単位:時間 最大アップロード音量乗数は、Torrent が公開された後、この時間範囲内で有効になり、この範囲を超えることはありません。 0 の設定は常に有効です', + ], + 'meilisearch' => [ + 'tab_header' => 'マイリサーチ(Meilisearch)', + 'enabled' => 'Meilisearchを有効にするか', + 'enabled_help' => 'それを有効にする前に、それをインストールして設定し、データをインポートしてください。そうでなければ、Torrent 検索のデータがありません。', + 'search_description' => 'Meilisearch 説明を検索するか', + 'search_description_help' => "デフォルト: 'いいえ'。'はい'の場合、キーワードを含む説明も返され、ヒット数が多い可能性があります。変更後すぐに再インポートする必要があります。", + 'default_search_mode' => 'デフォルトの検索モード', + 'default_search_mode_help' => "デフォルト: 'Exact' 。'And' は分割され、'Exact' は分割されません。", + ], + 'system' => [ + 'tab_header' => 'システム', + 'change_username_card_allow_characters_outside_the_alphabets' => '名前を変更するカードは英字以外の文字を許可していますか?', + 'change_username_min_interval_in_days' => 'ユーザー名の変更の最小間隔', + 'maximum_number_of_medals_can_be_worn' => '使用可能な勲章の最大数', + 'cookie_valid_days' => 'クッキー有効日', + 'maximum_upload_speed' => '最大アップロード速度', + 'maximum_upload_speed_help' => 'この値は、チート検出に影響を与え、保守的な検出レベルの最大アップロード速度です。 実際の速度制限=最大アップロード速度/検出レベル、保守から不審までは1から4です。 最大速度制限が1000で、検出レベルが保守的な場合、実際の速度制限は1000/1 = 1000です。 検出レベルは不審で、実際の速度制限は1000/4 = 250です。 実際の制限速度を超える単一のアップロード速度は、即座にアカウントを無効にします。 ここでの単位はMbpsで、例えば100 Mbps = 12.5 MB/sです。', + 'is_invite_pre_email_and_username' => '電子メールとユーザー名を事前予約するかどうかを招待します', + 'is_invite_pre_email_and_username_help' => "デフォルト: 'いいえ' 事前予約した場合、ユーザー登録時にメールアドレスとユーザー名を変更できません。", + 'access_admin_class_min' => '管理者バックエンドにログインするための最小クラス', + 'access_admin_class_min_help' => 'デフォルト: administrator, set value 以上のユーザクラスを持つユーザは管理バックエンドにログインできます', + 'alarm_email_receiver' => 'アラームメールの受信者', + 'alarm_email_receiver_help' => "ユーザーのUIDを入力し、スペースで区切って、アラームメールが対応するユーザーのメールアドレスに送信されます。 入力しない場合は、ランタイムログに書き込まれ、ログレベルはエラーとなります。", + ], + 'image_hosting' => [ + 'driver' => 'ストレージの場所', + 'driver_help' => 'ローカルを選択した場合、デフォルトではウェブサイトが配置されているサーバーにローカルに保存します。 それ以外の場合は、対応する画像サーバーにアップロードしてください', + 'tab_header' => '画像ホスティング', + 'upload_api_endpoint' => 'インターフェースアドレスをアップロード', + 'base_url' => '画像のURLの接頭辞:', + 'upload_token' => 'トークンをアップロード', + ] + ], + 'user' => [ + 'label' => 'ユーザー', + 'uploaded' => 'アップロードしました', + 'downloaded' => 'ダウンロード済み', + 'invites' => '招待', + 'seedbonus' => 'ボーナス', + 'attendance_card' => 'Attendance ard', + 'class' => 'クラス', + 'status' => 'ステータス', + 'enabled' => '有効', + 'username' => 'ユーザー名', + 'invite_by' => '招待者', + 'two_step_authentication' => '二段階認証', + 'seed_points' => 'シードポイント', + 'downloadpos' => 'ダウンロード権限', + 'parked' => '駐車中', + 'offer_allowed_count' => 'オファー許可された回数', + 'tmp_invites' => '一時的な招待', + ], + 'medal' => [ + 'label' => 'Medalha', + 'image_large' => '大きな画像', + 'image_small' => '画像サイズ', + 'get_type' => '種類を取得', + 'duration' => '期間', + 'duration_help' => '単位:日数。空白の場合、ユーザーは永久所有権を持っています', + ], + 'user_medal' => [ + 'label' => 'ユーザーの勲章', + ], + 'exam' => [ + 'label' => '試験とタスク', + 'is_done' => '完了済み', + 'is_discovered' => '発見', + 'register_time_range' => [ + 'begin' => '登録時間の開始', + 'end' => '登録時間の終了', + ], + 'register_days_range' => [ + 'begin' => '登録日数の最小値', + 'end' => 'Maximum days registred', + ], + 'donated' => '寄付済み', + 'index_formatted' => '試験インデックス', + 'filter_formatted' => 'Target users', + 'section_base_info' => 'Base 情報', + 'priority_help' => '値が高いほど優先順位が高くなり、複数の試験が同じユーザに一致する場合、最も優先度の高い試験が割り当てられます。', + 'section_time' => '時刻', + 'duration_help' => '単位: 日。ユーザーに割り当てる場合、begin と end が指定されている場合に使用されます。 それ以外の場合は begin 時間が割り当て時で、終了時間は代入時の時間と継続時間です。', + 'section_target_user' => 'ターゲットユーザー', + 'index_required_value' => '値を必須にする', + 'index_required_label' => '目次と索引', + 'index_placeholder' => '時間単位でGBとシードの平均時間単位でアップロード/ダウンロードする', + 'index_current_value' => '現在の値', + 'index_result' => '結果', + ], + 'exam_user' => [ + 'label' => '試験ユーザー', + 'is_done' => '完了済み', + ], + 'torrent' => [ + 'label' => 'Torrent', + 'owner' => '所有者', + 'size' => 'サイズ', + 'ttl' => 'TTL', + 'seeders' => 'Seeders', + 'leechers' => 'Leechers', + 'times_completed' => 'Complete', + 'category' => 'カテゴリ', + 'approval_status' => '承認状況', + 'pos_state' => 'Pos の状態', + 'sp_state' => 'プロモーション', + 'visible' => 'アクティブ', + 'source' => 'ソース', + 'codec' => 'コーデック:', + 'audiocodec' => 'オーディオコーデック', + 'medium' => 'ミディアム', + 'team' => 'チーム', + 'processing' => '処理中', + 'standard' => '標準', + 'picktype' => 'Recommend', + 'promotion_time_type' => 'プロモーションタイプの時間', + 'hr' => 'H&R', + 'added_begin' => '以上追加:', + 'added_end' => '以下の追加:', + 'size_begin' => 'サイズより大きい', + 'size_end' => 'サイズより小さい', + 'price' => '価格', + 'price_help' => 'ユーザーがトレントをダウンロードすると、アップローダーは収益を受け取ることができます。対応する税率、現在の税率::tax_factor', + 'max_price_help' => 'Maximum::max_price', + ], + 'hit_and_run' => [ + 'label' => 'ユーザー H&R', + ], + 'tag' => [ + 'label' => 'タグ', + 'color' => '背景色', + 'font_color' => 'Font color', + 'font_size' => 'Font size', + 'margin' => 'マージン(マージン)', + 'padding' => 'Padding', + 'border_radius' => '外枠の半径', + 'torrents_count' => 'Torrent 数', + 'torrents_sum_size' => 'Torrent のサイズ', + ], + 'agent_allow' => [ + 'label' => 'エージェントの許可', + 'family' => '家族', + 'start_name' => '開始名', + 'peer_id_start' => 'ピアIDの開始', + 'peer_id_pattern' => 'ピアIDパターン', + 'peer_id_matchtype' => 'ピアID一致タイプ', + 'peer_id_match_num' => 'Peer ID match num', + 'agent_start' => 'エージェントの起動', + 'agent_pattern' => 'エージェントのパターン', + 'agent_matchtype' => 'エージェント一致タイプ', + 'agent_match_num' => 'エージェント一致番号', + 'exception' => '例外', + 'allowhttps' => 'httpsを許可', + ], + 'agent_deny' => [ + 'label' => 'エージェントの拒否', + 'peer_id' => 'ピアIDの開始', + 'agent' => 'エージェント', + ], + 'claim' => [ + 'label' => 'ユーザーの要求', + 'last_settle_at' => '最終決済日時', + 'seed_time_this_month' => 'セント今月', + 'uploaded_this_month' => '今月のアップ', + 'is_reached_this_month' => '到達しました', + ], + 'torrent_state' => [ + 'label' => 'グローバルプロモーション', + 'global_sp_state' => 'グローバルプロモーション状態', + ], + 'role' => [ + 'class' => 'ユーザークラスを関連付けます', + ], + 'seed_box_record' => [ + 'label' => 'SeedBox レコード', + 'type' => '型を追加', + 'operator' => '演算子', + 'bandwidth' => '帯域幅(Mbps)', + 'ip' => 'IP(ブロック)', + 'ip_begin' => 'IP アドレスの開始', + 'ip_end' => '終了IP', + 'ip_help' => 'ASN/begin IP + end IP/IP (ブロック)を入力してください。3つのうちの1つだけです。', + 'status' => 'ステータス', + 'is_allowed' => 'ホワイトリストに登録', + 'is_allowed_help' => 'ホワイトリスト内の IP は、SeedBox ルールの影響を受けません。', + 'asn' => 'ASN', + ], + 'menu' => [ + 'label' => 'カスタムメニュー', + 'enable_help' => 'カスタムメニューを有効にする', + ], + 'menu_item' => [ + 'label' => 'メニュー項目', + 'url' => 'リンク', + 'text' => 'テキスト', + 'target' => 'オープンタイプ', + 'style' => 'スタイル', + 'parent_id' => '親', + 'min_class' => '最小表示クラス', + ], + 'user_meta' => [ + 'meta_keys' => [ + \App\Models\UserMeta::META_KEY_CHANGE_USERNAME => '名称変更カード', + \App\Models\UserMeta::META_KEY_PERSONALIZED_USERNAME => 'レインボーID', + ], + ], + 'search_box' => [ + 'label' => '検索ボックス', + 'name' => '検索ボックス名', + 'name_help' => '許可する文字: [a-z] (小文字), [0-9], [_./].', + 'section_name' => 'セクション名', + 'section_name_help' => '設定されている場合、メニューに表示されます', + 'is_default' => 'デフォルトかどうか', + 'showsubcat' => 'サブカテゴリを表示', + 'taxonomies' => '分類', + 'taxonomy_display_text' => 'テキストを表示', + 'torrent_field' => 'Torrentsテーブルフィールド', + 'catsperrow' => '1行あたりのアイテム', + 'catsperrow_help' => "検索ボックスの行に表示する項目数を設定します。例: '8'", + 'catpadding' => "アイテム間のパディング", + 'catpadding_help' => "ピクセル単位。検索ボックス内のアイテム間の水平パディングスペース。例えば '3' 。", + 'custom_fields' => 'カスタムフィールドを有効にする ', + 'custom_fields_display_name' => 'カスタムフィールド表示名', + 'custom_fields_display' => 'カスタムフィールドの表示', + 'custom_fields_display_help' => "1つのカスタムフィールドの名前が「artist」など、カスタムフィールドのラベルと値を表すには、「特定のラベル」を使用してください。 +ラベル:<%artist.label%>,値:<%artist.value%>", + 'category' => 'カテゴリ', + 'torrent_field_duplicate' => 'Torrentテーブルフィールド::fieldを再利用できません。', + 'other' => 'その他', + 'taxonomy' => [ + 'name' => '名前', + 'sort_index' => '並べ替え', + 'sort_index_help' => "最初に「0」が上がってきます。", + 'class_name' => 'クラス属性', + 'class_name_help' => "許可する文字: [a-z] (小文字), [0-9], [_./].", + 'image' => '画像', + 'image_help' => '許可する文字: [a-z] (小文字), [0-9], [_./].', + 'icon_id' => 'カテゴリアイコンパック', + 'mode' => '検索ボックス', + 'mode_help' => 'すべてのSearchBoxに適用されることを示すには空白のままにしてください。', + ], + ], + 'icon' => [ + 'label' => 'カテゴリアイコン', + 'folder' => 'アイコンパックフォルダ', + 'folder_help' => "許可される文字: [a-z] (小文字), [0-9], [_. ].MUSTは最後にスラッシュ(/)を追加します。例:'mycaticon/'", + 'cssfile' => 'CSS ファイル', + 'cssfile_help' => "このアイコンパックのCSSファイル。フルパスを入力してください。例えば、'styles/scenetorrents.css'。何もない場合は空白のままにしてください。 +使用可能な文字: [a-z] (小文字), [0-9], [_./].", + 'multilang' => 'マルチラング。', + 'multilang_help' => "異なる言語で異なるカテゴリアイコンを使用するかどうか。「はい」に設定されている場合は、「en」、「chs」などという名前の複数のフォルダに複数のアイコンを入れてください。", + 'secondicon' => '2番目のアイコン', + 'secondicon_help' => "追加情報に2番目のアイコンを使用するかどうか。「はい」に設定されている場合は、通常のアイコンと一緒に「追加」という名前のフォルダに2番目のアイコンを入れてください。", + 'designer' => 'デザイナー', + 'designer_help' => 'アイコンパックを設計した人。', + 'comment' => 'コメント', + 'comment_help' => ' アイコンパックに関する情報。', + 'desc' => "You need to put the icons in the right directory for these settings to work. Put the normal icons in 'pic/category/searchbox_name/icon_pack_folder[language_short_name/]' and the second icons in 'pic/category/searchbox_name/icon_pack_folder[language_short_name/]additional/'. +Don't get it? See if the following examples could help: +When + searchbox_name='nhd' + icon_pack_folder='scenetorrents/' + multi-lang='yes' + second_icon='no' +you should put an English normal icon file for movies (e.g. 'movies.png') in 'pic/category/nhd/scenetorrents/en/' . +When + searchbox_name='chd' + icon_pack_folder='nanosofts/' + multi-lang='no' + second_icon='yes' +you should put a normal icon file for movies (e.g. movies.png) in 'pic/category/chd/nanosofts/' and an additional icon file (e.g. 'bdh264.png') in 'pic/category/chd/nanosofts/additional/'. -注:1.8では、「カテゴリパターン名」の部分を省略できます。つまり、ルールは「pic/category/iconフォルダー[言語略語/]」です。', - ), - 'second_icon' => - array ( - 'label' => '2番目のアイコン', - 'name' => '名前', - 'name_help' => '長すぎる名前を使用しないでください。 10文字以内にすることをお勧めします。', - 'image' => '画像ファイル名', - 'image_help' => '画像ファイルの名前。許可された文字:[a-z](小文字)、[0-9]、[_。/]。', - 'class_name' => 'クラス属性値', - 'class_name_help' => '画像のクラス属性値を指定します。そうでない場合は、空白のままにしてください。許可された文字:[a-z](小文字)、[0-9]、[_]、最初の文字は文字でなければなりません。', - 'select_section' => '選ぶ', - 'select_section_help' => '選択が指定されていない場合、そのすべてのオプションはこのルールに準拠しています。少なくとも1つの選択を指定する必要があります。', - ), -); +Note: In 1.8, the 'searchbox_name' part can be omitted, i.e. the rule is 'pic/category/icon_pack_folder[language_short_name/].' +", + ], + 'second_icon' => [ + 'label' => '2番目のアイコン', + 'name' => '名前', + 'name_help' => "長い名前を使用しないでください。10 文字未満を推奨します。", + 'image' => "画像", + 'image_help' => "許可する文字: [a-z] (小文字), [0-9], [_./].", + 'class_name' => 'クラス属性', + 'class_name_help' => "イメージの 'class' 属性の値。ない場合は空白のままにします。 許可される文字: [a-z] (小文字)、 [0-9]、 [_]、および最初の文字は [a-z] でなければなりません。", + 'select_section' => '選択', + 'select_section_help' => "選択範囲が定義されていない場合、選択範囲のすべてのオプションがルールに許可されます。少なくとも 1 つの選択範囲を定義する必要があります。", + ], +]; diff --git a/resources/lang/ja/medal.php b/resources/lang/ja/medal.php index f92c91f2..691cd251 100644 --- a/resources/lang/ja/medal.php +++ b/resources/lang/ja/medal.php @@ -1,56 +1,51 @@ 'メダル', - 'action_wearing' => '着る', - 'admin' => - array ( - 'list' => - array ( - 'page_title' => 'メダルリスト', - ), - ), - 'get_types' => - array ( - 1 => '交換', - 2 => '付与', - ), - 'fields' => - array ( - 'get_type' => '取得方法', - 'description' => '説明する', - 'image_large' => '写真', - 'price' => '価格', - 'duration' => '購入後の有効期間(日)', - 'sale_begin_time' => 'リリースの開始時間', - 'sale_begin_time_help' => 'この時間以降に購入できますが、制限はありません', - 'sale_end_time' => '終了時間をリストします', - 'sale_end_time_help' => 'この時間前に購入することはできませんが、制限はありません', - 'inventory' => '在庫あり', - 'inventory_help' => '無限を示すために空白のままにします', - 'sale_begin_end_time' => '購入時間', - 'users_count' => '販売数量', - 'bonus_addition_factor' => 'マジックボーナス係数', - 'bonus_addition' => 'マジックボーナス', - 'bonus_addition_factor_help' => '例:0.01は1%のボーナスを意味し、ボーナスを残しません', - 'gift_fee_factor' => '自由処理料金係数', - 'gift_fee' => '処理料', - 'gift_fee_factor_help' => '他のユーザーに提供する場合、追加の取り扱い料金はこの係数を掛けた価格に等しくなります', - ), - 'buy_already' => 'すでに購入しています', - 'buy_btn' => '買う', - 'confirm_to_buy' => 'あなたはそれを買いたいですか?', - 'require_more_bonus' => 'もっと魔法のポイントが必要です', - 'grant_only' => '確定のみ', - 'before_sale_begin_time' => '購入時間はありません', - 'after_sale_end_time' => '購入時間が経過しました', - 'inventory_empty' => '在庫が不十分です', - 'gift_btn' => '贈り物', - 'confirm_to_gift' => 'ユーザーに与えることを確認します', - 'max_allow_wearing' => '最大:カウントメダルは同時に許可されています', - 'wearing_status_text' => - array ( - 0 => '着用していません', - 1 => 'すでに着用しています', - ), -); +return [ + 'label' => 'Medalha', + 'action_wearing' => 'Wear', + 'admin' => [ + 'list' => [ + 'page_title' => '勲章一覧' + ] + ], + 'get_types' => [ + \App\Models\Medal::GET_TYPE_EXCHANGE => '交換', + \App\Models\Medal::GET_TYPE_GRANT => '許可', + ], + 'fields' => [ + 'get_type' => '種類を取得', + 'description' => '説明', + 'image_large' => '画像', + 'price' => '価格', + 'duration' => '購入後有効(日数)', + 'sale_begin_time' => '販売開始時刻', + 'sale_begin_time_help' => 'ユーザーはこの時間後に購入できます。制限なしに空白のままにします。', + 'sale_end_time' => '販売終了時間', + 'sale_end_time_help' => 'ユーザーはこの時間の前に購入することができます。制限なしに空白のままにします。', + 'inventory' => '棚卸し', + 'inventory_help' => '制限なしに空白のままにする', + 'sale_begin_end_time' => '販売可能', + 'users_count' => '売却回数', + 'bonus_addition_factor' => 'ボーナス加算係数', + 'bonus_addition' => 'ボーナス追加', + 'bonus_addition_factor_help' => '例: 0.01 は1%の加算を意味します。空白のままにします。', + 'gift_fee_factor' => 'ギフト料金係数', + 'gift_fee' => 'ギフト手数料', + 'gift_fee_factor_help' => '他のユーザーへのギフトに対する追加料金は、この因子を掛けた価格と同じです', + ], + 'buy_already' => '既に購入', + 'buy_btn' => '購入', + 'confirm_to_buy' => '購入しますか?', + 'require_more_bonus' => 'さらにボーナスが必要', + 'grant_only' => '許可のみ', + 'before_sale_begin_time' => '販売開始前の時間', + 'after_sale_end_time' => '販売終了時間', + 'inventory_empty' => '在庫がありません', + 'gift_btn' => 'ギフト', + 'confirm_to_gift' => 'Confirm to gift to user ', + 'max_allow_wearing' => '最大:count個のメダルは同時に着用できます', + 'wearing_status_text' => [ + 0 => '着用中', + 1 => '着用していません' + ], +]; diff --git a/resources/lang/ja/message.php b/resources/lang/ja/message.php index fbd57391..0cd6df17 100644 --- a/resources/lang/ja/message.php +++ b/resources/lang/ja/message.php @@ -1,61 +1,68 @@ - array ( - 'page_title' => 'プライベートメッセージリスト', - ), - 'show' => - array ( - 'page_title' => 'プライベートメッセージの詳細', - ), - 'field_value_change_message_body' => ':フィールドが変更されます:old:new by the Administrator:Operator。理由::理由。', - 'field_value_change_message_subject' => ':フィールド変更', - 'download_disable' => - array ( - 'subject' => 'キャンセルされた許可をダウンロードします', - 'body' => 'ダウンロード許可は、おそらく共有率が低すぎるか、不適切な動作が原因でキャンセルされます。 by ::オペレーター', - ), - 'download_disable_upload_over_speed' => - array ( - 'subject' => 'キャンセルされた許可をダウンロードします', - 'body' => 'アップロード速度が高速であるため、ダウンロード許可はキャンセルされました。ボックスユーザーの場合は、登録してください。', - ), - 'download_disable_announce_paid_torrent_too_many_times' => - array ( - 'subject' => 'キャンセルされた許可をダウンロードします', - 'body' => 'ダウンロード許可は、有料の種子に報告する過剰な数の失敗のためにキャンセルされました。十分な魔法があることを確認してください。', - ), - 'download_enable' => - array ( - 'subject' => '許可リカバリをダウンロードしてください', - 'body' => 'ダウンロード許可が復元され、シードをダウンロードできるようになりました。 by ::オペレーター', - ), - 'temporary_invite_change' => - array ( - 'subject' => '一時的な招待状:change_type', - 'body' => '一時的な招待状は、管理者:オペレーター:Change_Type:Count、Reason ::理由です。', - ), - 'receive_medal' => - array ( - 'subject' => 'メダルを受け取りました', - 'body' => 'ユーザー:ユーザー名は魔法を支出します:cost_bonusはメダル[:medal_name]を購入し、それをあなたに与えました。このメダルの価値は次のとおりです。価格、取り扱い料は次のとおりです。Gift_fee_total(factor :: gift_fee_factor)、このメダルが有効になります。', - ), - 'login_notify' => - array ( - 'subject' => ':別の場所でログインするためのsite_nameリマインダー', - 'body' => ':: this_login_timeにログインしました。 IP :: this_ip、場所:: this_location。
    -最終ログイン時間:: last_login_time、ip :: last_ip、location :: last_location。
    -自分の操作がなければ、アカウントのパスワードが漏れていた可能性があります。時間内に変更してください!', - ), - 'buy_torrent_success' => - array ( - 'subject' => '種子の購入を成功させるためのリマインダー', - 'body' => 'あなたが使った:ボーナスマジックはシードを成功裏に購入しました:[url =:url]:torrent_name [/url]', - ), - 'exam_user_end_time_updated' => - array ( - 'subject' => '評価:Exam_Name終了時間の変更', - 'body' => '継続的な評価:Exam_Nameの終了時間は、old_end_timeへ:new_end_timeから変更されました。管理者::オペレーター、理由::理由。', - ), -); +return [ + + 'index' => [ + 'page_title' => 'メッセージ一覧', + ], + 'show' => [ + 'page_title' => 'メッセージの詳細', + ], + 'field_value_change_message_body' => ':operatorによって:fieldが:oldから:new に変更されました。理由::reason。', + 'field_value_change_message_subject' => ':フィールドが変更されました', + + 'download_disable' => [ + 'subject' => 'ダウンロード権限がキャンセルされました', + 'body' => 'ダウンロード権限が取り消されました。共有レートや誤動作が原因かもしれません。', + ], + 'download_disable_upload_over_speed' => [ + 'subject' => 'ダウンロード権限がキャンセルされました', + 'body' => 'アップロード速度が高すぎるため、ダウンロード権限がキャンセルされました。シードボックスユーザーの場合はファイルを送信してください。' , + ], + 'download_disable_announce_paid_torrent_too_many_times' => [ + 'subject' => 'ダウンロード権限がキャンセルされました', + 'body' => 'お支払い済みのトレントを何度もお知らせしたため、ダウンロードの許可が取り消されました。ボーナスが十分あることを確認してください。' , + ], + 'download_enable' => [ + 'subject' => 'ダウンロード権限が復元されました', + 'body' => 'ダウンロード権限が復元され、トレントをダウンロードできるようになりました。', + ], + 'temporary_invite_change' => [ + 'subject' => '一時招待:change_type', + 'body' => ':operator, reason: :reasonによる:change_type :count 回招待しました。', + ], + 'receive_medal' => [ + 'subject' => 'ギフト勲章を受け取る', + 'body' => "ユーザー名:usernameは:cost_bonの費用でメダル[:medal_name]を購入し、あなたにそれを与えました。 メダルは:priceの価値があり、手数料は :gift_fee_total(factor: :gift_fee_factor) です。このメダルは:expire_atまで、メダルのボーナス加算率は:bonus_addition_factorです。", + ], + 'login_notify' => [ + 'subject' => ':site_name オフサイトログインアラート', + 'body' => << +Last login time::last_login_time, IP::last_ip, location::last_location.
    +If it is not your own operation, the account password may have been leaked, please change it in time! +BODY, + ], + 'buy_torrent_success' => [ + 'subject' => 'Torrent 購入の通知に成功', + 'body' => 'トレントの購入に:bonus bonus を費やしました:[url=:url]:torrent_name[/url]', + ], + 'exam_user_end_time_updated' => [ + 'subject' => '試験終了時刻が変更されました :exam_name', + 'body' => '進行中の試験の終了時刻が :exam_name から :new_end_time に変更されました。admin: :operator, reason: :reason', + ], + + 'mail_dear' => "Dear ", + 'mail_you_received_a_pm' => "PMを受け取りました。", + 'mail_sender' => "Sender(sender) ", + 'mail_subject' => "Subject(主題) ", + 'mail_date' => "日付 ", + 'mail_use_following_url' => "You can click ", + 'mail_use_following_url_1' => " メッセージを表示するには (ログインする必要があるかもしれません)", + 'mail_yours' => "
    あなたの,", + 'mail_the_site_team' => "%s チーム", + 'mail_received_pm_from' => "You have received a PM from ", + 'mail_here' => "ここ", + 'msg_system' => "システム", + 'msg_original_message_from' => "元のメッセージ: ", +]; diff --git a/resources/lang/ja/nexus.php b/resources/lang/ja/nexus.php index 2877d2f5..b2dfb165 100644 --- a/resources/lang/ja/nexus.php +++ b/resources/lang/ja/nexus.php @@ -1,21 +1,24 @@ 'エラーパラメーター', - 'require_argument' => ':引数は空にすることはできません', - 'select_one_please' => '選択してください', - 'user_not_exists' => '(そのようなアカウントはありません)', - 'time_units' => - array ( - 'week' => '週', - ), - 'select_all' => 'すべてを選択します', - 'unselect_all' => '何も選択しないでください', - 'increment' => '増加', - 'decrement' => '減らす', - 'action' => '動作します', - 'no_limit' => '制限なし', - 'sum' => '総計', - 'do_not_repeat' => '操作を繰り返さないでください!', - 'no_permission' => '権限はありません!', -); +return [ + 'invalid_argument' => '引数が無効です', + 'require_argument' => ':argumentは空にできません', + 'select_one_please' => '1つ選択してください', + 'user_not_exists' => '(孤児)', + 'time_units' => [ + 'week' => '週間', + ], + 'select_all' => 'すべて選択', + 'unselect_all' => 'すべて選択解除', + 'increment' => 'インクリメント', + 'decrement' => 'decrement', + 'action' => 'アクション', + 'no_limit' => '制限なし', + 'sum' => 'Sum', + 'do_not_repeat' => '操作を繰り返さないでください!', + 'no_permission' => '権限がありません!', + 'sort' => 'ソートフィールド', + 'order' => '並べ替え', + 'asc' => '昇順', + 'desc' => '降順', +]; diff --git a/resources/lang/ja/oauth.php b/resources/lang/ja/oauth.php index 884a4e79..7caa5bcc 100644 --- a/resources/lang/ja/oauth.php +++ b/resources/lang/ja/oauth.php @@ -1,15 +1,30 @@ 'クライアント', - 'redirect' => 'コールバックアドレス', - 'secret' => '鍵', - 'revoked' => '効率的', - 'access_token' => 'アクセストークン', - 'refresh_token' => 'トークンを更新します', - 'authorization_request_title' => '承認リクエスト', - 'authorization_request_desc' => 'アカウントへのアクセスを取得するように要求します', - 'btn_approve' => '許可', - 'btn_deny' => 'キャンセル', - 'skips_authorization' => '許可をスキップします', -); +return [ + 'client' => 'クライアント', + 'redirect' => 'リダイレクトURL', + 'secret' => 'シークレット', + 'revoked' => 'Valid', + 'access_token' => 'アクセストークン', + 'refresh_token' => 'トークンを更新', + 'authorization_request_title' => '認証リクエスト', + 'authorization_request_desc' => 'があなたのアカウントへのアクセス許可を要求しています', + 'btn_approve' => '承認', + 'btn_deny' => 'キャンセル', + 'skips_authorization' => '認証スキップ数', + 'client_id' => 'クライアント ID', + 'authorization_endpoint_url' => '認証URL', + 'token_endpoint_url' => 'Get token URL', + 'user_info_endpoint_url' => 'ユーザー情報の URL を取得', + 'id_claim' => 'ID請求', + 'username_claim' => 'ユーザー名 claim', + 'email_claim' => 'メールの請求', + 'level_claim' => 'レベルフィールド名', + 'level_limit' => 'レベル制限', + 'level_limit_help' => 'このレベル以下のユーザーのみログインを許可する', + 'get_access_token_error' => 'アクセストークンエラーを取得中: :error', + 'get _provider_user_id_error' => ':id_claim フィールド経由でユーザーIDを取得できません', + 'get_provider_level_error' => ':level_claim 項目からユーザーレベルを取得できません', + 'provider_level_not_ allowed' => 'レベル:level_limit以上のユーザーのみがログインできます', + 'provider_email_already_exists' => 'メールアドレス: :email はすでに使用されています', + 'get_provider_email_error' => '項目:email_claim からユーザーのメールを取得できません', +]; diff --git a/resources/lang/ja/offer.php b/resources/lang/ja/offer.php new file mode 100644 index 00000000..7bc36599 --- /dev/null +++ b/resources/lang/ja/offer.php @@ -0,0 +1,17 @@ + " がアップロードすることを許可しました ", + 'msg_find_offer_option' => "アップロードページに新しいオプションがあります。", + 'msg_your_offer_allowed' => "オファーが許可されました", + 'msg_offer_voted_on' => "オファーが投票されました。アップロードが許可されています ", + 'msg_offer_voted_off' => "あなたのオファーは投票されました。アップロードする権限がありません ", + 'msg_voted_on' => " が投票されました", + 'msg_offer_deleted' => "オファーが削除されました", + 'msg_your_offer' => "あなたのオファー '", + 'msg_was_deleted_by' => "' が削除されました: ", + 'msg_blank' => ".", + 'msg_you_must_upload_in' => "オファーをアップロードしてください ", + 'msg_hours_otherwise' => " 時間。そうでなければオファーは削除されます。", + 'msg_reason_is' => "理由: ", +]; diff --git a/resources/lang/ja/peer.php b/resources/lang/ja/peer.php index 0652ac7d..13da50ef 100644 --- a/resources/lang/ja/peer.php +++ b/resources/lang/ja/peer.php @@ -1,8 +1,7 @@ - array ( - 'page_title' => 'コンパニオンリスト', - ), -); +return [ + 'index' => [ + 'page_title' => 'ピア', + ], +]; diff --git a/resources/lang/ja/permission.php b/resources/lang/ja/permission.php index 242f57c6..c2490e5c 100644 --- a/resources/lang/ja/permission.php +++ b/resources/lang/ja/permission.php @@ -1,274 +1,220 @@ - array ( - 'text' => '種子を確認します', - 'desc' => '種によって、種子を拒否し、種子を無許可としてマークします', - ), - 'torrent-set-special-tag' => - array ( - 'text' => 'シード特別ラベルを設定します', - 'desc' => 'シードを設定するための公式、ゼロマジックタグ', - ), - 'torrent-approval-allow-automatic' => - array ( - 'text' => '種子はレビューを自動的に渡します', - 'desc' => '種子のリリースは、承認のステータスです', - ), - 'torrent-set-price' => - array ( - 'text' => 'シード料金を設定します', - 'desc' => 'シード料金を設定します', - ), - 'defaultclass' => - array ( - 'text' => 'デフォルトレベル', - 'desc' => '登録時に得られたレベル', - ), - 'staffmem' => - array ( - 'text' => '管理グループメンバー', - 'desc' => '管理グループのメールボックスを表示できる場合、管理グループのメンバーと見なされるレベル', - ), - 'newsmanage' => - array ( - 'text' => '最近のニュースを管理してください', - 'desc' => '追加、編集、最近のメッセージを削除します', - ), - 'newfunitem' => - array ( - 'text' => '楽しいボックスコンテンツを投稿します', - 'desc' => '新しい楽しいボックスコンテンツを公開し、独自の楽しいボックスコンテンツを編集することを許可します', - ), - 'funmanage' => - array ( - 'text' => '管理の楽しいボックス', - 'desc' => '興味深いボックスコンテンツの投稿を誰でも編集、削除、禁止', - ), - 'sbmanage' => - array ( - 'text' => 'グループチャットエリアを管理します', - 'desc' => 'グループチャットエリアとレスキューエリアから情報を削除します', - ), - 'pollmanage' => - array ( - 'text' => '投票を管理します', - 'desc' => '追加、編集、削除投票', - ), - 'applylink' => - array ( - 'text' => 'アプリケーションリンク', - 'desc' => 'ホームページのリンクを申請します', - ), - 'linkmanage' => - array ( - 'text' => 'リンクを管理します', - 'desc' => 'フレンドリーなリンクを追加、編集、削除します', - ), - 'postmanage' => - array ( - 'text' => '管理フォーラムの投稿', - 'desc' => '編集、削除、移動、トップ、ロックフォーラムの投稿', - ), - 'commanage' => - array ( - 'text' => '管理コメント', - 'desc' => '編集、シードと候補者のコメントを削除します', - ), - 'forummanage' => - array ( - 'text' => '管理フォーラムセクション', - 'desc' => 'フォーラムのセクションを追加、編集、削除、および移動します', - ), - 'viewuserlist' => - array ( - 'text' => 'ユーザーリストを表示します', - 'desc' => 'ユーザーリストを表示および検索します', - ), - 'user-delete' => - array ( - 'text' => 'ユーザーを削除します', - 'desc' => 'データベースからユーザーアカウント情報を完全に削除します', - ), - 'user-change-class' => - array ( - 'text' => 'ユーザーレベルを変更します', - 'desc' => 'ユーザーのレベルを変更すると、自分のレベル以下に変更することはできません。', - ), - 'torrentmanage' => - array ( - 'text' => '種子を管理します', - 'desc' => 'シードを編集または削除しますが、シードをトップまたはプロモーションに設定することはできません', - ), - 'torrent-delete' => - array ( - 'text' => 'シードを削除します', - 'desc' => 'シードを削除します', - ), - 'torrentsticky' => - array ( - 'text' => 'シードトップを設定します', - 'desc' => 'シードを上に設定します', - ), - 'torrentonpromotion' => - array ( - 'text' => '種子をプロモーションとして設定します', - 'desc' => '種子をプロモーションとして設定します', - ), - 'torrent_hr' => - array ( - 'text' => 'シードH&Rを設定します', - 'desc' => 'H&R調査に参加するように種子を設定します', - ), - 'askreseed' => - array ( - 'text' => '更新のリクエスト', - 'desc' => '種子が切断されたら、種子を更新するようリクエストします', - ), - 'viewnfo' => - array ( - 'text' => 'NFOを表示します', - 'desc' => 'NFOファイルを表示します', - ), - 'torrentstructure' => - array ( - 'text' => 'シード構造を表示します', - 'desc' => 'シードファイルの構造を表示します', - ), - 'sendinvite' => - array ( - 'text' => '招待状を送信します', - 'desc' => '他の人にウェブサイトに参加するよう招待状を送ってください', - ), - 'viewhistory' => - array ( - 'text' => '履歴を表示します', - 'desc' => '他のユーザーのコメントを表示し、履歴を投稿します', - ), - 'topten' => - array ( - 'text' => 'ランキングリストを表示します', - 'desc' => 'ランキングリストを表示します', - ), - 'log' => - array ( - 'text' => '一般ログを表示します', - 'desc' => '機密ログではなく、一般的なログを表示します', - ), - 'confilog' => - array ( - 'text' => '機密ログを表示します', - 'desc' => 'サイト設定の変更などの機密ログを表示します', - ), - 'userprofile' => - array ( - 'text' => 'ユーザーの機密プロファイルを表示します', - 'desc' => 'IPアドレス、メールアドレスなどのユーザーの機密プロファイルを表示', - ), - 'torrenthistory' => - array ( - 'text' => 'ユーザーシード履歴を表示します', - 'desc' => '種子をダウンロードする歴史など、ユーザーの種子履歴を表示します。ユーザーのプライバシーレベルが「強力」に設定されていない場合にのみ、有効になります', - ), - 'prfmanage' => - array ( - 'text' => 'ユーザーの基本プロファイルを管理します', - 'desc' => 'ユーザーの基本プロファイルを変更しますが、電子メールアドレス、ユーザー名、アップロードボリューム、ダウンロードボリューム、マジック値番号などの重要なアイテムを変更しません', - ), - 'cruprfmanage' => - array ( - 'text' => '重要なユーザープロファイル情報を管理します', - 'desc' => '寄付情報を除き、すべてのユーザープロファイル情報を変更します(監督者のみが寄付情報を管理できます)', - ), - 'uploadsub' => - array ( - 'text' => '字幕をアップロードします', - 'desc' => '種子に対応する字幕をアップロードします', - ), - 'delownsub' => - array ( - 'text' => '字幕を削除します', - 'desc' => 'アップロードされた字幕を削除します', - ), - 'submanage' => - array ( - 'text' => '字幕を管理します', - 'desc' => '字幕を削除します', - ), - 'updateextinfo' => - array ( - 'text' => '外部情報を更新します', - 'desc' => 'IMDB情報などの外部情報を更新します', - ), - 'viewanonymous' => - array ( - 'text' => '匿名を見る', - 'desc' => '匿名の真のアイデンティティを表示します', - ), - 'beanonymous' => - array ( - 'text' => '匿名として', - 'desc' => 'シードを投稿し、字幕をアップロードするときに匿名を選択します', - ), - 'addoffer' => - array ( - 'text' => '候補者を追加します', - 'desc' => '候補者が開始できるようにします', - ), - 'offermanage' => - array ( - 'text' => '管理候補者', - 'desc' => '候補者を合格、編集、削除します', - ), - 'upload' => - array ( - 'text' => '種子を放出します', - 'desc' => '種子をシードエリアに公開します', - ), - 'uploadspecial' => - array ( - 'text' => '特別なゾーンに種を公開します', - 'desc' => '特別なゾーンに種を公開します', - ), - 'view_special_torrent' => - array ( - 'text' => '特別なエリアの種子を表示します', - 'desc' => '特別なエリアの種子を表示します', - ), - 'movetorrent' => - array ( - 'text' => '種子を移動します', - 'desc' => '各間隔で種子を移動します', - ), - 'chrmanage' => - array ( - 'text' => '管理履歴', - 'desc' => '履歴コンテンツを追加、編集、削除します', - ), - 'viewinvite' => - array ( - 'text' => '招待状を表示します', - 'desc' => 'ユーザーの招待状の履歴を表示します', - ), - 'buyinvite' => - array ( - 'text' => '招待状を購入します', - 'desc' => 'Magic Value Centerで購入招待状を許可します', - ), - 'seebanned' => - array ( - 'text' => '禁止された種子を表示します', - 'desc' => '禁止された種子を表示およびダウンロードします', - ), - 'againstoffer' => - array ( - 'text' => '候補者に反対票を投じます', - 'desc' => '候補者に反対票を投じます', - ), - 'userbar' => - array ( - 'text' => '性格バーを許可します', - 'desc' => 'ユーザーがパーソナリティバーを使用できるようにします', - ), -); +return [ + 'torrent-approval' => [ + 'text' => '承認された Torrent', + 'desc' => '未レビューとして許可、拒否、またはマーク', + ], + 'torrent-set-special-tag' => [ + 'text' => 'トレント特殊タグを設定', + 'desc' => '公式/ゼロボーナスタグをトレントに設定', + ], + 'torrent-approval-allow-automatic' => [ + 'text' => 'Torrent の承認を自動的に許可する', + 'desc' => 'Torrent は自動的にアップロード後の承認許可状態です', + ], + 'torrent-set-price' => [ + 'text' => 'トレントの支払いを設定する', + 'desc' => 'トレントの支払いを設定する', + ], + 'defaultclass' => [ + 'text' => 'Default Class', + 'desc' => ' 登録時のクラス', + ], + 'staffmem' => [ + 'text' => 'スタッフ メンバー', + 'desc' => 'スタッフと見なされるクラス。例えばスタッフボックスを表示できます。', + ], + 'newsmanage' => [ + 'text' => 'ニュース管理', + 'desc' => '新規追加、編集、ニュースの削除', + ], + 'newfunitem' => [ + 'text' => 'funboxアイテムを投稿', + 'desc' => "新しいファンボックスアイテムを投稿し、自分のファンボックスアイテムを編集", + ], + 'funmanage' => [ + 'text' => 'Funbox管理', + 'desc' => "誰のファンボックスアイテムも編集、削除、禁止する", + ], + 'sbmanage' => [ + 'text' => 'Shoutbox Management', + 'desc' => 'shortbox と helpbox のメッセージを削除する', + ], + 'pollmanage' => [ + 'text' => 'アンケート管理', + 'desc' => '新規追加、編集、アンケートの削除', + ], + 'applylink' => [ + 'text' => 'リンクに適用', + 'desc' => 'メインページのリンクに適用', + ], + 'linkmanage' => [ + 'text' => 'リンク管理', + 'desc' => ' 新規追加、編集、リンクの削除', + ], + 'postmanage' => [ + 'text' => 'フォーラム投稿管理', + 'desc' => 'フォーラムの投稿を編集、削除、移動、スティック、ロック', + ], + 'commanage' => [ + 'text' => 'コメント管理', + 'desc' => 'トレントのコメントを編集、削除する', + ], + 'forummanage' => [ + 'text' => 'フォーラム管理', + 'desc' => '新しいフォーラムを追加、編集、削除、移動します', + ], + 'viewuserlist' => [ + 'text' => 'ユーザ一覧を表示', + 'desc' => '表示、検索ユーザーリスト', + ], + 'user-delete' => [ + 'text' => 'ユーザーを削除', + 'desc' => 'データベースからユーザーアカウント情報を完全に削除します', + ], + 'user-change-class' => [ + 'text' => 'ユーザークラスの変更', + 'desc' => "ユーザーのレベルを変更するには、自分自身のレベル以上のレベルに変更することはできません", + ], + 'torrentmanage' => [ + 'text' => 'Torrent 管理', + 'desc' => 'トレント設定を除く、トレントの付箋またはプロモーションを除く、トレントを編集', + ], + 'torrent-delete' => [ + 'text' => 'トレントを削除', + 'desc' => 'トレントを削除', + ], + 'torrentsticky' => [ + 'text' => 'トレントスティッキー', + 'desc' => ' トレントを粘着性に設定', + ], + 'torrentonpromotion' => [ + 'text' => 'Torrent on Promotion', + 'desc' => 'プロモーションにトレントを設定する', + ], + 'torrent_hr' => [ + 'text' => 'トレントH&Rを設定', + 'desc' => 'トレントをH&R検査に参加させてください', + ], + 'askreseed' => [ + 'text' => 'リシードを要求する', + 'desc' => '急流が死んでいるときにリシードを要求する', + ], + 'viewnfo' => [ + 'text' => 'NFO を表示', + 'desc' => 'NFO ファイルを表示', + ], + 'torrentstructure' => [ + 'text' => 'トレント構造体を表示', + 'desc' => 'Torrent ファイルの構造を表示', + ], + 'sendinvite' => [ + 'text' => '招待を送信', + 'desc' => 'メンバーシップの招待状を他のメンバーに送信する', + ], + 'viewhistory' => [ + 'text' => '履歴を表示', + 'desc' => "他のコメントを表示し、履歴を投稿", + ], + 'topten' => [ + 'text' => 'トップテンを表示', + 'desc' => 'トップ10を表示', + ], + 'log' => [ + 'text' => '一般ログを表示', + 'desc' => '一般ログを表示(機密ログを除く)', + ], + 'confilog' => [ + 'text' => 'コンフィデンシャルログを表示', + 'desc' => '機密ログを表示します。例えば、サイト設定の変更など。', + ], + 'userprofile' => [ + 'text' => "ユーザーの機密プロファイルを表示", + 'desc' => "ユーザーの機密プロファイルを表示します。例:IP アドレス、メールアドレス", + ], + 'torrenthistory' => [ + 'text' => "ユーザーのトレント履歴を表示", + 'desc' => "ユーザーのトレントの履歴を表示します。例えば、ダウンロードしたトレント。プライバシーレベルのユーザーの設定が「強い」場合にのみ有効です。" + ], + 'prfmanage' => [ + 'text' => "ユーザーの一般プロフィール管理", + 'desc' => " メール、ユーザー名、アップロード、ダウンロード金額、ボーナスなどの重要なものを除き、ユーザーのプロフィールを変更する" + ], + 'cruprfmanage' => [ + 'text' => "ユーザーの重要なプロフィール管理", + 'desc' => "寄付を除くユーザーの重要なプロフィールを変更します(スタッフリーダーのみが寄付を管理できます)", + ], + 'uploadsub' => [ + 'text' => '字幕をアップロード', + 'desc' => 'Torrent に字幕をアップロード', + ], + 'delownsub' => [ + 'text' => "自分の字幕を削除", + 'desc' => '自分がアップロードした字幕を削除する', + ], + 'submanage' => [ + 'text' => '字幕管理', + 'desc' => '任意の字幕を削除', + ], + 'updateextinfo' => [ + 'text' => '外部情報を更新', + 'desc' => '更新の古い外部情報、例えばIMDb情報', + ], + 'viewanonymous' => [ + 'text' => '匿名で表示', + 'desc' => '匿名ユーザを表示', + ], + 'beanonymous' => [ + 'text' => '匿名にする', + 'desc' => '急流、匿名字幕をアップロードする', + ], + 'addoffer' => [ + 'text' => 'オファーを追加', + 'desc' => ' アップロードするオファーを追加', + ], + 'offermanage' => [ + 'text' => 'オファー管理', + 'desc' => '許可、編集、オファーの削除', + ], + 'upload' => [ + 'text' => 'Torrent をアップロード', + 'desc' => 'Torrent を Torrent セクションにアップロード', + ], + 'uploadspecial' => [ + 'text' => '特別な Torrent をアップロード', + 'desc' => 'Torrent を特別なセクションにアップロード', + ], + 'view_special_torrent' => [ + 'text' => '特別な Torrent を表示', + 'desc' => 'Torrent を特別なセクションで表示', + ], + 'movetorrent' => [ + 'text' => 'トレントを移動', + 'desc' => 'トレントをセクション間で移動', + ], + 'chrmanage' => [ + 'text' => 'クロニクル管理', + 'desc' => '追加、編集、クロニクルの削除', + ], + 'viewinvite' => [ + 'text' => '招待を表示', + 'desc' => "ユーザーの招待履歴を表示", + ], + 'buyinvite' => [ + 'text' => '招待を購入', + 'desc' => 'ボーナスセンターで招待を購入', + ], + 'seebanned' => [ + 'text' => '禁止された Torrent を参照', + 'desc' => '禁止されている Torrent を表示およびダウンロード', + ], + 'againstoffer' => [ + 'text' => 'オファーに対する投票', + 'desc' => 'オファーに投票する', + ], + 'userbar' => [ + 'text' => 'ユーザーバーを許可', + 'desc' => ' ユーザーバをゲットする', + ], +]; diff --git a/resources/lang/ja/plugin.php b/resources/lang/ja/plugin.php index f6614e06..1f6fccbb 100644 --- a/resources/lang/ja/plugin.php +++ b/resources/lang/ja/plugin.php @@ -1,33 +1,42 @@ - array ( - 'install' => 'インストール', - 'delete' => '消去', - 'update' => 'アップグレード', - ), - 'labels' => - array ( - 'display_name' => '名前', - 'package_name' => 'パッケージ名', - 'remote_url' => '倉庫アドレス', - 'installed_version' => 'インストールされたバージョン', - 'status' => '州', - 'updated_at' => '最後のアクションが実行されました', - ), - 'status' => - array ( - 0 => '普通', - -1 => 'インストールされていません', - 1 => 'インストールの準備', - 2 => 'インストール', - 3 => 'インストールに失敗しました', - 11 => 'アップグレードの準備', - 12 => 'アップグレード', - 13 => 'アップグレードは失敗しました', - 101 => '削除する準備ができました', - 102 => '消去', - 103 => '削除が失敗しました', - ), -); +return [ + 'actions' => [ + 'install' => 'インストール', + 'delete' => '削除', + 'update' => 'アップグレード', + 'install_or_update' => 'インストール/アップグレード', + ], + 'labels' => [ + 'display_name' => '名前', + 'package_ name' => 'package_name', + 'remote_url' => 'リポジトリのアドレス', + 'installed_version' => 'installed_version', + 'latest_version' => 'latest_version', + 'status' => 'ステータス', + 'updated_at' => 'last_executed_action', + ' release_date' => '更新日時', + 'install_title' => 'ディレクトリに移動します: :web_root 以下のコマンドを実行して、ルートユーザーとしてインストールします。 ', + 'introduce' => '詳細', + 'view_on_blog' => 'ブログで表示', + ' config_plugin_address' => 'プラグインアドレスを設定', + 'download_specific_version' => '拡張機能をダウンロードします。 最新のバージョンがここに表示されます。別のバージョンをインストールする必要がある場合(すべてのバージョンを表示するには、ブログで表示)は、自分で置き換えます', + 'execute_install' => 'インストールを実行', + ], + 'status' => [ + \App\Models\Plugin::STATUS_NORMAL => '標準', + \App\Models\Plugin::STATUS_NOT_INSTALLED => 'インストールされていません', + + \App\Models\Plugin::STATUS_PRE_INSTALL => 'インストールの準備ができました', + \App\Models\Plugin::STATUS_INSTALLING => 'インストール中', + \App\Models\Plugin::STATUS_INSTALL_FAILED => 'インストールに失敗しました', + + \App\Models\Plugin::STATUS_PRE_UPDATE => 'アップグレード準備完了', + \App\Models\Plugin::STATUS_UPDATING => 'アップグレード中', + \App\Models\Plugin::STATUS_UPDATE_FAILED => 'アップグレードに失敗しました', + + \App\Models\Plugin::STATUS_PRE_DELETE => '削除する準備ができました', + \App\Models\Plugin::STATUS_DELETING => '削除中', + \App\Models\Plugin::STATUS_DELETE_FAILED => '削除に失敗しました', + ], +]; diff --git a/resources/lang/ja/ptgen.php b/resources/lang/ja/ptgen.php index 48e980f7..8a8cfafb 100644 --- a/resources/lang/ja/ptgen.php +++ b/resources/lang/ja/ptgen.php @@ -1,7 +1,7 @@ 'pt-gen', - 'tooltip' => ':: Sitesからのリンク', - 'btn_get_desc' => '紹介を受けてください', -); +return [ + 'label' => 'PT-Gen', + 'tooltip' => 'リンクは::sites から来ています ', + 'btn_get_desc' => 'desc を取得', +]; diff --git a/resources/lang/ja/reward.php b/resources/lang/ja/reward.php index 3448affe..c3cc0144 100644 --- a/resources/lang/ja/reward.php +++ b/resources/lang/ja/reward.php @@ -1,8 +1,9 @@ - array ( - 'page_title' => '悪魔の贈与のリスト', - ), -); +return [ + + 'index' => [ + 'page_title' => 'Recompensas', + ] + +]; diff --git a/resources/lang/ja/route-permission.php b/resources/lang/ja/route-permission.php index 8ba12ccf..ab270f10 100644 --- a/resources/lang/ja/route-permission.php +++ b/resources/lang/ja/route-permission.php @@ -1,24 +1,20 @@ - array ( - 'text' => '種子を放出します', - 'desc' => '種子を放出します', - ), - 'torrent:list' => - array ( - 'text' => 'シードリストを取得します', - 'desc' => 'シードリストを取得します', - ), - 'torrent:view' => - array ( - 'text' => 'シードの詳細を表示します', - 'desc' => 'シードの詳細を表示します', - ), - 'user:view' => - array ( - 'text' => '基本的なユーザー情報を表示します', - 'desc' => '基本的なユーザー情報を表示します', - ), -); +return [ + 'torrent:upload' => [ + 'text' => 'Torrent をアップロード', + 'desc' => 'Torrent をアップロード', + ], + 'torrent:list' => [ + 'text' => 'トレントリストを取得', + 'desc' => 'トレントリストを取得', + ], + 'torrent:view' => [ + 'text' => 'トレントの詳細を表示', + 'desc' => 'トレントの詳細を表示', + ], + 'user:view' => [ + 'text' => 'ユーザーの基本情報を表示', + 'desc' => 'ユーザーの基本情報を表示', + ], +]; diff --git a/resources/lang/ja/search.php b/resources/lang/ja/search.php index 3acf2ac1..acb1240c 100644 --- a/resources/lang/ja/search.php +++ b/resources/lang/ja/search.php @@ -1,19 +1,17 @@ 'サイト全体を検索します', - 'search_keyword' => 'キーワード', - 'search_area' => '範囲', - 'search_area_options' => - array ( - 0 => 'タイトル', - 1 => '導入', - 3 => '発行', - 4 => 'IMDBリンク', - ), - 'search_modes' => - array ( - 'and' => 'そして', - 'exact' => '正確な', - ), -); +return [ + 'global_search' => 'グローバル検索', + 'search_keyword' => 'Keyword', + 'search_area' => 'Range', + 'search_area_options' => [ + '0' => 'タイトル', + '1' => '説明', + '3' => 'アップローダー', + '4' => 'IMDB URL' + ], + 'search_modes' => [ + 'and' => 'そして、', + 'exact' => '正確な', + ], +]; diff --git a/resources/lang/ja/searchbox.php b/resources/lang/ja/searchbox.php index faca0675..7dd6ec4f 100644 --- a/resources/lang/ja/searchbox.php +++ b/resources/lang/ja/searchbox.php @@ -1,22 +1,20 @@ '分類', - 'sub_category_source_label' => 'ソース', - 'sub_category_medium_label' => '中くらい', - 'sub_category_standard_label' => '解決', - 'sub_category_team_label' => '制作チーム', - 'sub_category_processing_label' => '対処する', - 'sub_category_codec_label' => 'コーディング', - 'sub_category_audiocodec_label' => 'オーディオエンコーディング', - 'extras' => - array ( - 'display_cover_on_torrent_list' => 'シードリストページディスプレイカバー', - 'display_seed_box_icon_on_torrent_list' => 'シードボックスアイコン', - ), - 'sections' => - array ( - 'browse' => '種子領域', - 'special' => '特別なエリア', - ), -); +return [ + 'category_label' => 'カテゴリ', + 'sub_category_source_label' => 'ソース', + 'sub_category_medium_label' => 'メディア', + 'sub_category_standard_label' => '標準', + 'sub_category_team_label' => 'チーム', + 'sub_category_processing_label' => '処理中', + 'sub_category_codec_label' => 'コーデック:', + 'sub_category_audiocodec_label' => 'AudioCodec', + 'extras' => [ + \App\Models\SearchBox::EXTRA_DISPLAY_COVER_ON_TORRENT_LIST => 'トレントリストにカバーを表示', + \App\Models\SearchBox::EXTRA_DISPLAY_SEED_BOX_ICON_ON_TORRENT_LIST => 'Torrent リストにシードボックスのアイコンを表示する', + ], + 'sections' => [ + 'browse' => 'Torrent', + 'special' => 'Special', + ], +]; diff --git a/resources/lang/ja/seed-box.php b/resources/lang/ja/seed-box.php index dcefdd70..94d3446d 100644 --- a/resources/lang/ja/seed-box.php +++ b/resources/lang/ja/seed-box.php @@ -1,22 +1,19 @@ - array ( - 1 => 'ユーザー', - 2 => '管理者', - ), - 'status_text' => - array ( - 0 => 'レビューされていません', - 1 => '合格した', - 2 => '拒否された', - ), - 'status_change_message' => - array ( - 'subject' => 'シードボックスレコードステータスの変更', - 'body' => 'ID:IDのシードボックスの記録ステータスは、old_statusへ:new_statusに変更されます。理由::理由', - ), - 'is_seed_box_yes' => 'このIPはシードボックスで、ID:IDのレコードによって決定されます', - 'is_seed_box_no' => 'このIPはシードボックスではありません', -); +return [ + 'type_text' => [ + \App\Models\SeedBoxRecord::TYPE_USER => 'ユーザー', + \App\Models\SeedBoxRecord::TYPE_ADMIN => '管理者', + ], + 'status_text' => [ + \App\Models\SeedBoxRecord::STATUS_UNAUDITED => '監査解除', + \App\Models\SeedBoxRecord::STATUS_ALLOWED => '許可', + \App\Models\SeedBoxRecord::STATUS_DENIED => '拒否しました', + ], + 'status_change_message' => [ + 'subject' => 'SeedBoxレコードの状態が変更されました', + 'body' => 'ID :idを持つSeedBoxレコードのステータスが:operatorによって:old_statusから:new_statusに変更されました。理由: ::reason', + ], + 'is_seed_box_yes' => 'この IP は SeedBox であり、ID は :id でレコードによって識別されます。', + 'is_seed_box_no' => 'この IP は SeedBox ではありません', +]; diff --git a/resources/lang/ja/seedbox.php b/resources/lang/ja/seedbox.php new file mode 100644 index 00000000..10957a8f --- /dev/null +++ b/resources/lang/ja/seedbox.php @@ -0,0 +1,8 @@ + [ + \App\Models\SeedBoxRecord::TYPE_USER => 'ユーザー', + \App\Models\SeedBoxRecord::TYPE_ADMIN => '管理者', + ], +]; diff --git a/resources/lang/ja/signup.php b/resources/lang/ja/signup.php index ac5c3dcc..e66093c2 100644 --- a/resources/lang/ja/signup.php +++ b/resources/lang/ja/signup.php @@ -1,8 +1,8 @@ '2回入力されたパスワードは一貫性がありません!もう一度やり直してください。', - 'password_too_short' => '申し訳ありませんが、パスワードが短すぎます(少なくとも6文字)', - 'password_too_long' => '申し訳ありませんが、パスワードが長すぎます(最大40文字)', - 'password_equals_username' => '申し訳ありませんが、ユーザー名とパスワードは同じではありません。', -); +return [ + 'passwords_unmatched' => "パスワードが一致しませんでした!タイプミスがありました。もう一度やり直してください。", + 'password_too_short' => "パスワードが短すぎます(最小文字数は6文字)", + 'password_too_long' => "パスワードが長すぎます(最大40文字)", + 'password_equals_username' => "申し訳ありませんが、パスワードはユーザー名と同じにできません。", +]; diff --git a/resources/lang/ja/snatch.php b/resources/lang/ja/snatch.php index 7db9d396..616f0db4 100644 --- a/resources/lang/ja/snatch.php +++ b/resources/lang/ja/snatch.php @@ -1,9 +1,8 @@ '無制限', - 'index' => - array ( - 'page_title' => '完了しました', - ), -); +return [ + 'share_ratio_infinity' => 'Inf ファイル.', + 'index' => [ + 'page_title' => '', + ], +]; diff --git a/resources/lang/ja/subtitle.php b/resources/lang/ja/subtitle.php new file mode 100644 index 00000000..eebcab42 --- /dev/null +++ b/resources/lang/ja/subtitle.php @@ -0,0 +1,7 @@ + " アップロードした字幕を削除しました。 ", + 'msg_your_sub_deleted' => "字幕が削除されました", + 'msg_reason_is' => "理由: ", +]; diff --git a/resources/lang/ja/thank.php b/resources/lang/ja/thank.php index 7e0f5194..ece86916 100644 --- a/resources/lang/ja/thank.php +++ b/resources/lang/ja/thank.php @@ -1,8 +1,6 @@ - array ( - 'page_title' => 'ありがとう', - ), -); +return [ + 'index' => [ + 'page_title' => 'Thanks', + ], +]; diff --git a/resources/lang/ja/token.php b/resources/lang/ja/token.php index edb7311e..13d3c660 100644 --- a/resources/lang/ja/token.php +++ b/resources/lang/ja/token.php @@ -2,9 +2,9 @@ return array ( 'label' => 'アクセストークン', - 'permission' => '権限', - 'maximum_allow_number_reached' => '数は上限に達します', - 'create_success_tip' => 'トークンは正常に作成されました。このデータは一度だけ表示されます。適切に保存してください

    :トークン', + 'permission' => 'アクセス許可', + 'maximum_allow_number_reached' => '上限に達しました。', + 'create_success_tip' => 'The token was created successfully, this data is displayed only once, please save it properly

    :token', 'last_used_at' => '最近の使用時間', - 'token' => 'まとめ', + 'token' => 'summary', ); diff --git a/resources/lang/ja/torrent-operation-log.php b/resources/lang/ja/torrent-operation-log.php index f9aeaa02..9dc81344 100644 --- a/resources/lang/ja/torrent-operation-log.php +++ b/resources/lang/ja/torrent-operation-log.php @@ -1,8 +1,7 @@ - array ( - 'action_type' => '操作タイプ', - ), -); +return [ + 'fields' => [ + 'action_type' => 'アクションタイプ', + ], +]; diff --git a/resources/lang/ja/torrent.php b/resources/lang/ja/torrent.php index eaf877be..429a7c25 100644 --- a/resources/lang/ja/torrent.php +++ b/resources/lang/ja/torrent.php @@ -1,106 +1,109 @@ '普通', - 'pos_state_sticky' => 'レベル1トップ', - 'pos_state_r_sticky' => 'レベル2トップ', - 'index' => - array ( - 'page_title' => 'シードリスト', - ), - 'show' => - array ( - 'page_title' => '種子の詳細', - 'basic_category' => 'タイプ', - 'basic_audio_codec' => 'オーディオエンコーディング', - 'basic_codec' => 'ビデオエンコーディング', - 'basic_media' => '中くらい', - 'basic_source' => 'ソース', - 'basic_standard' => '解決', - 'basic_team' => '制作チーム', - 'size' => 'サイズ', - 'comments_label' => 'コメント', - 'times_completed_label' => '仕上げる', - 'peers_count_label' => '仲間', - 'thank_users_count_label' => 'ありがとう', - 'numfiles_label' => '書類', - 'bookmark_yes_label' => 'すでに収集されています', - 'bookmark_no_label' => '集める', - 'reward_logs_label' => '悪魔に与える', - 'reward_yes_label' => '悪魔に与えられた', - 'reward_no_label' => '悪魔に与える', - 'download_label' => 'ダウンロード', - 'thanks_yes_label' => 'もうありがとう', - 'thanks_no_label' => 'ありがとう', - ), - 'pick_info' => - array ( - 'normal' => '普通', - 'hot' => '人気のある', - 'classic' => 'クラシック', - 'recommended' => '推薦する', - ), - 'claim_already' => 'この種は主張されています', - 'no_snatch' => 'そのような種子はダウンロードされていません', - 'can_no_be_claimed_yet' => 'まだ主張することはできません', - 'claim_number_reach_user_maximum' => '請求者の最大数に達しました', - 'claim_number_reach_torrent_maximum' => '主張は最大シードカウントに達します', - 'claim_disabled' => '請求が有効ではありません', - 'operation_log' => - array ( - 'approval_deny' => - array ( - 'type_text' => '拒否を確認します', - 'notify_subject' => '種子のレビュー拒否', - 'notify_msg' => 'あなたの種:[url =:detail_url]:torrent_name [/url]は拒否されました:オペレーターのレビュー、理由::理由', - ), - 'approval_allow' => - array ( - 'type_text' => 'レビューが渡されました', - 'notify_subject' => 'シードレビューが合格しました', - 'notify_msg' => 'あなたの種子:[url =:detail_url]:torrent_name [/url]がレビューされ、承認されています:オペレーター', - ), - 'approval_none' => - array ( - 'type_text' => 'レビューされていないマーク', - 'notify_subject' => 'レビューされていないシードマーキング', - 'notify_msg' => 'あなたの種:[url =:detail_url]:torrent_name [/url]は、監査なし:オペレーターによってマークされています', - ), - 'edit' => - array ( - 'type_text' => '編集', - 'notify_subject' => '種子が編集されています', - 'notify_msg' => 'あなたの種子:[url =:detail_url]:torrent_name [/url]は編集されています:operator', - ), - 'delete' => - array ( - 'type_text' => '消去', - 'notify_subject' => '種子が削除されます', - 'notify_msg' => 'あなたの種子:: torrent_nameは削除されます:オペレーター', - ), - ), - 'owner_update_torrent_subject' => 'レビュー拒否シードの更新', - 'owner_update_torrent_msg' => 'シード:[url =:detail_url]:torrent_name [/url]は著者によって更新されており、コンプライアンスを確認して承認することができます', - 'approval' => - array ( - 'modal_title' => 'シードレビュー', - 'status_label' => 'ステータスを確認します', - 'comment_label' => 'メモ(オプション)', - 'status_text' => - array ( - 0 => '未検証', - 1 => '合格', - 2 => '拒否する', - ), - 'deny_comment_show' => 'Reason :: Reasonのレビューに合格しなかった', - 'logs_label' => '監査記録', - ), - 'show_hide_media_info' => '元のMediainfoを表示/非表示にします', - 'promotion_time_types' => - array ( - 0 => 'グローバル', - 1 => '永続', - 2 => 'それまで', - ), - 'paid_torrent' => '料金の種', -); +return [ + 'pos_state_normal' => '標準', + 'pos_state_sticky' => '最初に固定する', + 'pos_state_r_sticky' => 'スティッキー秒', + + 'index' => [ + 'page_title' => 'Torrent リスト', + ], + 'show' => [ + 'page_title' => 'トレントの詳細', + 'basic_category' => 'カテゴリ', + 'basic_audio_codec' => 'オーディオコーデック', + 'basic_codec' => 'ビデオコーデック', + 'basic_media' => 'メディア', + 'basic_source' => 'ソース', + 'basic_standard' => '標準', + 'basic_team' => 'チーム', + 'size' => 'サイズ', + 'comments_label' => 'コメント', + 'times_completed_label' => '引き裂かれた', + 'peers_count_label' => 'ピア', + 'thank_users_count_label' => 'Thanks', + 'numfiles_label' => 'ファイル', + 'bookmark_yes_label' => 'ブックマーク', + 'bookmark_no_label' => 'ブックマークに追加', + 'reward_logs_label' => 'Recompensa', + 'reward_yes_label' => 'Rewarded', + 'reward_no_label' => 'Recompensa', + 'download_label' => 'ダウンロード', + 'thanks_yes_label' => 'Thanked', + 'thanks_no_label' => 'Thank', + ], + 'pick_info' => [ + 'normal' => '標準', + 'hot' => 'ホット', + 'classic' => 'クラシック', + 'recommended' => 'Recommend', + ], + 'claim_already' => '請求済みです', + 'no_snatch' => 'このトレントをまだダウンロードしない', + 'can_no_be_claimed_yet' => 'まだ請求できません', + 'claim_number_reach_user_maximum' => 'ユーザーの最大数に達しました', + 'claim_number_reach_torrent_maximum' => 'Torrent の最大数に達しました', + 'claim_disabled' => '請求は無効です', + 'operation_log' => [ + \App\Models\TorrentOperationLog::ACTION_TYPE_APPROVAL_DENY => [ + 'type_text' => '許可', + 'notify_subject' => 'トレントが許可されました', + 'notify_msg' => 'あなたのトレント:[url=:detail_url]:torrent_name[/url] が :operator, 理由: :reason', + ], + \App\Models\TorrentOperationLog::ACTION_TYPE_APPROVAL_ALLOW => [ + 'type_text' => '拒否しました', + 'notify_subject' => 'トレントが拒否されました', + 'notify_msg' => 'あなたのトレント: [url=:detail_url]:torrent_name[/url] :operator によって拒否されました', + ], + \App\Models\TorrentOperationLog::ACTION_TYPE_APPROVAL_NONE => [ + 'type_text' => '審査されていません', + 'notify_subject' => 'Torrent はレビュー済みとしてマークされました', + 'notify_msg' => 'あなたのトレント: [url=:detail_url]:torrent_name[/url] は :operator によってレビューされていないとしてマークされました', + ], + \App\Models\TorrentOperationLog::ACTION_TYPE_EDIT => [ + 'type_text' => '編集', + 'notify_subject' => 'トレントが編集されました', + 'notify_msg' => 'あなたのトレント: [url=:detail_url]:torrent_name[/url] は :operator によって編集されました', + ], + \App\Models\TorrentOperationLog::ACTION_TYPE_DELETE => [ + 'type_text' => '削除', + 'notify_subject' => 'トレントが削除されました', + 'notify_msg' => 'トレント: :torrent_nameは:operatorによって削除されました', + ] + ], + 'owner_update_torrent_subject' => '拒否された Torrent が更新されました', + 'owner_update_torrent_msg' => 'Torrent:[url=:detail_url]:torrent_name[/url] が所有者によって更新されました。要件を満たしているかどうかを確認し、許可することができます', + 'approval' => [ + 'modal_title' => 'Torrent の承認', + 'status_label' => '承認状況', + 'comment_label' => 'Comment(任意)', + 'status_text' => [ + \App\Models\Torrent::APPROVAL_STATUS_NONE => '審査されていません', + \App\Models\Torrent::APPROVAL_STATUS_ALLOW => '許可', + \App\Models\Torrent::APPROVAL_STATUS_DENY => '拒否しました', + ], + 'deny_comment_show' => '拒否された理由: :reason', + 'logs_label' => '承認ログ' + ], + 'show_hide_media_info' => 'メディア情報の表示/非表示', + 'promotion_time_types' => [ + \App\Models\Torrent::PROMOTION_TIME_TYPE_GLOBAL => 'グローバル', + \App\Models\Torrent::PROMOTION_TIME_TYPE_PERMANENT => '恒久的', + \App\Models\Torrent::PROMOTION_TIME_TYPE_DEADLINE => '終了日時', + ], + 'paid_torrent' => '有料Torrent', + 'msg_torrent_deleted' => "トレントが削除されました", + 'msg_the_torrent_you_uploaded' => "アップロードされた Torrent '", + 'msg_was_deleted_by' => "によって削除された ", + 'msg_reason_is' => "理由: ", + 'msg_reseed_request' => "リクエストを再送する", + 'msg_reseed_user' => "ユーザー ", + 'msg_ask_reseed' => " トレントにリシードを頼んだ ", + 'msg_thank_you' => " \nありがとうございます!", + + 'msg_offer_you_voted' => "あなたが投票したオファー: ", + 'msg_was_uploaded_by' => " was uploaded by ", + 'msg_you_can_download' => "\nTorrent をダウンロードできます", + 'msg_here' => " ここ [b][/b]", + 'msg_offer' => "オファー ", +]; diff --git a/resources/lang/ja/upload.php b/resources/lang/ja/upload.php index 3aa34a28..e600c0d5 100644 --- a/resources/lang/ja/upload.php +++ b/resources/lang/ja/upload.php @@ -1,68 +1,68 @@ '無効な価格::価格', - 'invalid_category' => '無効な分類', - 'invalid_section' => '無効なパーティション', - 'invalid_hr' => '無効なH&R値', - 'invalid_pos_state' => '無効な場所:: pos_state', - 'invalid_pos_state_until' => '無効な場所の締め切り', - 'not_supported_sub_category_field' => 'サポートされていないサブカテゴリフィールド::フィールド', - 'invalid_sub_category_value' => 'サブカテゴリフィールド::ラベル(:フィールド)値::値無効', - 'invalid_tag' => '無効なタグ::タグ', - 'invalid_pick_type' => '無効な推奨:: pick_type', - 'require_name' => 'タイトルを空にすることはできません', - 'price_too_much' => '価格は許容範囲を超えています', - 'approval_deny_reach_upper_limit' => '現在のレビューで拒否された種子の数:%sは上限に達し、公開は許可されていません。', - 'special_section_not_enabled' => '特別なゾーンは有効になりません。', - 'paid_torrent_not_enabled' => '有料の種子は​​有効になりません。', - 'no_permission_to_set_torrent_hr' => 'シードH&Rを設定する許可はありません。', - 'no_permission_to_set_torrent_pos_state' => 'シードトップを設定する許可はありません。', - 'no_permission_to_set_torrent_price' => '種子料金を設定する許可はありません。', - 'no_permission_to_pick_torrent' => 'ビデオを推奨する許可はありません。', - 'no_permission_to_be_anonymous' => '匿名で公開する許可はありません。', - 'torrent_save_dir_not_exists' => 'Seed Saveディレクトリは存在しません。', - 'torrent_save_dir_not_writable' => 'Seed Save Directoryは書くことはできません。', - 'save_torrent_file_failed' => 'シードファイルを保存すると失敗しました。', - 'upload_failed' => 'アップロードが失敗しました!', - 'missing_form_data' => '必要なアイテムを入力してください', - 'missing_torrent_file' => 'シードファイルがありません', + 'invalid_price' => '価格が無効です: :price', + 'invalid_category' => 'Invalid type', + 'invalid_section' => '無効なセクション', + 'invalid_hr' => '無効なH&R値', + 'invalid_pos_state' => '無効な位置: :pos_state', + 'invalid_pos_state_until' => '無効なポジションの期限', + 'not_supported_sub_category_field' => 'サポートされていないサブカテゴリフィールド: :field', + 'invalid_sub_category_value' => 'サブカテゴリフィールド: :label(:field) 値: :value 無効', + 'invalid_tag' => '無効な tag::tag', + 'invalid_pick_type' => 'Invalid recommendation::pick_type', + 'require_name' => 'タイトルは空にできません', + 'price_too_much' => '価格が許容範囲を超えています', + 'approval_deny_reach_upper_limit' => '現在のレビューで拒否されたトレントの数: %s は上限に達し、公開は許可されていません。', + 'special_section_not_enabled' => '特別ゾーンが有効ではありません。', + 'paid_torrent_not_enabled' => '有料トレントが有効になっていません。', + 'no_permission_to_set_torrent_hr' => 'Torrent H&R を設定する権限がありません。', + 'no_permission_to_set_torrent_pos_state' => 'トレントトップを設定する権限がありません。', + 'no_permission_to_set_torrent_price' => 'トレント料金を設定する権限がありません。', + 'no_permission_to_pick_torrent' => 'ビデオを推奨する権限がありません。', + 'no_permission_to_be_anonymous' => '匿名で公開する権限がありません。', + 'torrent_save_dir_not_exists' => 'Torrent の保存ディレクトリが存在しません。', + 'torrent_save_dir_not_writable' => 'Torrent の保存ディレクトリに書き込みができません。', + 'save_torrent_file_failed' => 'Torrent ファイルの保存に失敗しました。', + 'upload_failed' => 'アップロードに失敗しました!', + 'missing_form_data' => '必須項目を入力してください', + 'missing_torrent_file' => 'Torrent ファイルがありません', 'empty_filename' => 'ファイル名を空にすることはできません!', - 'zero_byte_nfo' => 'NFOファイルは空です', - 'nfo_too_big' => 'NFOファイルが大きすぎます!最大許容65,535バイト。', - 'nfo_upload_failed' => 'NFOファイルのアップロードは失敗しました', - 'blank_description' => 'はじめに記入する必要があります!', - 'category_unselected' => 'タイプを選択する必要があります!', - 'invalid_filename' => '無効なファイル名!', - 'filename_not_torrent' => '無効なファイル名(torrentファイルではありません)。', - 'empty_file' => '空のファイル!', - 'not_bencoded_file' => '一体何をしているの?アップロードしたのは、Bencodeファイルではありません!', + 'zero_byte_nfo' => 'NFO ファイルが空です', + 'nfo_too_big' => 'NFO ファイルが大きすぎます。最大許容バイト数は65,535です。', + 'nfo_upload_failed' => 'NFO ファイルのアップロードに失敗しました', + 'blank_description' => '紹介を記入しなければなりません!', + 'category_unselected' => 'タイプを選択する必要があります!', + 'invalid_filename' => '無効なファイル名です!', + 'filename_not_torrent' => '無効なファイル名 (.Torrent ファイルではありません)。', + 'empty_file' => 'ファイルが空です!', + 'not_bencoded_file' => '一体何をしているのですか?アップロードしたのはBencodeファイルではありません!', 'not_a_dictionary' => 'ディレクトリではありません', - 'dictionary_is_missing_key' => 'ディレクトリの欠損値', + 'dictionary_is_missing_key' => 'ディレクトリの値がありません', 'invalid_entry_in_dictionary' => '無効なディレクトリエントリ', 'invalid_dictionary_entry_type' => '無効なディレクトリアイテムタイプ', 'invalid_pieces' => '無効なファイルブロック', 'missing_length_and_files' => '長さとファイルがありません', 'filename_errors' => 'エラーファイル名', - 'uploaded_not_offered' => '候補者に合格する種子のみをアップロードできます。アップロードする前に で適切なプロジェクトを選択してください!', - 'unauthorized_upload_freely' => '自由にアップロードする許可はありません!', - 'torrent_existed' => '種はすでに存在します! ID :: ID', - 'torrent_file_too_big' => 'シードファイルが大きすぎます!最大許容', - 'remake_torrent_note' => 'バイト。ブロックサイズが大きいシードファイルを再作成するか、コンテンツを複数のシードに分割してください。', - 'email_notification_body' => 'こんにちは、 -新しい種子がアップロードされました。 + 'uploaded_not_offered' => '候補者に合格したトレントのみをアップロードできます。アップロードする前に、 あなたの候補者 で適切なプロジェクトを選択してください!', + 'unauthorized_upload_freely' => '自由にアップロードする権限がありません!', + 'torrent_existed' => 'トレントは既に存在します!id: :id', + 'torrent_file_too_big' => 'Torrent ファイルが大きすぎます!許可される最大値', + 'remake_torrent_note' => 'bytes. Please re-create the Torrent file with a large block size, or separate the content to multiple Torrent to publish.', + 'email_notification_body' => 'Hello, +A new torrent has been uploaded. -名前::名前 -サイズ::サイズ -タイプ::カテゴリ -uploader :: upload_by +Name::name +Size::size +Type::category +Uploader::upload_by -導入: -:説明 +Introduction: +:description -詳細情報を表示してダウンロードして(ログインする必要がある場合があります)、ここをクリックしてください: -:torrent_url +View more detailed information and download it (you may need to log in), please click here: here +:torrent_url -:site_nameウェブサイト', - 'email_notification_subject' => ':site_name新しいシード通知', +:site_name Website', + 'email_notification_subject' => ':site_name 新しいトレント通知', ); diff --git a/resources/lang/ja/user.php b/resources/lang/ja/user.php index e0334e7d..03eda7b0 100644 --- a/resources/lang/ja/user.php +++ b/resources/lang/ja/user.php @@ -1,68 +1,112 @@ '経営陣によって無効になっています', - 'deleted_username' => 'アカウントなし', - 'admin' => - array ( - 'list' => - array ( - 'page_title' => 'ユーザーリスト', - ), - ), - 'labels' => - array ( - 'seedbonus' => '魔法', - 'seed_points' => 'スコアを作ります', - 'uploaded' => 'ボリュームをアップロードします', - 'downloaded' => 'ダウンロード', - 'invites' => '招待する', - 'attendance_card' => 'カードを再署名します', - 'props' => '小道具', - 'class' => '学年', - 'vip_added' => 'VIP資格は魔法の価値を通じて得られます', - 'vip_added_help' => 'このVIP資格は魔法の価値と交換されていますか?', - 'vip_until' => 'VIP資格の終了時間', - 'vip_until_help' => '時間形式は「年の数か月の日の時間:分:秒秒」です。 VIP資格が終了する時間。 「VIP資格は魔法の価値によって取得されます」は、このルールが有効になるためには「はい」に設定する必要があります。', - ), - 'class_names' => - array ( - 10 => 'VIP', - 11 => '高齢者の世話人', - 12 => '出版社', - 13 => '一般的なモデレーター', - 14 => '管理者', - 15 => 'メンテナンス開発者', - 16 => '監督', - ), - 'change_username_lte_min_interval' => '最終変更時間:: last_change_time、最小間隔が満たされていない::インターバルデイ', - 'destroy_by_admin' => '管理者によって物理的に削除されます', - 'disable_by_admin' => '管理者によって禁止されています', - 'genders' => - array ( - 'Male' => '男', - 'Female' => '女性', - 'N/A' => '未知', - ), - 'grant_props_notification' => - array ( - 'subject' => '小道具を取得::名前', - 'body' => ':オペレーターはあなたを付与します:名前、有効性期間::期間。', - ), - 'metas' => - array ( - 'already_valid_forever' => ':Meta_Can_Textはすでに永遠に有効です', - ), - 'edit_notifications' => - array ( - 'change_class' => - array ( - 'promote' => '推進する', - 'demote' => 'ダウングレード', - 'subject' => 'レベルの変更', - 'body' => 'あなたは:アクションAS:new_class、Administrator :: operator、Reason :: Reason。', - ), - ), - 'username_already_exists' => 'ユーザー名::ユーザー名はすでに存在します', - 'username_invalid' => 'username :: username invalid', -); +return [ + 'edit_ban_reason' => '管理者によって無効にする', + 'deleted_username' => 'ユーザーが存在しません', + 'admin' => [ + 'list' => [ + 'page_title' => 'ユーザーリスト' + ] + ], + 'labels' => [ + 'seedbonus' => 'ボーナス', + 'seed_points' => 'シードポイント', + 'uploaded' => 'アップロードしました', + 'downloaded' => 'ダウンロード済み', + 'invites' => '招待', + 'attendance_card' => 'カードに参加', + 'props' => 'props', + 'class' => 'クラス', + 'vip_added' => 'VIPステータスはボーナスで獲得できます', + 'vip_added_help' => 'VIPステータスはボーナスで償還されます。', + 'vip_until' => 'VIPステータス終了時間', + 'vip_until_help' => "時間形式は「年-年-月-日時間:分:秒(Minute) VIPステータスが終了する時間。 このルールを有効にするには、「はい」に設定する必要があります。", + ], + 'class_names' => [ + \App\Models\User::CLASS_VIP => 'Vip', + \App\Models\User::CLASS_RETIREE => '退職者', + \App\Models\User::CLASS_UPLOADER => 'アップローダー', + \App\Models\User::CLASS_MODERATOR => 'モデレーター', + \App\Models\User::CLASS_ADMINISTRATOR => '管理者', + \App\Models\User::CLASS_SYSOP => 'Sysop', + \App\Models\User::CLASS_STAFF_LEADER => 'スタッフリーダー', + ], + 'change_username_lte_min_interval' => '最後の変更時間: :last_change_time, unmet minimum interval: :interval days', + 'destroy_by_admin' => '管理者による物理的削除', + 'disable_by_admin' => '管理者によって無効にする', + 'genders' => [ + \App\Models\User::GENDER_MALE => '男性', + \App\Models\User::GENDER_FEMALE => '女性', + \App\Models\User::GENDER_UNKNOWN => '不明', + ], + 'grant_props_notification' => [ + 'subject' => 'Get Props::name', + 'body' => ':operator あなたを:name、有効期間:期間を与えます。', + ], + 'metas' => [ + 'already_valid_forever' => ':meta_key_text はすでに永久に有効です', + ], + 'edit_notifications' => [ + 'change_class' => [ + 'promote' => 'プロモート', + 'demote' => '下げてください', + 'subject' => 'クラスが変更されました', + 'body' => 'あなたは :new_class, administrator: :operator, reason: :reasonに:action でした。', + ], + ], + 'username_already_exists' => 'ユーザー名は既に存在します', + 'username_invalid' => 'ユーザー名が無効です', + + 'msg_promoted' => "昇格しました", + 'msg_demoted' => "降格しました", + 'msg_class_change' => "クラス変更", + 'msg_you_have_been' => "既に行われています ", + 'msg_to' => " to ", + 'msg_by' => " 作成者: ", + 'msg_warn_removed' => "警告が削除されました", + 'msg_your_warning_removed_by' => "警告が削除されました", + 'msg_you_are_warned_by' => "[url=rules.php#warning]によって[/url] に警告されました ", + 'msg_reason' => "\n\n理由: ", + 'msg_week' => " 週", + 'msg_s' => "s", + 'msg_you_are_warned_for' => "あなたは [url=rules.php#warning][/url] に警告しました ", + 'msg_you_are_warned' => "警告されました", + 'msg_posting_rights_restored' => "投稿権限が復元されました", + 'msg_your_posting_rights_restored' => "投稿権が返却されました: " , + 'msg_you_can_post' => "をクリックします。", + 'msg_posting_rights_removed' => "投稿権限が削除されました", + 'msg_your_posting_rights_removed' => "投稿権が削除されました ", + 'msg_probable_reason' => "たぶん態度が悪いとか投稿内容が悪いとか", + 'msg_upload_rights_restored' => "アップロード権限が復元されました", + 'msg_your_upload_rights_restored' => "アップロード権限が返却されました ", + 'msg_you_upload_can_upload' => "をクリックします。", + 'msg_upload_rights_removed' => "アップロード権限が削除されました", + 'msg_your_upload_rights_removed' => "アップロード権限が削除されました ", + 'msg_probably_reason_two' => "、恐らくトレントや説明が悪かったからでしょう。", + 'msg_download_rights_restored' => "ダウンロード権限が復元されました", + 'msg_your_download_rights_restored' => "ダウンロード権が返却されました: ", + 'msg_you_can_download' => "をクリックします。", + 'msg_download_rights_removed' => "ダウンロード権限を削除しました", + 'msg_your_download_rights_removed' => "ダウンロード権限が削除されました ", + 'msg_probably_reason_three' => "低比率や不適切な行動が原因でしょう。", + 'msg_email_change' => "メールの変更", + 'msg_your_email_changed_from' => "メールアドレスが変更されました: ", + 'msg_username_change' => "ユーザー名の変更", + 'msg_your_username_changed_from' => "あなたのユーザー名は以下から変更されました ", + 'msg_downloaded_change' => "ダウンロードした金額の変更", + 'msg_your_downloaded_changed_from' => "ダウンロードした金額は次から変更されました ", + 'msg_uploaded_change' => "アップロードした金額の変更", + 'msg_your_uploaded_changed_from' => "アップロードされた金額は次から変更されました ", + 'msg_bonus_change' => "ボーナス額の変更", + 'msg_your_bonus_changed_from' => "ボーナス額が変更されました: ", + 'msg_invite_change' => "招待金額の変更", + 'msg_your_invite_changed_from' => "招待金額が変更されました ", + 'msg_to_new' =>" to ", + 'msg_your_vip_status_changed' => "VIPステータスが変更されました", + 'msg_vip_status_changed_by' => "VIPステータスが変更されました: ", + 'msg_your_donor_status_changed' => "ドナーステータスが変更されました", + 'msg_donor_status_changed_by' => "寄付者のステータスが変更されました: ", + 'msg_invited_user_has_registered' => "招待されたユーザーが登録されました", + 'msg_user_you_invited' => "招待したユーザー ", + 'msg_has_registered' => " 今登録されています。", +]; diff --git a/resources/lang/ja/username-change-log.php b/resources/lang/ja/username-change-log.php index b6dbcf82..e17e9968 100644 --- a/resources/lang/ja/username-change-log.php +++ b/resources/lang/ja/username-change-log.php @@ -1,15 +1,13 @@ - array ( - 1 => 'ユーザー', - 2 => '管理者', - ), - 'labels' => - array ( - 'username_old' => '古いユーザー名', - 'username_new' => '新しいユーザー名', - 'change_type' => 'タイプを変更します', - ), -); +return [ + 'change_type' => [ + \App\Models\UsernameChangeLog::CHANGE_TYPE_USER => 'ユーザー', + \App\Models\UsernameChangeLog::CHANGE_TYPE_ADMIN => '管理者', + ], + 'labels' => [ + 'username_old' => '古いユーザー名', + 'username_new' => '新しいユーザー名', + 'change_type' => '種類の変更', + ], +]; diff --git a/resources/lang/nb/admin.php b/resources/lang/nb/admin.php new file mode 100644 index 00000000..a2951cb4 --- /dev/null +++ b/resources/lang/nb/admin.php @@ -0,0 +1,131 @@ + [ + 'exam_users' => 'Exam brukere', + 'hit_and_runs' => 'Slå og Kjører', + 'users_list' => 'Brukere', + 'tags_list' => 'Tagger', + 'agent_allows' => 'Agent tillater', + 'agent_denies' => 'Agent nekter', + 'exams_list' => 'Eksempler & oppgaver', + 'medals_list' => 'Medaljer', + 'settings' => 'Innstillinger', + 'users_medals' => 'Bruker medaljer', + 'claims' => 'Bruker hevder', + 'torrent_list' => 'Torrenter', + 'torrent_state' => 'Free leach', + 'roles_list' => 'Roller', + 'ability_list' => 'Tillatelser', + 'seed_box_records' => 'SeedBox', + 'upload_speed' => 'Opplastnings hastighet', + 'download_speed' => 'Nedlastings hastighet', + 'isp' => 'Internettleverandør', + 'menu' => 'Egendefinert meny', + 'username_change_log' => 'Endringslogg for brukernavn', + 'torrent_deny_reason' => 'Avslå grunner', + 'roles' => 'Rolle', + 'permissions' => 'Tillatelser', + 'section' => 'Søk i bokser', + 'icon' => 'Kategori ikoner', + 'plugin' => 'Utvidelser', + 'category' => 'Kategorier', + 'second_icon' => 'Andre ikoner', + 'torrent_operation_log' => 'Operasjonslogger for torrent', + 'invite' => 'Invitasjoner', + 'user_props' => 'Bruker rekvisitter', + 'login_log' => 'Logg inn', + 'bonus_log' => 'Bonus logger', + 'torrent_buy_log' => 'Kjøp torrent logger', + 'attendance_log' => 'Angreps logger', + 'oauth_client' => 'Klient', + 'oauth_access_token' => 'Tilgangsnøkler', + 'oauth_auth_code' => 'Autentisering koder', + 'oauth_refresh_token' => 'Oppdater tokens', + 'token' => 'Tilgangsnøkler', + 'oauth_provider' => 'Autorisasjons leverandør', + 'queue_monitor' => 'Overvåk av kø', + ], + 'resources' => [ + 'agent_allow' => [ + 'check_modal_btn' => 'Sjekk', + 'check_modal_header' => 'Oppdage hvis kunden er tillatt', + 'check_pass_msg' => 'Gratulerer, denne klienten ble godkjent etter regel :id!', + ], + 'user' => [ + 'actions' => [ + 'enable_modal_btn' => 'Aktiver', + 'enable_modal_title' => 'Aktivere brukeren', + 'enable_disable_reason' => 'Grunn', + 'enable_disable_reason_placeholder' => 'Valgfritt', + 'disable_modal_btn' => 'Deaktiver', + 'disable_modal_title' => 'Deaktivere brukeren', + 'disable_two_step_authentication' => 'Avbryt 2-trinnsinnlogging', + 'change_bonus_etc_btn' => 'Endre opplastet etc.', + 'change_bonus_etc_action_increment' => 'Økning', + 'change_bonus_etc_action_decrement' => 'Redusert', + 'change_bonus_etc_field_label' => 'Felt', + 'change_bonus_etc_action_label' => 'Handling', + 'change_bonus_etc_value_label' => 'Verdi', + 'change_bonus_etc_value_help' => 'Dersom typen er lastet opp/ned er: GB', + 'change_bonus_etc_reason_label' => 'Grunn', + 'reset_password_btn' => 'Tilbakestill passord', + 'reset_password_label' => 'Nytt passord', + 'reset_password_confirmation_label' => 'Bekreft nytt passord', + 'assign_exam_btn' => 'Tilordne eksamen', + 'assign_exam_exam_label' => 'Velg eksamen', + 'assign_exam_begin_label' => 'Start tid', + 'assign_exam_end_label' => 'Slutt tid', + 'assign_exam_end_help' => 'Hvis du ikke angir en start/sluttid, vil tidsintervallet angitt av selve eksamen brukes', + 'grant_medal_btn' => 'Tillat medalje', + 'grant_medal_medal_label' => 'Velg medalje', + 'grant_medal_duration_label' => 'Varighet', + 'grant_medal_duration_help' => 'Unit: dager. Når denne er blank har brukeren permanent besittelse', + 'confirm_btn' => 'Bekreft', + 'disable_download_privileges_btn' => 'Aktiver nedlasting', + 'enable_download_privileges_btn' => 'Deaktiver nedlasting', + 'grant_prop_btn' => 'Gi rekvisitt', + 'grant_prop_form_prop' => 'Velg rekvisitt', + 'grant_prop_form_duration' => 'Varighet', + 'grant_prop_form_duration_help' => 'Unit: dager. Hvis tomt, har brukeren den permanent. Merk: Det er ingen tidsgrense for Name endringskort, ignorer denne verdien.' , + 'confirm_bulk' => 'Bekreft massehandel', + 'change_bonus_etc_duration_label' => 'Varighet', + 'change_bonus_etc_duration_help' => 'Nødvendig ved tilføyelse av midlertidig invitasjon i dager', + 'change_class_btn' => 'Endre klasse', + ] + ], + 'exam_user' => [ + 'bulk_action_avoid_label' => 'Masseverdi må unngås', + 'bulk_action_update_end_label' => 'Masseendre slutttid', + 'action_avoid' => 'Unngå', + 'action_update_end' => 'Endre sluttidspunkt', + 'result_passed' => 'Bestått!', + 'result_not_passed' => 'Ikke passert!', + ], + 'exam' => [ + 'index_duplicate' => 'Indeks::index duplisert !', + ], + 'hit_and_run' => [ + 'bulk_action_pardon' => 'Bulk pardon', + 'action_pardon' => 'Pardon', + ], + 'torrent' => [ + 'bulk_action_pos_state' => 'Klissete', + 'bulk_action_remove_tag' => 'Fjern tagg', + 'bulk_action_attach_tag' => 'Legg til tag', + 'action_approval' => 'Godkjenning', + 'bulk_action_attach_tag_remove_old' => 'Slett også gamle tagger', + 'bulk_action_recommend' => 'Anbefal', + 'bulk_action_sp_state' => 'Forfremmelse', + 'bulk_action_hr' => 'H&R', + ], + 'seed_box_record' => [ + 'toggle_status' => 'Endre status', + 'check_modal_btn' => 'Sjekk', + 'check_modal_header' => 'Oppdag hvis IP er SeedBox', + ], + 'tag' => [ + 'detach_torrents' => 'Løsne alle torrenter', + ], + ] +]; diff --git a/resources/lang/nb/attendance.php b/resources/lang/nb/attendance.php new file mode 100644 index 00000000..dafb91f3 --- /dev/null +++ b/resources/lang/nb/attendance.php @@ -0,0 +1,14 @@ + "Har ikke medvirkning enda", + 'target_date_can_no_be_retroactive' => 'Dato::date kan ikke være tilbakevirkende', + 'already_attendance' => 'Allerede deltar', + 'card_not_enough' => 'Tildelingskort ikke nok', + 'ranking' => "Dagens rangering: :ranking / :count", + 'fields' => [ + 'date' => 'Dato', + 'points' => 'Har bonus', + 'is_retroactive' => 'Er retroaktiv', + ], +]; diff --git a/resources/lang/nb/bonus-log.php b/resources/lang/nb/bonus-log.php new file mode 100644 index 00000000..dd8112d1 --- /dev/null +++ b/resources/lang/nb/bonus-log.php @@ -0,0 +1,37 @@ + [ + \App\Models\BonusLogs::BUSINESS_TYPE_CANCEL_HIT_AND_RUN => 'Avbryt H&R', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_MEDAL => 'Kjøp medalje', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_ATTENDANCE_CARD => 'Kjøp deltakerkort', + \App\Models\BonusLogs::BUSINESS_TYPE_STICKY_PROMOTION => 'Klissete kampanje', + \App\Models\BonusLogs::BUSINESS_TYPE_POST_REWARD => 'Post belønning', + \App\Models\BonusLogs::BUSINESS_TYPE_EXCHANGE_UPLOAD => 'Børs er lastet opp', + \App\Models\BonusLogs::BUSINESS_TYPE_EXCHANGE_INVITE => 'Kjøp invitasjon', + \App\Models\BonusLogs::BUSINESS_TYPE_CUSTOM_TITLE => 'Tilpasset tittel', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_VIP => 'Kjøp VIP', + \App\Models\BonusLogs::BUSINESS_TYPE_GIFT_TO_SOMEONE => 'Gave til noen', + \App\Models\BonusLogs::BUSINESS_TYPE_NO_AD => 'Avbryt annonsen', + \App\Models\BonusLogs::BUSINESS_TYPE_GIFT_TO_LOW_SHARE_RATIO => 'Gave til lav delingsrate', + \App\Models\BonusLogs::BUSINESS_TYPE_LUCKY_DRAW => 'Heldig remis', + \App\Models\BonusLogs::BUSINESS_TYPE_EXCHANGE_DOWNLOAD => 'Børs nedlastet', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_TEMPORARY_INVITE => 'Kjøp midlertidig invitasjon', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_RAINBOW_ID => 'Kjøp regnbue-ID', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_CHANGE_USERNAME_CARD => 'Kjøp skifte brukernavn kort', + \App\Models\BonusLogs::BUSINESS_TYPE_GIFT_MEDAL => 'Gave medalje', + \App\Models\BonusLogs::BUSINESS_TYPE_BUY_TORRENT => 'Kjøp torrent', + + \App\Models\BonusLogs::BUSINESS_TYPE_ROLE_WORK_SALARY => 'Rolle arbeidstaker lønn', + \App\Models\BonusLogs::BUSINESS_TYPE_TORRENT_BE_DOWNLOADED => 'Torrent blir lastet ned', + \App\Models\BonusLogs::BUSINESS_TYPE_RECEIVE_REWARD => 'Motta belønning', + \App\Models\BonusLogs::BUSINESS_TYPE_RECEIVE_GIFT => 'Motta gave', + \App\Models\BonusLogs::BUSINESS_TYPE_UPLOAD_TORRENT => 'Last opp torrent', + ], + 'fields' => [ + 'business_type' => 'Virksomhet type', + 'old_total_value' => 'Pretrade verdi', + 'value' => 'Handel verdi', + 'new_total_value' => 'Verdi etter handel', + ], +]; diff --git a/resources/lang/nb/bonus.php b/resources/lang/nb/bonus.php new file mode 100644 index 00000000..7b3b83f7 --- /dev/null +++ b/resources/lang/nb/bonus.php @@ -0,0 +1,35 @@ + 'Bruke :bonus kjøp :medal_name', + 'comment_buy_attendance_card' => 'Bruk :bonus kjøp ett øyekort', + 'comment_buy_temporary_invite' => 'Bruk :bonus kjøp :count midlertidige invitasjon', + 'comment_buy_rainbow_id' => 'Bruk :bonus bonus kjøp :varighet dager regnbue ID', + 'comment_buy_change_username_card' => 'Bruke :bonus kjøp brukernavn kort', + 'comment_gift_medal' => 'Bruk :bonus bonus kjøp :medal_name og gave til :to_username', + 'comment_buy_torrent' => 'Brukt :bonus kjøp torrent: :torrent_id', + 'comment_torrent_be_downloaded' => 'Fortsett fra torrent lastet ned med :username(UID: :uid)', + 'table_thead' => [ + 'reward_type' => 'Belønning type', + 'count' => 'Antall', + 'size' => 'Størrelse', + 'a_value' => 'A Verdi', + 'bonus_base' => 'Grunnleggende bonus', + 'factor' => 'Faktor', + 'got_bonus' => 'Har bonus', + 'total' => 'Totalt', + ], + 'reward_types' => [ + 'basic' => 'Basis belønning', + 'harem_addition' => 'Varm tillegg', + 'official_addition' => 'Offisielt tillegg', + 'medal_addition' => 'Medisinsk tillegg', + ], + 'not_enough' => 'Ikke nok bonus! Krever :require_bonus, du bare har: :now_bonus', + 'msg_someone_loves_you' => "Noen elsker deg", + 'msg_you_have_been_given' => "Du har fått en gave på ", + 'msg_after_tax' => " ( etter skatt ", + 'msg_karma_points_by' => ") Karma poeng etter ", + 'msg_personal_message_from' => "Personlig melding fra ", + 'msg_colon' => ": ", +]; diff --git a/resources/lang/nb/bookmark.php b/resources/lang/nb/bookmark.php new file mode 100644 index 00000000..ab493cc8 --- /dev/null +++ b/resources/lang/nb/bookmark.php @@ -0,0 +1,8 @@ + [ + 'store_success' => 'Å legge til bokmerke!', + 'delete_success' => 'Vellykket sletting av bokmerke!', + ] +]; diff --git a/resources/lang/nb/claim.php b/resources/lang/nb/claim.php new file mode 100644 index 00000000..b91c8898 --- /dev/null +++ b/resources/lang/nb/claim.php @@ -0,0 +1,38 @@ + 'Torrent krav detaljer', + 'title_for_user' => 'Brukerkrav detaljer', + 'th_id' => 'ID', + 'th_username' => 'Bruker', + 'th_torrent_name' => 'Torrent navn', + 'th_torrent_size' => 'Størrelse på torrent', + 'th_torrent_ttl' => 'Torrent TTL', + 'th_claim_at' => 'Krev ved', + 'th_last_settle' => 'Siste oppgjør på', + 'th_seed_time_this_month' => 'Tel. denne måneden', + 'th_uploaded_this_month' => 'Op. denne måneden', + 'th_reached_or_not' => 'Oppnådd', + 'th_action' => 'Handling', + + 'msg_title' => 'Kredittoppgjørsresultat siste måned (:month):', + 'msg_subject' => ':month krav avregning', + 'claim_total' => 'Total kreves torrent: [b]:total[/b]', + 'claim_reached_counts' => 'Antall torrent nådd: [b]:count[/b]', + 'claim_reached_summary' => 'Oppnådd torrent får bonus per time: [b]:bonus_per_hour[/b], spredningstid average(time): [b]:hours[/b], får bonus totalt: [b]:bonus_total[/b]', + 'claim_unreached_remain_counts' => 'Ikke oppnådd torrent forblir antall: [b]:count[/b]', + 'claim_unreached_remove_counts' => 'Ikke oppnådd antall torrent-fjerning: [b]:count[/b]', + 'claim_unreached_summary' => 'Trekk fra bonusen hver uoppnådd torrent:[b]:deduct_per_torrent[/b], total trekk: [b]:deduct_total[/b]', + + 'confirm_give_up' => 'Er du sikker på at du ønsker å hevde denne torrenten?', + 'add_claim' => 'Claim', + 'add_claim_confirm' => 'Bekreft krav?', + 'remove_claim' => 'Gi opp', + 'remove_claim_confirm' => 'Bekreft innlevering av krav?', + 'already_claimed' => 'Påtatt', + 'not_claim_yet' => 'Uvisst', + 'fields' => [ + 'torrent_id' => 'Torrent ID', + ], + 'claim_all_seeding_confirmation' => 'Er du sikker på at du vil kreve alle innsatte som for øyeblikket?' , +]; diff --git a/resources/lang/nb/cleanup.php b/resources/lang/nb/cleanup.php new file mode 100644 index 00000000..20703b5a --- /dev/null +++ b/resources/lang/nb/cleanup.php @@ -0,0 +1,36 @@ + 'Banned by system because of leech warning expired.', + 'disable_user_unconfirmed' => 'Deaktiver ved system pga. ubekreftet overtidsfrist.', + 'disable_user_no_transfer_alt_last_access_time' => 'Deaktiver inaktive brukerkontoer, ingen overføring. Alt: siste tilgangstid.', + 'disable_user_no_transfer_alt_register_time' => 'Deaktiver inaktive brukerkontoer, ingen overføring. Alt: registreringstid.', + 'disable_user_not_parked' => 'Deaktiver inaktive brukerkontoer, ikke parkert.', + 'disable_user_parked' => 'Deaktiver inaktive brukerkontoer, parkert.', + 'destroy_disabled_account' => 'Tidlig fysisk sletting av deaktiverte kontoer', + 'alarm_email_subject' => '[:site_name] unntak for bakgrunnsopprydding', + 'alarm_email_body' => 'Nåværende tid: :now_time, level :elapsed_seconds_human) har kjørt tid var: :last_time, det har vært mer enn: :elapsed_seconds_human) siden det kjørte angitt kjøreintervall er: :interval seconds(:interval_human), vennligst kontroller!', + 'alarm_email_subject_for_queue_failed_jobs' => '[:site_name]Asynkront Oppgave Unntak', + 'alarm_email_body_for_queue_failed_jobs' => 'Det er totalt :count som feilet asynkrone jobber siden :since, registrert i databasetabellen :failed_job_table, vennligst sjekk det!', + + 'msg_low_ratio_warning_removed' => "Varsel om lav ratio fjernet", + 'msg_your_ratio_warning_removed' => "Advarselen din med lavt forholdstall har blitt fjernet og automatisk forfremmet til [b]bruker[/b]. Vi anbefaler på det sterkeste at du beholder forholdet ditt opp til å ikke bli advart på nytt.\n", + 'msg_promoted_to' => "Forfremmet til ", + 'msg_now_you_are' => "Gratulerer, du har blitt automatisk forfremmet til [b]", + 'msg_see_faq' => "[/b]. :)\nVennligst se [b][url=faq.php#id22]FAQ[/url][/b] for det du kan gjøre nå.\n", + 'msg_demoted_to' => "Demontert til ", + 'msg_demoted_from' => "Du har blitt automatisk degradert fra [b]", + 'msg_to' => "[/b] til [b]", + 'msg_because_ratio_drop_below' => "[/b] fordi delingsforholdet har falt under ", + 'msg_must_fix_ratio_within' => "Du har blitt advart og automatisk degradert fra [b]bruker[/b] til [b]Peasant[/b] på grunn av lav ratio. Du må fikse det i ", + 'msg_days_or_get_banned' => " dager eller kontoen din vil bli utestengt. Hvis du ikke har et forhold eller hvordan det påvirker deg, foreslår vi at du leser [url=faq. hp#idid17][b]FAQ[/b][/url].", + 'msg_vip_status_removed' => "VIP-status fjernet av systemet.", + 'msg_vip_status_removed_body' => "Din VIP status har vart tidsavbrutt og har blitt fjernet automatisk av systemet. Bli VIP igjen ved å utveksle noen Karma Bonus Poeng. Cheers!", + 'msg_donor_status_removed' => "Giverstatus fjernet av systemet.", + 'msg_donor_status_removed_body' => "Din donor status har vart tidsavbrutt og har blitt fjernet automatisk av systemet. Bli en donor igjen ved å donere til oss. Cheers!", + 'msg_warning_removed' => "Advarsel fjernet av systemet", + 'msg_your_warning_removed' => "Din advarsel er fjernet av System. Vi håper du ville oppføre deg fra nå av.", + 'msg_your_torrent_deleted' => "Din torrent er slettet", + 'msg_your_torrent' => "Din torrent ", + 'msg_was_deleted_because_dead' => " ble slettet av system fordi det har vært død i lang tid. Du beholder imidlertid karma bonus for opplasting av torrent.", +]; diff --git a/resources/lang/nb/comment.php b/resources/lang/nb/comment.php new file mode 100644 index 00000000..9ad66415 --- /dev/null +++ b/resources/lang/nb/comment.php @@ -0,0 +1,8 @@ + "Ny kommentar", + 'msg_torrent_receive_comment' => "Du har mottatt en kommentar på torrenten din ", + 'msg_offer_receive_comment' => "Du har mottatt en kommentar på tilbudet ditt ", + 'msg_request_receive_comment' => "Du har mottatt en kommentar på forespørselen din " +]; diff --git a/resources/lang/nb/dashboard.php b/resources/lang/nb/dashboard.php new file mode 100644 index 00000000..fedad883 --- /dev/null +++ b/resources/lang/nb/dashboard.php @@ -0,0 +1,65 @@ + [ + 'page_title' => 'Brukerstatistikk', + 'total' => 'Totalt', + 'unconfirmed' => 'Ubekreftet', + 'visit_last_one_day' => 'PV av varer i 1 dag', + 'visit_last_one_week' => 'PV av de siste 7 dagene', + 'visit_last_30_days' => 'PV av de siste 30 dagene', + 'vip' => 'Rotér', + 'donated' => 'Donert', + 'warned' => 'Advarte', + 'disabled' => 'Deaktivert', + 'gender_male' => 'Mann', + 'gender_Male' => 'Mann', + 'gender_female' => 'Kvinne', + 'gender_Female' => 'Kvinne', + 'gender_N/A' => 'Kjønn ukjent', + ], + 'torrent' => [ + 'page_title' => 'Torrent statistikk', + 'total' => 'Totalt', + 'dead' => 'Død', + 'seeders' => 'Senere', + 'leechers' => 'Leechers', + 'seeders_leechers' => 'Likemenn', + 'seeders_leechers_ratio' => 'Seeders / Leechers', + 'active_web_users' => 'Aktive webbrukere', + 'active_tracker_users' => 'Aktive Tracker', + 'total_torrent_size' => 'Torrent totalstørrelse', + 'total_uploaded' => 'Opplastet størrelse', + 'total_downloaded' => 'Lastet ned størrelse', + 'total_uploaded_downloaded' => 'Opplastet + nedlastet størrelse', + ], + 'user_class' => [ + 'page_title' => 'Bruker klasse', + ], + 'system_info' => [ + 'page_title' => 'System informasjon', + 'nexus_version' => 'NexusPHP versjon', + 'nexus_release_date' => 'NexusPHP release date', + 'laravel_version' => 'Laravel versjon', + 'php_version' => 'PHP versjon', + 'mysql_version' => 'Mysql versjon', + 'os' => 'operativsystem', + 'server_software' => 'Web programvare', + 'load_average' => 'Last inn gjennomsnitt for serveren', + 'filament_version' => 'Versjon av filamentet', + 'redis_version' => 'Redis versjon', + ], + 'latest_user' => [ + 'page_title' => 'Bruker siste', + ], + 'latest_torrent' => [ + 'page_title' => 'Torrent nyeste', + ], + 'torrent_trend' => [ + 'page_title' => 'Torrent trend', + ], + 'user_trend' => [ + 'page_title' => 'Bruker trend', + ], + +]; diff --git a/resources/lang/nb/exam-user.php b/resources/lang/nb/exam-user.php new file mode 100644 index 00000000..cef5c7c8 --- /dev/null +++ b/resources/lang/nb/exam-user.php @@ -0,0 +1,16 @@ + [ + 'list' => [ + 'page_title' => 'Exam users' + ] + ], + 'status' => [ + \App\Models\ExamUser::STATUS_FINISHED => 'Ferdig', + \App\Models\ExamUser::STATUS_AVOIDED => 'Unntatt', + \App\Models\ExamUser::STATUS_NORMAL => 'Vanlig', + ], + 'end_can_not_before_begin' => "Slutttid: :end kan ikke være før første gang: :start", + 'status_not_allow_update_end' => 'Gjeldende status er ikke::status_text, kan ikke endre sluttklokkeslett', +]; diff --git a/resources/lang/nb/exam.php b/resources/lang/nb/exam.php new file mode 100644 index 00000000..682b6355 --- /dev/null +++ b/resources/lang/nb/exam.php @@ -0,0 +1,72 @@ + 'Eksamen', + 'name' => 'Eksamen navn', + 'index' => 'Exam index', + 'time_range' => 'Eksamen tid', + 'index_text_' . \App\Models\Exam::INDEX_UPLOADED => 'Størrelse på opplasting', + 'index_text_' . \App\Models\Exam::INDEX_SEED_TIME_AVERAGE => 'CategoryName (t)', + 'index_text_' . \App\Models\Exam::INDEX_DOWNLOADED => 'Nedlastning av tid', + 'index_text_' . \App\Models\Exam::INDEX_SEED_BONUS => 'Tilleggstillegg for bonus', + 'index_text_' . \App\Models\Exam::INDEX_SEED_POINTS => 'Størrelse på hovedpunkter', + 'index_text_' . \App\Models\Exam::INDEX_UPLOAD_TORRENT_COUNT => 'Last opp torrentøkning', + 'filters' => [ + \App\Models\Exam::FILTER_USER_CLASS => 'Bruker klasse', + \App\Models\Exam::FILTER_USER_REGISTER_TIME_RANGE => 'Registrere tidsperiode', + \App\Models\Exam::FILTER_USER_DONATE => 'Donert', + \App\Models\Exam::FILTER_USER_REGISTER_DAYS_RANGE => 'Antall dager registreringen skal være', + ], + 'require_value' => 'Krev', + 'current_value' => 'Nåværende', + 'result' => 'Resultat', + + 'result_pass_for_exam' => 'Bestått!', + 'result_pass_for_task' => 'Fullført!', + 'result_not_pass_for_exam' => 'ikke passert!', + 'result_not_pass_for_task' => 'Ikke fullført!', + 'checkout_pass_message_subject_for_exam' => 'Eksamen passert!', + 'checkout_pass_message_content_for_exam' => 'Gratulerer! Du har bestått eksamenen: :exam_name i tide (:start ~ :end)', + 'checkout_not_pass_message_subject_for_exam' => 'Exam not pass, and account is banned!', + 'checkout_not_pass_message_content_for_exam' => 'Du har ikke bestått eksamenen: :exam_name i time(:start ~ :end), og kontoen din har blitt utestengt!', + + 'checkout_pass_message_subject_for_task' => 'Oppgave fullført!', + 'checkout_pass_message_content_for_task' => 'Gratulerer! Du har fullført oppgaven: :exam_name i tide (:begin ~ :end), fikk bonus: :success_reward_bonus', + 'checkout_not_pass_message_subject_for_task' => 'Oppgave ikke fullført!', + 'checkout_not_pass_message_content_for_task' => 'You dit ikke fullfører oppgaven: :exam_name in time (:start ~ :end), deduct bonus: :fail_deduct_bonus.', + + 'ban_log_reason' => 'Ikke fullført eksamen: :exam_name i tide (:begin ~ :end)', + 'ban_user_modcomment' => 'På grunn av ikke fullført eksamen: :exam_name(:begin ~ :end), utestengelse av systemet.', + 'admin' => [ + 'list' => [ + 'page_title' => 'Eksamen liste' + ] + ], + 'recurring' => 'periodisk', + 'recurring_daily' => 'én gang per dag', + 'recurring_weekly' => 'én gang i uken', + 'recurring_monthly' => 'én gang i måneden', + 'recurring_help' => 'Hvis det angis som periode, er starttidspunktet for eksamen starttidspunktet for gjeldende syklus, og slutttiden er slutttiden for denne syklusen, som er alle naturlige dager/uker/måneder slik det er angitt her. Hvis typen undersøker ved slutten av hver syklus, hvis brukeren fremdeles oppfyller kriteriene for screening, brukeren blir automatisk tildelt en eksam til neste syklus.' , + + 'time_condition_invalid' => 'Tidsparameteren gir ikke mening, det er bare én av tre elementer: start tid + sluttid / varighet / gjentakende', + + 'type_exam' => 'Eksamen', + 'type_task' => 'Oppgave', + 'type' => 'Type:', + 'type_help' => 'Exam er regelmessig eksamen og mislykkes vil resultere i utestengelse. Oppgaver kan settes til å gi belønning eller fratrekk bonus avhengig av om de er gjennomført eller ikke', + + 'fail_deduct_bonus' => 'Trekk fra bonus ved feil', + 'success_reward_bonus' => 'Belønnings bonus for fullføring', + + 'action_claim_task' => 'Claim', + 'confirm_to_claim' => 'Sikker på at du ønsker å kreve?' , + 'claim_by_yourself_only' => 'Krev kun av deg selv!' , + 'not_match_target_user' => 'Du er ikke en matchende målbruker.' , + 'has_other_on_the_way' => 'Det er en annen :type_text som pågår!' , + 'claimed_already' => 'Allerede hentet', + 'not_between_begin_end_time' => 'Ikke mellom start og slutt tid', + 'reach_max_user_count' => 'Antallet påståtte brukere har nådd sin maksimale', + 'claimed_user_count' => 'Påtatt', + 'max_user_count' => 'Max krav bruker count(0 betyr ubegrenset)', + 'background_color' => 'Info boks bakgrunnsfarge', +]; diff --git a/resources/lang/nb/file.php b/resources/lang/nb/file.php new file mode 100644 index 00000000..642ec232 --- /dev/null +++ b/resources/lang/nb/file.php @@ -0,0 +1,6 @@ + [ + 'page_title' => 'Filer', + ], +]; diff --git a/resources/lang/nb/forum.php b/resources/lang/nb/forum.php new file mode 100644 index 00000000..fc4a6301 --- /dev/null +++ b/resources/lang/nb/forum.php @@ -0,0 +1,12 @@ + [ + 'replied_notify_subject' => 'Temaet har et nytt svar', + 'replied_notify_body' => 'Ditt emne::topic_subject har nytt svar.', + ], + 'post' => [ + 'edited_notify_subject' => 'Postsvar ble endret', + 'edited_notify_body' => 'Ditt svar til emnet: :topic_subject ble endret av: :editor.', + ] +]; diff --git a/resources/lang/nb/fun.php b/resources/lang/nb/fun.php new file mode 100644 index 00000000..1bb78f6c --- /dev/null +++ b/resources/lang/nb/fun.php @@ -0,0 +1,15 @@ + "Moro element utestengt", + 'msg_your_fun_item' => "Ditt morsomme produkt '", + 'msg_is_ban_by' => "' er utestengt av ", + 'msg_reason' => ". Årsak: ", + 'msg_fun_item_reward' => "Morsom gjenstand belønning", + 'msg_out_of' => " ut av ", + 'msg_people_think' => " synes det morsomme elementet du postet ", + 'msg_is_fun' => " er morsom. Så, her er ", + 'msg_bonus_as_reward' => " karma poeng som belønning.", + 'msg_fun_item_dull' => "Morsom tull", + 'msg_is_dull' => " er faktisk skrog :thumbsdown: . Så den er blitt fjernet fra hjemmesiden. Kanskje du må forbedre opplevelsen av humoren din.", +]; diff --git a/resources/lang/nb/hr.php b/resources/lang/nb/hr.php new file mode 100644 index 00000000..49ab3bdb --- /dev/null +++ b/resources/lang/nb/hr.php @@ -0,0 +1,28 @@ + 'Undersøk', + 'status_' . \App\Models\HitAndRun::STATUS_REACHED => 'Oppnådd', + 'status_' . \App\Models\HitAndRun::STATUS_UNREACHED => 'Unådd', + 'status_' . \App\Models\HitAndRun::STATUS_PARDONED => 'Benådet', + + 'mode_' . \App\Models\HitAndRun::MODE_DISABLED => 'Deaktivert', + 'mode_' . \App\Models\HitAndRun::MODE_MANUAL => 'Manuell', + 'mode_' . \App\Models\HitAndRun::MODE_GLOBAL => 'Globalt', + + 'reached_by_seed_time_comment' => 'Opp til::now,seed time: :seed_time Tur(er) nådd :seed_time_minimum timour(s)', + 'reached_by_share_ratio_comment' => "Opptil::now \nseed time: :seed_time Hour(s) Ikke nådd :seed_time_minimum Hour(s) \nDelforhold: :share_ratio nådd standard::ignore_when_ratio_reach", + 'reached_by_special_user_class_comment' => "Din brukerklasse: :user_class_text eller donert bruker, ignorer denne H&R", + 'reached_message_subject' => 'H&R(ID: :hit_and_run_id) er nådd!', + 'reached_message_content' => 'Gratulerer! torrent: :torrent_name(ID: :torrent_id) laster ned på: fullført_at kravet er nådd.', + + 'unreached_comment' => "Up to::now \nseed time: :seed_time Hour(s) Unreached the requirement::seed_time_minimum Hour(s) \nshare ratio::share_ratio unreached the requirement::ignore_when_ratio_reach too", + 'unreached_message_subject' => 'H&R(ID: :hit_and_run_id) er ikke nådd!', + 'unreached_message_content' => 'Taktoren :torrent_name(ID: :torrent_id) du lastet ned på :completed_at: ble ikke nådd! Vær oppmerksom på at som akkumulerer et visst antall håndverksmessige kontoer vil bli deaktivert.', + + 'unreached_disable_comment' => 'H&R antall nådd øvre grense og konto ble deaktivert av systemet', + 'unreached_disable_message_content' => 'Kontoen din har blitt deaktivert fordi det samlede antallet H&R har blitt nådd systemgrensen: :ban_user_when_counts_reach', + + 'bonus_cancel_comment' => 'spend :bonus avbrutt', + 'remove_confirm_msg' => 'Eliminere en H&R ved å trekke fra :bonus bonus, OK?', +]; diff --git a/resources/lang/nb/imdb.php b/resources/lang/nb/imdb.php new file mode 100644 index 00000000..39e33763 --- /dev/null +++ b/resources/lang/nb/imdb.php @@ -0,0 +1,15 @@ + [ + 'en-US' => 'Norsk bokmål (nb-NO)', + 'fr-CA' => 'French (Canada)', + 'fr-FR' => 'Fransk (Frankrike)', + 'de-DE' => 'Tysk', + 'hi-IN' => 'hindi', + 'it-IT' => 'Italiensk', + 'pt-BR' => 'Portugisisk (Brasil)', + 'es-ES' => 'Spansk (Spain)', + 'es-MX' => 'Spansk (Mexico)', + ], +]; diff --git a/resources/lang/nb/index.php b/resources/lang/nb/index.php new file mode 100644 index 00000000..ca5d8ed5 --- /dev/null +++ b/resources/lang/nb/index.php @@ -0,0 +1,5 @@ + 'Ugyldig invitasjon! Invitasjonskoden er utestengt!', + 'fields' => [ + 'inviter' => 'Avsender', + 'invitee' => 'Motta e-post', + 'time_invited' => 'Sende tid', + 'valid' => 'Valid', + 'invitee_register_uid' => 'Registrert UID', + 'invitee_register_email' => 'Registrert e-post', + 'invitee_register_username' => 'Registrert brukernavn', + 'expired_at' => 'hash utløpt ved', + 'time_invited_begin' => 'Sende tid gte', + 'time_invited_end' => 'Sende tid lte', + ], + 'send_deny_reasons' => [ + 'invite_system_closed' => 'Invitasjonssystemet er lukket', + 'no_permission' => 'Krev :class eller over for å sende invitasjoner', + 'invite_not_enough' => 'Invitasjoner ikke nok', + ], + 'send_allow_text' => 'Inviter noen', + 'pre_register_username' => 'Forhåndsregistrer brukernavn', + 'pre_register_username_help' => 'Brukernavn og e-post vil ikke bli endret når bruker registrerer seg med denne invitasjonskoden', + 'require_pre_register_username' => "Pre-register brukernavn kan ikke være tomt", +]; diff --git a/resources/lang/nb/label.php b/resources/lang/nb/label.php new file mode 100644 index 00000000..175a9908 --- /dev/null +++ b/resources/lang/nb/label.php @@ -0,0 +1,381 @@ + 'Navn', + 'email' => 'E-post', + 'image' => 'Bilde', + 'expire_at' => 'Utløper den', + 'username' => 'Bruker', + 'status' => 'Status:', + 'enabled' => 'Aktivert', + 'disabled' => 'Deaktivert', + 'created_at' => 'Opprettet i', + 'updated_at' => 'Oppdatert den', + 'begin' => 'Start tid', + 'end' => 'Slutt tid', + 'uploaded' => 'Opplastet', + 'downloaded' => 'Nedlastet', + 'ratio' => 'Del rate', + 'seed_time_required' => 'Nøkkeltid som kreves', + 'inspect_time_left' => 'Undersøk tid igjen', + 'added' => 'Legg til tid', + 'last_access' => 'Siste tilgangstid', + 'priority' => 'Prioritet', + 'priority_help' => 'Jo høyere verdi, jo høyere rangering er rangeringen', + 'comment' => 'Kommentar', + 'duration' => 'Varighet', + 'description' => 'Beskrivelse', + 'price' => 'Pris', + 'deadline' => 'Tidsfrist', + 'permanent' => 'Permanent', + 'operator' => 'Operatør', + 'action' => 'Handling', + 'submit' => 'Send', + 'cancel' => 'Avbryt', + 'reset' => 'Reset', + 'anonymous' => 'Anonym', + 'infinite' => 'Opplysning', + 'save' => 'Lagre', + 'country' => 'Land', + 'city' => 'By', + 'client' => 'Klient', + 'reason' => 'Grunn', + 'change' => 'Endre', + 'create' => 'Opprett', + 'created_at_begin' => 'Opprettet i begynnelsen', + 'created_at_end' => 'Opprettet på slutten', + 'text_quote' => 'Sitat', + 'text_code' => "KODE", + 'setting' => [ + 'nav_text' => 'Innstilling', + 'backup' => [ + 'tab_header' => 'Sikkerhetskopi', + 'enabled' => 'Aktivert', + 'enabled_help' => 'Aktiver sikkerhetskopiering eller ikke', + 'frequency' => 'Frekvens', + 'frequency_help' => 'Sikkerhetskopier frekvens', + 'hour' => 'Time', + 'hour_help' => 'Sikkerhetskopiering for denne timen', + 'minute' => 'Minutt', + 'minute_help' => "Sikkerhetskopien utføres minutter fra forrige time. Hvis frekvensen trykkes \"time\", vil denne verdien ignoreres", + 'google_drive_client_id' => 'Google Drive klient-ID', + 'google_drive_client_secret' => 'Google Drive-klient hemmelig', + 'google_drive_refresh_token' => 'Google Drive oppdateringskode', + 'google_drive_folder_id' => 'Google Drive mappe-ID', + 'via_ftp' => 'Sikkerhetskopiering via FTP', + 'via_ftp_help' => 'Hvorvidt det er mulig å lagre via FTP. Legg til konfigurasjonsinformasjonen til .env filen, se Laravel doc', + 'via_sftp' => 'Sikkerhetskopier via SFTP', + 'via_sftp_help' => 'Hvorvidt det er mulig å lagre via FTP. Legg til konfigurasjonsinformasjonen til .env filen, se Laravel doc', + ], + 'hr' => [ + 'tab_header' => 'H&R', + 'mode' => 'Modus', + 'inspect_time' => 'Inspiser tid', + 'inspect_time_help' => 'Varigheten av undersøkelsen beregnes ut fra det ferdige nedlastingen i timer', + 'seed_time_minimum' => 'Minimumstid for nøkkel', + 'seed_time_minimum_help' => 'Den korteste tiden for at frøene skal oppfylle standarden i timer, må være mindre enn lengden på ekspedisjonen', + 'ignore_when_ratio_reach' => 'Prestasjon delingsrate', + 'ignore_when_ratio_reach_help' => 'Den minste delingshastigheten for å overholde standarden', + 'ban_user_when_counts_reach' => 'H&R teller grense', + 'ban_user_when_counts_reach_help' => 'Nummeret med H&R når denne verdien og kontoen vil bli deaktivert', + 'include_rate' => 'Krev fullføring rate', + 'include_rate_help' => 'Tell H&R kun når nedlastings kompletteringsrate (desimal mellom 0 ~ 1) når denne verdien. Standard: 1' + ], + 'seed_box' => [ + 'tab_header' => 'SeedBox', + 'enabled_help' => 'Aktiver SeedBox regler eller ikke', + 'no_promotion' => 'Ingen kampanje', + 'no_promotion_help' => 'Ingen påtale, opplastet/lastes ned beregnes i henhold til den faktiske verdien', + 'max_uploaded' => 'Maksimalt volum for opplasting multiplikator', + 'max_uploaded_help' => 'Totalt opplastingsvolum er på det meste flere av volumet. Sett til 0 Ingen begrensning', + 'not_seed_box_max_speed' => 'Ikke SeedBox maks opplastingshastighet', + 'not_seed_box_max_speed_help' => 'Unit: Mbps, hvis verdien overskrides og SeedBox oppføringen ikke kan matches, last ned tillatelser er deaktivert', + 'max_uploaded_duration' => 'Maksimalt opplastingsvolum multiplikator effektivt tidsområde', + 'max_uploaded_duration_help' => 'Enhet: timer. Den maksimale opplastingsvolumet multiplikatoren trer i effekt innen dette tidsintervallet etter at torrenten er publisert, og vil ikke tre i kraft utover dette området. Innstillingen 0 er alltid i effekt', + ], + 'meilisearch' => [ + 'tab_header' => 'Meilisânia', + 'enabled' => 'Om du vil aktivere Meilisesis', + 'enabled_help' => 'Vennligst installer og konfigurer det og importer data før du aktiverer den, ellers finnes det ingen data for torrentsøk.', + 'search_description' => 'Om man skal søke etter beskrivelser', + 'search_description_help' => "Standard: 'Nei'. Dersom 'Ja' er valgt, vil beskrivelsen også bli returnert, og antall treff kan være høyere. Trenger du å gjenimportere umiddelbart etter endring", + 'default_search_mode' => 'Standard søkemodus', + 'default_search_mode_help' => "Standard: 'Exact'. 'And' skal deles, 'Exact' er ikke delt", + ], + 'system' => [ + 'tab_header' => 'Systemadministrasjon', + 'change_username_card_allow_characters_outside_the_alphabets' => 'Endringskortet tillater andre tegn enn engelske bokstaver', + 'change_username_min_interval_in_days' => 'Minste antall dager med endring av brukernavn', + 'maximum_number_of_medals_can_be_worn' => 'Maksimalt antall medaljer som kan brukes', + 'cookie_valid_days' => 'Cookie Gyldige dager', + 'maximum_upload_speed' => 'Maksimal opplastingshastighet', + 'maximum_upload_speed_help' => 'Denne verdien påvirker billigere deteksjon, og er maksimal opplastingshastighet for et konserveringsnivå. Faktisk hastighetsgrense = Maksimal opplastingshastighet / deteksjonsnivå, fra konservativt til mistenkt er 1 til 4. Hvis høyeste hastighetsgrense er 1000, og deteksjonsnivået er bevart, er faktisk hastighetsgrense 1000/1 = 1000, og deteksjonsnivået er mistenkelig, og faktisk hastighetsgrense er 1000/4 = 250. En enkelt opplastingshastighet som overskrider den faktiske hastighetsgrensen, vil øyeblikkelig deaktivere kontoen. Enheten er for eksempel Mbps, f.eks: 100 MB = 12,5 MB/s.', + 'is_invite_pre_email_and_username' => 'Inviter om til å forhåndsbestille en e-post og brukernavn', + 'is_invite_pre_email_and_username_help' => "Standard: 'Nei'. Dersom det er forhåndsbestilt, vil ikke brukernavn endres når bruker registrerer seg.", + 'access_admin_class_min' => 'Minimumsklasse for å logge inn i admin backend', + 'access_admin_class_min_help' => 'Standard: Administratorer, brukere med en brukerklasse større eller lik den angitte verdien kan logge inn i admin backend', + 'alarm_email_receiver' => 'E-postmottaker av alarm', + 'alarm_email_receiver_help' => "Fyll inn UID for brukeren, skilt med mellomrom, og alarmen sender e-post til korresponderende brukers e-postadresse. Hvis du ikke fyller det inn, vil det bli skrevet til kjøretidloggen, og loggnivået vil være feil", + ], + 'image_hosting' => [ + 'driver' => 'Lagringssted', + 'driver_help' => 'Hvis du velger lokalt, er standard å lagre det lokalt på serveren der nettstedet ligger, ellers last den opp til den tilsvarende bilde-serveren', + 'tab_header' => 'Bilde hosting', + 'upload_api_endpoint' => 'Adresse for opplastingsgrensesnitt', + 'base_url' => 'Prefiks for bildeadresse', + 'upload_token' => 'Last opp token', + ] + ], + 'user' => [ + 'label' => 'Bruker', + 'uploaded' => 'Opplastet', + 'downloaded' => 'Nedlastet', + 'invites' => 'Invitasjoner', + 'seedbonus' => 'Bonus', + 'attendance_card' => 'Angrep ard', + 'class' => 'Klasse', + 'status' => 'Status:', + 'enabled' => 'Aktivert', + 'username' => 'Brukernavn', + 'invite_by' => 'Invitør', + 'two_step_authentication' => 'To-trinnsinnlogging', + 'seed_points' => 'Oppgavens poeng', + 'downloadpos' => 'Last ned rettigheter', + 'parked' => 'Parkert', + 'offer_allowed_count' => 'Tilbud tillatt antall', + 'tmp_invites' => 'Midlertidig invitasjon', + ], + 'medal' => [ + 'label' => 'Medalje', + 'image_large' => 'Bilde stort', + 'image_small' => 'Bilde lite', + 'get_type' => 'Få type', + 'duration' => 'Varighet', + 'duration_help' => 'Unit: dager. Når denne er blank har brukeren permanent besittelse', + ], + 'user_medal' => [ + 'label' => 'Bruker medalje', + ], + 'exam' => [ + 'label' => 'Eksamen & Oppgave', + 'is_done' => 'Er avsluttet', + 'is_discovered' => 'Oppdaget', + 'register_time_range' => [ + 'begin' => 'Registreringstid start', + 'end' => 'Registreringstid slutt', + ], + 'register_days_range' => [ + 'begin' => 'Antall dager registrert', + 'end' => 'Maksimalt antall dager registrert', + ], + 'donated' => 'Donert', + 'index_formatted' => 'Exam indekser', + 'filter_formatted' => 'Target users', + 'section_base_info' => 'Base info', + 'priority_help' => 'Jo høyere verdi, desto høyere prioritet, og når flere eksamener samsvarer med samme bruker, tilordnes den med høyest prioritet.', + 'section_time' => 'Tid', + 'duration_help' => 'Enhet: dager. Når tildele til en bruker, kan du begynne og slutte hvis de blir angitt. Ellers første gang er tiden ved oppdraget, og sluttiden er på oppdrag pluss varighet.', + 'section_target_user' => 'Målets bruker', + 'index_required_value' => 'Krev verdi', + 'index_required_label' => 'Indeks', + 'index_placeholder' => 'Opplasting/last ned intervall i GB og seed tid gjennomsnittlig i timer', + 'index_current_value' => 'Nåværende verdi', + 'index_result' => 'Resultat', + ], + 'exam_user' => [ + 'label' => 'Exam bruker', + 'is_done' => 'Er avsluttet', + ], + 'torrent' => [ + 'label' => 'Torrent', + 'owner' => 'Eier', + 'size' => 'Størrelse', + 'ttl' => 'TTL', + 'seeders' => 'Senere', + 'leechers' => 'Leechers', + 'times_completed' => 'Complete', + 'category' => 'Kategori', + 'approval_status' => 'Godkjennings status', + 'pos_state' => 'Pos stat', + 'sp_state' => 'Forfremmelse', + 'visible' => 'Aktiv', + 'source' => 'Kilde', + 'codec' => 'Kodek', + 'audiocodec' => 'Lyd kodek', + 'medium' => 'Middels', + 'team' => 'Lag', + 'processing' => 'Behandler', + 'standard' => 'Vanlig', + 'picktype' => 'Anbefal', + 'promotion_time_type' => 'Kampanje type tid', + 'hr' => 'H&R', + 'added_begin' => 'Lagt til større enn', + 'added_end' => 'Lagt til mindre enn', + 'size_begin' => 'Størrelse større enn', + 'size_end' => 'Størrelse mindre enn', + 'price' => 'Pris', + 'price_help' => 'Når en bruker laster ned en torrente, vil opplasteren motta inntekt, mindre skattesatsen, nåværende skattesats: :tax_factor', + 'max_price_help' => 'Maksimum::max_price', + ], + 'hit_and_run' => [ + 'label' => 'Bruker H&R', + ], + 'tag' => [ + 'label' => 'Tagg', + 'color' => 'Bakgrunnsfarge', + 'font_color' => 'Font color', + 'font_size' => 'Font size', + 'margin' => 'Marg', + 'padding' => 'Padding', + 'border_radius' => 'Kantlinje radius', + 'torrents_count' => 'Torrenter teller', + 'torrents_sum_size' => 'Størrelse på torrenter', + ], + 'agent_allow' => [ + 'label' => 'Agent tillatt', + 'family' => 'Familie', + 'start_name' => 'Start navn', + 'peer_id_start' => 'Kilde ID start', + 'peer_id_pattern' => 'Mønster for Kilde ID', + 'peer_id_matchtype' => 'Kilde ID samsvarstype', + 'peer_id_match_num' => 'Kilde ID samsvarer num', + 'agent_start' => 'Agent startet', + 'agent_pattern' => 'Agent mønster', + 'agent_matchtype' => 'Agent matchingstype', + 'agent_match_num' => 'Agent kamp num', + 'exception' => 'Unntak', + 'allowhttps' => 'Tillat https', + ], + 'agent_deny' => [ + 'label' => 'Agent avviser', + 'peer_id' => 'Kilde ID starter', + 'agent' => 'Agent', + ], + 'claim' => [ + 'label' => 'Brukers krav', + 'last_settle_at' => 'Siste oppgjør på', + 'seed_time_this_month' => 'Saint denne måneden', + 'uploaded_this_month' => 'Op. denne måneden', + 'is_reached_this_month' => 'Oppnådd', + ], + 'torrent_state' => [ + 'label' => 'Global kampanje', + 'global_sp_state' => 'Global kampanje status', + ], + 'role' => [ + 'class' => 'Relater brukerklasse', + ], + 'seed_box_record' => [ + 'label' => 'SeedBox poster', + 'type' => 'Legg til type', + 'operator' => 'Operatør', + 'bandwidth' => 'Bandbredde (Mbps)', + 'ip' => 'IP(Lås)', + 'ip_begin' => 'Start IP', + 'ip_end' => 'Til IP', + 'ip_help' => 'Fyll inn ASN/start IP + end IP/IP (Block), bare en av de tre', + 'status' => 'Status:', + 'is_allowed' => 'Er hvitelistet', + 'is_allowed_help' => 'IPer i hvitelisten påvirkes ikke av regelen SeedBox', + 'asn' => 'ASN', + ], + 'menu' => [ + 'label' => 'Egendefinert meny', + 'enable_help' => 'Om du vil aktivere egendefinert meny', + ], + 'menu_item' => [ + 'label' => 'Menyelementer', + 'url' => 'Lenke', + 'text' => 'Tekst', + 'target' => 'Åpne type', + 'style' => 'Stil', + 'parent_id' => 'Forelder', + 'min_class' => 'Minste synlige klasse', + ], + 'user_meta' => [ + 'meta_keys' => [ + \App\Models\UserMeta::META_KEY_CHANGE_USERNAME => 'Navn Bytt kort', + \App\Models\UserMeta::META_KEY_PERSONALIZED_USERNAME => 'Regnbue-ID', + ], + ], + 'search_box' => [ + 'label' => 'Søk felt', + 'name' => 'Navn på søkeboks', + 'name_help' => 'Tillatte tegn: [a-z] (i nedre tilfelle), [0-9], [_./].', + 'section_name' => 'Seksjon navn', + 'section_name_help' => 'Vis i menyen hvis satt', + 'is_default' => 'Standard eller ikke', + 'showsubcat' => 'Vis underkategori', + 'taxonomies' => 'Taksonomi', + 'taxonomy_display_text' => 'Vis tekst', + 'torrent_field' => 'Tabellfelt for torrenter', + 'catsperrow' => 'Elementer per rad', + 'catsperrow_help' => "Angi hvor mange ting som skal vises på rad i søkefeltet, f.eks '8'.", + 'catpadding' => "Fyll mellom elementer", + 'catpadding_help' => "I piksler. Horisontal utfylling av mellomrom mellom elementer i søkefeltet, f.eks '3'.", + 'custom_fields' => 'Aktiver egendefinert felt ', + 'custom_fields_display_name' => 'Spesifikke felt visningsnavn', + 'custom_fields_display' => 'Tilpasset feltevisning', + 'custom_fields_display_help' => "Use 'specific label' to represent custom field's label and value,such as one custom field's name is 'artist', +then it's label:<%artist.label%>,it's value:<%artist.value%>", + 'category' => 'Kategori', + 'torrent_field_duplicate' => 'Torrent tabellfelt: :field kan ikke brukes på nytt!', + 'other' => 'Annet', + 'taxonomy' => [ + 'name' => 'Navn', + 'sort_index' => 'Sorter', + 'sort_index_help' => "Stigende – altså '0' kommer først.", + 'class_name' => 'klasse attributt', + 'class_name_help' => "Navnet på bildet. Tillatte tegn: [a-z] (i undersaken), [0-9], [_./].", + 'image' => 'Bilde', + 'image_help' => 'Navnet på bildet. Tillatte tegn: [a-z] (i undersaken), [0-9], [_./].', + 'icon_id' => 'Kategori ikonpakke', + 'mode' => 'Søkeboks', + 'mode_help' => 'La være blank for å indikere at det gjelder alle Søkebokser', + ], + ], + 'icon' => [ + 'label' => 'Kategori ikon', + 'folder' => 'Ikon pakke-mappe', + 'folder_help' => "Mappenavnet på ikonet. Tillatte tegn: [a-z] (i små bokstaver), [0-9], [_. ].MÅ legge til en skråstrek i enden, f.eks. 'mycaticon/'", + 'cssfile' => 'CSS fil', + 'cssfile_help' => "CSS-filen for denne ikonpakken. Angi i fullbanen, f.eks 'styles/scenetorrents.cs'. La den være tom hvis ingen. +Tillatte tegn: [a-z] (i nedre tilfelle), [0-9], [_./].", + 'multilang' => 'Multi-lang.', + 'multilang_help' => "Om du vil bruke forskjellige kategoriikoner for forskjellige språk. Hvis satt til 'Ja', sett flere pakker med ikoner i flere mapper kalt 'no', 'chs', osv.", + 'secondicon' => 'Andre Ikon', + 'secondicon_help' => "Om du bruker andre ikoner for ytterligere informasjon. Hvis satt til 'Ja', legg andre ikoner i en mappe kalt 'additional' sammen med vanlige ikoner.", + 'designer' => 'Designer', + 'designer_help' => 'Personen som laget ikonpakken.', + 'comment' => 'Kommentar', + 'comment_help' => ' Infomasjon om ikonpakken.', + 'desc' => "You need to put the icons in the right directory for these settings to work. Put the normal icons in 'pic/category/searchbox_name/icon_pack_folder[language_short_name/]' and the second icons in 'pic/category/searchbox_name/icon_pack_folder[language_short_name/]additional/'. +Don't get it? See if the following examples could help: +When + searchbox_name='nhd' + icon_pack_folder='scenetorrents/' + multi-lang='yes' + second_icon='no' +you should put an English normal icon file for movies (e.g. 'movies.png') in 'pic/category/nhd/scenetorrents/en/' . +When + searchbox_name='chd' + icon_pack_folder='nanosofts/' + multi-lang='no' + second_icon='yes' +you should put a normal icon file for movies (e.g. movies.png) in 'pic/category/chd/nanosofts/' and an additional icon file (e.g. 'bdh264.png') in 'pic/category/chd/nanosofts/additional/'. + +Note: In 1.8, the 'searchbox_name' part can be omitted, i.e. the rule is 'pic/category/icon_pack_folder[language_short_name/].' +", + ], + 'second_icon' => [ + 'label' => 'Andre ikon', + 'name' => 'Navn', + 'name_help' => "Ikke bruk langt navn. Anbefal mindre enn 10 bokstaver.", + 'image' => "Bilde", + 'image_help' => "Navnet på bildet. Tillatte tegn: [a-z] (i undersaken), [0-9], [_./].", + 'class_name' => 'klasse attributt', + 'class_name_help' => "Verdien av 'klasse' attributtet på bildet. La stå tom hvis ingen. Tillatte tegn: [a-z] (i nedre tilfelle), [0-9], [_]og den første bokstaven må være i [a-z].", + 'select_section' => 'Utvalg', + 'select_section_help' => "Dersom et valg ikke er definert, er alle alternativer fra utvalget tillatt for regelen. Minst ett valg bør defineres.", + ], +]; diff --git a/resources/lang/nb/medal.php b/resources/lang/nb/medal.php new file mode 100644 index 00000000..ef4818a0 --- /dev/null +++ b/resources/lang/nb/medal.php @@ -0,0 +1,51 @@ + 'Medalje', + 'action_wearing' => 'Bruk', + 'admin' => [ + 'list' => [ + 'page_title' => 'Medalje liste' + ] + ], + 'get_types' => [ + \App\Models\Medal::GET_TYPE_EXCHANGE => 'Børs', + \App\Models\Medal::GET_TYPE_GRANT => 'Tillat', + ], + 'fields' => [ + 'get_type' => 'Få type', + 'description' => 'Beskrivelse', + 'image_large' => 'Bilde', + 'price' => 'Pris', + 'duration' => 'Gyldig etter kjøp (dager)', + 'sale_begin_time' => 'Start tid for salg', + 'sale_begin_time_help' => 'Brukeren kan kjøpe etter dette tidspunktet, la stå tomt uten restriksjoner', + 'sale_end_time' => 'Slutttid for salg', + 'sale_end_time_help' => 'Brukeren kan kjøpe før dette tidspunktet, la stå tomt uten restriksjoner', + 'inventory' => 'Inventar', + 'inventory_help' => 'La stå tomt uten restriksjoner', + 'sale_begin_end_time' => 'Tilgjengelig for salg', + 'users_count' => 'Solgte tellere', + 'bonus_addition_factor' => 'Bonus tillegg faktor', + 'bonus_addition' => 'Bonus tillegg', + 'bonus_addition_factor_help' => 'For eksempel: 0.01 betyr betyr 1 % tillegg, la feltet stå tomt', + 'gift_fee_factor' => 'Gave gebyr-faktor', + 'gift_fee' => 'Gave gebyr', + 'gift_fee_factor_help' => 'Tilleggsavgiften for gaver til andre brukere er lik prisen multiplisert med faktoren', + ], + 'buy_already' => 'Allerede kjøp', + 'buy_btn' => 'Kjøp', + 'confirm_to_buy' => 'Sikker på at du vil kjøpe?', + 'require_more_bonus' => 'Krev mer bonus', + 'grant_only' => 'Bare gi', + 'before_sale_begin_time' => 'Før salget begynner tidspunkt', + 'after_sale_end_time' => 'Etter salgs slutt', + 'inventory_empty' => 'Inventar tomt', + 'gift_btn' => 'Gave', + 'confirm_to_gift' => 'Bekreft gave til bruker ', + 'max_allow_wearing' => 'Du kan bruke maksimalt :count medaljer samtidig', + 'wearing_status_text' => [ + 0 => 'Retning', + 1 => 'Ikke på' + ], +]; diff --git a/resources/lang/nb/message.php b/resources/lang/nb/message.php new file mode 100644 index 00000000..cbf16d15 --- /dev/null +++ b/resources/lang/nb/message.php @@ -0,0 +1,68 @@ + [ + 'page_title' => 'Liste over meldinger', + ], + 'show' => [ + 'page_title' => 'Meldings detaljer', + ], + 'field_value_change_message_body' => ':field endres fra :old til :old til :new av :operator. Årsak::reason.', + 'field_value_change_message_subject' => ':field endret', + + 'download_disable' => [ + 'subject' => 'Tillatelse for nedlasting avbrutt', + 'body' => 'Dine nedlastingsrettigheter har opphevet, muligens på grunn av lave delingsrater eller feiloppførsel. Av: :operator', + ], + 'download_disable_upload_over_speed' => [ + 'subject' => 'Tillatelse for nedlasting avbrutt', + 'body' => 'Du har avbrutt nedlastingstilgang på grunn av overdreven hastighet, fil dersom du er bruker en hovedboks.' , + ], + 'download_disable_announce_paid_torrent_too_many_times' => [ + 'subject' => 'Tillatelse for nedlasting avbrutt', + 'body' => 'Din nedlastningstillatelse er avbrutt på grunn av annonsering til å betalt torrent for mange ganger, sørg for at du har nok bonus.' , + ], + 'download_enable' => [ + 'subject' => 'Nedlastings tillatelse gjenopprettet', + 'body' => 'Dine nedlastingsrettigheter gjenopprettet. Nå kan du laste ned torrenter. Av: Operatør', + ], + 'temporary_invite_change' => [ + 'subject' => 'Midlertidig invitasjon :change_type', + 'body' => 'Din midlertidige invitasjonstelling hadde :change_type :count av :operator, grunn: :reason.', + ], + 'receive_medal' => [ + 'subject' => 'Motta gave medalje', + 'body' => "Bruker :username kjøpte en medalje [:medal_name] som kostet :cost_bonus og ga den til deg. Medalje er verd :price, gebyret er :gift_fee_total(faktor: :gift_fee_factor), du vil ha denne medaljen: :expire_at, og medal's bonus-tilleggs-faktor er: :bonus_addition_factor.", + ], + 'login_notify' => [ + 'subject' => ':site_name påloggingsinformasjon utenfor siden', + 'body' => << +Sist påloggingstid: ::last_login_time, IP::last_ip, location::last_location.
    +Hvis det ikke er din egen operasjon, kan kontopassordet ha blitt lekket og endre det i tide! +BODY, + ], + 'buy_torrent_success' => [ + 'subject' => 'Vellykket påminnelse om kjøp av torrent', + 'body' => 'Du brukte :bonus for vellykket kjøp, torrent:[url=:url]:torrent_name[/url]', + ], + 'exam_user_end_time_updated' => [ + 'subject' => 'Exam :exam_name sluttid endret', + 'body' => 'Sluttiden for exam :exam_name er endret fra :old_end_time til :new_end_time. admin: :operator, grunn: :reason.', + ], + + 'mail_dear' => "Dear ", + 'mail_you_received_a_pm' => "Du har mottatt en PM.", + 'mail_sender' => "Avsenderenses ", + 'mail_subject' => "Subjekt ", + 'mail_date' => "Datofarmaka ", + 'mail_use_following_url' => "Du kan klikke på ", + 'mail_use_following_url_1' => " å vise meldingen (du må kanskje logge inn).", + 'mail_yours' => "
    år,", + 'mail_the_site_team' => "%s teamet.", + 'mail_received_pm_from' => "Du har mottatt en PM fra ", + 'mail_here' => "HER", + 'msg_system' => "Systemadministrasjon", + 'msg_original_message_from' => "Opprinnelig melding fra ", +]; diff --git a/resources/lang/nb/nexus.php b/resources/lang/nb/nexus.php new file mode 100644 index 00000000..1dab6e7c --- /dev/null +++ b/resources/lang/nb/nexus.php @@ -0,0 +1,24 @@ + 'Ugyldig argument', + 'require_argument' => ':argument kan ikke være tomt', + 'select_one_please' => 'Velg en', + 'user_not_exists' => '(Forsvare)', + 'time_units' => [ + 'week' => 'uker', + ], + 'select_all' => 'Velg alle', + 'unselect_all' => 'Fjern alle valg', + 'increment' => 'porsjon', + 'decrement' => 'reduksjon', + 'action' => 'Handling', + 'no_limit' => 'Ingen grense', + 'sum' => 'Sum', + 'do_not_repeat' => 'Vennligst ikke gjenta operasjonen!', + 'no_permission' => 'Ingen tillatelse!', + 'sort' => 'sorter felt', + 'order' => 'sorter', + 'asc' => 'stigende rekkefølge', + 'desc' => 'synkende rekkefølge', +]; diff --git a/resources/lang/nb/oauth.php b/resources/lang/nb/oauth.php new file mode 100644 index 00000000..9e6e83a7 --- /dev/null +++ b/resources/lang/nb/oauth.php @@ -0,0 +1,30 @@ + 'Klient', + 'redirect' => 'Omdirigere URL', + 'secret' => 'Hemmelig', + 'revoked' => 'Valid', + 'access_token' => 'Tilgang token', + 'refresh_token' => 'Oppdater token', + 'authorization_request_title' => 'Autorisasjons forespørsel', + 'authorization_request_desc' => 'ber om tilgang til kontoen din', + 'btn_approve' => 'Autoriser', + 'btn_deny' => 'Avbryt', + 'skips_authorization' => 'Hopper over autorisasjon', + 'client_id' => 'Klient ID', + 'authorization_endpoint_url' => 'Autorisasjons URL', + 'token_endpoint_url' => 'Get token URL', + 'user_info_endpoint_url' => 'Hent URL-adressen for brukerinformasjon', + 'id_claim' => 'ID krav', + 'username_claim' => 'brukernavn hevder', + 'email_claim' => 'krav fra e-post', + 'level_claim' => 'Nivå felt navn', + 'level_limit' => 'Nivå grense', + 'level_limit_help' => 'Tillat bare brukere som ikke er under dette nivået å logge inn', + 'get_access_token_error' => 'Få tilgang til token feil: :feil', + 'get _provider_user_id_error' => 'Kunne ikke hente bruker-ID via feltet :id_claim', + 'get_provider_level_error' => 'Kan ikke hente brukernivå via feltet :level_claim', + 'provider_level_not_ allowed' => 'Bare brukere med nivå :level_limit eller over har lov til å logge inn', + 'provider_email_already_exists' => 'E-post: :email er allerede i bruk', + 'get_provider_email_error' => 'Kan ikke hente e-post via feltet :email_claim', +]; diff --git a/resources/lang/nb/offer.php b/resources/lang/nb/offer.php new file mode 100644 index 00000000..f1ec9985 --- /dev/null +++ b/resources/lang/nb/offer.php @@ -0,0 +1,17 @@ + " har lov deg å laste opp ", + 'msg_find_offer_option' => "Du finner et nytt alternativ på opplastingssiden.", + 'msg_your_offer_allowed' => "Tilbudet ditt er tillatt", + 'msg_offer_voted_on' => "Tilbudet ditt er stemt på. Du har lov til å laste opp ", + 'msg_offer_voted_off' => "Tilbudet ditt har blitt stemt av. Du har ikke lov til å laste opp ", + 'msg_voted_on' => " har blitt stemt på", + 'msg_offer_deleted' => "Tilbudet ditt ble slettet", + 'msg_your_offer' => "Ditt tilbud '", + 'msg_was_deleted_by' => "' ble slettet av ", + 'msg_blank' => ".", + 'msg_you_must_upload_in' => "Vennligst last opp tilbudet innen ", + 'msg_hours_otherwise' => " timer. Hvis ikke vil tilbudet bli slettet.", + 'msg_reason_is' => "Grunnen til det: ", +]; diff --git a/resources/lang/nb/peer.php b/resources/lang/nb/peer.php new file mode 100644 index 00000000..d2732673 --- /dev/null +++ b/resources/lang/nb/peer.php @@ -0,0 +1,7 @@ + [ + 'page_title' => 'Likemenn', + ], +]; diff --git a/resources/lang/nb/permission.php b/resources/lang/nb/permission.php new file mode 100644 index 00000000..b42dbac5 --- /dev/null +++ b/resources/lang/nb/permission.php @@ -0,0 +1,220 @@ + [ + 'text' => 'Godkjenning torrent', + 'desc' => 'Tillatelse, nekt eller marker som urevidert', + ], + 'torrent-set-special-tag' => [ + 'text' => 'Angi torrent spesielle tagger', + 'desc' => 'Sett official/Zero bonus-tag til torrenter', + ], + 'torrent-approval-allow-automatic' => [ + 'text' => 'Torrent godkjenning tillate automatisk', + 'desc' => 'Torrent er godkjenningsstatus etter automatisk opplasting', + ], + 'torrent-set-price' => [ + 'text' => 'Angi torrent betalt', + 'desc' => 'Angi torrent betalt', + ], + 'defaultclass' => [ + 'text' => 'Default Class', + 'desc' => ' Klasse ved registrering', + ], + 'staffmem' => [ + 'text' => 'Medlem av ansatte', + 'desc' => 'Klasser som anses som medarbeidere, for eksempel kan se personalboksen', + ], + 'newsmanage' => [ + 'text' => 'Nyheter Administrasjon', + 'desc' => 'Legg til ny, rediger, slett nyheter', + ], + 'newfunitem' => [ + 'text' => 'Legg inn funbox element', + 'desc' => "Legg inn nye funktionselementer og rediger eiers morsomme elementer", + ], + 'funmanage' => [ + 'text' => 'Funbox håndtering', + 'desc' => "Rediger, slett, forby noens moroopingselementer", + ], + 'sbmanage' => [ + 'text' => 'Utropsboks håndtering', + 'desc' => 'Slett meldinger i shoutbox og helpbox', + ], + 'pollmanage' => [ + 'text' => 'Poll administrasjon', + 'desc' => 'Legg til nye, rediger, slett avstemninger', + ], + 'applylink' => [ + 'text' => 'Søk på lenker', + 'desc' => 'Søk om lenker på hovedsiden', + ], + 'linkmanage' => [ + 'text' => 'Link administrasjon', + 'desc' => ' Legg til ny, rediger, slett koblinger', + ], + 'postmanage' => [ + 'text' => 'Forum Post Management', + 'desc' => 'Rediger, slette, flytte, kleppe, låse foruminnlegg', + ], + 'commanage' => [ + 'text' => 'Kommenter administrasjon', + 'desc' => 'Rediger, slett kommentarer til torrenter, tilbud', + ], + 'forummanage' => [ + 'text' => 'Forum Ledelse', + 'desc' => 'Legg til ny, rediger, slett, flytt forum', + ], + 'viewuserlist' => [ + 'text' => 'Vis bruker liste', + 'desc' => 'Vis, søkeliste', + ], + 'user-delete' => [ + 'text' => 'Slett bruker', + 'desc' => 'Slett brukerkontoinformasjon fullstendig fra databasen', + ], + 'user-change-class' => [ + 'text' => 'Endre brukerklasse', + 'desc' => "Endring av brukerens nivå, kan ikke endres til et høyere nivå enn eller lik deres eget", + ], + 'torrentmanage' => [ + 'text' => 'Torrent administrasjon', + 'desc' => 'Redigere torrenter eksklusiv setting av torrent sticky eller på promotion eller slett', + ], + 'torrent-delete' => [ + 'text' => 'Slett torrent', + 'desc' => 'Slett torrent', + ], + 'torrentsticky' => [ + 'text' => 'Torrent hakke', + 'desc' => ' Angi faktorrenter i toppen', + ], + 'torrentonpromotion' => [ + 'text' => 'Torrent ved forfremmelse', + 'desc' => 'Angi torrenter på promotering', + ], + 'torrent_hr' => [ + 'text' => 'Angi torrent H&R', + 'desc' => 'Sett torrent til H&R inspektør', + ], + 'askreseed' => [ + 'text' => 'Spør om tilbakestilt', + 'desc' => 'Be om reseed når torrenter er døde', + ], + 'viewnfo' => [ + 'text' => 'Vis NFO', + 'desc' => 'Vis NFO-filer', + ], + 'torrentstructure' => [ + 'text' => 'Vis torrent struktur', + 'desc' => 'Vis struktur for torrentfiler', + ], + 'sendinvite' => [ + 'text' => 'Send invitasjon', + 'desc' => 'Send invitasjon av medlemskap til andre', + ], + 'viewhistory' => [ + 'text' => 'Vis historikk', + 'desc' => "Vis andres kommentar og innleggshistorie", + ], + 'topten' => [ + 'text' => 'Vis Topten', + 'desc' => 'Vis Ti Top', + ], + 'log' => [ + 'text' => 'Se generell logg', + 'desc' => 'Se generell logg, unntatt konfidensiell logg', + ], + 'confilog' => [ + 'text' => 'Vis Confidential Logg', + 'desc' => 'Vis konfidensiell logg, f.eks sideinnstillingsendringer', + ], + 'userprofile' => [ + 'text' => "Vis brukerens identiske profil", + 'desc' => "Vis brukerens konfidensielle profil, f.eks IP-adresse, E-postadresse", + ], + 'torrenthistory' => [ + 'text' => "Vis brukers torrent-historie", + 'desc' => "Vis brukerens torrenthistorie, f.eks nedlastede torrenter.Gyldig bare når brukerens innstilling for personvernsnivå ikke er 'sterkt'" + ], + 'prfmanage' => [ + 'text' => "Brukerens generelle profilbehandling", + 'desc' => " Endrer brukerens profil, ekskludere viktige for eksempel e-post, brukernavn, opplastet og nedlastet beløp, bonus" + ], + 'cruprfmanage' => [ + 'text' => "Brukerens Crucial Profile Management", + 'desc' => "Endrer brukerens viktige profil, unntatt donasjon (bare personalets leder kan administrere donasjon)", + ], + 'uploadsub' => [ + 'text' => 'Last opp undertittel', + 'desc' => 'Last opp undertekster for torrenter', + ], + 'delownsub' => [ + 'text' => "Slett egne undertekster", + 'desc' => 'Slett undertekster lastet opp av seg selv', + ], + 'submanage' => [ + 'text' => 'Styring av undertekst', + 'desc' => 'Slett alle undertekster', + ], + 'updateextinfo' => [ + 'text' => 'Oppdater ekstern informasjon', + 'desc' => 'Oppdater utdatert ekstern infomasjon, f.eks. IMDb info', + ], + 'viewanonymous' => [ + 'text' => 'Vis anonym', + 'desc' => 'Vis hvem anonym en er', + ], + 'beanonymous' => [ + 'text' => 'Vær Anonym', + 'desc' => 'Last opp torrenter, undertekster anonymt', + ], + 'addoffer' => [ + 'text' => 'Legg til tilbud', + 'desc' => ' Legg til tilbud for opplasting', + ], + 'offermanage' => [ + 'text' => 'Tilby administrering', + 'desc' => 'Tillat, rediger, slett tilbudet', + ], + 'upload' => [ + 'text' => 'Last opp torrent', + 'desc' => 'Last opp torrenter til torrenter seksjon', + ], + 'uploadspecial' => [ + 'text' => 'Last opp spesialtorrent', + 'desc' => 'Last opp torrenter til spesiell seksjon', + ], + 'view_special_torrent' => [ + 'text' => 'Vis spesiell torrent', + 'desc' => 'Vis torrenter i spesiell seksjon', + ], + 'movetorrent' => [ + 'text' => 'Flytt torrent', + 'desc' => 'Flytt torrents mellom avsnitt', + ], + 'chrmanage' => [ + 'text' => 'Krønikes administrasjon', + 'desc' => 'Legg til, rediger, slett kronikk', + ], + 'viewinvite' => [ + 'text' => 'Vis invitasjon', + 'desc' => "Vis brukerens invitasjonshistorikk", + ], + 'buyinvite' => [ + 'text' => 'Kjøp invitasjoner', + 'desc' => 'Kjøp invitasjoner i bonussenter', + ], + 'seebanned' => [ + 'text' => 'Se utestengte torrenter', + 'desc' => 'Se og last ned bannlyste torrenter', + ], + 'againstoffer' => [ + 'text' => 'Stem mot tilbud', + 'desc' => 'Stem mot tilbud', + ], + 'userbar' => [ + 'text' => 'Tillat brukerlinje', + 'desc' => ' Få hans userba', + ], +]; diff --git a/resources/lang/nb/plugin.php b/resources/lang/nb/plugin.php new file mode 100644 index 00000000..d6955d22 --- /dev/null +++ b/resources/lang/nb/plugin.php @@ -0,0 +1,42 @@ + [ + 'install' => 'installere', + 'delete' => 'slett', + 'update' => 'oppgradér', + 'install_or_update' => 'installere/oppgradering', + ], + 'labels' => [ + 'display_name' => 'navn', + 'package_ name' => 'pakke_navn', + 'remote_url' => 'repository_adresse', + 'installed_version' => 'installerte_versjon', + 'latest_version' => 'nyest_versjon', + 'status' => 'status', + 'updated_at' => 'siste_utført_handling', + ' release_date' => 'oppdatert på', + 'install_title' => 'Gå til mappen: :web_root, og kjør følgende kommandoer for å installere den som root bruker: ', + 'introduce' => 'Detaljer', + 'view_on_blog' => 'Vis på blogg', + ' config_plugin_address' => 'Konfigurer programtilleggets adresse', + 'download_specific_version' => 'Last ned utvidelsen. Den nyeste versjonen vises her, hvis du trenger å installere en annen versjon (vis på bloggen for å se alle versjoner) erstatte den selv', + 'execute_install' => 'Utfør installasjonen', + ], + 'status' => [ + \App\Models\Plugin::STATUS_NORMAL => 'Vanlig', + \App\Models\Plugin::STATUS_NOT_INSTALLED => 'Ikke installert', + + \App\Models\Plugin::STATUS_PRE_INSTALL => 'Klar til å installere', + \App\Models\Plugin::STATUS_INSTALLING => 'Installerer', + \App\Models\Plugin::STATUS_INSTALL_FAILED => 'Installasjon mislyktes', + + \App\Models\Plugin::STATUS_PRE_UPDATE => 'Klar for oppgradering', + \App\Models\Plugin::STATUS_UPDATING => 'Oppgraderer', + \App\Models\Plugin::STATUS_UPDATE_FAILED => 'Oppgradering feilet', + + \App\Models\Plugin::STATUS_PRE_DELETE => 'Klar til å fjerne', + \App\Models\Plugin::STATUS_DELETING => 'Fjerner', + \App\Models\Plugin::STATUS_DELETE_FAILED => 'Fjerning mislyktes', + ], +]; diff --git a/resources/lang/nb/ptgen.php b/resources/lang/nb/ptgen.php new file mode 100644 index 00000000..3de30037 --- /dev/null +++ b/resources/lang/nb/ptgen.php @@ -0,0 +1,7 @@ + 'PT-Gen', + 'tooltip' => 'Linken kommer fra::sites ', + 'btn_get_desc' => 'Hent skrivebord', +]; diff --git a/resources/lang/nb/reward.php b/resources/lang/nb/reward.php new file mode 100644 index 00000000..4de7f8a7 --- /dev/null +++ b/resources/lang/nb/reward.php @@ -0,0 +1,9 @@ + [ + 'page_title' => 'Belønninger', + ] + +]; diff --git a/resources/lang/nb/route-permission.php b/resources/lang/nb/route-permission.php new file mode 100644 index 00000000..11fa2e12 --- /dev/null +++ b/resources/lang/nb/route-permission.php @@ -0,0 +1,20 @@ + [ + 'text' => 'Last opp torrent', + 'desc' => 'Last opp torrent', + ], + 'torrent:list' => [ + 'text' => 'Hent torrent-liste', + 'desc' => 'Hent torrent-liste', + ], + 'torrent:view' => [ + 'text' => 'Vis torrent-detaljer', + 'desc' => 'Vis torrent-detaljer', + ], + 'user:view' => [ + 'text' => 'Vis brukergrunnleggende informasjon', + 'desc' => 'Vis brukergrunnleggende informasjon', + ], +]; diff --git a/resources/lang/nb/search.php b/resources/lang/nb/search.php new file mode 100644 index 00000000..cd20b865 --- /dev/null +++ b/resources/lang/nb/search.php @@ -0,0 +1,17 @@ + 'Globalt søk', + 'search_keyword' => 'Keyword', + 'search_area' => 'Range', + 'search_area_options' => [ + '0' => 'Tittel', + '1' => 'Beskrivelse', + '3' => 'Opplaster', + '4' => 'IMDB URL' + ], + 'search_modes' => [ + 'and' => 'Og', + 'exact' => 'Nøyaktig', + ], +]; diff --git a/resources/lang/nb/searchbox.php b/resources/lang/nb/searchbox.php new file mode 100644 index 00000000..618776f0 --- /dev/null +++ b/resources/lang/nb/searchbox.php @@ -0,0 +1,20 @@ + 'Kategori', + 'sub_category_source_label' => 'Kilde', + 'sub_category_medium_label' => 'Medier', + 'sub_category_standard_label' => 'Vanlig', + 'sub_category_team_label' => 'Lag', + 'sub_category_processing_label' => 'Behandler', + 'sub_category_codec_label' => 'Kodek', + 'sub_category_audiocodec_label' => 'Lydkodeks', + 'extras' => [ + \App\Models\SearchBox::EXTRA_DISPLAY_COVER_ON_TORRENT_LIST => 'Vis forside på torrentliste', + \App\Models\SearchBox::EXTRA_DISPLAY_SEED_BOX_ICON_ON_TORRENT_LIST => 'Vis hovedikon på torrent-liste', + ], + 'sections' => [ + 'browse' => 'Torrenter', + 'special' => 'Spesial', + ], +]; diff --git a/resources/lang/nb/seed-box.php b/resources/lang/nb/seed-box.php new file mode 100644 index 00000000..091842ac --- /dev/null +++ b/resources/lang/nb/seed-box.php @@ -0,0 +1,19 @@ + [ + \App\Models\SeedBoxRecord::TYPE_USER => 'Bruker', + \App\Models\SeedBoxRecord::TYPE_ADMIN => 'Administratorsiden', + ], + 'status_text' => [ + \App\Models\SeedBoxRecord::STATUS_UNAUDITED => 'Urevidert', + \App\Models\SeedBoxRecord::STATUS_ALLOWED => 'Tillatt', + \App\Models\SeedBoxRecord::STATUS_DENIED => 'Avvist', + ], + 'status_change_message' => [ + 'subject' => 'SeedBox poststatus endret', + 'body' => 'Statusen for SeedBox oppføringen med ID :id ble endret av :operator fra :old_status til :new_status. Årsak: :reason', + ], + 'is_seed_box_yes' => 'Denne IP er frøboksen, identifisert i posten med ID :id', + 'is_seed_box_no' => 'Denne IP er ikke SeedBox', +]; diff --git a/resources/lang/nb/seedbox.php b/resources/lang/nb/seedbox.php new file mode 100644 index 00000000..5c371cc8 --- /dev/null +++ b/resources/lang/nb/seedbox.php @@ -0,0 +1,8 @@ + [ + \App\Models\SeedBoxRecord::TYPE_USER => 'Bruker', + \App\Models\SeedBoxRecord::TYPE_ADMIN => 'Administratorsiden', + ], +]; diff --git a/resources/lang/nb/signup.php b/resources/lang/nb/signup.php new file mode 100644 index 00000000..5b7257c0 --- /dev/null +++ b/resources/lang/nb/signup.php @@ -0,0 +1,8 @@ + "Passordene samsvarer ikke! Musthar typoed. Prøv igjen.", + 'password_too_short' => "Beklager, passordet er for kort (min er 6 tegn)", + 'password_too_long' => "Beklager, passordet er for langt (maks 40 tegn)", + 'password_equals_username' => "Beklager, passordet kan ikke være det samme som brukernavn.", +]; diff --git a/resources/lang/nb/snatch.php b/resources/lang/nb/snatch.php new file mode 100644 index 00000000..f52840dd --- /dev/null +++ b/resources/lang/nb/snatch.php @@ -0,0 +1,8 @@ + 'Opplysning', + 'index' => [ + 'page_title' => 'Hyldinger', + ], +]; diff --git a/resources/lang/nb/subtitle.php b/resources/lang/nb/subtitle.php new file mode 100644 index 00000000..3369d4a5 --- /dev/null +++ b/resources/lang/nb/subtitle.php @@ -0,0 +1,7 @@ + " slettet den undertittelen du lastet opp. ", + 'msg_your_sub_deleted' => "Din undertekst ble slettet", + 'msg_reason_is' => "Grunnen til det: ", +]; diff --git a/resources/lang/nb/thank.php b/resources/lang/nb/thank.php new file mode 100644 index 00000000..305664f0 --- /dev/null +++ b/resources/lang/nb/thank.php @@ -0,0 +1,6 @@ + [ + 'page_title' => 'Takk', + ], +]; diff --git a/resources/lang/nb/token.php b/resources/lang/nb/token.php new file mode 100644 index 00000000..e08d7ce4 --- /dev/null +++ b/resources/lang/nb/token.php @@ -0,0 +1,10 @@ + 'Tilgang til kode', + 'permission' => 'Tillatelser', + 'maximum_allow_number_reached' => 'Nummeret når den øvre grensen', + 'create_success_tip' => 'Tokenet ble opprettet vellykket, disse dataene vises kun én gang, vennligst lagre det riktig

    :token', + 'last_used_at' => 'Nylig brukstid', + 'token' => 'summary', +); diff --git a/resources/lang/nb/torrent-operation-log.php b/resources/lang/nb/torrent-operation-log.php new file mode 100644 index 00000000..b18605bb --- /dev/null +++ b/resources/lang/nb/torrent-operation-log.php @@ -0,0 +1,7 @@ + [ + 'action_type' => 'Type handling', + ], +]; diff --git a/resources/lang/nb/torrent.php b/resources/lang/nb/torrent.php new file mode 100644 index 00000000..385b4e65 --- /dev/null +++ b/resources/lang/nb/torrent.php @@ -0,0 +1,109 @@ + 'Vanlig', + 'pos_state_sticky' => 'Klissete først', + 'pos_state_r_sticky' => 'Klissete sekund', + + 'index' => [ + 'page_title' => 'Liste over torrent', + ], + 'show' => [ + 'page_title' => 'Torrent detaljer', + 'basic_category' => 'Kategori', + 'basic_audio_codec' => 'Lyd kodek', + 'basic_codec' => 'Videokodek', + 'basic_media' => 'Medier', + 'basic_source' => 'Kilde', + 'basic_standard' => 'Vanlig', + 'basic_team' => 'Lag', + 'size' => 'Størrelse', + 'comments_label' => 'Kommentarer', + 'times_completed_label' => 'Hentet', + 'peers_count_label' => 'Likemenn', + 'thank_users_count_label' => 'Takk', + 'numfiles_label' => 'Filer', + 'bookmark_yes_label' => 'Bokmerket', + 'bookmark_no_label' => 'Legg til bokmerke', + 'reward_logs_label' => 'Belønning', + 'reward_yes_label' => 'Belønning', + 'reward_no_label' => 'Belønning', + 'download_label' => 'Nedlasting', + 'thanks_yes_label' => 'Takket', + 'thanks_no_label' => 'Tusen', + ], + 'pick_info' => [ + 'normal' => 'Vanlig', + 'hot' => 'Varmt', + 'classic' => 'Klassisk', + 'recommended' => 'Anbefal', + ], + 'claim_already' => 'Påtatt allerede', + 'no_snatch' => 'Last aldri ned denne torrenten enda', + 'can_no_be_claimed_yet' => 'Kan ikke bli påkrevet ennå', + 'claim_number_reach_user_maximum' => 'Maksimalt antall brukere er nådd', + 'claim_number_reach_torrent_maximum' => 'Maksimalt antall torrent er nådd', + 'claim_disabled' => 'Kravdato er deaktivert', + 'operation_log' => [ + \App\Models\TorrentOperationLog::ACTION_TYPE_APPROVAL_DENY => [ + 'type_text' => 'Tillatt', + 'notify_subject' => 'Torrent var tillatt', + 'notify_msg' => 'Din torrent:[url=:detail_url]:torrent_name[/url] var tillatt av :operator, Årsak: :reason', + ], + \App\Models\TorrentOperationLog::ACTION_TYPE_APPROVAL_ALLOW => [ + 'type_text' => 'Avvist', + 'notify_subject' => 'Torrent ble avslått', + 'notify_msg' => 'Din torrent: [url=:detail_url]:torrent_name[/url] nektet av :operator', + ], + \App\Models\TorrentOperationLog::ACTION_TYPE_APPROVAL_NONE => [ + 'type_text' => 'Ikke revidert', + 'notify_subject' => 'Torrent var merket som ikke vurdert', + 'notify_msg' => 'Din torrent: [url=:detail_url]:torrent_name[/url] ble merket som ikke gjennomgått av :operator', + ], + \App\Models\TorrentOperationLog::ACTION_TYPE_EDIT => [ + 'type_text' => 'Rediger', + 'notify_subject' => 'Torrent ble redigert', + 'notify_msg' => 'Din torrent: [url=:detail_url]:torrent_name[/url] ble redigert av :operator', + ], + \App\Models\TorrentOperationLog::ACTION_TYPE_DELETE => [ + 'type_text' => 'Slett', + 'notify_subject' => 'Torrent er slettet', + 'notify_msg' => 'Din torrent: :torrent_name ble slettet av :operator', + ] + ], + 'owner_update_torrent_subject' => 'Nekt torrent har blitt oppdatert', + 'owner_update_torrent_msg' => 'Torrent:[url=:detail_url]:torrent_name[/url] har blitt oppdatert av eieren, du kan kontrollere om det oppfyller kravene og tillate', + 'approval' => [ + 'modal_title' => 'Torrent godkjenning', + 'status_label' => 'Godkjennings status', + 'comment_label' => 'Kommentar(valgfritt)', + 'status_text' => [ + \App\Models\Torrent::APPROVAL_STATUS_NONE => 'Ikke revidert', + \App\Models\Torrent::APPROVAL_STATUS_ALLOW => 'Tillatt', + \App\Models\Torrent::APPROVAL_STATUS_DENY => 'Avvist', + ], + 'deny_comment_show' => 'Avvist, grunn: :reason', + 'logs_label' => 'Godkjennings logger' + ], + 'show_hide_media_info' => 'Vis/Skjul rå MediaInfo', + 'promotion_time_types' => [ + \App\Models\Torrent::PROMOTION_TIME_TYPE_GLOBAL => 'Globalt', + \App\Models\Torrent::PROMOTION_TIME_TYPE_PERMANENT => 'Permanent', + \App\Models\Torrent::PROMOTION_TIME_TYPE_DEADLINE => 'Før', + ], + 'paid_torrent' => 'Betalt torrent', + 'msg_torrent_deleted' => "Din torrent er slettet", + 'msg_the_torrent_you_uploaded' => "Torrenten du lastet opp '", + 'msg_was_deleted_by' => "' ble slettet av ", + 'msg_reason_is' => ". Begrunnelsen. ", + 'msg_reseed_request' => "Reseed forespørsel", + 'msg_reseed_user' => "Bruker ", + 'msg_ask_reseed' => " spurt om en oppdatert torrent ", + 'msg_thank_you' => " !\nThank You!", + + 'msg_offer_you_voted' => "Tilbudet du stemte for: ", + 'msg_was_uploaded_by' => " ble lastet opp av ", + 'msg_you_can_download' => ".\nDu kan laste ned Torrent", + 'msg_here' => " [b]her[/b]", + 'msg_offer' => "Tilbud ", +]; diff --git a/resources/lang/nb/upload.php b/resources/lang/nb/upload.php new file mode 100644 index 00000000..4fb7b6c2 --- /dev/null +++ b/resources/lang/nb/upload.php @@ -0,0 +1,68 @@ + 'Ugyldig pris: :price', + 'invalid_category' => 'Invalid type', + 'invalid_section' => 'Ugyldig seksjon', + 'invalid_hr' => 'Ugyldig H&R-verdi', + 'invalid_pos_state' => 'Ugyldig posisjon: :pos_state', + 'invalid_pos_state_until' => 'Ugyldig posisjonsfrist', + 'not_supported_sub_category_field' => 'Ustøttet underkategorifelt: :field', + 'invalid_sub_category_value' => 'Underkategorifelt: :label(:field) verdi: :value invalid', + 'invalid_tag' => 'Ugyldig tag::tag', + 'invalid_pick_type' => 'Ugyldig anbefaling::pick_type', + 'require_name' => 'Tittelfeltet kan ikke være tom', + 'price_too_much' => 'Pris overskrider tillatt område', + 'approval_deny_reach_upper_limit' => 'Tallet av torrent avvist for gjeldende gjennomsyn: %s når øvre grense og publisering er ikke tillatt.', + 'special_section_not_enabled' => 'Spesialsone er ikke aktivert.', + 'paid_torrent_not_enabled' => 'Den betalte torrenten er ikke aktivert.', + 'no_permission_to_set_torrent_hr' => 'Ingen tillatelse til å angi torrent H&R.', + 'no_permission_to_set_torrent_pos_state' => 'Det finnes ingen tillatelse til å angi torrent topp.', + 'no_permission_to_set_torrent_price' => 'Ikke tillatelse til å angi torrent-anslag.', + 'no_permission_to_pick_torrent' => 'Ingen tillatelse til å anbefale videoer.', + 'no_permission_to_be_anonymous' => 'Ingen tillatelse til å publisere anonymt.', + 'torrent_save_dir_not_exists' => 'Torrent-lagringsmappen eksisterer ikke.', + 'torrent_save_dir_not_writable' => 'Torrent-lagringsmappen er ikke skrivbar.', + 'save_torrent_file_failed' => 'Lagring av torrent-fil mislyktes.', + 'upload_failed' => 'Opplasting feilet!', + 'missing_form_data' => 'Vennligst fyll ut påkrevde produkter', + 'missing_torrent_file' => 'Manglende torrentfil', + 'empty_filename' => 'Filnavnet kan ikke være tomt!', + 'zero_byte_nfo' => 'NFO-filen er tom', + 'nfo_too_big' => 'NFO-filen er for stor! Maksimalt tillatt med 65,535 byte.', + 'nfo_upload_failed' => 'NFO filopplasting feilet', + 'blank_description' => 'Du må fylle inn introduksjonen!', + 'category_unselected' => 'Du må velge typen!', + 'invalid_filename' => 'Ugyldig filnavn!', + 'filename_not_torrent' => 'Ugyldig filnavn (ikke .torrent-fil).', + 'empty_file' => 'Tom fil!', + 'not_bencoded_file' => 'Hva i helvete gjør du? Hva du lastet opp er en Bencode fil!', + 'not_a_dictionary' => 'Ikke en katalog', + 'dictionary_is_missing_key' => 'Mappe mangler verdi', + 'invalid_entry_in_dictionary' => 'Ugyldig katalog oppføring', + 'invalid_dictionary_entry_type' => 'Ugyldig mappe elementtype', + 'invalid_pieces' => 'Ugyldig filblokk', + 'missing_length_and_files' => 'Mangler lengde og fil', + 'filename_errors' => 'Feil filnavn', + 'uploaded_not_offered' => 'Du kan bare laste opp torrenten som sender kandidaten. Vennligst gå tilbake for å velge riktig prosjekt til kandidat før opplasting!', + 'unauthorized_upload_freely' => 'Du har ikke tillatelse til å laste opp gratis!', + 'torrent_existed' => 'Torrenten finnes allerede! :id', + 'torrent_file_too_big' => 'Torrent-filen er for stor! Maksimum tillatt', + 'remake_torrent_note' => 'bytes. Lag torrent-filen på nytt med en større blokkstørrelse, eller del innholdet i flere torrent for publisering.', + 'email_notification_body' => 'Hei, +En ny torrent er lastet opp. + +Navn::name +Størrelse: :size +Type::kategori +Opplasting: :upload_by + +Innledning +:description + +Se mer detaljert informasjon og last den ned (du må kanskje logge in), klikk her: her +:torrent_url + +:site_name Website', + 'email_notification_subject' => ':site_name Melding fra ny torrent', +); diff --git a/resources/lang/nb/user.php b/resources/lang/nb/user.php new file mode 100644 index 00000000..ad6c8cc7 --- /dev/null +++ b/resources/lang/nb/user.php @@ -0,0 +1,112 @@ + 'Deaktiver av administrator', + 'deleted_username' => 'brukeren eksisterer ikke', + 'admin' => [ + 'list' => [ + 'page_title' => 'Liste over brukere' + ] + ], + 'labels' => [ + 'seedbonus' => 'Bonus', + 'seed_points' => 'Oppgavens poeng', + 'uploaded' => 'Opplastet', + 'downloaded' => 'Nedlastet', + 'invites' => 'Invitasjoner', + 'attendance_card' => 'Delta kort', + 'props' => 'Tilbehør', + 'class' => 'Klasse', + 'vip_added' => 'VIP status fÃ¥r av bonus', + 'vip_added_help' => 'Er VIP-statusen innløst av bonus.', + 'vip_until' => 'Slutttid for VIP', + 'vip_until_help' => "Tid-formatet er 'År-Måned-dag-timer:Minute:Second The time nÃ¥r VIP status slutter. VIP-status fås av bonusen må settes til 'Ja' for at denne regelen skal tre i kraft.", + ], + 'class_names' => [ + \App\Models\User::CLASS_VIP => 'Rotér', + \App\Models\User::CLASS_RETIREE => 'Tre', + \App\Models\User::CLASS_UPLOADER => 'Opplaster', + \App\Models\User::CLASS_MODERATOR => 'Moderator', + \App\Models\User::CLASS_ADMINISTRATOR => 'Administratorsiden', + \App\Models\User::CLASS_SYSOP => 'Sysop', + \App\Models\User::CLASS_STAFF_LEADER => 'Ansattes leder', + ], + 'change_username_lte_min_interval' => 'Siste endringstid: :last_change_time, fjern minimumstid: :interval days', + 'destroy_by_admin' => 'Fysisk sletting av administrator', + 'disable_by_admin' => 'Deaktiver av administrator', + 'genders' => [ + \App\Models\User::GENDER_MALE => 'Mann', + \App\Models\User::GENDER_FEMALE => 'Kvinne', + \App\Models\User::GENDER_UNKNOWN => 'Ukjent', + ], + 'grant_props_notification' => [ + 'subject' => 'Get Props::name', + 'body' => ':operator Gi deg :name, Validity period: :duration.', + ], + 'metas' => [ + 'already_valid_forever' => ':meta_key_text er allerede gyldig for alltid', + ], + 'edit_notifications' => [ + 'change_class' => [ + 'promote' => 'Promotere', + 'demote' => 'Degrader', + 'subject' => 'Klasse endret', + 'body' => 'Du hadde vært :action til :new_class, administrator: :operator, grunn: :reason.', + ], + ], + 'username_already_exists' => 'Brukernavn::brukernavn finnes allerede', + 'username_invalid' => 'Brukernavn::username er ugyldig', + + 'msg_promoted' => "forfremmet", + 'msg_demoted' => "degradert", + 'msg_class_change' => "Klasse endring", + 'msg_you_have_been' => "Du har vært ", + 'msg_to' => " til ", + 'msg_by' => " av ", + 'msg_warn_removed' => "Advarsel fjernet", + 'msg_your_warning_removed_by' => "Din advarsel er fjernet av", + 'msg_you_are_warned_by' => "Du har vært [url=rules.php#warning]advarte[/url] av ", + 'msg_reason' => "\n\nÅrsak: ", + 'msg_week' => " uke", + 'msg_s' => "S", + 'msg_you_are_warned_for' => "Du har vært [url=rules.php#warning]advarte[/url] for ", + 'msg_you_are_warned' => "Du er advart", + 'msg_posting_rights_restored' => "Publiser rettigheter gjenopprettet", + 'msg_your_posting_rights_restored' => "Dine postrettigheter har blitt gitt tilbake av " , + 'msg_you_can_post' => ". Du kan skrive innlegg på forumet igjen.", + 'msg_posting_rights_removed' => "Bokføring av rettigheter fjernet", + 'msg_your_posting_rights_removed' => "Dine postrettigheter har blitt fjernet av ", + 'msg_probable_reason' => ", sannsynligvis på grunn av dårlig holdning eller dårlig postinnhold.", + 'msg_upload_rights_restored' => "Last opp rettigheter gjenopprettet", + 'msg_your_upload_rights_restored' => "Dine opplastingsrettigheter har blitt gitt tilbake av ", + 'msg_you_upload_can_upload' => ". Du kan laste opp torrenter igjen.", + 'msg_upload_rights_removed' => "Last opp rettigheter fjernet", + 'msg_your_upload_rights_removed' => "Dine opplastingsrettigheter har blitt fjernet av ", + 'msg_probably_reason_two' => ", sannsynligvis på grunn av dårlig torrent, .nfo eller beskrivelse.", + 'msg_download_rights_restored' => "Last ned rettigheter som gjenopprettet", + 'msg_your_download_rights_restored' => "Dine nedlastingsrettigheter har blitt gitt tilbake av ", + 'msg_you_can_download' => ". Du kan laste ned torrents igjen.", + 'msg_download_rights_removed' => "Last ned rettigheter fjernet", + 'msg_your_download_rights_removed' => "Dine nedlastingsrettigheter har blitt fjernet av ", + 'msg_probably_reason_three' => ", sannsynligvis på grunn av lav eller dårlig oppførsel.", + 'msg_email_change' => "Endring av e-post", + 'msg_your_email_changed_from' => "Din e-postadresse har blitt endret fra ", + 'msg_username_change' => "Brukernavn endring", + 'msg_your_username_changed_from' => "Brukernavnet ditt er endret fra ", + 'msg_downloaded_change' => "Endring av nedlastet beløp", + 'msg_your_downloaded_changed_from' => "Ditt nedlastede beløp har blitt endret fra ", + 'msg_uploaded_change' => "Opplastet beløp endring", + 'msg_your_uploaded_changed_from' => "Det opplastede beløpet har blitt endret fra ", + 'msg_bonus_change' => "Bonus beløp endring", + 'msg_your_bonus_changed_from' => "Ditt bonusbeløp har blitt endret fra ", + 'msg_invite_change' => "Inviter beløp endring", + 'msg_your_invite_changed_from' => "Ditt invitasjonsbeløp er endret fra ", + 'msg_to_new' =>" til ", + 'msg_your_vip_status_changed' => "Din VIP-status endret", + 'msg_vip_status_changed_by' => "Din VIP-status endret av ", + 'msg_your_donor_status_changed' => "Din donorstatus er endret", + 'msg_donor_status_changed_by' => "Din donorstatus endret av ", + 'msg_invited_user_has_registered' => "Invitert bruker har registrert", + 'msg_user_you_invited' => "Brukeren du har invitert ", + 'msg_has_registered' => " er registrert akkurat nå.", +]; diff --git a/resources/lang/nb/username-change-log.php b/resources/lang/nb/username-change-log.php new file mode 100644 index 00000000..e69a00e4 --- /dev/null +++ b/resources/lang/nb/username-change-log.php @@ -0,0 +1,13 @@ + [ + \App\Models\UsernameChangeLog::CHANGE_TYPE_USER => 'Bruker', + \App\Models\UsernameChangeLog::CHANGE_TYPE_ADMIN => 'Administratorsiden', + ], + 'labels' => [ + 'username_old' => 'Gammelt brukernavn', + 'username_new' => 'Nytt brukernavn', + 'change_type' => 'Endre type', + ], +]; diff --git a/resources/lang/nl/admin.php b/resources/lang/nl/admin.php index 11a0b649..15815311 100644 --- a/resources/lang/nl/admin.php +++ b/resources/lang/nl/admin.php @@ -43,6 +43,8 @@ return [ 'oauth_auth_code' => 'Authenticatie codes', 'oauth_refresh_token' => 'Tokens vernieuwen', 'token' => 'Toegangs-tokens', + 'oauth_provider' => 'Autorisatie provider', + 'queue_monitor' => 'Wachtrij monitor', ], 'resources' => [ 'agent_allow' => [ diff --git a/resources/lang/nl/bonus.php b/resources/lang/nl/bonus.php index 46384d88..3fed5e5c 100644 --- a/resources/lang/nl/bonus.php +++ b/resources/lang/nl/bonus.php @@ -26,4 +26,10 @@ return [ 'medal_addition' => 'Medaille toevoeging', ], 'not_enough' => 'Niet genoeg bonus! Vereist :require_bonus, je hebt momenteel alleen :now_bonus', + 'msg_someone_loves_you' => "Iemand houdt van je", + 'msg_you_have_been_given' => "Je hebt een cadeau gekregen van ", + 'msg_after_tax' => " (na BTW is het ", + 'msg_karma_points_by' => ") Karma punten door ", + 'msg_personal_message_from' => "Persoonlijk bericht van ", + 'msg_colon' => ": ", ]; diff --git a/resources/lang/nl/claim.php b/resources/lang/nl/claim.php index 23e37541..0c1938ae 100644 --- a/resources/lang/nl/claim.php +++ b/resources/lang/nl/claim.php @@ -17,12 +17,12 @@ return [ 'msg_title' => 'Claim eindresultaat van afgelopen maand (:maand):', 'msg_subject' => 'vorderingen afwikkeling :maand', - 'claim_total' => 'Opvordering torrent totaal: :total', - 'claim_reached_counts' => 'Reached torrent counts: :counts', - 'claim_reached_summary' => 'Berekende torrent krijgt bonus per uur: :bonus_per_uur, zaad tijd gemiddelde (uur): :hours, krijg bonus totale: :bonus_total', - 'claim_unreached_remain_counts' => 'Onbereikte torrent blijft tellen: :counts', - 'claim_unreached_remove_counts' => 'Niet bereikt torrent verwijder tellen: :counts', - 'claim_unreached_summary' => 'Verwijder elke onbereikte torrent::deduct_per_torrent, totale aftreking: :deduct_total', + 'claim_total' => 'Opvordering torrent totaal: [b]:total[/b]', + 'claim_reached_counts' => 'Reached torrent counts: [b]:counts[/b]', + 'claim_reached_summary' => 'Berekende torrent krijgt bonus per uur: [b]:bonus_per_uur[/b], zaad tijd gemiddelde (uur): [b]:hours[/b], krijg bonus totale: [b]:bonus_total[/b]', + 'claim_unreached_remain_counts' => 'Onbereikte torrent blijft tellen: [b]:counts[/b]', + 'claim_unreached_remove_counts' => 'Niet bereikt torrent verwijder tellen: [b]:counts[/b]', + 'claim_unreached_summary' => 'Verwijder elke onbereikte torrent:[b]:deduct_per_torrent[/b], totale aftreking: [b]:deduct_total[/b]', 'confirm_give_up' => 'Weet u zeker dat u wilt stoppen met het claimen van deze torrent?', 'add_claim' => 'Claim', diff --git a/resources/lang/nl/cleanup.php b/resources/lang/nl/cleanup.php index 823cdf32..f10f4584 100644 --- a/resources/lang/nl/cleanup.php +++ b/resources/lang/nl/cleanup.php @@ -12,4 +12,25 @@ return [ 'alarm_email_body' => 'Huidige tijd: :now_time, level :level, Laatste looptijd was: :last_time, het is meer dan: :elapsed_seconden seconden(:elapsed_seconds_human) sinds het draaien, de set run interval is: :interval seconden(:interval_human), controleer alstublieft!', 'alarm_email_subject_for_queue_failed_jobs' => '[:site_name]Asynchrone taak uitzondering', 'alarm_email_body_for_queue_failed_jobs' => 'Er zijn in totaal :count mislukte asynchrone jobs sinds :since, opgenomen in de database tabel :failed_job_table gelieve het te controleren!', + + 'msg_low_ratio_warning_removed' => "Lage Verhouding Waarschuwing Verwijderd", + 'msg_your_ratio_warning_removed' => "Je waarschuwing voor lage ratio is verwijderd en automatisch gepromoveerd naar [b]Gebruiker[/b]. We raden je sterk aan om je ratio te behouden zodat je niet opnieuw gewaarschuwd wordt.\n", + 'msg_promoted_to' => "Gepromoveerd naar ", + 'msg_now_you_are' => "Gefeliciteerd, u bent automatisch gepromoveerd naar [b]", + 'msg_see_faq' => "[/b]. :)\nZie de [b][url=faq.php#id22]FAQ[/url][/b] voor wat je nu kunt doen.\n", + 'msg_demoted_to' => "Gedegradeerd tot ", + 'msg_demoted_from' => "Je bent automatisch gedegradeerd van [b]", + 'msg_to' => "[/b] tot [b]", + 'msg_because_ratio_drop_below' => "[/b] omdat uw aandeel ratio lager is dan ", + 'msg_must_fix_ratio_within' => "U bent gewaarschuwd en automatisch gedegradeerd van [b]User[/b] naar [b]Peasant[/b] omdat u een lage verhouding heeft. U moet het binnen herstellen ", + 'msg_days_or_get_banned' => " dagen of uw account zal worden geblokkeerd. Als je geen idee hebt wat de verhouding is of hoe deze je beïnvloedt, raden we je aan om de [url=faq) te lezen. hp#idid17][b]FAQ[/b][/url].", + 'msg_vip_status_removed' => "VIP-status verwijderd door het systeem.", + 'msg_vip_status_removed_body' => "Je VIP status heeft een time-out gekregen en is automatisch verwijderd door het systeem. Word opnieuw een VIP door het ruilen van wat Karma Bonus Punten. Probeer!", + 'msg_donor_status_removed' => "Donorstatus verwijderd door het systeem.", + 'msg_donor_status_removed_body' => "Je donorstatus heeft een time-out gekregen en is automatisch verwijderd door het systeem. Word een donor door een donatie aan ons te doen. Proost!", + 'msg_warning_removed' => "Waarschuwing verwijderd door systeem", + 'msg_your_warning_removed' => "Uw waarschuwing is verwijderd door het systeem. We hopen dat u zich vanaf nu zou gedragen.", + 'msg_your_torrent_deleted' => "Je torrent is verwijderd", + 'msg_your_torrent' => "Je torrent ", + 'msg_was_deleted_because_dead' => " is verwijderd door het systeem omdat het lang dood was. Houd echter de karma bonus voor het uploaden van de torrent.", ]; diff --git a/resources/lang/nl/comment.php b/resources/lang/nl/comment.php index 4fd1624c..ee809aff 100644 --- a/resources/lang/nl/comment.php +++ b/resources/lang/nl/comment.php @@ -1,7 +1,8 @@ [ - 'page_title' => 'Opmerkingen', - ], + 'msg_new_comment' => "Nieuwe reactie", + 'msg_torrent_receive_comment' => "Je hebt een reactie op je torrent ontvangen ", + 'msg_offer_receive_comment' => "U heeft een reactie ontvangen op uw aanbieding ", + 'msg_request_receive_comment' => "U heeft een reactie ontvangen op uw verzoek " ]; diff --git a/resources/lang/nl/fun.php b/resources/lang/nl/fun.php new file mode 100644 index 00000000..12eb11fa --- /dev/null +++ b/resources/lang/nl/fun.php @@ -0,0 +1,15 @@ + "Plezier item verbannen", + 'msg_your_fun_item' => "Je leuke item '", + 'msg_is_ban_by' => "' is verbannen door ", + 'msg_reason' => ". Reden: ", + 'msg_fun_item_reward' => "Leuke item beloning", + 'msg_out_of' => " van de ", + 'msg_people_think' => " denk aan het leuke item dat je hebt geplaatst ", + 'msg_is_fun' => " is leuk. Dus hier is ", + 'msg_bonus_as_reward' => " karma punten als beloning.", + 'msg_fun_item_dull' => "Leuke item sull", + 'msg_is_dull' => " is eigenlijk saai :thumbsdown: . Dus het is verwijderd van de startpagina. Misschien moet je je gevoel voor humor verbeteren.", +]; diff --git a/resources/lang/nl/label.php b/resources/lang/nl/label.php index d85e3f27..144ee291 100644 --- a/resources/lang/nl/label.php +++ b/resources/lang/nl/label.php @@ -34,7 +34,7 @@ return [ 'cancel' => 'annuleren', 'reset' => 'Reset', 'anonymous' => 'Anoniem', - 'infinite' => 'Oneindig', + 'infinite' => 'Inf.', 'save' => 'Opslaan', 'country' => 'Land:', 'city' => 'Woonplaats', @@ -44,6 +44,8 @@ return [ 'create' => 'Aanmaken', 'created_at_begin' => 'Begin aangemaakt', 'created_at_end' => 'Aan het eind aangemaakt', + 'text_quote' => 'Offerte', + 'text_code' => "CODE", 'setting' => [ 'nav_text' => 'Instellingen', 'backup' => [ diff --git a/resources/lang/nl/message.php b/resources/lang/nl/message.php index 53623e78..d97902cc 100644 --- a/resources/lang/nl/message.php +++ b/resources/lang/nl/message.php @@ -51,4 +51,18 @@ BODY, 'subject' => 'Eindtijd :exam_name veranderd', 'body' => 'De eindtijd van uw examen in uw exam_name is veranderd van :old_end_time naar :new_end_time. admin: :operator, reden: reden.', ], + + 'mail_dear' => "Dear ", + 'mail_you_received_a_pm' => "Je hebt een PM ontvangen.", + 'mail_sender' => "Afzender ", + 'mail_subject' => "Onderwerp: ", + 'mail_date' => "DatumLett ", + 'mail_use_following_url' => "Je kunt op  klikken", + 'mail_use_following_url_1' => " om het bericht te bekijken (je moet mogelijk inloggen).", + 'mail_yours' => "
    Jouren,", + 'mail_the_site_team' => "Het %s Team.", + 'mail_received_pm_from' => "Je hebt een PM ontvangen van ", + 'mail_here' => "HIER", + 'msg_system' => "Systeem", + 'msg_original_message_from' => "Oorspronkelijke bericht van ", ]; diff --git a/resources/lang/nl/nexus.php b/resources/lang/nl/nexus.php index 572627df..ff733535 100644 --- a/resources/lang/nl/nexus.php +++ b/resources/lang/nl/nexus.php @@ -17,4 +17,8 @@ return [ 'sum' => 'Sum', 'do_not_repeat' => 'Herhaal de bewerking alstublieft niet!', 'no_permission' => 'Geen toegang!', + 'sort' => 'sorteer veld', + 'order' => 'sorteer', + 'asc' => 'oplopende volgorde', + 'desc' => 'aflopende volgorde', ]; diff --git a/resources/lang/nl/oauth.php b/resources/lang/nl/oauth.php index 35ccc69f..d954d4bd 100644 --- a/resources/lang/nl/oauth.php +++ b/resources/lang/nl/oauth.php @@ -11,4 +11,20 @@ return [ 'btn_approve' => 'Autoriseer', 'btn_deny' => 'annuleren', 'skips_authorization' => 'Overslaan autorisatie', + 'client_id' => 'Klant ID', + 'authorization_endpoint_url' => 'URL autorisatie', + 'token_endpoint_url' => 'Get token URL', + 'user_info_endpoint_url' => 'Gebruikersinfo URL ophalen', + 'id_claim' => 'ID vordering', + 'username_claim' => 'gebruikersnaam claim', + 'email_claim' => 'e-mail vordering', + 'level_claim' => 'Naam van het level veld', + 'level_limit' => 'Niveau limiet', + 'level_limit_help' => 'Alleen gebruikers die niet onder dit niveau vallen, mogen inloggen', + 'get_access_token_error' => 'Fout bij toegangstoken ophalen: :error', + 'get _provider_user_id_error' => 'Niet in staat om gebruikers-ID op te halen via veld :id_claim', + 'get_provider_level_error' => 'Kan gebruikersniveau niet ophalen via veld :level_claim', + 'provider_level_not_ allowed' => 'Alleen gebruikers met level :level_limit of hoger zijn toegestaan om in te loggen', + 'provider_email_already_exists' => 'E-mail: :email is al in gebruik', + 'get_provider_email_error' => 'Kan e-mail van gebruiker niet ophalen via veld :email_claim', ]; diff --git a/resources/lang/nl/offer.php b/resources/lang/nl/offer.php new file mode 100644 index 00000000..1df81bee --- /dev/null +++ b/resources/lang/nl/offer.php @@ -0,0 +1,17 @@ + " heeft je toegestaan om te uploaden ", + 'msg_find_offer_option' => "U vindt een nieuwe optie op de upload pagina.", + 'msg_your_offer_allowed' => "Uw aanbieding is toegestaan", + 'msg_offer_voted_on' => "Er is gestemd op uw aanbod. U mag uploaden ", + 'msg_offer_voted_off' => "Uw aanbod is uitgestemd. Het is niet toegestaan om te uploaden ", + 'msg_voted_on' => " is gestemd over", + 'msg_offer_deleted' => "Je aanbieding is verwijderd", + 'msg_your_offer' => "Je aanbieding '", + 'msg_was_deleted_by' => "' was verwijderd door ", + 'msg_blank' => ".", + 'msg_you_must_upload_in' => "Upload de aanbieding binnen ", + 'msg_hours_otherwise' => " uren. Anders zou de aanbieding worden verwijderd.", + 'msg_reason_is' => "De reden: ", +]; diff --git a/resources/lang/nl/plugin.php b/resources/lang/nl/plugin.php index 8c1e0133..17fa5eca 100644 --- a/resources/lang/nl/plugin.php +++ b/resources/lang/nl/plugin.php @@ -2,17 +2,26 @@ return [ 'actions' => [ - 'install' => 'Installeren', - 'delete' => 'Verwijderen', - 'update' => 'Upgraden', + 'install' => 'installeren', + 'delete' => 'verwijderen', + 'update' => 'upgraden', + 'install_or_update' => 'installeren/upgraden', ], 'labels' => [ - 'display_name' => 'naam', - 'package_name' => 'Pakket naam', - 'remote_url' => 'Repository adres', - 'installed_version' => 'Geinstalleerde versie', - 'status' => 'status', - 'updated_at' => 'Laatste actie op', + 'display_name' => 'Naam', + 'package_ name' => 'pakket_naam', + 'remote_url' => 'repository_adres', + 'installed_version' => 'geïnstalleerde_versie', + 'latest_version' => 'latest_versie', + 'status' => 'Status', + 'updated_at' => 'laatste_uitvoerde_actie', + ' release_date' => 'bijgewerkt op', + 'install_title' => 'Ga naar de map: :web_root, en voer de volgende commando\'s uit om deze als root gebruiker te installeren: ', + 'introduce' => 'Beschrijving', + 'view_on_blog' => 'Bekijk op blog', + ' config_plugin_address' => 'Configureren van plugin adres', + 'download_specific_version' => 'Download de extensie. De laatste versie wordt hier getoond als je een andere versie wilt installeren (bekijk een blog om alle versies te zien) vervang deze zelf', + 'execute_install' => 'Installatie uitvoeren', ], 'status' => [ \App\Models\Plugin::STATUS_NORMAL => 'normaal', diff --git a/resources/lang/nl/subtitle.php b/resources/lang/nl/subtitle.php new file mode 100644 index 00000000..55612f7b --- /dev/null +++ b/resources/lang/nl/subtitle.php @@ -0,0 +1,7 @@ + " heeft de ondertitel die u heeft geüpload verwijderd. ", + 'msg_your_sub_deleted' => "Uw ondertitel is verwijderd", + 'msg_reason_is' => "De reden: ", +]; diff --git a/resources/lang/nl/torrent.php b/resources/lang/nl/torrent.php index 546a4c62..9cc0f39c 100644 --- a/resources/lang/nl/torrent.php +++ b/resources/lang/nl/torrent.php @@ -92,4 +92,18 @@ return [ \App\Models\Torrent::PROMOTION_TIME_TYPE_DEADLINE => 'Tot', ], 'paid_torrent' => 'Betaalde torrent', + 'msg_torrent_deleted' => "Je torrent is verwijderd", + 'msg_the_torrent_you_uploaded' => "De torrent die je hebt geüpload \"", + 'msg_was_deleted_by' => "' is verwijderd door ", + 'msg_reason_is' => ". De reden: ", + 'msg_reseed_request' => "Opnieuw doorgaan verzoek", + 'msg_reseed_user' => "Gebruiker ", + 'msg_ask_reseed' => " vroeg om een herstelling op torrent ", + 'msg_thank_you' => " !\nDank u!", + + 'msg_offer_you_voted' => "De aanbieding waar u voor gestemd hebt: ", + 'msg_was_uploaded_by' => " is geüpload door ", + 'msg_you_can_download' => ".\nJe kunt de Torrent downloaden", + 'msg_here' => " [b]hier[/b]", + 'msg_offer' => "Aanbieding ", ]; diff --git a/resources/lang/nl/user.php b/resources/lang/nl/user.php index a563e45b..cfc0e622 100644 --- a/resources/lang/nl/user.php +++ b/resources/lang/nl/user.php @@ -56,4 +56,57 @@ return [ ], 'username_already_exists' => 'Gebruikersnaam::gebruikersnaam bestaat al', 'username_invalid' => 'Gebruikersnaam::Gebruikersnaam ongeldig', + + 'msg_promoted' => "gepromoveerd", + 'msg_demoted' => "gedegradeerd", + 'msg_class_change' => "Les Wijzigen", + 'msg_you_have_been' => "Je bent geweest ", + 'msg_to' => " naar ", + 'msg_by' => " door ", + 'msg_warn_removed' => "Waarschuwing Verwijderd", + 'msg_your_warning_removed_by' => "Je waarschuwing is verwijderd door", + 'msg_you_are_warned_by' => "U bent [url=rules.php#warning] gewaarschuwd[/url] door ", + 'msg_reason' => "\n\nReden: ", + 'msg_week' => " Week", + 'msg_s' => "s", + 'msg_you_are_warned_for' => "U bent [url=rules.php#warning] gewaarschuwd[/url] voor ", + 'msg_you_are_warned' => "Je bent gewaarschuwd", + 'msg_posting_rights_restored' => "Posting Rights Hersteld", + 'msg_your_posting_rights_restored' => "Uw postrechten zijn teruggegeven door " , + 'msg_you_can_post' => ". U kunt opnieuw posten op het forum.", + 'msg_posting_rights_removed' => "Posting Rights Verwijderd", + 'msg_your_posting_rights_removed' => "Je postrechten zijn verwijderd door ", + 'msg_probable_reason' => ", waarschijnlijk vanwege een slechte houding of een slechte berichtgeving op postgebied.", + 'msg_upload_rights_restored' => "Hersteld uploadrechten", + 'msg_your_upload_rights_restored' => "Uw uploadrechten zijn teruggegeven door ", + 'msg_you_upload_can_upload' => ". Je kunt torrents opnieuw uploaden.", + 'msg_upload_rights_removed' => "Uploadrechten verwijderd", + 'msg_your_upload_rights_removed' => "Uw uploadrechten zijn verwijderd door ", + 'msg_probably_reason_two' => ", waarschijnlijk vanwege slechte torrent, .nfo of beschrijving.", + 'msg_download_rights_restored' => "Download rechten hersteld", + 'msg_your_download_rights_restored' => "Uw download rechten zijn teruggegeven door ", + 'msg_you_can_download' => ". Je kunt torrents opnieuw downloaden.", + 'msg_download_rights_removed' => "Download rechten verwijderd", + 'msg_your_download_rights_removed' => "Uw download rechten zijn verwijderd door ", + 'msg_probably_reason_three' => ", waarschijnlijk door een lage verhouding of slecht gedrag.", + 'msg_email_change' => "E-mail wijzigen", + 'msg_your_email_changed_from' => "Uw e-mailadres is gewijzigd van ", + 'msg_username_change' => "Gebruikersnaam is gewijzigd", + 'msg_your_username_changed_from' => "Je gebruikersnaam is veranderd van ", + 'msg_downloaded_change' => "Gedownloade hoeveelheid wijzigen", + 'msg_your_downloaded_changed_from' => "Uw gedownloade bedrag is gewijzigd van ", + 'msg_uploaded_change' => "Geüploade hoeveelheid wijziging", + 'msg_your_uploaded_changed_from' => "Uw geüploade bedrag is gewijzigd van ", + 'msg_bonus_change' => "Bonus bedrag wijziging", + 'msg_your_bonus_changed_from' => "Uw bonusbedrag is gewijzigd van ", + 'msg_invite_change' => "Nodig hoeveelheid te veranderen", + 'msg_your_invite_changed_from' => "Je uitnodigingsbedrag is veranderd van ", + 'msg_to_new' =>" naar ", + 'msg_your_vip_status_changed' => "Je VIP-status is veranderd", + 'msg_vip_status_changed_by' => "Je VIP-status veranderd door ", + 'msg_your_donor_status_changed' => "Je donorstatus is veranderd", + 'msg_donor_status_changed_by' => "Je donorstatus veranderd door ", + 'msg_invited_user_has_registered' => "Uitgenodigde gebruiker heeft zich geregistreerd", + 'msg_user_you_invited' => "De gebruiker die je hebt uitgenodigd ", + 'msg_has_registered' => " heeft zich zojuist geregistreerd.", ]; diff --git a/resources/lang/pl/admin.php b/resources/lang/pl/admin.php index 09aeaeaa..27681467 100644 --- a/resources/lang/pl/admin.php +++ b/resources/lang/pl/admin.php @@ -43,6 +43,8 @@ return [ 'oauth_auth_code' => 'Kody uwierzytelniania', 'oauth_refresh_token' => 'Odśwież tokeny', 'token' => 'Tokeny dostępu', + 'oauth_provider' => 'Dostawca autoryzacji', + 'queue_monitor' => 'Monitor kolejki', ], 'resources' => [ 'agent_allow' => [ diff --git a/resources/lang/pl/claim.php b/resources/lang/pl/claim.php index f691e6c9..4cf964b3 100644 --- a/resources/lang/pl/claim.php +++ b/resources/lang/pl/claim.php @@ -17,12 +17,12 @@ return [ 'msg_title' => 'Wynik rozliczenia z ostatniego miesiąca (:month):', 'msg_subject' => ':month roszczenie', - 'claim_total' => 'Zgłoś wszystkie torrenty: :suma', - 'claim_reached_counts' => 'Osiągnięto liczbę torrentów: :count', - 'claim_reached_summary' => 'Osiągnięto bonus torrenta na godzinę: :bonus_per_hour, średni czas ziarenka (godzina): :hours, uzyskaj sumę premii: :bonus_total', - 'claim_unreached_remain_counts' => 'Nieosiągnięty torrent pozostaje liczony: :count', - 'claim_unreached_remove_counts' => 'Nieosiągnięta liczba usuwania torrent: :count', - 'claim_unreached_summary' => 'Odlicz bonus każdego nieosiągniętego torrenta::deduct_per_torrent, całkowitym odliczeniem: :deduct_total', + 'claim_total' => 'Zgłoś wszystkie torrenty: [b]:suma[/b]', + 'claim_reached_counts' => 'Osiągnięto liczbę torrentów: [b]:count[/b]', + 'claim_reached_summary' => 'Osiągnięto bonus torrenta na godzinę: [b]:bonus_per_hour[/b], średni czas ziarenka (godzina): [b]:hours[/b], uzyskaj sumę premii: [b]:bonus_total[/b]', + 'claim_unreached_remain_counts' => 'Nieosiągnięty torrent pozostaje liczony: [b]:count[/b]', + 'claim_unreached_remove_counts' => 'Nieosiągnięta liczba usuwania torrent: [b]:count[/b]', + 'claim_unreached_summary' => 'Odlicz bonus każdego nieosiągniętego torrenta:[b]:deduct_per_torrent[/b], całkowitym odliczeniem: [b]:deduct_total[/b]', 'confirm_give_up' => 'Czy na pewno chcesz zrezygnować z pobierania tego torrentu?', 'add_claim' => 'Claim', diff --git a/resources/lang/pl/label.php b/resources/lang/pl/label.php index 0853083d..6edc19a7 100644 --- a/resources/lang/pl/label.php +++ b/resources/lang/pl/label.php @@ -34,7 +34,7 @@ return [ 'cancel' => 'Anuluj', 'reset' => 'Reset', 'anonymous' => 'Anonimowe', - 'infinite' => 'Nieskończone', + 'infinite' => 'W imieniu Komisji', 'save' => 'Zapisz', 'country' => 'W związku z powyższym Komisja stwierdza, że w okresie objętym dochodzeniem przeglądowym przywóz produktu objętego postępowaniem z ChRL nie mógł zostać objęty środkami antydumpingowymi.', 'city' => 'Miasto', @@ -44,6 +44,8 @@ return [ 'create' => 'Utwórz', 'created_at_begin' => 'Utworzono na początku', 'created_at_end' => 'Utworzono na końcu', + 'text_quote' => 'Oferta', + 'text_code' => "KOD", 'setting' => [ 'nav_text' => 'Ustawienie', 'backup' => [ diff --git a/resources/lang/pl/nexus.php b/resources/lang/pl/nexus.php index 00d5f5c5..bc06872e 100644 --- a/resources/lang/pl/nexus.php +++ b/resources/lang/pl/nexus.php @@ -17,4 +17,8 @@ return [ 'sum' => 'Sum', 'do_not_repeat' => 'Proszę nie powtarzać operacji!', 'no_permission' => 'Brak uprawnień!', + 'sort' => 'pole sortowania', + 'order' => 'sortuj', + 'asc' => 'Kolejność rosnąca', + 'desc' => 'malejąco', ]; diff --git a/resources/lang/pl/oauth.php b/resources/lang/pl/oauth.php index b5281f7b..4b4fbebc 100644 --- a/resources/lang/pl/oauth.php +++ b/resources/lang/pl/oauth.php @@ -11,4 +11,20 @@ return [ 'btn_approve' => 'Autoryzuj', 'btn_deny' => 'Anuluj', 'skips_authorization' => 'Pomiń autoryzację', + 'client_id' => 'Identyfikator klienta', + 'authorization_endpoint_url' => 'URL autoryzacji', + 'token_endpoint_url' => 'Get token URL', + 'user_info_endpoint_url' => 'Pobierz adres URL informacji o użytkowniku', + 'id_claim' => 'ID włości', + 'username_claim' => 'włości użytkownika', + 'email_claim' => 'roszczenie e-mail', + 'level_claim' => 'Nazwa pola poziomu', + 'level_limit' => 'Limit poziomu', + 'level_limit_help' => 'Zezwalaj tylko użytkownikom poniżej tego poziomu na logowanie', + 'get_access_token_error' => 'Błąd tokenu dostępu: :error', + 'get _provider_user_id_error' => 'Nie można uzyskać ID użytkownika przez pole :id_claim', + 'get_provider_level_error' => 'Nie można uzyskać poziomu użytkownika przez pole :level_claim', + 'provider_level_not_ allowed' => 'Tylko użytkownicy z poziomem :level_limit lub powyżej mogą się zalogować', + 'provider_email_already_exists' => 'E-mail: :email jest już w użyciu', + 'get_provider_email_error' => 'Nie można uzyskać wiadomości e-mail użytkownika przez pole :email_claim', ]; diff --git a/resources/lang/pl/plugin.php b/resources/lang/pl/plugin.php index b07d06a7..ecfd8ffc 100644 --- a/resources/lang/pl/plugin.php +++ b/resources/lang/pl/plugin.php @@ -2,17 +2,26 @@ return [ 'actions' => [ - 'install' => 'Zainstaluj', - 'delete' => 'Usuń', - 'update' => 'Ulepsz', + 'install' => 'zainstaluj', + 'delete' => 'usuń', + 'update' => 'aktualizacja', + 'install_or_update' => 'instalacja/aktualizacja', ], 'labels' => [ - 'display_name' => 'Nazwisko', - 'package_name' => 'Nazwa pakietu', - 'remote_url' => 'Adres repozytorium', - 'installed_version' => 'Zainstalowana wersja', - 'status' => 'Status', - 'updated_at' => 'Ostatnia akcja w', + 'display_name' => 'Nazwa', + 'package_ name' => 'nazwa_pakietu', + 'remote_url' => 'adres_repozytorium', + 'installed_version' => 'zainstalowana_wersja', + 'latest_version' => 'Ostatnia wersja', + 'status' => 'status', + 'updated_at' => 'Ostatni_wykonane_akcji_', + ' release_date' => 'zaktualizowano w', + 'install_title' => 'Przejdź do katalogu: :web_root i uruchom następujące polecenia w celu zainstalowania go jako użytkownika głównego: ', + 'introduce' => 'Szczegóły', + 'view_on_blog' => 'Zobacz na blogu', + ' config_plugin_address' => 'Skonfiguruj adres wtyczki', + 'download_specific_version' => 'Pobierz rozszerzenie. Najnowsza wersja jest tutaj wyświetlana, jeśli chcesz zainstalować inną wersję (zobacz na blogu, aby zobaczyć wszystkie wersje) zastąp ją sam.', + 'execute_install' => 'Wykonaj instalację', ], 'status' => [ \App\Models\Plugin::STATUS_NORMAL => 'Normalny', diff --git a/resources/lang/pt/admin.php b/resources/lang/pt/admin.php index 183af1d6..a066878e 100644 --- a/resources/lang/pt/admin.php +++ b/resources/lang/pt/admin.php @@ -43,6 +43,8 @@ return [ 'oauth_auth_code' => 'Códigos de autenticação', 'oauth_refresh_token' => 'Atualizar tokens', 'token' => 'Tokens de acesso', + 'oauth_provider' => 'Provedor de autorização', + 'queue_monitor' => 'Monitor de fila', ], 'resources' => [ 'agent_allow' => [ diff --git a/resources/lang/pt/claim.php b/resources/lang/pt/claim.php index b8923ab5..e6cbb5b2 100644 --- a/resources/lang/pt/claim.php +++ b/resources/lang/pt/claim.php @@ -17,12 +17,12 @@ return [ 'msg_title' => 'Solicitar pagamento no mês passado(:mês):', 'msg_subject' => ':mês de reivindicação de liquidação', - 'claim_total' => 'Reivindicar o total do torrent: :total', - 'claim_reached_counts' => 'Número de torrents alcançados: :count', - 'claim_reached_summary' => 'Torrent alcançado tem bônus por hora: :bonus_per_hour, média de semente (hora): :hours, receba o total de bônus: :bonus_total', - 'claim_unreached_remain_counts' => 'Torrent não alcançado permanece a contagem: :count', - 'claim_unreached_remove_counts' => 'Contagem para remover torrents não atingidos: :count', - 'claim_unreached_summary' => 'Deduzir bônus a cada torrent não alcançado::deduct_per_torrent, deduzir total: :deduct_total', + 'claim_total' => 'Reivindicar o total do torrent: [b]:total[/b]', + 'claim_reached_counts' => 'Número de torrents alcançados: [b]:count[/b]', + 'claim_reached_summary' => 'Torrent alcançado tem bônus por hora: [b]:bonus_per_hour[/b], média de semente (hora): [b]:hours[/b], receba o total de bônus: [b]:bonus_total[/b]', + 'claim_unreached_remain_counts' => 'Torrent não alcançado permanece a contagem: [b]:count[/b]', + 'claim_unreached_remove_counts' => 'Contagem para remover torrents não atingidos: [b]:count[/b]', + 'claim_unreached_summary' => 'Deduzir bônus a cada torrent não alcançado:[b]:deduct_per_torrent[/b], deduzir total: [b]:deduct_total[/b]', 'confirm_give_up' => 'Você tem certeza que deseja desistir de reivindicar este torrent?', 'add_claim' => 'Claim', diff --git a/resources/lang/pt/label.php b/resources/lang/pt/label.php index bb936050..bc9e0523 100644 --- a/resources/lang/pt/label.php +++ b/resources/lang/pt/label.php @@ -34,7 +34,7 @@ return [ 'cancel' => 'cancelar', 'reset' => 'Reset', 'anonymous' => 'Anônimo', - 'infinite' => 'Infinito', + 'infinite' => 'Info.', 'save' => 'Guardar', 'country' => 'País/região', 'city' => 'cidade', @@ -44,6 +44,8 @@ return [ 'create' => 'Crio', 'created_at_begin' => 'Criado no início', 'created_at_end' => 'Criado no final', + 'text_quote' => 'Cotação', + 'text_code' => "CÓDIGO", 'setting' => [ 'nav_text' => 'Configuração', 'backup' => [ diff --git a/resources/lang/pt/nexus.php b/resources/lang/pt/nexus.php index 51d58eb4..6007117f 100644 --- a/resources/lang/pt/nexus.php +++ b/resources/lang/pt/nexus.php @@ -17,4 +17,8 @@ return [ 'sum' => 'Sum', 'do_not_repeat' => 'Por favor, não repita a operação!', 'no_permission' => 'Sem permissão!', + 'sort' => 'campo de ordenação', + 'order' => 'ordenar', + 'asc' => 'ordem crescente', + 'desc' => 'ordem descendente', ]; diff --git a/resources/lang/pt/oauth.php b/resources/lang/pt/oauth.php index 46cec7fa..a438c931 100644 --- a/resources/lang/pt/oauth.php +++ b/resources/lang/pt/oauth.php @@ -11,4 +11,20 @@ return [ 'btn_approve' => 'Autorizar', 'btn_deny' => 'cancelar', 'skips_authorization' => 'Autorização de ignorados', + 'client_id' => 'ID do Cliente', + 'authorization_endpoint_url' => 'URL de autorização', + 'token_endpoint_url' => 'Get token URL', + 'user_info_endpoint_url' => 'Obter URL de informação do usuário', + 'id_claim' => 'ID reivindicação', + 'username_claim' => 'reivindicação de usuário', + 'email_claim' => 'solicitação por e-mail', + 'level_claim' => 'Nome do campo nível', + 'level_limit' => 'Limite de nível', + 'level_limit_help' => 'Permitir que usuários não abaixo deste nível façam login', + 'get_access_token_error' => 'Erro ao obter token de acesso: :error', + 'get _provider_user_id_error' => 'Não foi possível obter a ID do usuário via campo :id_claim', + 'get_provider_level_error' => 'Não é possível obter o nível de usuário via campo :level_claim', + 'provider_level_not_ allowed' => 'Apenas usuários com nível :level_limit ou acima estão autorizados a iniciar sessão', + 'provider_email_already_exists' => 'E-mail: :email já está em uso', + 'get_provider_email_error' => 'Não é possível obter o e-mail do usuário via campo :email_claim', ]; diff --git a/resources/lang/pt/plugin.php b/resources/lang/pt/plugin.php index d68d373e..3b06f245 100644 --- a/resources/lang/pt/plugin.php +++ b/resources/lang/pt/plugin.php @@ -2,17 +2,26 @@ return [ 'actions' => [ - 'install' => 'Instale', + 'install' => 'instalar', 'delete' => 'Excluir', - 'update' => 'PRO', + 'update' => 'atualização', + 'install_or_update' => 'instalar/atualizar', ], 'labels' => [ - 'display_name' => 'Nome:', - 'package_name' => 'Nome do pacote', - 'remote_url' => 'Endereço do repositório', - 'installed_version' => 'Versão instalada', - 'status' => 'SItuação', - 'updated_at' => 'Última ação em', + 'display_name' => 'Nome', + 'package_ name' => 'nome_pacote', + 'remote_url' => 'endereço_repositório', + 'installed_version' => 'versão_instalada', + 'latest_version' => 'última_versão', + 'status' => 'Status', + 'updated_at' => 'última_ação_executada_', + ' release_date' => 'atualizado em', + 'install_title' => 'Vá para o diretório: :web_root, e execute os seguintes comandos para instalá-lo como usuário raiz: ', + 'introduce' => 'detalhes', + 'view_on_blog' => 'Ver no blog', + ' config_plugin_address' => 'Configurar endereço do plugin', + 'download_specific_version' => 'Baixe a extensão. A versão mais recente é exibida aqui, se você precisar instalar outra versão (ver no blog para ver todas as versões) substitua-a você mesmo.', + 'execute_install' => 'Executar instalação', ], 'status' => [ \App\Models\Plugin::STATUS_NORMAL => 'normal', diff --git a/resources/lang/ro/admin.php b/resources/lang/ro/admin.php index a2d0889a..3cd0ce7f 100644 --- a/resources/lang/ro/admin.php +++ b/resources/lang/ro/admin.php @@ -43,6 +43,8 @@ return [ 'oauth_auth_code' => 'Coduri de autentificare', 'oauth_refresh_token' => 'Reîmprospătare jetoane', 'token' => 'Token-uri de acces', + 'oauth_provider' => 'Furnizor de autorizare', + 'queue_monitor' => 'Monitorul de coadă', ], 'resources' => [ 'agent_allow' => [ diff --git a/resources/lang/ro/claim.php b/resources/lang/ro/claim.php index b179f0ac..26378be3 100644 --- a/resources/lang/ro/claim.php +++ b/resources/lang/ro/claim.php @@ -17,12 +17,12 @@ return [ 'msg_title' => 'Revendică rezultatul din ultima lună (:lună):', 'msg_subject' => ':month Reclamație', - 'claim_total' => 'Revendicare totală torrent: :total', - 'claim_reached_counts' => 'Numărul torentelor atinse: :count', - 'claim_reached_summary' => 'Primește bonus torrent pe oră: :bonus_per_hour, media timpului de seed (oră): :hours, obține totalul bonus_total :bonus_total', - 'claim_unreached_remain_counts' => 'Torrentul neatins rămâne cont: :count', - 'claim_unreached_remove_counts' => 'Ștergerea torentului nereușită: :count', - 'claim_unreached_summary' => 'Deduce-bonus pentru fiecare torrent inatins::deduct_per_torrent, deducere totală: :deduct_total', + 'claim_total' => 'Revendicare totală torrent: [b]:total[/b]', + 'claim_reached_counts' => 'Numărul torentelor atinse: [b]:count[/b]', + 'claim_reached_summary' => 'Primește bonus torrent pe oră: [b]:bonus_per_hour[/b], media timpului de seed (oră): [b]:hours[/b], obține totalul bonus_total [b]:bonus_total[/b]', + 'claim_unreached_remain_counts' => 'Torrentul neatins rămâne cont: [b]:count[/b]', + 'claim_unreached_remove_counts' => 'Ștergerea torentului nereușită: [b]:count[/b]', + 'claim_unreached_summary' => 'Deduce-bonus pentru fiecare torrent inatins:[b]:deduct_per_torrent[/b], deducere totală: [b]:deduct_total[/b]', 'confirm_give_up' => 'Ești sigur că vrei să renunți să revendici acest torent?', 'add_claim' => 'Claim', diff --git a/resources/lang/ro/label.php b/resources/lang/ro/label.php index dd8b4dc6..9055e20f 100644 --- a/resources/lang/ro/label.php +++ b/resources/lang/ro/label.php @@ -34,7 +34,7 @@ return [ 'cancel' => 'Anulează', 'reset' => 'Reset', 'anonymous' => 'Anonim', - 'infinite' => 'Infinit', + 'infinite' => 'Inf.', 'save' => 'Salvează', 'country' => 'Țară', 'city' => 'Oraș', @@ -44,6 +44,8 @@ return [ 'create' => 'Crează', 'created_at_begin' => 'Creat la început', 'created_at_end' => 'Creat la sfârșit', + 'text_quote' => 'Ofertă', + 'text_code' => "COD", 'setting' => [ 'nav_text' => 'Setare', 'backup' => [ diff --git a/resources/lang/ro/nexus.php b/resources/lang/ro/nexus.php index 8daa4a27..1fc3cb48 100644 --- a/resources/lang/ro/nexus.php +++ b/resources/lang/ro/nexus.php @@ -17,4 +17,8 @@ return [ 'sum' => 'Sum', 'do_not_repeat' => 'Vă rugăm să nu repetați operațiunea!', 'no_permission' => 'Nici o permisiune!', + 'sort' => 'câmp sortare', + 'order' => 'sortare', + 'asc' => 'Ordine ascendentă', + 'desc' => 'Comanda descrescatoare', ]; diff --git a/resources/lang/ro/oauth.php b/resources/lang/ro/oauth.php index 3ec783e8..d677bedd 100644 --- a/resources/lang/ro/oauth.php +++ b/resources/lang/ro/oauth.php @@ -11,4 +11,20 @@ return [ 'btn_approve' => 'Autorizează', 'btn_deny' => 'Anulează', 'skips_authorization' => 'Sari autorizația', + 'client_id' => 'ID client', + 'authorization_endpoint_url' => 'URL-ul de autorizare', + 'token_endpoint_url' => 'Get token URL', + 'user_info_endpoint_url' => 'Obțineți URL-ul pentru informațiile utilizatorului', + 'id_claim' => 'Solicitare ID', + 'username_claim' => 'cerere nume utilizator', + 'email_claim' => 'solicitare e-mail', + 'level_claim' => 'Denumire camp nivel', + 'level_limit' => 'Limita de nivel', + 'level_limit_help' => 'Permite doar utilizatorilor care nu sunt sub acest nivel să se autentifice', + 'get_access_token_error' => 'Eroare la obținerea accesului token: :error', + 'get _provider_user_id_error' => 'Imposibil de obținut ID-ul utilizatorului prin câmpul :id_claim', + 'get_provider_level_error' => 'Imposibil de obținut nivelul de utilizator prin câmpul :level_claim', + 'provider_level_not_ allowed' => 'Numai utilizatorilor cu nivel :level_limit sau mai mare li se permite să se autentifice', + 'provider_email_already_exists' => 'E-mail: :email este deja în uz', + 'get_provider_email_error' => 'Imposibil de obținut e-mailul utilizatorului prin câmpul :email_claim', ]; diff --git a/resources/lang/ro/plugin.php b/resources/lang/ro/plugin.php index 10de3126..fc1c7cad 100644 --- a/resources/lang/ro/plugin.php +++ b/resources/lang/ro/plugin.php @@ -2,17 +2,26 @@ return [ 'actions' => [ - 'install' => 'Instalează', - 'delete' => 'Elimină', - 'update' => 'Actualizează', + 'install' => 'instalează', + 'delete' => 'şterge', + 'update' => 'upgradează', + 'install_or_update' => 'instalează/upgradează', ], 'labels' => [ - 'display_name' => 'Nume', - 'package_name' => 'Numele pachetului', - 'remote_url' => 'Adresă depozit', - 'installed_version' => 'Versiunea instalată', - 'status' => 'Status', - 'updated_at' => 'Ultima acţiune la', + 'display_name' => 'nume', + 'package_ name' => 'nume_pachet', + 'remote_url' => 'adresă_repozitori_', + 'installed_version' => 'versiune instalată', + 'latest_version' => 'versiune latest_', + 'status' => 'status', + 'updated_at' => 'ultima acțiune_executată_', + ' release_date' => 'actualizat la', + 'install_title' => 'Mergeți la director: :web_root, și executați următoarele comenzi pentru a le instala ca utilizator root: ', + 'introduce' => 'Detalii', + 'view_on_blog' => 'Vezi pe blog', + ' config_plugin_address' => 'Configurați adresa extensiei', + 'download_specific_version' => 'Descarcă extensia. Cea mai recentă versiune este afișată aici, dacă ai nevoie să instalezi o altă versiune (vizualizare pe blog pentru a vedea toate versiunile) o înlocuiești.', + 'execute_install' => 'Execută instalarea', ], 'status' => [ \App\Models\Plugin::STATUS_NORMAL => 'Normală', diff --git a/resources/lang/ru/admin.php b/resources/lang/ru/admin.php index 0e10320b..76a73986 100644 --- a/resources/lang/ru/admin.php +++ b/resources/lang/ru/admin.php @@ -43,6 +43,8 @@ return [ 'oauth_auth_code' => 'Коды авторизации', 'oauth_refresh_token' => 'Обновить токены', 'token' => 'Маркеры доступа', + 'oauth_provider' => 'Провайдер авторизации', + 'queue_monitor' => 'Монитор очереди', ], 'resources' => [ 'agent_allow' => [ diff --git a/resources/lang/ru/claim.php b/resources/lang/ru/claim.php index 08e58c41..632a5895 100644 --- a/resources/lang/ru/claim.php +++ b/resources/lang/ru/claim.php @@ -17,12 +17,12 @@ return [ 'msg_title' => 'Запросить результат расчета в прошлом месяце(:month):', 'msg_subject' => 'спор по требованию :month', - 'claim_total' => 'Claim torrent total: :total', - 'claim_reached_counts' => 'Достигнуто кол-во торрентов: :counts', - 'claim_reached_summary' => 'Достигнутые торренты получают бонус в час: :bonus_per_hour, среднее семенное время (час): :hours, получают бонус всего: :bonus_total', - 'claim_unreached_remain_counts' => 'Недостигнуто количество торрентов: :counts', - 'claim_unreached_remove_counts' => 'Неполученные значения удаления торрентов: :counts', - 'claim_unreached_summary' => 'Вычитать бонус каждого недостигнутого торрента::deduct_per_torrent, всего вычета: :deduct_total', + 'claim_total' => 'Claim torrent total: [b]:total[/b]', + 'claim_reached_counts' => 'Достигнуто кол-во торрентов: [b]:counts[/b]', + 'claim_reached_summary' => 'Достигнутые торренты получают бонус в час: [b]:bonus_per_hour[/b], среднее семенное время (час): [b]:hours[/b], получают бонус всего: [b]:bonus_total[/b]', + 'claim_unreached_remain_counts' => 'Недостигнуто количество торрентов: [b]:counts[/b]', + 'claim_unreached_remove_counts' => 'Неполученные значения удаления торрентов: [b]:counts[/b]', + 'claim_unreached_summary' => 'Вычитать бонус каждого недостигнутого торрента:[b]:deduct_per_torrent[/b], всего вычета: [b]:deduct_total[/b]', 'confirm_give_up' => 'Вы уверены, что хотите отказаться от этого торрента?', 'add_claim' => 'Claim', diff --git a/resources/lang/ru/label.php b/resources/lang/ru/label.php index f1cc325a..f2f0d43b 100644 --- a/resources/lang/ru/label.php +++ b/resources/lang/ru/label.php @@ -34,7 +34,7 @@ return [ 'cancel' => 'Отмена', 'reset' => 'Reset', 'anonymous' => 'Анонимный', - 'infinite' => 'Бесконечный', + 'infinite' => 'Inf.', 'save' => 'Сохранить', 'country' => 'Страна', 'city' => 'Город', @@ -44,6 +44,8 @@ return [ 'create' => 'Создать', 'created_at_begin' => 'Создано в начале', 'created_at_end' => 'Создано в конце', + 'text_quote' => 'Цитата', + 'text_code' => "КОД", 'setting' => [ 'nav_text' => 'Настройка', 'backup' => [ diff --git a/resources/lang/ru/nexus.php b/resources/lang/ru/nexus.php index e7f175fc..e2da58fe 100644 --- a/resources/lang/ru/nexus.php +++ b/resources/lang/ru/nexus.php @@ -17,4 +17,8 @@ return [ 'sum' => 'Sum', 'do_not_repeat' => 'Пожалуйста, не повторяйте операцию!', 'no_permission' => 'Нет разрешения!', + 'sort' => 'поле сортировки', + 'order' => 'сортировать', + 'asc' => 'по возрастанию', + 'desc' => 'по убыванию', ]; diff --git a/resources/lang/ru/oauth.php b/resources/lang/ru/oauth.php index 03261810..ea5d38ef 100644 --- a/resources/lang/ru/oauth.php +++ b/resources/lang/ru/oauth.php @@ -11,4 +11,20 @@ return [ 'btn_approve' => 'Авторизация', 'btn_deny' => 'Отмена', 'skips_authorization' => 'Пропускать авторизацию', + 'client_id' => 'ID клиента', + 'authorization_endpoint_url' => 'URL авторизации', + 'token_endpoint_url' => 'Get token URL', + 'user_info_endpoint_url' => 'Получить ссылку на информацию о пользователе', + 'id_claim' => 'ID претензии', + 'username_claim' => 'имя пользователя', + 'email_claim' => 'email запрос', + 'level_claim' => 'Название поля уровня', + 'level_limit' => 'Лимит уровня', + 'level_limit_help' => 'Разрешить только пользователям не ниже этого уровня для входа', + 'get_access_token_error' => 'Ошибка получения токена доступа: :error', + 'get _provider_user_id_error' => 'Не удается получить идентификатор пользователя через поле :id_claim', + 'get_provider_level_error' => 'Невозможно получить уровень пользователя через поле :level_claim', + 'provider_level_not_ allowed' => 'Вход разрешён только пользователям с уровнем :level_limit или выше', + 'provider_email_already_exists' => 'E-mail: :email уже используется', + 'get_provider_email_error' => 'Не удалось получить почту пользователя через поле :email_claim', ]; diff --git a/resources/lang/ru/plugin.php b/resources/lang/ru/plugin.php index 504592e8..20e06dfc 100644 --- a/resources/lang/ru/plugin.php +++ b/resources/lang/ru/plugin.php @@ -2,17 +2,26 @@ return [ 'actions' => [ - 'install' => 'Установить', - 'delete' => 'Удалить', - 'update' => 'Улучшить', + 'install' => 'установить', + 'delete' => 'удалять', + 'update' => 'обновить', + 'install_or_update' => 'установка/обновление', ], 'labels' => [ - 'display_name' => 'Наименование', - 'package_name' => 'Имя пакета', - 'remote_url' => 'Адрес репозитория', - 'installed_version' => 'Установленная версия', - 'status' => 'Статус', - 'updated_at' => 'Последнее действие в', + 'display_name' => 'имя', + 'package_ name' => 'имя пакета', + 'remote_url' => 'адрес репозитория', + 'installed_version' => 'установленная версия', + 'latest_version' => 'последняя версия', + 'status' => 'статус', + 'updated_at' => 'последний выполненный', + ' release_date' => 'обновлено', + 'install_title' => 'Перейдите в каталог: :web_root, и выполните следующие команды, чтобы установить его как суперпользователя: ', + 'introduce' => 'Детали', + 'view_on_blog' => 'Посмотреть в блоге', + ' config_plugin_address' => 'Настроить адрес плагина', + 'download_specific_version' => 'Скачать расширение. Последняя версия отображается здесь, если вам нужно установить другую версию (просмотреть в блоге, чтобы увидеть все версии) заменить ее самостоятельно', + 'execute_install' => 'Выполнить установку', ], 'status' => [ \App\Models\Plugin::STATUS_NORMAL => 'Обычный', diff --git a/resources/lang/sv/admin.php b/resources/lang/sv/admin.php index 769b8734..58cff5e5 100644 --- a/resources/lang/sv/admin.php +++ b/resources/lang/sv/admin.php @@ -43,6 +43,8 @@ return [ 'oauth_auth_code' => 'Auth koder', 'oauth_refresh_token' => 'Uppdatera tokens', 'token' => 'Tillgång till tokens', + 'oauth_provider' => 'Tillstånd leverantör', + 'queue_monitor' => 'Kö monitor', ], 'resources' => [ 'agent_allow' => [ diff --git a/resources/lang/sv/claim.php b/resources/lang/sv/claim.php index b8cf845e..573089b1 100644 --- a/resources/lang/sv/claim.php +++ b/resources/lang/sv/claim.php @@ -17,12 +17,12 @@ return [ 'msg_title' => 'Anspråk reglera resultat förra månaden (:month):', 'msg_subject' => ':month anspråk uppgörelse', - 'claim_total' => 'Anspråk torrent totalt: :total', - 'claim_reached_counts' => 'Nådda torrentantal: :counts', - 'claim_reached_summary' => 'Nådd torrent få bonus per timme: :bonus_per_hour, frö tid genomsnitt(timme): :hours, få bonus totalt: :bonus_total', - 'claim_unreached_remain_counts' => 'Onått torrent förblir räkningar: :counts', - 'claim_unreached_remove_counts' => 'Onått torrent ta bort siffror: :counts', - 'claim_unreached_summary' => 'Dra bonus varje ouppnådd torrent::deduct_per_torrent, total avdrag: :deduct_total', + 'claim_total' => 'Anspråk torrent totalt: [b]:total[/b]', + 'claim_reached_counts' => 'Nådda torrentantal: [b]:counts[/b]', + 'claim_reached_summary' => 'Nådd torrent få bonus per timme: [b]:bonus_per_hour[/b], frö tid genomsnitt(timme): [b]:hours[/b], få bonus totalt: [b]:bonus_total[/b]', + 'claim_unreached_remain_counts' => 'Onått torrent förblir räkningar: [b]:counts[/b]', + 'claim_unreached_remove_counts' => 'Onått torrent ta bort siffror: [b]:counts[/b]', + 'claim_unreached_summary' => 'Dra bonus varje ouppnådd torrent:[b]:deduct_per_torrent[/b], total avdrag: [b]:deduct_total[/b]', 'confirm_give_up' => 'Är du säker på att du vill ge upp att hävda denna torrent?', 'add_claim' => 'Claim', diff --git a/resources/lang/sv/label.php b/resources/lang/sv/label.php index ffa5aea1..662dca34 100644 --- a/resources/lang/sv/label.php +++ b/resources/lang/sv/label.php @@ -34,7 +34,7 @@ return [ 'cancel' => 'Avbryt', 'reset' => 'Reset', 'anonymous' => 'Anonym', - 'infinite' => 'Oändlig', + 'infinite' => 'Inf.', 'save' => 'Spara', 'country' => 'Land', 'city' => 'Stad', @@ -44,6 +44,8 @@ return [ 'create' => 'Skapa', 'created_at_begin' => 'Skapad vid start', 'created_at_end' => 'Skapad vid slutet', + 'text_quote' => 'Offert', + 'text_code' => "Kod", 'setting' => [ 'nav_text' => 'Inställning', 'backup' => [ diff --git a/resources/lang/sv/nexus.php b/resources/lang/sv/nexus.php index 2a6f754e..3cd2363e 100644 --- a/resources/lang/sv/nexus.php +++ b/resources/lang/sv/nexus.php @@ -17,4 +17,8 @@ return [ 'sum' => 'Sum', 'do_not_repeat' => 'Var snäll och upprepa inte åtgärden!', 'no_permission' => 'Ingen behörighet!', + 'sort' => 'sortera fält', + 'order' => 'sortera', + 'asc' => 'stigande ordning', + 'desc' => 'fallande ordning', ]; diff --git a/resources/lang/sv/oauth.php b/resources/lang/sv/oauth.php index c498fae2..398b646e 100644 --- a/resources/lang/sv/oauth.php +++ b/resources/lang/sv/oauth.php @@ -11,4 +11,20 @@ return [ 'btn_approve' => 'Auktorisera', 'btn_deny' => 'Avbryt', 'skips_authorization' => 'Hoppar över auktorisering', + 'client_id' => 'Klient ID', + 'authorization_endpoint_url' => 'URL för auktorisering', + 'token_endpoint_url' => 'Get token URL', + 'user_info_endpoint_url' => 'Hämta URL för användarinformation', + 'id_claim' => 'ID anspråk', + 'username_claim' => 'Användarnamn anspråk', + 'email_claim' => 'E-posta anspråk', + 'level_claim' => 'Nivå fältnamn', + 'level_limit' => 'Nivå gräns', + 'level_limit_help' => 'Tillåt endast användare som inte är under denna nivå att logga in', + 'get_access_token_error' => 'Fel på åtkomsttoken: :error', + 'get _provider_user_id_error' => 'Det går inte att få användar-ID via fältet :id_claim', + 'get_provider_level_error' => 'Det går inte att få användarnivå via fältet :level_claim', + 'provider_level_not_ allowed' => 'Endast användare med nivå :level_limit eller högre är tillåtna att logga in', + 'provider_email_already_exists' => 'E-post: :email används redan', + 'get_provider_email_error' => 'Det går inte att få användarens e-post via fältet :email_claim', ]; diff --git a/resources/lang/sv/plugin.php b/resources/lang/sv/plugin.php index 6cc74408..b43850b8 100644 --- a/resources/lang/sv/plugin.php +++ b/resources/lang/sv/plugin.php @@ -2,17 +2,26 @@ return [ 'actions' => [ - 'install' => 'Installera', - 'delete' => 'Radera', - 'update' => 'Uppgradera', + 'install' => 'installera', + 'delete' => 'radera', + 'update' => 'uppgradera', + 'install_or_update' => 'installera/uppgradera', ], 'labels' => [ - 'display_name' => 'Namn', - 'package_name' => 'Paketets namn', - 'remote_url' => 'Utvecklingskatalog', - 'installed_version' => 'Installerad version', - 'status' => 'Status', - 'updated_at' => 'Senaste åtgärd den', + 'display_name' => 'namn', + 'package_ name' => 'paketnamn', + 'remote_url' => 'Adress', + 'installed_version' => 'Version', + 'latest_version' => 'Senaste version', + 'status' => 'status', + 'updated_at' => 'Åtgärd', + ' release_date' => 'uppdaterades den', + 'install_title' => 'Gå till katalogen: :web_root, och kör följande kommandon för att installera det som root användare: ', + 'introduce' => 'Detaljer', + 'view_on_blog' => 'Visa på bloggen', + ' config_plugin_address' => 'Konfigurera tilläggsadress', + 'download_specific_version' => 'Ladda ner tillägget. Den senaste versionen visas här, om du behöver installera en annan version (visa på bloggen för att se alla versioner) ersätta den själv', + 'execute_install' => 'Utför installation', ], 'status' => [ \App\Models\Plugin::STATUS_NORMAL => 'Normal',