<?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';
$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';
* 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ñ';
$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';
<?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';
$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';
* 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ą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ń';
$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';