Objects' operations ordered. Many new strings created
authorslubek <slubek>
Thu, 23 Jan 2003 00:47:26 +0000 (00:47 +0000)
committerslubek <slubek>
Thu, 23 Jan 2003 00:47:26 +0000 (00:47 +0000)
lang/english.php
lang/polish.php
lang/recoded/english.php
lang/recoded/polish.php

index aafe1fbd29d4f7e8df47453643d8200467385586..e0c17cc07352d0808ee4e0a50614328999e71158 100755 (executable)
@@ -1,10 +1,10 @@
 <?php
 
        /**
-        * Language template file for WebDB.  Use this to base language
+        * Language template file for WebDB. Use this to base language
         * files.
         *
-        * $Id: english.php,v 1.46 2003/01/21 23:09:53 slubek Exp $
+        * $Id: english.php,v 1.47 2003/01/23 00:47:26 slubek Exp $
         */
 
        // Language and character set
        $strActions = 'Actions';        
        $strName = 'Name';
        $strDefinition = 'Definition';
-       $strSequence = 'Sequence';
-       $strSequences = 'Sequences';
        $strOperators = 'Operators';
-       $strTypes = 'Types';
        $strAggregates = 'Aggregates';
        $strProperties = 'Properties';
        $strBrowse = 'Browse';
        $strFailed = 'Failed';
        $strCreate = 'Create';
        $strComment = 'Comment';
-       $strNext = 'Next';
        $strLength = 'Length';
        $strDefault = 'Default';
        $strAlter = 'Alter';
        $strCancel = 'Cancel';
        $strSave = 'Save';
+       $strReset = 'Reset';
        $strInsert = 'Insert';
        $strSelect = 'Select';
        $strDelete = 'Delete';
@@ -52,6 +49,7 @@
        $strYes = 'Yes';
        $strNo = 'No';
        $strEdit = 'Edit';
+       $strColumns = 'Columns';
        $strRows = 'row(s)';
        $strExample = 'eg.';
        $strBack = 'Back';
        $strShow = 'Show';
        $strEmpty = 'Empty';
        $strLanguage = 'Language';
+       $strEncoding = 'Encoding';
+       $strValue = 'Value';
+       $strUnique = 'Unique';
+       $strPrimary = 'Primary';
+       $strExport = 'Export';
 
        // Error handling
        $strNoFrames = 'You need a frames-enabled browser to use this application.';
-       $strBadConfig = 'Your config.inc.php is out of date.  You will need to regenerate it from the new config.inc.php-dist.';
+       $strBadConfig = 'Your config.inc.php is out of date. You will need to regenerate it from the new config.inc.php-dist.';
        $strNotLoaded = 'You have not compiled proper database support into your PHP installation.';
        $strBadSchema = 'Invalid schema specified.';
        $strBadEncoding = 'Failed to set client encoding in database.';
        $strNoData = 'No rows found.';
 
        // Tables
-       $strNoTables = 'No tables found.';
-       $strNoTable = 'No table found.';
        $strTable = 'Table';
        $strTables = 'Tables';
+       $strShowAllTables = 'Show All Tables';
+       $strNoTables = 'No tables found.';
+       $strNoTable = 'No table found.';
+       $strCreateTable = 'Create table';
+       $strTableName = 'Table name';
+       $strTableNeedsName = 'You must give a name for your table.';
+       $strTableNeedsField = 'You must specify at least one field.';
+       $strTableNeedsCols = 'You must give a valid number of columns.';
        $strTableCreated = 'Table created.';
        $strTableCreatedBad = 'Table creation failed.';
-       $strTableNeedsField = 'You must specify at least one field.';
+       $strConfDropTable = 'Are you sure you want to drop the table "%s"?';
+       $strTableDropped = 'Table dropped.';
+       $strTableDroppedBad = 'Table drop failed.';
+       $strConfEmptyTable = 'Are you sure you want to empty the table "%s"?';
+       $strTableEmptied = 'Table emptied.';
+       $strTableEmptiedBad = 'Table empty failed.';
        $strInsertRow = 'Insert Row';
        $strRowInserted = 'Row inserted.';
        $strRowInsertedBad = 'Row insert failed.';
        $strRowDeleted = 'Row deleted.';
        $strRowDeletedBad = 'Row deletion failed.';
        $strSaveAndRepeat = 'Save & Repeat';
-       $strConfEmptyTable = 'Are you sure you want to empty the table "%s"?';
-       $strTableEmptied = 'Table emptied.';
-       $strTableEmptiedBad = 'Table empty failed.';
-       $strConfDropTable = 'Are you sure you want to drop the table "%s"?';
-       $strTableDropped = 'Table dropped.';
-       $strTableDroppedBad = 'Table drop failed.';
+       $strField = 'Field';
+       $strFields = 'Fields';
+       $strNumFields = 'Num. Of Fields';
 
        // Users
        $strUserAdmin = 'User Admin';
        $strGroupAdmin = 'Group Admin';
        $strGroup = 'Group';
        $strGroups = 'Groups';
+       $strNoGroup = 'Group not found.';
        $strNoGroups = 'No groups found.';
        $strCreateGroup = 'Create Group';
        $strShowAllGroups = 'Show All Groups';
        // Databases
        $strDatabase = 'Database';
        $strDatabases = 'Databases';
+       $strShowAllDatabases = 'Show all databases';
+       $strNoDatabase = 'No Database found.';
        $strNoDatabases = 'No Databases found.';
+       $strCreateDatabase = 'Create database';
+       $strDatabaseName = 'Database name';
        $strDatabaseNeedsName = 'You must give a name for your database.';
        $strDatabaseCreated = 'Database created.';
        $strDatabaseCreatedBad = 'Database creation failed.';   
-
+       $strConfDropDatabase = 'Are you sure you want to drop the database "%s"?';
+       $strDatabaseDropped = 'Database dropped.';
+       $strDatabaseDroppedBad = 'Database drop failed.';
+       
        // Views
-       $strViewNeedsName = 'You must give a name for your view.';
-       $strViewNeedsDef = 'You must give a definition for your view.';
-       $strCreateView = 'Create View';
-       $strNoViews = 'No views found.';
        $strView = 'View';
        $strViews = 'Views';
+       $strShowAllViews = 'Show all views';
+       $strNoView = 'No view found.';
+       $strNoViews = 'No views found.';
+       $strCreateView = 'Create View';
+       $strViewName = 'View name';
+       $strViewNeedsName = 'You must give a name for your view.';
+       $strViewNeedsDef = 'You must give a definition for your view.';
+       $strViewCreated = 'View created.';
+       $strViewCreatedBad = 'View creation failed.';
+       $strConfDropView = 'Are you sure you want to drop the view "%s"?';
+       $strViewDropped = 'View dropped.';
+       $strViewDroppedBad = 'View drop failed.';
 
        // Sequences
+       $strSequence = 'Sequence';
+       $strSequences = 'Sequences';
+       $strShowAllSequences = 'Show all sequences';
+       $strNoSequence = 'No sequence found.';
        $strNoSequences = 'No sequences found.';
+       $strCreateSequence = 'Create sequence';
        $strSequenceName = 'sequence_name';
        $strLastValue = 'last_value';
        $strIncrementBy = 'increment_by';       
        $strLogCount = 'log_cnt';
        $strIsCycled = 'is_cycled';
        $strIsCalled = 'is_called';
-       $strReset =     'Reset';
+       $strSequenceNeedsName = 'You must specify a name of sequence.';
+       $strSequenceCreated = 'Sequence created.';
+       $strSequenceCreatedBad = 'Sequence creation failed.'; 
+       $strConfDropSequence = 'Are you sure you want to drop sequence "%s"?';
+       $strSequenceDropped = 'Sequence dropped.';
+       $strSequenceDroppedBad = 'Sequence drop failed.';
 
        // Indexes
        $strIndexes = 'Indexes';
        $strIndexName = 'Index Name';
-       $strTabName = 'Tab Name';
-       $strColumnName = 'Column Name';
-       $strUniqueKey = 'Unique Key';
-       $strPrimaryKey = 'Primary Key';
        $strShowAllIndexes = 'Show All Indexes';
+       $strNoIndex = 'No index found.';
+       $strNoIndexes = 'No indexes found.';
        $strCreateIndex = 'Create Index';
+       $strIndexName = 'Index name';
+       $strTabName = 'Tab Name';
+       $strColumnName = 'Column Name';
        $strIndexNeedsName = 'You must give a name for your index';
        $strIndexNeedsCols = 'You must give a valid number of columns.';
        $strIndexCreated = 'Index created';
        $strConfDropIndex = 'Are you sure you want to drop the index "%s"?';
        $strIndexDropped = 'Index dropped.';
        $strIndexDroppedBad = 'Index drop failed.';
+       $strKeyName = 'Key Name';
+       $strUniqueKey = 'Unique Key';
+       $strPrimaryKey = 'Primary Key';
 
        // Rules
        $strRules = 'Rules';
        $strRule = 'Rule';
+       $strShowAllRules = 'Show all Rules';
+       $strNoRule = 'No rule found.';
        $strNoRules = 'No rules found.';
-       $strCreateRule = 'Create Rule';
+       $strCreateRule = 'Create rule';
+       $strRuleName = 'Rule name';
+       $strRuleNeedsName = 'You must specify a name of rule.';
+       $strRuleCreated = 'Rule created.';
+       $strRuleCreatedBad = 'Rule creation failed.';
        $strConfDropRule = 'Are you sure you want to drop the rule "%s" on "%s"?';
        $strRuleDropped = 'Rule dropped.';
        $strRuleDroppedBad = 'Rule drop failed.';
 
-       // Tables
-       $strField = 'Field';
-       $strFields = 'Fields';
-       $strType = 'Type';
-       $strValue = 'Value';
-       $strShowAllTables = 'Show All Tables';
-       $strUnique = 'Unique';
-       $strPrimary = 'Primary';
-       $strKeyName = 'Key Name';
-       $strNumFields = 'Num. Of Fields';
-       $strCreateTable = 'Create Table';
-       $strTableNeedsName = 'You must give a name for your table.';
-       $strTableNeedsCols = 'You must give a valid number of columns.';
-       $strExport = 'Export';
-       $strColumns = 'Columns';
-
        // Constraints
        $strConstraints = 'Constraints';
+       $strShowAllConstraints = 'Show all constraints';
        $strNoConstraints = 'No constraints found.';
        $strCreateConstraint = 'Create Constraint';
+       $strConstraintCreated = 'Constraint created.';
+       $strConstraintCreatedBad = 'Constraint creation failed.';
        $strConfDropConstraint = 'Are you sure you want to drop the constraint "%s" on "%s"?';
        $strConstraintDropped = 'Constraint dropped.';
        $strConstraintDroppedBad = 'Constraint drop failed.';
 
        // Functions
-       $strNoFunctions = 'No functions found.';
        $strFunction = 'Function';
        $strFunctions = 'Functions';
+       $strShowAllFunctions = 'Show all functions';
+       $strNoFunction = 'No function found.';
+       $strNoFunctions = 'No functions found.';
+       $strCreateFunction = 'Create function';
+       $strFunctionName = 'Function name';
        $strReturns = 'Returns';
        $strArguments = 'Arguments';
        $strFunctionNeedsName = 'You must give a name for your function.';
        $strFunctionNeedsDef = 'You must give a definition for your function.';
+       $strFunctionCreated = 'Function created.';
+       $strFunctionCreatedBad = 'Function creation failed.';
+       $strConfDropFunction = 'Are you sure you want to drop the function "%s"?';
+       $strFunctionDropped = 'Function dropped.';
+       $strFunctionDroppedBad = 'Function drop failed.';
 
        // Triggers
        $strTrigger = 'Trigger';
        $strTriggers = 'Triggers';
+       $strShowAllTriggers = 'Show all triggers';
+       $strNoTrigger = 'No trigger found.';
        $strNoTriggers = 'No triggers found.';
        $strCreateTrigger = 'Create Trigger';
+       $strTriggerName = 'Trigger name';
+       $strTriggerNeedsName = 'You must specify a name of trigger.';
+       $strTriggerCreated = 'Trigger created.';
+       $strTriggerCreatedBad = 'Trigger creation failed.';
        $strConfDropTrigger = 'Are you sure you want to drop the trigger "%s" on "%s"?';
        $strTriggerDropped = 'Trigger dropped.';
        $strTriggerDroppedBad = 'Trigger drop failed.';
-
+       
        // Types
        $strType = 'Type';
        $strTypes = 'Types';
+       $strShowAllTypes = 'Show all types';
+       $strNoType = 'No type found.';
        $strNoTypes = 'No types found.';
        $strCreateType = 'Create Type';
-       $strConfDropType = 'Are you sure you want to drop the type "%s"?';
-       $strTypeDropped = 'Type dropped.';
-       $strTypeDroppedBad = 'Type drop failed.';
-       $strTypeCreated = 'Type created';
-       $strTypeCreatedBad = 'Type creation failed.';
-       $strShowAllTypes = 'Show all types';
+       $strTypeName = 'Type name';
        $strInputFn = 'Input function';
        $strOutputFn = 'Output function';
        $strPassByVal = 'Passed by val?';
        $strStorage = 'Storage';
        $strTypeNeedsName = 'You must give a name for your type.';
        $strTypeNeedsLen = 'You must give a length for your type.';
+       $strTypeCreated = 'Type created';
+       $strTypeCreatedBad = 'Type creation failed.';
+       $strConfDropType = 'Are you sure you want to drop the type "%s"?';
+       $strTypeDropped = 'Type dropped.';
+       $strTypeDroppedBad = 'Type drop failed.';
 
        // Schemas
        $strSchema = 'Schema';
        $strSchemas = 'Schemas';
-       $strCreateSchema = 'Create Schema';
+       $strShowAllSchemas = 'Show All Schemas';
+       $strNoSchema = 'No schema found.';
        $strNoSchemas = 'No schemas found.';
+       $strCreateSchema = 'Create Schema';
+       $strSchemaName = 'Schema name';
+       $strSchemaNeedsName = 'You must give a name for your schema.';
+       $strSchemaCreated = 'Schema created';
+       $strSchemaCreatedBad = 'Schema creation failed.';
        $strConfDropSchema = 'Are you sure you want to drop the schema "%s"?';
        $strSchemaDropped = 'Schema dropped.';
        $strSchemaDroppedBad = 'Schema drop failed.';
-       $strSchemaCreated = 'Schema created';
-       $strSchemaCreatedBad = 'Schema creation failed.';
-       $strShowAllSchemas = 'Show All Schemas';
-       $strSchemaNeedsName = 'You must give a name for your schema.';
        
        // Miscellaneous
        $strTopBar = '%s running on %s:%s -- You are logged in as user "%s", %s';
index 9cc5818c8e9f6b2ce0bd69618b4a6330f651c486..808dd354fece845f18cbe9f4253a5af3ba27f16a 100644 (file)
@@ -4,7 +4,7 @@
         * Polish language file for WebDB.
         * @maintainer Rafal Slubowski [slubek@users.sourceforge.net]
         *
-        * $Id: polish.php,v 1.8 2003/01/21 23:09:53 slubek Exp $
+        * $Id: polish.php,v 1.9 2003/01/23 00:47:26 slubek Exp $
         */
 
        // Language and character set
        $strActions = 'Akcje';  
        $strName = 'Nazwa';
        $strDefinition = 'Definicja';
-       $strSequence = 'Sekwencja';
-       $strSequences = 'Sekwencje';
        $strOperators = 'Operatory';
-       $strTypes = 'Typy';
        $strAggregates = 'Funkcje agreguj±ce';
        $strProperties = 'W³a¶ciwo¶ci';
        $strBrowse = 'Przegl±daj';
        $strNext = 'Nastêpny';
        $strFailed = 'Nieudany';
        $strCreate = 'Utwórz';
-       $strComment = 'Skomentuj';
+       $strComment = 'Komentarz';
        $strLength = 'D³ugo¶æ';
        $strDefault = 'Domy¶lny';
        $strAlter = 'Zmieñ';
        $strCancel = 'Anuluj';
        $strSave = 'Zapisz';
+       $strReset = 'Wyczy¶æ';
        $strInsert = 'Wstaw';
        $strSelect = 'Wybierz';
        $strDelete = 'Usuñ';
@@ -51,6 +49,7 @@
        $strYes = 'Tak';
        $strNo = 'Nie';
        $strEdit = 'Edycja';
+       $strColumns = 'Kolumny';
        $strRows = 'wiersz(y)';
        $strExample = 'np.';
        $strBack = 'Wstecz';
        $strShow = 'Poka¿';
        $strEmpty = 'Pusty';
        $strLanguage = 'Jêzyk';
-       
+       $strEncoding = 'Kodowanie';
+       $strValue = 'Warto¶æ';
+       $strUnique = 'Unikatowy';
+       $strPrimary = 'G³ówny';
+       $strExport = 'Eksport';
+
        // Error handling
        $strNoFrames = 'Aby u¿ywaæ tej aplikacji potrzebujesz przegl±darki obs³uguj±cej ramki.';
        $strBadConfig = 'Twój plik config.inc.php jest przestarza³y. Musisz go utworzyæ ponownie wykorzystuj±c nowy config.inc.php-dist.';
        $strNotLoaded = 'Nie wkompilowa³e¶ do PHP obs³ugi tej bazy danych.';
-       $strBadSchema = 'Invalid schema specified.';
-       $strBadEncoding = 'Failed to set client encoding in database.';
+       $strBadSchema = 'Podano b³êdny schemat.';
+       $strBadEncoding = 'B³êdne kodowanie bazy.';
        $strSQLError = 'B³±d SQL:';
        $strInStatement = 'W poleceniu:';
        $strInvalidScriptParam = 'B³êdny parametr skryptu.';
        $strNoData = 'Nie znaleziono danych.';
 
        // Tables
-       $strNoTables = 'Nie znaleziono tablic.';
-       $strNoTable = 'Nie znaleziono tablicy.';
        $strTable = 'Tabela';
        $strTables = 'Tabele';
+       $strShowAllTables = 'Poka¿ wszystkie tabele';
+       $strNoTable = 'Nie znaleziono tablicy.';
+       $strNoTables = 'Nie znaleziono tablic.';
+       $strCreateTable = 'Utwórz tabelê';
+       $strTableName = 'Nazwa tabeli';
+       $strTableNeedsName = 'Musisz nazwaæ tabelê.';
+       $strTableNeedsField = 'Musisz podaæ przynajmniej jedno pole.';
+       $strTableNeedsCols = 'Musisz podaæ prawid³ow± liczbê kolumn.';
        $strTableCreated = 'Utworzono tabelê.';
        $strTableCreatedBad = 'Operacja utworzenia tabeli siê nie powiod³a.';
-       $strTableNeedsField = 'Musisz podaæ przynajmniej jedno pole.';
+       $strConfDropTable = 'Czy na pewno chcesz usun±æ tablicê "%s"?';
+       $strTableDropped = 'Tablica usuniêta.';
+       $strTableDroppedBad = 'Operacja usuniêcia tablicy siê nie powiod³a.';
+       $strConfEmptyTable = 'Czy na pewno chcesz wyczy¶ciæ tablicê "%s"?';
+       $strTableEmptied = 'Tablica wyczyszczona.';
+       $strTableEmptiedBad = 'Operacja wyczyszczenia tablicy siê nie powiod³a.';
        $strInsertRow = 'Wstaw wiersz';
        $strRowInserted = 'Wiersz wstawiony.';
        $strRowInsertedBad = 'Operacja wstawienia wiersza siê nie powiod³a.';
        $strRowDeleted = 'Wiersz usuniêty.';
        $strRowDeletedBad = 'Operacja usuniêcia wiersza siê nie powiod³a.';
        $strSaveAndRepeat = 'Zapisz i powtórz';
-       $strConfEmptyTable = 'Czy na pewno chcesz wyczy¶ciæ tablicê "%s"?';
-       $strTableEmptied = 'Tablica wyczyszczona.';
-       $strTableEmptiedBad = 'Operacja wyczyszczenia tablicy siê nie powiod³a.';
-       $strConfDropTable = 'Czy na pewno chcesz usun±æ tablicê "%s"?';
-       $strTableDropped = 'Tablica usuniêta.';
-       $strTableDroppedBad = 'Operacja usuniêcia tablicy siê nie powiod³a.';
+       $strField = 'Pole';
+       $strFields = 'Pola';
+       $strNumFields = 'Ilo¶æ pól';
 
        // Users
        $strUserAdmin = 'Administracja kontami u¿ytkowników';
        $strGroupAdmin = 'Administracja grupami u¿ytkowników';
        $strGroup = 'Grupa';
        $strGroups = 'Grupy';
+       $strShowAllGroups = 'Poka¿ wszystkie grupy';
+       $strNoGroup = 'Nie znaleziono grupy.';
        $strNoGroups = 'Nie znaleziono grup.';
        $strCreateGroup = 'Utwórz grupê';
-       $strShowAllGroups = 'Poka¿ wszystkie grupy';
        $strGroupNeedsName = 'Musisz nazwaæ grupê.';
        $strGroupCreated = 'Grupa utworzona.';
        $strGroupCreatedBad = 'Próba utworzenia grupy siê nie powiod³a.';
        // Databases
        $strDatabase = 'Baza danych';
        $strDatabases = 'Bazy danych';
+       $strShowAllDatabases = 'Poka¿ wszystkie bazy danych';
+       $strNoDatabase = 'Nie znaleziono bazy danych.';
        $strNoDatabases = 'Nie znaleziono Â¿adnej bazy danych.';
+       $strCreateDatabase = 'Utwórz bazê danych';
+       $strDatabaseName = 'Nazwa bazy danych';
        $strDatabaseNeedsName = 'Musisz nazwaæ bazê danych.';
        $strDatabaseCreated = 'Baza danych utworzona.';
        $strDatabaseCreatedBad = 'Próba utworzenia bazy danych siê nie powiod³a.';
+       $strConfDropDatabase = 'Czy na pewno chcesz usun±æ bazê danych "%s"?';
+       $strDatabaseDropped = 'Baza danych usuniêta.';
+       $strDatabaseDroppedBad = 'Próba usuniêcia bazy danych siê nie powiod³a.';
        
        // Views
-       $strViewNeedsName = 'Musisz nazwaæ widok.';
-       $strViewNeedsDef = 'Musisz zdefiniowaæ widok.';
-       $strCreateView = 'Utwórz widok';
-       $strNoViews = 'Nie znaleziono widoków.';
        $strView = 'Widok';
        $strViews = 'Widoki';
+       $strShowAllViews = 'Poka¿ wszystkie widoki';
+       $strNoView = 'Nie znaleziono widoku.';
+       $strNoViews = 'Nie znaleziono widoków.';
+       $strCreateView = 'Utwórz widok';
+       $strViewName = 'Nazwa widoku';
+       $strViewNeedsName = 'Musisz nazwaæ widok.';
+       $strViewNeedsDef = 'Musisz zdefiniowaæ widok.';
+       $strViewCreated = 'Widok utworzony.';
+       $strViewCreatedBad = 'Próba utworzenia widoku siê nie powiod³a.';
+       $strConfDropView = 'Czy na pewno chcesz usun±æ widok "%s"?';
+       $strViewDropped = 'Widok usuniêty.';
+       $strViewDroppedBad = 'Próba usuniêcia widoku siê nie powiod³a.';
 
        // Sequences
+       $strSequence = 'Sekwencja';
+       $strSequences = 'Sekwencje';
+       $strShowAllSequences = 'Poka¿ wszystkie sekwencje';
+       $strNoSequence = 'Nie znaleziono sekwencji.';
        $strNoSequences = 'Nie znaleziono sekwencji.';
-       $strSequenceName = 'sequence_name';
+       $strCreateSequence = 'Utwórz sekwencjê';
+       $strSequenceName = 'Nazwa sekwencji';
        $strLastValue = 'last_value';
        $strIncrementBy = 'increment_by';       
        $strMaxValue = 'max_value';
        $strLogCount = 'log_cnt';
        $strIsCycled = 'is_cycled';
        $strIsCalled = 'is_called';
-       $strReset =     'Wyczy¶æ';
-
+       $strSequenceNeedsName = 'Musisz nazwaæ sekwencjê';
+       $strSequenceCreated = 'Utworzono sekwencjê';
+       $strSequenceCreatedBad = 'Próba utworzenia sekwencji siê nie powiod³a.';
+       $strConfDropSequence = 'Czy na pewno chcesz usun±æ sekwencjê "%s"?';
+       $strSequenceDropped = 'Sekwencja usuniêta.';
+       $strSequenceDroppedBad = 'Próba usuniêcia sekwencji siê nie powiod³a.';
+                                               
        // Indeksy
+       $strIndex = 'Indeks';
        $strIndexes = 'Indeksy';
-       $strIndexName = 'Nazwa Indeksu';
-       $strTabName = 'Tab Name';
-       $strColumnName = 'Nazwa Kolumny';
-       $strUniqueKey = 'Klucz Unikatowy';
-       $strPrimaryKey = 'Klucz G³ówny';
-       $strShowAllIndicies = 'Poka¿ wszystkie indeksy';
+       $strShowAllIndexes = 'Poka¿ wszystkie indeksy';
+       $strNoIndex = 'Nie znaleziono indeksu.';
+       $strNoIndexes = 'Nie znaleziono indeksów.';
        $strCreateIndex = 'Utwórz indeks';
+       $strIndexName = 'Nazwa indeksu';
+       $strTabName = 'Tab Name';
+       $strColumnName = 'Nazwa kolumny';
        $strIndexNeedsName = 'Musisz nazwaæ indeks.';
        $strIndexNeedsCols = 'W sk³ad indeksu musi wchodziæ przynajmniej jedna kolumna.';
        $strIndexCreated = 'Indeks utworzony';
        $strConfDropIndex = 'Czy na pewno chcesz usun±æ indeks "%s"?';
        $strIndexDropped = 'Indeks usuniêty.';
        $strIndexDroppedBad = 'Próba usuniêcia indeksu siê nie powiod³a.';
+       $strKeyName = 'Nazwa klucza';
+       $strUniqueKey = 'Klucz Unikatowy';
+       $strPrimaryKey = 'Klucz G³ówny';
        
        // Regu³y
        $strRule = 'Regu³a';
        $strRules = 'Regu³y';
+       $strShowAllRules = 'Poka¿ wszystkie regu³y';
+       $strNoRule = 'Nie znaleziono regu³y.';
        $strNoRules = 'Nie znaleziono regu³.';
        $strCreateRule = 'Utwórz regu³ê';
+       $strRuleName = 'Nazwa regu³y';
+       $strRuleNeedsName = 'Musisz nazwaæ regu³ê.';
+       $strRuleCreated = 'Utworzono regu³ê.';
+       $strRuleCreatedBad = 'Próba utworzenia regu³y siê nie powiod³a.';
        $strConfDropRule = 'Czy na pewno chcesz usun±æ regu³ê "%s" na "%s"?';
        $strRuleDropped = 'Regu³a usuniêta.';
        $strRuleDroppedBad = 'Operacja usuniêcia regu³y siê nie powiod³a.';
        
-       // Tablice
-       $strField = 'Pole';
-       $strFields = 'Pola';
-       $strType = 'Typ';
-       $strValue = 'Warto¶æ';
-       $strShowAllTables = 'Poka¿ wszystkie tablice';
-       $strUnique = 'Unikatowy';
-       $strPrimary = 'G³ówny';
-       $strKeyName = 'Nazwa klucza';
-       $strNumFields = 'Ilo¶æ pól';
-       $strCreateTable = 'Utwórz tabelê';
-       $strTableNeedsName = 'Musisz nazwaæ tabelê.';
-       $strTableNeedsCols = 'Musisz podaæ prawid³ow± liczbê kolumn.';
-       $strExport = 'Eksport';
-       $strColumns = 'Kolumny';
-
        // Wiêzy integralno¶ci
        $strConstraints = 'Wiêzy integralno¶ci';
+       $strShowAllConstraints = 'Poka¿ wszystkie wiêzy integralno¶ci';
        $strNoConstraints = 'Nie znaleziono wiêzów integralno¶ci.';
        $strCreateConstraint = 'Utwórz wiêzy integralno¶ci';
+       $strConstraintCreated = 'Utworzono wiêzy integralno¶ci.';
+       $strConstraintCreatedBad = 'Próba utworzenia wiêzów integralno¶ci siê nie powiod³a.';
        $strConfDropConstraint = 'Czy na pewno chcesz usun±æ wiêzy integralno¶ci "%s" na "%s"?';
        $strConstraintDropped = 'Wiêzy integralno¶ci usuniête.';
        $strConstraintDroppedBad = 'Operacja usuniêcia wiêzów integralno¶ci siê nie powiod³a.';
                
        // Functions
-       $strNoFunctions = 'Nie znaleziono funkcji.';
        $strFunction = 'Funkcja';
        $strFunctions = 'Funkcje';
+       $strShowAllFunctions = 'Poka¿ wszystkie funkcje';
+       $strNoFunction = 'Nie znaleziono funkcji.';
+       $strNoFunctions = 'Nie znaleziono funkcji.';
+       $strCreateFunction = 'Utwórz funkcjê';
+       $strFunctionName = 'Nazwa funkcji';
        $strReturns = 'Zwraca';
        $strArguments = 'Parametry';
        $strFunctionNeedsName = 'Musisz nazwaæ funkcjê.';
        $strFunctionNeedsDef = 'Musisz zdefiniowaæ funkcjê.';
-       
+       $strFunctionCreated = 'Utworzono funkcjê.';
+       $strFunctionCreatedBad = 'Próba utworzenia funkcji siê nie powiod³a';
+        $strConfDropFunction = 'Czy na pewno chcesz usun±æ funkcjê "%s"?';
+       $strFunctionDropped = 'Funkcja usuniêta.';
+       $strFunctionDroppedBad = 'Operacja usuniêcia funkcji siê nie powiod³a.';
+
        // Triggers
        $strTrigger = 'Procedura wyzwalana';
        $strTriggers = 'Procedury wyzwalane';
+       $strShowAllTriggers = 'Poka¿ wszystkie procedury wyzwalane';
+       $strNoTrigger = 'Nie znaleziono procedury wyzwalanej.';
        $strNoTriggers = 'Nie znaleziono procedur wyzwalanych.';
        $strCreateTrigger = 'Utwórz procedurê wyzwalan±';
+       $strTriggerName = 'Nazwa procedury wyzwalanej';
+       $strTriggerNeedsName = 'Musisz nazwaæ procedurê wyzwalan±';
+       $strTriggerCreated = 'Utworzono procedurê wyzwalan±.';
+       $strTriggerCreatedBad = 'Próba utworzenia procedury wyzwalanej siê nie powiod³a';
         $strConfDropTrigger = 'Czy na pewno chcesz usun±æ procedurê "%s" wyzwalan± przez "%s"?';
        $strTriggerDropped = 'Procedura wyzwalana usuniêta.';
        $strTriggerDroppedBad = 'Operacja usuniêcia procedury wyzwalanej siê nie powiod³a.';
        // Types
        $strType = 'Typ';
        $strTypes = 'Typy';
-       $strNoTypes = 'Nie znaleziono typów.';
-       $strCreateType = 'Utwórz Typ';
-       $strConfDropType = 'Czy na pewno chcesz usun±æ typ "%s"?';
-       $strTypeDropped = 'Typ usuniêty.';
-       $strTypeDroppedBad = 'Próba usuniêcia typu siê nie powiod³a.';
-       $strTypeCreated = 'Typ utworzony';
-       $strTypeCreatedBad = 'Próba utworzenia typu siê nie powiod³a.';
        $strShowAllTypes = 'Poka¿ wszystkie typy';
+       $strNoType = 'Nie znaleziono typu.';
+       $strNoTypes = 'Nie znaleziono typów.';
+       $strCreateType = 'Utwórz typ';
+       $strTypeName = 'Nazwa typu';
        $strInputFn = 'Funkcja wej¶ciowa';
        $strOutputFn = 'Funkcja wyj¶ciowa';
        $strPassByVal = 'Przekazywany przez warto¶æ?';
        $strStorage = 'Technika przechowywania';
        $strTypeNeedsName = 'Musisz nazwaæ typ.';
        $strTypeNeedsLen = 'Musisz podaæ d³ugo¶æ typu.';
+       $strTypeCreated = 'Typ utworzony';
+       $strTypeCreatedBad = 'Próba utworzenia typu siê nie powiod³a.';
+       $strConfDropType = 'Czy na pewno chcesz usun±æ typ "%s"?';
+       $strTypeDropped = 'Typ usuniêty.';
+       $strTypeDroppedBad = 'Próba usuniêcia typu siê nie powiod³a.';
 
        // Schemas
        $strSchema = 'Schemat';
        $strSchemas = 'Schematy';
-       $strCreateSchema = 'Utwórz schemat';
+       $strShowAllSchemas = 'Poka¿ wszystkie schematy';
+       $strNoSchema = 'Nie znaleziono schematu.';
        $strNoSchemas = 'Nie znaleziono schematów.';
+       $strCreateSchema = 'Utwórz schemat';
+       $strSchemaName = 'Nazwa schematu';
+       $strSchemaNeedsName = 'Musisz nadaæ schematowi nazwê.';
+       $strSchemaCreated = 'Schemat zosta³ utworzony';
+       $strSchemaCreatedBad = 'Próba utworzenia schematu siê nie powiod³a.';
        $strConfDropSchema = 'Czy na pewno chcesz usun±æ schemat "%s"?';
        $strSchemaDropped = 'Schemat usuniêty.';
        $strSchemaDroppedBad = 'Próba usuniêcia schematu siê nie powiod³a.';
-       $strSchemaCreated = 'Schemat zosta³ utworzony';
-       $strSchemaCreatedBad = 'Próba utworzenia schematu siê nie powiod³a.';
-       $strShowAllSchemas = 'Poka¿ wszystkie schematy';
-       $strSchemaNeedsName = 'Musisz nadaæ schematowi nazwê.';
 
        // Miscellaneous
        $strTopBar = '%s uruchomiony na %s:%s -- Jeste¶ zalogowany jako "%s", %s';
index 9b61acaef28755c1f49935e760ecfc3841d2d08a..1abc50e4c928a1797f895631e3852707d7cdb08f 100644 (file)
@@ -1,10 +1,10 @@
 <?php
 
        /**
-        * Language template file for WebDB.  Use this to base language
+        * Language template file for WebDB. Use this to base language
         * files.
         *
-        * $Id: english.php,v 1.3 2003/01/21 23:09:54 slubek Exp $
+        * $Id: english.php,v 1.4 2003/01/23 00:47:26 slubek Exp $
         */
 
        // Language and character set
        $strActions = 'Actions';        
        $strName = 'Name';
        $strDefinition = 'Definition';
-       $strSequence = 'Sequence';
-       $strSequences = 'Sequences';
        $strOperators = 'Operators';
-       $strTypes = 'Types';
        $strAggregates = 'Aggregates';
        $strProperties = 'Properties';
        $strBrowse = 'Browse';
        $strFailed = 'Failed';
        $strCreate = 'Create';
        $strComment = 'Comment';
-       $strNext = 'Next';
        $strLength = 'Length';
        $strDefault = 'Default';
        $strAlter = 'Alter';
        $strCancel = 'Cancel';
        $strSave = 'Save';
+       $strReset = 'Reset';
        $strInsert = 'Insert';
        $strSelect = 'Select';
        $strDelete = 'Delete';
@@ -52,6 +49,7 @@
        $strYes = 'Yes';
        $strNo = 'No';
        $strEdit = 'Edit';
+       $strColumns = 'Columns';
        $strRows = 'row(s)';
        $strExample = 'eg.';
        $strBack = 'Back';
        $strShow = 'Show';
        $strEmpty = 'Empty';
        $strLanguage = 'Language';
+       $strEncoding = 'Encoding';
+       $strValue = 'Value';
+       $strUnique = 'Unique';
+       $strPrimary = 'Primary';
+       $strExport = 'Export';
 
        // Error handling
        $strNoFrames = 'You need a frames-enabled browser to use this application.';
-       $strBadConfig = 'Your config.inc.php is out of date.  You will need to regenerate it from the new config.inc.php-dist.';
+       $strBadConfig = 'Your config.inc.php is out of date. You will need to regenerate it from the new config.inc.php-dist.';
        $strNotLoaded = 'You have not compiled proper database support into your PHP installation.';
        $strBadSchema = 'Invalid schema specified.';
        $strBadEncoding = 'Failed to set client encoding in database.';
        $strNoData = 'No rows found.';
 
        // Tables
-       $strNoTables = 'No tables found.';
-       $strNoTable = 'No table found.';
        $strTable = 'Table';
        $strTables = 'Tables';
+       $strShowAllTables = 'Show All Tables';
+       $strNoTables = 'No tables found.';
+       $strNoTable = 'No table found.';
+       $strCreateTable = 'Create table';
+       $strTableName = 'Table name';
+       $strTableNeedsName = 'You must give a name for your table.';
+       $strTableNeedsField = 'You must specify at least one field.';
+       $strTableNeedsCols = 'You must give a valid number of columns.';
        $strTableCreated = 'Table created.';
        $strTableCreatedBad = 'Table creation failed.';
-       $strTableNeedsField = 'You must specify at least one field.';
+       $strConfDropTable = 'Are you sure you want to drop the table &quot;%s&quot;?';
+       $strTableDropped = 'Table dropped.';
+       $strTableDroppedBad = 'Table drop failed.';
+       $strConfEmptyTable = 'Are you sure you want to empty the table &quot;%s&quot;?';
+       $strTableEmptied = 'Table emptied.';
+       $strTableEmptiedBad = 'Table empty failed.';
        $strInsertRow = 'Insert Row';
        $strRowInserted = 'Row inserted.';
        $strRowInsertedBad = 'Row insert failed.';
        $strRowDeleted = 'Row deleted.';
        $strRowDeletedBad = 'Row deletion failed.';
        $strSaveAndRepeat = 'Save &amp; Repeat';
-       $strConfEmptyTable = 'Are you sure you want to empty the table &quot;%s&quot;?';
-       $strTableEmptied = 'Table emptied.';
-       $strTableEmptiedBad = 'Table empty failed.';
-       $strConfDropTable = 'Are you sure you want to drop the table &quot;%s&quot;?';
-       $strTableDropped = 'Table dropped.';
-       $strTableDroppedBad = 'Table drop failed.';
+       $strField = 'Field';
+       $strFields = 'Fields';
+       $strNumFields = 'Num. Of Fields';
 
        // Users
        $strUserAdmin = 'User Admin';
        $strGroupAdmin = 'Group Admin';
        $strGroup = 'Group';
        $strGroups = 'Groups';
+       $strNoGroup = 'Group not found.';
        $strNoGroups = 'No groups found.';
        $strCreateGroup = 'Create Group';
        $strShowAllGroups = 'Show All Groups';
        // Databases
        $strDatabase = 'Database';
        $strDatabases = 'Databases';
+       $strShowAllDatabases = 'Show all databases';
+       $strNoDatabase = 'No Database found.';
        $strNoDatabases = 'No Databases found.';
+       $strCreateDatabase = 'Create database';
+       $strDatabaseName = 'Database name';
        $strDatabaseNeedsName = 'You must give a name for your database.';
        $strDatabaseCreated = 'Database created.';
        $strDatabaseCreatedBad = 'Database creation failed.';   
-
+       $strConfDropDatabase = 'Are you sure you want to drop the database &quot;%s&quot;?';
+       $strDatabaseDropped = 'Database dropped.';
+       $strDatabaseDroppedBad = 'Database drop failed.';
+       
        // Views
-       $strViewNeedsName = 'You must give a name for your view.';
-       $strViewNeedsDef = 'You must give a definition for your view.';
-       $strCreateView = 'Create View';
-       $strNoViews = 'No views found.';
        $strView = 'View';
        $strViews = 'Views';
+       $strShowAllViews = 'Show all views';
+       $strNoView = 'No view found.';
+       $strNoViews = 'No views found.';
+       $strCreateView = 'Create View';
+       $strViewName = 'View name';
+       $strViewNeedsName = 'You must give a name for your view.';
+       $strViewNeedsDef = 'You must give a definition for your view.';
+       $strViewCreated = 'View created.';
+       $strViewCreatedBad = 'View creation failed.';
+       $strConfDropView = 'Are you sure you want to drop the view &quot;%s&quot;?';
+       $strViewDropped = 'View dropped.';
+       $strViewDroppedBad = 'View drop failed.';
 
        // Sequences
+       $strSequence = 'Sequence';
+       $strSequences = 'Sequences';
+       $strShowAllSequences = 'Show all sequences';
+       $strNoSequence = 'No sequence found.';
        $strNoSequences = 'No sequences found.';
+       $strCreateSequence = 'Create sequence';
        $strSequenceName = 'sequence_name';
        $strLastValue = 'last_value';
        $strIncrementBy = 'increment_by';       
        $strLogCount = 'log_cnt';
        $strIsCycled = 'is_cycled';
        $strIsCalled = 'is_called';
-       $strReset =     'Reset';
+       $strSequenceNeedsName = 'You must specify a name of sequence.';
+       $strSequenceCreated = 'Sequence created.';
+       $strSequenceCreatedBad = 'Sequence creation failed.'; 
+       $strConfDropSequence = 'Are you sure you want to drop sequence &quot;%s&quot;?';
+       $strSequenceDropped = 'Sequence dropped.';
+       $strSequenceDroppedBad = 'Sequence drop failed.';
 
        // Indexes
        $strIndexes = 'Indexes';
        $strIndexName = 'Index Name';
-       $strTabName = 'Tab Name';
-       $strColumnName = 'Column Name';
-       $strUniqueKey = 'Unique Key';
-       $strPrimaryKey = 'Primary Key';
        $strShowAllIndexes = 'Show All Indexes';
+       $strNoIndex = 'No index found.';
+       $strNoIndexes = 'No indexes found.';
        $strCreateIndex = 'Create Index';
+       $strIndexName = 'Index name';
+       $strTabName = 'Tab Name';
+       $strColumnName = 'Column Name';
        $strIndexNeedsName = 'You must give a name for your index';
        $strIndexNeedsCols = 'You must give a valid number of columns.';
        $strIndexCreated = 'Index created';
        $strConfDropIndex = 'Are you sure you want to drop the index &quot;%s&quot;?';
        $strIndexDropped = 'Index dropped.';
        $strIndexDroppedBad = 'Index drop failed.';
+       $strKeyName = 'Key Name';
+       $strUniqueKey = 'Unique Key';
+       $strPrimaryKey = 'Primary Key';
 
        // Rules
        $strRules = 'Rules';
        $strRule = 'Rule';
+       $strShowAllRules = 'Show all Rules';
+       $strNoRule = 'No rule found.';
        $strNoRules = 'No rules found.';
-       $strCreateRule = 'Create Rule';
+       $strCreateRule = 'Create rule';
+       $strRuleName = 'Rule name';
+       $strRuleNeedsName = 'You must specify a name of rule.';
+       $strRuleCreated = 'Rule created.';
+       $strRuleCreatedBad = 'Rule creation failed.';
        $strConfDropRule = 'Are you sure you want to drop the rule &quot;%s&quot; on &quot;%s&quot;?';
        $strRuleDropped = 'Rule dropped.';
        $strRuleDroppedBad = 'Rule drop failed.';
 
-       // Tables
-       $strField = 'Field';
-       $strFields = 'Fields';
-       $strType = 'Type';
-       $strValue = 'Value';
-       $strShowAllTables = 'Show All Tables';
-       $strUnique = 'Unique';
-       $strPrimary = 'Primary';
-       $strKeyName = 'Key Name';
-       $strNumFields = 'Num. Of Fields';
-       $strCreateTable = 'Create Table';
-       $strTableNeedsName = 'You must give a name for your table.';
-       $strTableNeedsCols = 'You must give a valid number of columns.';
-       $strExport = 'Export';
-       $strColumns = 'Columns';
-
        // Constraints
        $strConstraints = 'Constraints';
+       $strShowAllConstraints = 'Show all constraints';
        $strNoConstraints = 'No constraints found.';
        $strCreateConstraint = 'Create Constraint';
+       $strConstraintCreated = 'Constraint created.';
+       $strConstraintCreatedBad = 'Constraint creation failed.';
        $strConfDropConstraint = 'Are you sure you want to drop the constraint &quot;%s&quot; on &quot;%s&quot;?';
        $strConstraintDropped = 'Constraint dropped.';
        $strConstraintDroppedBad = 'Constraint drop failed.';
 
        // Functions
-       $strNoFunctions = 'No functions found.';
        $strFunction = 'Function';
        $strFunctions = 'Functions';
+       $strShowAllFunctions = 'Show all functions';
+       $strNoFunction = 'No function found.';
+       $strNoFunctions = 'No functions found.';
+       $strCreateFunction = 'Create function';
+       $strFunctionName = 'Function name';
        $strReturns = 'Returns';
        $strArguments = 'Arguments';
        $strFunctionNeedsName = 'You must give a name for your function.';
        $strFunctionNeedsDef = 'You must give a definition for your function.';
+       $strFunctionCreated = 'Function created.';
+       $strFunctionCreatedBad = 'Function creation failed.';
+       $strConfDropFunction = 'Are you sure you want to drop the function &quot;%s&quot;?';
+       $strFunctionDropped = 'Function dropped.';
+       $strFunctionDroppedBad = 'Function drop failed.';
 
        // Triggers
        $strTrigger = 'Trigger';
        $strTriggers = 'Triggers';
+       $strShowAllTriggers = 'Show all triggers';
+       $strNoTrigger = 'No trigger found.';
        $strNoTriggers = 'No triggers found.';
        $strCreateTrigger = 'Create Trigger';
+       $strTriggerName = 'Trigger name';
+       $strTriggerNeedsName = 'You must specify a name of trigger.';
+       $strTriggerCreated = 'Trigger created.';
+       $strTriggerCreatedBad = 'Trigger creation failed.';
        $strConfDropTrigger = 'Are you sure you want to drop the trigger &quot;%s&quot; on &quot;%s&quot;?';
        $strTriggerDropped = 'Trigger dropped.';
        $strTriggerDroppedBad = 'Trigger drop failed.';
-
+       
        // Types
        $strType = 'Type';
        $strTypes = 'Types';
+       $strShowAllTypes = 'Show all types';
+       $strNoType = 'No type found.';
        $strNoTypes = 'No types found.';
        $strCreateType = 'Create Type';
-       $strConfDropType = 'Are you sure you want to drop the type &quot;%s&quot;?';
-       $strTypeDropped = 'Type dropped.';
-       $strTypeDroppedBad = 'Type drop failed.';
-       $strTypeCreated = 'Type created';
-       $strTypeCreatedBad = 'Type creation failed.';
-       $strShowAllTypes = 'Show all types';
+       $strTypeName = 'Type name';
        $strInputFn = 'Input function';
        $strOutputFn = 'Output function';
        $strPassByVal = 'Passed by val?';
        $strStorage = 'Storage';
        $strTypeNeedsName = 'You must give a name for your type.';
        $strTypeNeedsLen = 'You must give a length for your type.';
+       $strTypeCreated = 'Type created';
+       $strTypeCreatedBad = 'Type creation failed.';
+       $strConfDropType = 'Are you sure you want to drop the type &quot;%s&quot;?';
+       $strTypeDropped = 'Type dropped.';
+       $strTypeDroppedBad = 'Type drop failed.';
 
        // Schemas
        $strSchema = 'Schema';
        $strSchemas = 'Schemas';
-       $strCreateSchema = 'Create Schema';
+       $strShowAllSchemas = 'Show All Schemas';
+       $strNoSchema = 'No schema found.';
        $strNoSchemas = 'No schemas found.';
+       $strCreateSchema = 'Create Schema';
+       $strSchemaName = 'Schema name';
+       $strSchemaNeedsName = 'You must give a name for your schema.';
+       $strSchemaCreated = 'Schema created';
+       $strSchemaCreatedBad = 'Schema creation failed.';
        $strConfDropSchema = 'Are you sure you want to drop the schema &quot;%s&quot;?';
        $strSchemaDropped = 'Schema dropped.';
        $strSchemaDroppedBad = 'Schema drop failed.';
-       $strSchemaCreated = 'Schema created';
-       $strSchemaCreatedBad = 'Schema creation failed.';
-       $strShowAllSchemas = 'Show All Schemas';
-       $strSchemaNeedsName = 'You must give a name for your schema.';
        
        // Miscellaneous
        $strTopBar = '%s running on %s:%s -- You are logged in as user &quot;%s&quot;, %s';
index 0064c68ebe1c0ccd52fc0b8df5b8d33214feaaf5..ffe8613e0c77f42a5fd6e863682179a2230d7d89 100644 (file)
@@ -4,7 +4,7 @@
         * Polish language file for WebDB.
         * @maintainer Rafal Slubowski [slubek@users.sourceforge.net]
         *
-        * $Id: polish.php,v 1.2 2003/01/21 23:09:53 slubek Exp $
+        * $Id: polish.php,v 1.3 2003/01/23 00:47:26 slubek Exp $
         */
 
        // Language and character set
        $strActions = 'Akcje';  
        $strName = 'Nazwa';
        $strDefinition = 'Definicja';
-       $strSequence = 'Sekwencja';
-       $strSequences = 'Sekwencje';
        $strOperators = 'Operatory';
-       $strTypes = 'Typy';
        $strAggregates = 'Funkcje agreguj&#261;ce';
        $strProperties = 'W&#322;a&#347;ciwo&#347;ci';
        $strBrowse = 'Przegl&#261;daj';
        $strNext = 'Nast&#281;pny';
        $strFailed = 'Nieudany';
        $strCreate = 'Utw&oacute;rz';
-       $strComment = 'Skomentuj';
+       $strComment = 'Komentarz';
        $strLength = 'D&#322;ugo&#347;&#263;';
        $strDefault = 'Domy&#347;lny';
        $strAlter = 'Zmie&#324;';
        $strCancel = 'Anuluj';
        $strSave = 'Zapisz';
+       $strReset = 'Wyczy&#347;&#263;';
        $strInsert = 'Wstaw';
        $strSelect = 'Wybierz';
        $strDelete = 'Usu&#324;';
@@ -51,6 +49,7 @@
        $strYes = 'Tak';
        $strNo = 'Nie';
        $strEdit = 'Edycja';
+       $strColumns = 'Kolumny';
        $strRows = 'wiersz(y)';
        $strExample = 'np.';
        $strBack = 'Wstecz';
        $strShow = 'Poka&#380;';
        $strEmpty = 'Pusty';
        $strLanguage = 'J&#281;zyk';
-       
+       $strEncoding = 'Kodowanie';
+       $strValue = 'Warto&#347;&#263;';
+       $strUnique = 'Unikatowy';
+       $strPrimary = 'G&#322;&oacute;wny';
+       $strExport = 'Eksport';
+
        // Error handling
        $strNoFrames = 'Aby u&#380;ywa&#263; tej aplikacji potrzebujesz przegl&#261;darki obs&#322;uguj&#261;cej ramki.';
        $strBadConfig = 'Tw&oacute;j plik config.inc.php jest przestarza&#322;y. Musisz go utworzy&#263; ponownie wykorzystuj&#261;c nowy config.inc.php-dist.';
        $strNotLoaded = 'Nie wkompilowa&#322;e&#347; do PHP obs&#322;ugi tej bazy danych.';
-       $strBadSchema = 'Invalid schema specified.';
-       $strBadEncoding = 'Failed to set client encoding in database.';
+       $strBadSchema = 'Podano b&#322;&#281;dny schemat.';
+       $strBadEncoding = 'B&#322;&#281;dne kodowanie bazy.';
        $strSQLError = 'B&#322;&#261;d SQL:';
        $strInStatement = 'W poleceniu:';
        $strInvalidScriptParam = 'B&#322;&#281;dny parametr skryptu.';
        $strNoData = 'Nie znaleziono danych.';
 
        // Tables
-       $strNoTables = 'Nie znaleziono tablic.';
-       $strNoTable = 'Nie znaleziono tablicy.';
        $strTable = 'Tabela';
        $strTables = 'Tabele';
+       $strShowAllTables = 'Poka&#380; wszystkie tabele';
+       $strNoTable = 'Nie znaleziono tablicy.';
+       $strNoTables = 'Nie znaleziono tablic.';
+       $strCreateTable = 'Utw&oacute;rz tabel&#281;';
+       $strTableName = 'Nazwa tabeli';
+       $strTableNeedsName = 'Musisz nazwa&#263; tabel&#281;.';
+       $strTableNeedsField = 'Musisz poda&#263; przynajmniej jedno pole.';
+       $strTableNeedsCols = 'Musisz poda&#263; prawid&#322;ow&#261; liczb&#281; kolumn.';
        $strTableCreated = 'Utworzono tabel&#281;.';
        $strTableCreatedBad = 'Operacja utworzenia tabeli si&#281; nie powiod&#322;a.';
-       $strTableNeedsField = 'Musisz poda&#263; przynajmniej jedno pole.';
+       $strConfDropTable = 'Czy na pewno chcesz usun&#261;&#263; tablic&#281; &quot;%s&quot;?';
+       $strTableDropped = 'Tablica usuni&#281;ta.';
+       $strTableDroppedBad = 'Operacja usuni&#281;cia tablicy si&#281; nie powiod&#322;a.';
+       $strConfEmptyTable = 'Czy na pewno chcesz wyczy&#347;ci&#263; tablic&#281; &quot;%s&quot;?';
+       $strTableEmptied = 'Tablica wyczyszczona.';
+       $strTableEmptiedBad = 'Operacja wyczyszczenia tablicy si&#281; nie powiod&#322;a.';
        $strInsertRow = 'Wstaw wiersz';
        $strRowInserted = 'Wiersz wstawiony.';
        $strRowInsertedBad = 'Operacja wstawienia wiersza si&#281; nie powiod&#322;a.';
        $strRowDeleted = 'Wiersz usuni&#281;ty.';
        $strRowDeletedBad = 'Operacja usuni&#281;cia wiersza si&#281; nie powiod&#322;a.';
        $strSaveAndRepeat = 'Zapisz i powt&oacute;rz';
-       $strConfEmptyTable = 'Czy na pewno chcesz wyczy&#347;ci&#263; tablic&#281; &quot;%s&quot;?';
-       $strTableEmptied = 'Tablica wyczyszczona.';
-       $strTableEmptiedBad = 'Operacja wyczyszczenia tablicy si&#281; nie powiod&#322;a.';
-       $strConfDropTable = 'Czy na pewno chcesz usun&#261;&#263; tablic&#281; &quot;%s&quot;?';
-       $strTableDropped = 'Tablica usuni&#281;ta.';
-       $strTableDroppedBad = 'Operacja usuni&#281;cia tablicy si&#281; nie powiod&#322;a.';
+       $strField = 'Pole';
+       $strFields = 'Pola';
+       $strNumFields = 'Ilo&#347;&#263; p&oacute;l';
 
        // Users
        $strUserAdmin = 'Administracja kontami u&#380;ytkownik&oacute;w';
        $strGroupAdmin = 'Administracja grupami u&#380;ytkownik&oacute;w';
        $strGroup = 'Grupa';
        $strGroups = 'Grupy';
+       $strShowAllGroups = 'Poka&#380; wszystkie grupy';
+       $strNoGroup = 'Nie znaleziono grupy.';
        $strNoGroups = 'Nie znaleziono grup.';
        $strCreateGroup = 'Utw&oacute;rz grup&#281;';
-       $strShowAllGroups = 'Poka&#380; wszystkie grupy';
        $strGroupNeedsName = 'Musisz nazwa&#263; grup&#281;.';
        $strGroupCreated = 'Grupa utworzona.';
        $strGroupCreatedBad = 'Pr&oacute;ba utworzenia grupy si&#281; nie powiod&#322;a.';
        // Databases
        $strDatabase = 'Baza danych';
        $strDatabases = 'Bazy danych';
+       $strShowAllDatabases = 'Poka&#380; wszystkie bazy danych';
+       $strNoDatabase = 'Nie znaleziono bazy danych.';
        $strNoDatabases = 'Nie znaleziono &#380;adnej bazy danych.';
+       $strCreateDatabase = 'Utw&oacute;rz baz&#281; danych';
+       $strDatabaseName = 'Nazwa bazy danych';
        $strDatabaseNeedsName = 'Musisz nazwa&#263; baz&#281; danych.';
        $strDatabaseCreated = 'Baza danych utworzona.';
        $strDatabaseCreatedBad = 'Pr&oacute;ba utworzenia bazy danych si&#281; nie powiod&#322;a.';
+       $strConfDropDatabase = 'Czy na pewno chcesz usun&#261;&#263; baz&#281; danych &quot;%s&quot;?';
+       $strDatabaseDropped = 'Baza danych usuni&#281;ta.';
+       $strDatabaseDroppedBad = 'Pr&oacute;ba usuni&#281;cia bazy danych si&#281; nie powiod&#322;a.';
        
        // Views
-       $strViewNeedsName = 'Musisz nazwa&#263; widok.';
-       $strViewNeedsDef = 'Musisz zdefiniowa&#263; widok.';
-       $strCreateView = 'Utw&oacute;rz widok';
-       $strNoViews = 'Nie znaleziono widok&oacute;w.';
        $strView = 'Widok';
        $strViews = 'Widoki';
+       $strShowAllViews = 'Poka&#380; wszystkie widoki';
+       $strNoView = 'Nie znaleziono widoku.';
+       $strNoViews = 'Nie znaleziono widok&oacute;w.';
+       $strCreateView = 'Utw&oacute;rz widok';
+       $strViewName = 'Nazwa widoku';
+       $strViewNeedsName = 'Musisz nazwa&#263; widok.';
+       $strViewNeedsDef = 'Musisz zdefiniowa&#263; widok.';
+       $strViewCreated = 'Widok utworzony.';
+       $strViewCreatedBad = 'Pr&oacute;ba utworzenia widoku si&#281; nie powiod&#322;a.';
+       $strConfDropView = 'Czy na pewno chcesz usun&#261;&#263; widok &quot;%s&quot;?';
+       $strViewDropped = 'Widok usuni&#281;ty.';
+       $strViewDroppedBad = 'Pr&oacute;ba usuni&#281;cia widoku si&#281; nie powiod&#322;a.';
 
        // Sequences
+       $strSequence = 'Sekwencja';
+       $strSequences = 'Sekwencje';
+       $strShowAllSequences = 'Poka&#380; wszystkie sekwencje';
+       $strNoSequence = 'Nie znaleziono sekwencji.';
        $strNoSequences = 'Nie znaleziono sekwencji.';
-       $strSequenceName = 'sequence_name';
+       $strCreateSequence = 'Utw&oacute;rz sekwencj&#281;';
+       $strSequenceName = 'Nazwa sekwencji';
        $strLastValue = 'last_value';
        $strIncrementBy = 'increment_by';       
        $strMaxValue = 'max_value';
        $strLogCount = 'log_cnt';
        $strIsCycled = 'is_cycled';
        $strIsCalled = 'is_called';
-       $strReset =     'Wyczy&#347;&#263;';
-
+       $strSequenceNeedsName = 'Musisz nazwa&#263; sekwencj&#281;';
+       $strSequenceCreated = 'Utworzono sekwencj&#281;';
+       $strSequenceCreatedBad = 'Pr&oacute;ba utworzenia sekwencji si&#281; nie powiod&#322;a.';
+       $strConfDropSequence = 'Czy na pewno chcesz usun&#261;&#263; sekwencj&#281; &quot;%s&quot;?';
+       $strSequenceDropped = 'Sekwencja usuni&#281;ta.';
+       $strSequenceDroppedBad = 'Pr&oacute;ba usuni&#281;cia sekwencji si&#281; nie powiod&#322;a.';
+                                               
        // Indeksy
+       $strIndex = 'Indeks';
        $strIndexes = 'Indeksy';
-       $strIndexName = 'Nazwa Indeksu';
-       $strTabName = 'Tab Name';
-       $strColumnName = 'Nazwa Kolumny';
-       $strUniqueKey = 'Klucz Unikatowy';
-       $strPrimaryKey = 'Klucz G&#322;&oacute;wny';
-       $strShowAllIndicies = 'Poka&#380; wszystkie indeksy';
+       $strShowAllIndexes = 'Poka&#380; wszystkie indeksy';
+       $strNoIndex = 'Nie znaleziono indeksu.';
+       $strNoIndexes = 'Nie znaleziono indeks&oacute;w.';
        $strCreateIndex = 'Utw&oacute;rz indeks';
+       $strIndexName = 'Nazwa indeksu';
+       $strTabName = 'Tab Name';
+       $strColumnName = 'Nazwa kolumny';
        $strIndexNeedsName = 'Musisz nazwa&#263; indeks.';
        $strIndexNeedsCols = 'W sk&#322;ad indeksu musi wchodzi&#263; przynajmniej jedna kolumna.';
        $strIndexCreated = 'Indeks utworzony';
        $strConfDropIndex = 'Czy na pewno chcesz usun&#261;&#263; indeks &quot;%s&quot;?';
        $strIndexDropped = 'Indeks usuni&#281;ty.';
        $strIndexDroppedBad = 'Pr&oacute;ba usuni&#281;cia indeksu si&#281; nie powiod&#322;a.';
+       $strKeyName = 'Nazwa klucza';
+       $strUniqueKey = 'Klucz Unikatowy';
+       $strPrimaryKey = 'Klucz G&#322;&oacute;wny';
        
        // Regu&#322;y
        $strRule = 'Regu&#322;a';
        $strRules = 'Regu&#322;y';
+       $strShowAllRules = 'Poka&#380; wszystkie regu&#322;y';
+       $strNoRule = 'Nie znaleziono regu&#322;y.';
        $strNoRules = 'Nie znaleziono regu&#322;.';
        $strCreateRule = 'Utw&oacute;rz regu&#322;&#281;';
+       $strRuleName = 'Nazwa regu&#322;y';
+       $strRuleNeedsName = 'Musisz nazwa&#263; regu&#322;&#281;.';
+       $strRuleCreated = 'Utworzono regu&#322;&#281;.';
+       $strRuleCreatedBad = 'Pr&oacute;ba utworzenia regu&#322;y si&#281; nie powiod&#322;a.';
        $strConfDropRule = 'Czy na pewno chcesz usun&#261;&#263; regu&#322;&#281; &quot;%s&quot; na &quot;%s&quot;?';
        $strRuleDropped = 'Regu&#322;a usuni&#281;ta.';
        $strRuleDroppedBad = 'Operacja usuni&#281;cia regu&#322;y si&#281; nie powiod&#322;a.';
        
-       // Tablice
-       $strField = 'Pole';
-       $strFields = 'Pola';
-       $strType = 'Typ';
-       $strValue = 'Warto&#347;&#263;';
-       $strShowAllTables = 'Poka&#380; wszystkie tablice';
-       $strUnique = 'Unikatowy';
-       $strPrimary = 'G&#322;&oacute;wny';
-       $strKeyName = 'Nazwa klucza';
-       $strNumFields = 'Ilo&#347;&#263; p&oacute;l';
-       $strCreateTable = 'Utw&oacute;rz tabel&#281;';
-       $strTableNeedsName = 'Musisz nazwa&#263; tabel&#281;.';
-       $strTableNeedsCols = 'Musisz poda&#263; prawid&#322;ow&#261; liczb&#281; kolumn.';
-       $strExport = 'Eksport';
-       $strColumns = 'Kolumny';
-
        // Wi&#281;zy integralno&#347;ci
        $strConstraints = 'Wi&#281;zy integralno&#347;ci';
+       $strShowAllConstraints = 'Poka&#380; wszystkie wi&#281;zy integralno&#347;ci';
        $strNoConstraints = 'Nie znaleziono wi&#281;z&oacute;w integralno&#347;ci.';
        $strCreateConstraint = 'Utw&oacute;rz wi&#281;zy integralno&#347;ci';
+       $strConstraintCreated = 'Utworzono wi&#281;zy integralno&#347;ci.';
+       $strConstraintCreatedBad = 'Pr&oacute;ba utworzenia wi&#281;z&oacute;w integralno&#347;ci si&#281; nie powiod&#322;a.';
        $strConfDropConstraint = 'Czy na pewno chcesz usun&#261;&#263; wi&#281;zy integralno&#347;ci &quot;%s&quot; na &quot;%s&quot;?';
        $strConstraintDropped = 'Wi&#281;zy integralno&#347;ci usuni&#281;te.';
        $strConstraintDroppedBad = 'Operacja usuni&#281;cia wi&#281;z&oacute;w integralno&#347;ci si&#281; nie powiod&#322;a.';
                
        // Functions
-       $strNoFunctions = 'Nie znaleziono funkcji.';
        $strFunction = 'Funkcja';
        $strFunctions = 'Funkcje';
+       $strShowAllFunctions = 'Poka&#380; wszystkie funkcje';
+       $strNoFunction = 'Nie znaleziono funkcji.';
+       $strNoFunctions = 'Nie znaleziono funkcji.';
+       $strCreateFunction = 'Utw&oacute;rz funkcj&#281;';
+       $strFunctionName = 'Nazwa funkcji';
        $strReturns = 'Zwraca';
        $strArguments = 'Parametry';
        $strFunctionNeedsName = 'Musisz nazwa&#263; funkcj&#281;.';
        $strFunctionNeedsDef = 'Musisz zdefiniowa&#263; funkcj&#281;.';
-       
+       $strFunctionCreated = 'Utworzono funkcj&#281;.';
+       $strFunctionCreatedBad = 'Pr&oacute;ba utworzenia funkcji si&#281; nie powiod&#322;a';
+        $strConfDropFunction = 'Czy na pewno chcesz usun&#261;&#263; funkcj&#281; &quot;%s&quot;?';
+       $strFunctionDropped = 'Funkcja usuni&#281;ta.';
+       $strFunctionDroppedBad = 'Operacja usuni&#281;cia funkcji si&#281; nie powiod&#322;a.';
+
        // Triggers
        $strTrigger = 'Procedura wyzwalana';
        $strTriggers = 'Procedury wyzwalane';
+       $strShowAllTriggers = 'Poka&#380; wszystkie procedury wyzwalane';
+       $strNoTrigger = 'Nie znaleziono procedury wyzwalanej.';
        $strNoTriggers = 'Nie znaleziono procedur wyzwalanych.';
        $strCreateTrigger = 'Utw&oacute;rz procedur&#281; wyzwalan&#261;';
+       $strTriggerName = 'Nazwa procedury wyzwalanej';
+       $strTriggerNeedsName = 'Musisz nazwa&#263; procedur&#281; wyzwalan&#261;';
+       $strTriggerCreated = 'Utworzono procedur&#281; wyzwalan&#261;.';
+       $strTriggerCreatedBad = 'Pr&oacute;ba utworzenia procedury wyzwalanej si&#281; nie powiod&#322;a';
         $strConfDropTrigger = 'Czy na pewno chcesz usun&#261;&#263; procedur&#281; &quot;%s&quot; wyzwalan&#261; przez &quot;%s&quot;?';
        $strTriggerDropped = 'Procedura wyzwalana usuni&#281;ta.';
        $strTriggerDroppedBad = 'Operacja usuni&#281;cia procedury wyzwalanej si&#281; nie powiod&#322;a.';
        // Types
        $strType = 'Typ';
        $strTypes = 'Typy';
-       $strNoTypes = 'Nie znaleziono typ&oacute;w.';
-       $strCreateType = 'Utw&oacute;rz Typ';
-       $strConfDropType = 'Czy na pewno chcesz usun&#261;&#263; typ &quot;%s&quot;?';
-       $strTypeDropped = 'Typ usuni&#281;ty.';
-       $strTypeDroppedBad = 'Pr&oacute;ba usuni&#281;cia typu si&#281; nie powiod&#322;a.';
-       $strTypeCreated = 'Typ utworzony';
-       $strTypeCreatedBad = 'Pr&oacute;ba utworzenia typu si&#281; nie powiod&#322;a.';
        $strShowAllTypes = 'Poka&#380; wszystkie typy';
+       $strNoType = 'Nie znaleziono typu.';
+       $strNoTypes = 'Nie znaleziono typ&oacute;w.';
+       $strCreateType = 'Utw&oacute;rz typ';
+       $strTypeName = 'Nazwa typu';
        $strInputFn = 'Funkcja wej&#347;ciowa';
        $strOutputFn = 'Funkcja wyj&#347;ciowa';
        $strPassByVal = 'Przekazywany przez warto&#347;&#263;?';
        $strStorage = 'Technika przechowywania';
        $strTypeNeedsName = 'Musisz nazwa&#263; typ.';
        $strTypeNeedsLen = 'Musisz poda&#263; d&#322;ugo&#347;&#263; typu.';
+       $strTypeCreated = 'Typ utworzony';
+       $strTypeCreatedBad = 'Pr&oacute;ba utworzenia typu si&#281; nie powiod&#322;a.';
+       $strConfDropType = 'Czy na pewno chcesz usun&#261;&#263; typ &quot;%s&quot;?';
+       $strTypeDropped = 'Typ usuni&#281;ty.';
+       $strTypeDroppedBad = 'Pr&oacute;ba usuni&#281;cia typu si&#281; nie powiod&#322;a.';
 
        // Schemas
        $strSchema = 'Schemat';
        $strSchemas = 'Schematy';
-       $strCreateSchema = 'Utw&oacute;rz schemat';
+       $strShowAllSchemas = 'Poka&#380; wszystkie schematy';
+       $strNoSchema = 'Nie znaleziono schematu.';
        $strNoSchemas = 'Nie znaleziono schemat&oacute;w.';
+       $strCreateSchema = 'Utw&oacute;rz schemat';
+       $strSchemaName = 'Nazwa schematu';
+       $strSchemaNeedsName = 'Musisz nada&#263; schematowi nazw&#281;.';
+       $strSchemaCreated = 'Schemat zosta&#322; utworzony';
+       $strSchemaCreatedBad = 'Pr&oacute;ba utworzenia schematu si&#281; nie powiod&#322;a.';
        $strConfDropSchema = 'Czy na pewno chcesz usun&#261;&#263; schemat &quot;%s&quot;?';
        $strSchemaDropped = 'Schemat usuni&#281;ty.';
        $strSchemaDroppedBad = 'Pr&oacute;ba usuni&#281;cia schematu si&#281; nie powiod&#322;a.';
-       $strSchemaCreated = 'Schemat zosta&#322; utworzony';
-       $strSchemaCreatedBad = 'Pr&oacute;ba utworzenia schematu si&#281; nie powiod&#322;a.';
-       $strShowAllSchemas = 'Poka&#380; wszystkie schematy';
-       $strSchemaNeedsName = 'Musisz nada&#263; schematowi nazw&#281;.';
 
        // Miscellaneous
        $strTopBar = '%s uruchomiony na %s:%s -- Jeste&#347; zalogowany jako &quot;%s&quot;, %s';