| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- /**
- * Plugin English lexicon topic
- *
- * @language en
- * @package modx
- * @subpackage lexicon
- */
- $_lang['event'] = 'Zdarzenie';
- $_lang['events'] = 'Zdarzenia';
- $_lang['plugin'] = 'Wtyczka';
- $_lang['plugin_add'] = 'Dodaj Plugin';
- $_lang['plugin_add_to_event'] = 'Dodaj wtyczkę do zdarzenia';
- $_lang['plugin_code'] = 'Kod wtyczki (php)';
- $_lang['plugin_config'] = 'Konfiguracja wtyczki';
- $_lang['plugin_desc'] = 'Opis';
- $_lang['plugin_desc_category'] = 'The Category this Plugin belongs in.';
- $_lang['plugin_desc_description'] = 'Krótki opis wtyczki.';
- $_lang['plugin_desc_name'] = 'Nazwa wtyczki.';
- $_lang['plugin_delete_confirm'] = 'Czy na pewno chcesz usunąć wtyczkę?';
- $_lang['plugin_disabled'] = 'Inactive plugin';
- $_lang['plugin_disabled_msg'] = 'Plugin is deactivated and will not respond to events.';
- $_lang['plugin_duplicate_confirm'] = 'Are you sure you want to duplicate this plugin?';
- $_lang['plugin_err_create'] = 'An error occurred while creating the plugin.';
- $_lang['plugin_err_ae'] = 'Wtyczka o nazwie: "[[+name]]", już istnieje.';
- $_lang['plugin_err_invalid_name'] = 'Niepoprawna nazwa wtyczki.';
- $_lang['plugin_err_duplicate'] = 'An error occurred while trying to duplicate the plugin.';
- $_lang['plugin_err_nf'] = 'Nie znaleziono wtyczki!';
- $_lang['plugin_err_ns'] = 'Pluginu nie określono.';
- $_lang['plugin_err_ns_name'] = 'Proszę podać nazwę wtyczki.';
- $_lang['plugin_err_remove'] = 'An error occurred while removing the plugin.';
- $_lang['plugin_err_save'] = 'An error occurred while saving the plugin.';
- $_lang['plugin_event_err_duplicate'] = 'Wystąpił błąd podczas próby powielenia pluginy wydarzeń';
- $_lang['plugin_event_err_nf'] = 'Plugin event not found.';
- $_lang['plugin_event_err_ns'] = 'Plugin event not specified.';
- $_lang['plugin_event_err_remove'] = 'An error occurred while removing the plugin event.';
- $_lang['plugin_event_err_save'] = 'An error occurred while saving the plugin event.';
- $_lang['plugin_event_msg'] = 'Select the events that you would like this plugin to listen to.';
- $_lang['plugin_event_plugin_remove_confirm'] = 'Czy na pewno chcesz usunąć ten plugin z tego wydarzenia?';
- $_lang['plugin_event_update'] = 'Update Plugin Event';
- $_lang['plugin_lock'] = 'Plugin locked for editing';
- $_lang['plugin_lock_msg'] = 'Users must have the edit_locked attribute in order to edit this plugin.';
- $_lang['plugin_locked_message'] = 'Ta wtyczka jest zablokowana.';
- $_lang['plugin_management_msg'] = 'Tutaj możesz wybrać, którą wtyczkę chcesz edytować.';
- $_lang['plugin_msg'] = 'Here you can add/edit plugins. Plugins are \'raw\' PHP codes that are invoked whenever the selected System Events are triggered.';
- $_lang['plugin_name'] = 'Nazwa wtyczki';
- $_lang['plugin_new'] = 'Nowy Plugin';
- $_lang['plugin_priority'] = 'Edit Plugin Execution Order by Event';
- $_lang['plugin_properties'] = 'Właściwości wtyczki';
- $_lang['plugin_title'] = 'Utwórz/edytuj wtyczkę';
- $_lang['plugin_untitled'] = 'Wtyczka bez tytułu';
- $_lang['plugins'] = 'Pluginy';
|