1*5e01796dSAndreas Gohr<?php 2*5e01796dSAndreas Gohr/** 3*5e01796dSAndreas Gohr * Greek language file 4*5e01796dSAndreas Gohr * 5*5e01796dSAndreas Gohr * Based on DokuWiki Version rc2007-05-24 english language file 6*5e01796dSAndreas Gohr * Original english language file contents included for reference 7*5e01796dSAndreas Gohr * 8*5e01796dSAndreas Gohr * @author Thanos Massias <tm@thriasio.gr> 9*5e01796dSAndreas Gohr */ 10*5e01796dSAndreas Gohr 11*5e01796dSAndreas Gohr// settings must be present and set appropriately for the language 12*5e01796dSAndreas Gohr $lang['encoding'] = 'utf-8'; 13*5e01796dSAndreas Gohr $lang['direction'] = 'ltr'; 14*5e01796dSAndreas Gohr 15*5e01796dSAndreas Gohr// for admin plugins, the menu prompt to be displayed in the admin menu 16*5e01796dSAndreas Gohr// if set here, the plugin doesn't need to override the getMenuText() method 17*5e01796dSAndreas Gohr// $lang['menu'] = 'Revert Manager'; 18*5e01796dSAndreas Gohr $lang['menu'] = 'Αποκατάσταση κακόβουλων αλλαγών σελίδων'; 19*5e01796dSAndreas Gohr 20*5e01796dSAndreas Gohr// custom language strings for the plugin 21*5e01796dSAndreas Gohr 22*5e01796dSAndreas Gohr// $lang['filter'] = 'Search spammy pages'; 23*5e01796dSAndreas Gohr $lang['filter'] = 'Αναζήτηση σελίδων που περιέχουν spam'; 24*5e01796dSAndreas Gohr// $lang['revert'] = 'Revert selected pages'; 25*5e01796dSAndreas Gohr $lang['revert'] = 'Επαναφορά παλαιότερων εκδόσεων των επιλεγμένων σελίδων'; 26*5e01796dSAndreas Gohr// $lang['reverted'] = '%s reverted to revision %s'; 27*5e01796dSAndreas Gohr $lang['reverted'] = 'Η σελίδα %s επεναφέρθηκε στην έκδοση %s'; 28*5e01796dSAndreas Gohr// $lang['removed'] = '%s removed'; 29*5e01796dSAndreas Gohr $lang['removed'] = 'Η σελίδα %s διαγράφηκε'; 30*5e01796dSAndreas Gohr// $lang['revstart'] = 'Reversion process started. This can take a long time. If the 31*5e01796dSAndreas Gohr// script times out before finishing, you need to revert in smaller 32*5e01796dSAndreas Gohr// chunks.'; 33*5e01796dSAndreas Gohr $lang['revstart'] = 'Η διαδικασία αποκατάστασης άρχισε. Αυτό ίσως πάρει αρκετό χρόνο. 34*5e01796dSAndreas Gohr Εάν η εφαρμογή υπερβεί το διαθέσιμο χρονικό όριο και τερματιστεί 35*5e01796dSAndreas Gohr πριν τελειώσει, θα χρειαστεί να επαναλάβετε αυτή τη διαδικασία για μικρότερα τμήματα.'; 36*5e01796dSAndreas Gohr// $lang['revstop'] = 'Reversion process finished successfully.'; 37*5e01796dSAndreas Gohr $lang['revstop'] = 'Η διαδικασία αποκατάστασης ολοκληρώθηκε με επιτυχία.'; 38*5e01796dSAndreas Gohr// $lang['note1'] = 'Note: this search is case sensitive'; 39*5e01796dSAndreas Gohr $lang['note1'] = '<br />Σημείωση: η αναζήτηση επηρεάζεται από το εάν οι χαρακτήρες είναι πεζοί ή κεφαλαίοι'; 40*5e01796dSAndreas Gohr// $lang['note2'] = 'Note: the page will be reverted to the last version not containing the given spam term <i>%s</i>.'; 41*5e01796dSAndreas Gohr $lang['note2'] = '<br />Σημείωση: η σελίδα θα επαναφερθεί στην πλέον πρόσφατη έκδοση που δεν περιέχει τον όρο <i>%s</i>.'; 42*5e01796dSAndreas Gohr 43*5e01796dSAndreas Gohr//Setup VIM: ex: et ts=4 enc=utf-8 : 44