diff --git a/best-practices/bg/pagination.texy b/best-practices/bg/pagination.texy index 9d04ddc1b1..abde3b6754 100644 --- a/best-practices/bg/pagination.texy +++ b/best-practices/bg/pagination.texy @@ -180,7 +180,7 @@ class HomePresenter extends Nette\Application\UI\Presenter ``` -Ето как добавихме страниране с помощта на Paginator. Ако използваме [Nette Database Core |database:core] като слой на базата данни вместо [Nette Database Explorer |database:explorer], можем да реализираме странициране дори без Paginator. Класът `Nette\Database\Table\Selection` съдържа метод [page |api:Nette\Database\Table\Selection::_ page] с логика за страниране, взета от Paginator. +Ето как добавихме страниране с помощта на Paginator. Ако използваме [Nette Database Core |database:direct-sql] като слой на базата данни вместо [Nette Database Explorer |database:explorer], можем да реализираме странициране дори без Paginator. Класът `Nette\Database\Table\Selection` съдържа метод [page |api:Nette\Database\Table\Selection::_ page] с логика за страниране, взета от Paginator. Хранилището ще изглежда по следния начин: diff --git a/best-practices/cs/pagination.texy b/best-practices/cs/pagination.texy index 8a558bb0b7..0d1b24d083 100644 --- a/best-practices/cs/pagination.texy +++ b/best-practices/cs/pagination.texy @@ -180,7 +180,7 @@ class HomePresenter extends Nette\Application\UI\Presenter ``` -Takto jsme doplnili stránku o možnost stránkování pomocí Paginatoru. V případě, kdy namísto [Nette Database Core |database:core] jako databázovou vrstvu použijeme [Nette Database Explorer |database:explorer], jsme schopni implementovat stránkování i bez použití Paginatoru. Třída `Nette\Database\Table\Selection` totiž obsahuje metodu [page |api:Nette\Database\Table\Selection::_page] s logikou stránkování převzatou z Paginatoru. +Takto jsme doplnili stránku o možnost stránkování pomocí Paginatoru. V případě, kdy namísto [Nette Database Core |database:direct-sql] jako databázovou vrstvu použijeme [Nette Database Explorer |database:explorer], jsme schopni implementovat stránkování i bez použití Paginatoru. Třída `Nette\Database\Table\Selection` totiž obsahuje metodu [page |api:Nette\Database\Table\Selection::_page] s logikou stránkování převzatou z Paginatoru. Repozitář bude při tomto způsobu implementace vypadat takto: diff --git a/best-practices/de/pagination.texy b/best-practices/de/pagination.texy index 245680368c..234f8f8adf 100644 --- a/best-practices/de/pagination.texy +++ b/best-practices/de/pagination.texy @@ -180,7 +180,7 @@ Die Vorlage iteriert bereits über Artikel auf einer Seite, fügen Sie einfach L ``` -So haben wir die Paginierung mit Paginator hinzugefügt. Wenn [Nette Database Explorer |database:explorer] anstelle von [Nette Database Core |database:core] als Datenbankschicht verwendet wird, können wir die Paginierung auch ohne Paginator implementieren. Die Klasse `Nette\Database\Table\Selection` enthält die [Page-Methode |api:Nette\Database\Table\Selection::_ page] mit der Paginierungslogik aus dem Paginator. +So haben wir die Paginierung mit Paginator hinzugefügt. Wenn [Nette Database Explorer |database:explorer] anstelle von [Nette Database Core |database:direct-sql] als Datenbankschicht verwendet wird, können wir die Paginierung auch ohne Paginator implementieren. Die Klasse `Nette\Database\Table\Selection` enthält die [Page-Methode |api:Nette\Database\Table\Selection::_ page] mit der Paginierungslogik aus dem Paginator. Das Repository sieht dann wie folgt aus: diff --git a/best-practices/el/pagination.texy b/best-practices/el/pagination.texy index 599f3ff25a..dbb2e3a583 100644 --- a/best-practices/el/pagination.texy +++ b/best-practices/el/pagination.texy @@ -180,7 +180,7 @@ class HomePresenter extends Nette\Application\UI\Presenter ``` -Αυτό είναι το πώς έχουμε προσθέσει σελιδοποίηση χρησιμοποιώντας Paginator. Εάν χρησιμοποιείται ο [Nette Database Explorer |database:explorer] αντί του [Nette Database |database:core] Core ως επίπεδο βάσης δεδομένων, είμαστε σε θέση να υλοποιήσουμε τη σελιδοποίηση ακόμη και χωρίς Paginator. Η κλάση `Nette\Database\Table\Selection` περιέχει τη μέθοδο [page |api:Nette\Database\Table\Selection::_ page] με λογική σελιδοποίησης που λαμβάνεται από το Paginator. +Αυτό είναι το πώς έχουμε προσθέσει σελιδοποίηση χρησιμοποιώντας Paginator. Εάν χρησιμοποιείται ο [Nette Database Explorer |database:explorer] αντί του [Nette Database |database:direct-sql] Core ως επίπεδο βάσης δεδομένων, είμαστε σε θέση να υλοποιήσουμε τη σελιδοποίηση ακόμη και χωρίς Paginator. Η κλάση `Nette\Database\Table\Selection` περιέχει τη μέθοδο [page |api:Nette\Database\Table\Selection::_ page] με λογική σελιδοποίησης που λαμβάνεται από το Paginator. Το αποθετήριο θα έχει την εξής μορφή: diff --git a/best-practices/en/pagination.texy b/best-practices/en/pagination.texy index 8fa2b98ace..ea7331d041 100644 --- a/best-practices/en/pagination.texy +++ b/best-practices/en/pagination.texy @@ -180,7 +180,7 @@ The template already iterates over articles in one page, just add paging links: ``` -This is how we've added pagination using Paginator. If [Nette Database Explorer |database:explorer] is used instead of [Nette Database Core |database:core] as a database layer, we are able to implement paging even without Paginator. The `Nette\Database\Table\Selection` class contains the [page |api:Nette\Database\Table\Selection::_ page] method with pagination logic taken from the Paginator. +This is how we've added pagination using Paginator. If [Nette Database Explorer |database:explorer] is used instead of [Nette Database Core |database:direct-sql] as a database layer, we are able to implement paging even without Paginator. The `Nette\Database\Table\Selection` class contains the [page |api:Nette\Database\Table\Selection::_ page] method with pagination logic taken from the Paginator. The repository will look like this: diff --git a/best-practices/es/pagination.texy b/best-practices/es/pagination.texy index 287b5d17a3..04068d2c8e 100644 --- a/best-practices/es/pagination.texy +++ b/best-practices/es/pagination.texy @@ -180,7 +180,7 @@ La plantilla ya itera sobre los artículos en una página, sólo hay que añadir ``` -Así es como hemos añadido la paginación usando Paginator. Si se utiliza [Nette Database Explorer |database:explorer] en lugar de [Nette Database Core |database:core] como capa de base de datos, podemos implementar la paginación incluso sin Paginator. La clase `Nette\Database\Table\Selection` contiene el método [page |api:Nette\Database\Table\Selection::_ page] con la lógica de paginación tomada del Paginator. +Así es como hemos añadido la paginación usando Paginator. Si se utiliza [Nette Database Explorer |database:explorer] en lugar de [Nette Database Core |database:direct-sql] como capa de base de datos, podemos implementar la paginación incluso sin Paginator. La clase `Nette\Database\Table\Selection` contiene el método [page |api:Nette\Database\Table\Selection::_ page] con la lógica de paginación tomada del Paginator. El repositorio tendrá este aspecto: diff --git a/best-practices/fr/pagination.texy b/best-practices/fr/pagination.texy index cafbff84cc..47fb389f8b 100644 --- a/best-practices/fr/pagination.texy +++ b/best-practices/fr/pagination.texy @@ -180,7 +180,7 @@ Le modèle fait déjà défiler les articles sur une page, il suffit d'ajouter d ``` -C'est ainsi que nous avons ajouté la pagination en utilisant Paginator. Si [Nette Database Explorer |database:explorer] est utilisé à la place de [Nette Database Core |database:core] comme couche de base de données, nous sommes capables d'implémenter la pagination même sans Paginator. La classe `Nette\Database\Table\Selection` contient la méthode [page |api:Nette\Database\Table\Selection::_ page] avec la logique de pagination prise dans le Paginator. +C'est ainsi que nous avons ajouté la pagination en utilisant Paginator. Si [Nette Database Explorer |database:explorer] est utilisé à la place de [Nette Database Core |database:direct-sql] comme couche de base de données, nous sommes capables d'implémenter la pagination même sans Paginator. La classe `Nette\Database\Table\Selection` contient la méthode [page |api:Nette\Database\Table\Selection::_ page] avec la logique de pagination prise dans le Paginator. Le référentiel ressemblera à ceci : diff --git a/best-practices/hu/pagination.texy b/best-practices/hu/pagination.texy index f9611c6e3f..c86d083dda 100644 --- a/best-practices/hu/pagination.texy +++ b/best-practices/hu/pagination.texy @@ -180,7 +180,7 @@ A sablon már egy oldalon belül iterálja a cikkeket, csak a lapozási linkeket ``` -Így adtunk hozzá oldalszámozást a Paginator segítségével. Ha a [Nette Database |database:explorer] [Core |database:core] [helyett a Nette Database Explorer-t |database:explorer] használjuk adatbázis-rétegként, akkor Paginator nélkül is képesek vagyunk a lapozás megvalósítására. A `Nette\Database\Table\Selection` osztály tartalmazza a [Paginatorból |api:Nette\Database\Table\Selection::_ page] átvett paginálási logikával rendelkező [page |api:Nette\Database\Table\Selection::_ page] metódust. +Így adtunk hozzá oldalszámozást a Paginator segítségével. Ha a [Nette Database |database:explorer] [Core |database:direct-sql] [helyett a Nette Database Explorer-t |database:explorer] használjuk adatbázis-rétegként, akkor Paginator nélkül is képesek vagyunk a lapozás megvalósítására. A `Nette\Database\Table\Selection` osztály tartalmazza a [Paginatorból |api:Nette\Database\Table\Selection::_ page] átvett paginálási logikával rendelkező [page |api:Nette\Database\Table\Selection::_ page] metódust. A tároló így fog kinézni: diff --git a/best-practices/it/pagination.texy b/best-practices/it/pagination.texy index adf166b262..7403ba932a 100644 --- a/best-practices/it/pagination.texy +++ b/best-practices/it/pagination.texy @@ -180,7 +180,7 @@ Il template itera già gli articoli in una pagina, basta aggiungere i link di pa ``` -Ecco come abbiamo aggiunto la paginazione utilizzando Paginator. Se si utilizza [Nette Database Explorer |database:explorer] al posto di [Nette Database Core |database:core] come livello di database, siamo in grado di implementare la paginazione anche senza Paginator. La classe `Nette\Database\Table\Selection` contiene il metodo [page |api:Nette\Database\Table\Selection::_ page] con la logica di paginazione presa da Paginator. +Ecco come abbiamo aggiunto la paginazione utilizzando Paginator. Se si utilizza [Nette Database Explorer |database:explorer] al posto di [Nette Database Core |database:direct-sql] come livello di database, siamo in grado di implementare la paginazione anche senza Paginator. La classe `Nette\Database\Table\Selection` contiene il metodo [page |api:Nette\Database\Table\Selection::_ page] con la logica di paginazione presa da Paginator. Il repository avrà questo aspetto: diff --git a/best-practices/pl/pagination.texy b/best-practices/pl/pagination.texy index 13e39bab4a..e7ce5e9aea 100644 --- a/best-practices/pl/pagination.texy +++ b/best-practices/pl/pagination.texy @@ -180,7 +180,7 @@ Szablon już iteruje po tylko artykułach jednej strony, musimy tylko dodać lin ``` -W ten sposób dodaliśmy do strony paginację Paginator. W przypadku, gdy jako warstwy bazy danych użyjemy [Nette |database:core] Database [Explorer |database:explorer] zamiast [Nette Database Core |database:core], jesteśmy w stanie zaimplementować paginację bez użycia Paginatora. Klasa `Nette\Database\Table\Selection` zawiera metodę [page |api:Nette\Database\Table\Selection::_page] z logiką paginacji zaczerpniętą z Paginatora. +W ten sposób dodaliśmy do strony paginację Paginator. W przypadku, gdy jako warstwy bazy danych użyjemy [Nette |database:direct-sql] Database [Explorer |database:explorer] zamiast [Nette Database Core |database:direct-sql], jesteśmy w stanie zaimplementować paginację bez użycia Paginatora. Klasa `Nette\Database\Table\Selection` zawiera metodę [page |api:Nette\Database\Table\Selection::_page] z logiką paginacji zaczerpniętą z Paginatora. Repozytorium będzie wyglądać tak z tą implementacją: diff --git a/best-practices/pt/pagination.texy b/best-practices/pt/pagination.texy index 149dfc1b72..acf11be04d 100644 --- a/best-practices/pt/pagination.texy +++ b/best-practices/pt/pagination.texy @@ -180,7 +180,7 @@ O modelo já itera sobre artigos em uma página, basta adicionar links de pagina ``` -Foi assim que adicionamos a paginação usando o Paginador. Se for usado o [Nette Database Explorer |database:explorer] em vez do [Nette Database Core |database:core] como camada de banco de dados, podemos implementar paginação mesmo sem o Paginator. A classe `Nette\Database\Table\Selection` contém o método de [paginação |api:Nette\Database\Table\Selection::_ page] com lógica de paginação extraída do Paginator. +Foi assim que adicionamos a paginação usando o Paginador. Se for usado o [Nette Database Explorer |database:explorer] em vez do [Nette Database Core |database:direct-sql] como camada de banco de dados, podemos implementar paginação mesmo sem o Paginator. A classe `Nette\Database\Table\Selection` contém o método de [paginação |api:Nette\Database\Table\Selection::_ page] com lógica de paginação extraída do Paginator. O repositório terá este aspecto: diff --git a/best-practices/ro/pagination.texy b/best-practices/ro/pagination.texy index ee9ac16acc..b4c0639cac 100644 --- a/best-practices/ro/pagination.texy +++ b/best-practices/ro/pagination.texy @@ -180,7 +180,7 @@ class HomePresenter extends Nette\Application\UI\Presenter ``` -Acesta este modul în care am adăugat paginarea folosind Paginator. Dacă [Nette |database:core] [Database Explorer |database:explorer] este utilizat în locul [Nette Database Core |database:core] ca strat de bază de date, putem implementa paginarea chiar și fără Paginator. Clasa `Nette\Database\Table\Selection` conține metoda [page |api:Nette\Database\Table\Selection::_ page] cu logica de paginare preluată din Paginator. +Acesta este modul în care am adăugat paginarea folosind Paginator. Dacă [Nette |database:direct-sql] [Database Explorer |database:explorer] este utilizat în locul [Nette Database Core |database:direct-sql] ca strat de bază de date, putem implementa paginarea chiar și fără Paginator. Clasa `Nette\Database\Table\Selection` conține metoda [page |api:Nette\Database\Table\Selection::_ page] cu logica de paginare preluată din Paginator. Depozitul va arăta astfel: diff --git a/best-practices/ru/pagination.texy b/best-practices/ru/pagination.texy index 87693d2c25..ab0c5be76f 100644 --- a/best-practices/ru/pagination.texy +++ b/best-practices/ru/pagination.texy @@ -180,7 +180,7 @@ class HomePresenter extends Nette\Application\UI\Presenter ``` -Вот как мы добавили пагинацию с помощью Paginator. Если вместо [Nette Database Explorer |database:explorer] в качестве слоя базы данных используется [Nette Database Core |database:core], мы можем реализовать подкачку даже без Paginator. Класс `Nette\Database\Table\Selection` содержит метод [page |api:Nette\Database\Table\Selection::_ page] с логикой пагинации, взятой из Paginator. +Вот как мы добавили пагинацию с помощью Paginator. Если вместо [Nette Database Explorer |database:explorer] в качестве слоя базы данных используется [Nette Database Core |database:direct-sql], мы можем реализовать подкачку даже без Paginator. Класс `Nette\Database\Table\Selection` содержит метод [page |api:Nette\Database\Table\Selection::_ page] с логикой пагинации, взятой из Paginator. Репозиторий будет выглядеть следующим образом: diff --git a/best-practices/sl/pagination.texy b/best-practices/sl/pagination.texy index f0136cebbc..01168fd76a 100644 --- a/best-practices/sl/pagination.texy +++ b/best-practices/sl/pagination.texy @@ -180,7 +180,7 @@ Predloga že iterira po člankih na eni strani, dodajte le povezave za paging: ``` -To je način, kako smo s Paginatorjem dodali paginacijo. Če namesto [Nette |database:explorer] [Database Core |database:core] kot plast podatkovne baze uporabimo [Nette Database Explorer |database:explorer], lahko izvedemo paging tudi brez Paginatorja. Razred `Nette\Database\Table\Selection` vsebuje metodo [page |api:Nette\Database\Table\Selection::_ page] z logiko paginacije, ki je prevzeta iz Paginatorja. +To je način, kako smo s Paginatorjem dodali paginacijo. Če namesto [Nette |database:explorer] [Database Core |database:direct-sql] kot plast podatkovne baze uporabimo [Nette Database Explorer |database:explorer], lahko izvedemo paging tudi brez Paginatorja. Razred `Nette\Database\Table\Selection` vsebuje metodo [page |api:Nette\Database\Table\Selection::_ page] z logiko paginacije, ki je prevzeta iz Paginatorja. Skladišče bo videti takole: diff --git a/best-practices/tr/pagination.texy b/best-practices/tr/pagination.texy index e6513d47d1..099af787bd 100644 --- a/best-practices/tr/pagination.texy +++ b/best-practices/tr/pagination.texy @@ -180,7 +180,7 @@ class HomePresenter extends Nette\Application\UI\Presenter ``` -Paginator kullanarak sayfalamayı bu şekilde ekledik. Veritabanı katmanı olarak Nette Database [Core |database:core] yerine Nette [Database Explorer |database:explorer] kullanılırsa, Paginator olmadan da sayfalama uygulayabiliriz. `Nette\Database\Table\Selection` sınıfı, Paginator'dan alınan sayfalama mantığı ile [sayfa |api:Nette\Database\Table\Selection::_ page] yöntemini içerir. +Paginator kullanarak sayfalamayı bu şekilde ekledik. Veritabanı katmanı olarak Nette Database [Core |database:direct-sql] yerine Nette [Database Explorer |database:explorer] kullanılırsa, Paginator olmadan da sayfalama uygulayabiliriz. `Nette\Database\Table\Selection` sınıfı, Paginator'dan alınan sayfalama mantığı ile [sayfa |api:Nette\Database\Table\Selection::_ page] yöntemini içerir. Depo şu şekilde görünecektir: diff --git a/best-practices/uk/pagination.texy b/best-practices/uk/pagination.texy index c74c942c2e..6f04796d6e 100644 --- a/best-practices/uk/pagination.texy +++ b/best-practices/uk/pagination.texy @@ -180,7 +180,7 @@ class HomePresenter extends Nette\Application\UI\Presenter ``` -Ось як ми додали пагінацію за допомогою Paginator. Якщо замість [Nette Database Explorer |database:explorer] як шар бази даних використовується [Nette Database Core |database:core], ми можемо реалізувати підкачку навіть без Paginator. Клас `Nette\Database\Table\Selection` містить метод [page |api:Nette\Database\Table\Selection::_ page] з логікою пагінації, взятою з Paginator. +Ось як ми додали пагінацію за допомогою Paginator. Якщо замість [Nette Database Explorer |database:explorer] як шар бази даних використовується [Nette Database Core |database:direct-sql], ми можемо реалізувати підкачку навіть без Paginator. Клас `Nette\Database\Table\Selection` містить метод [page |api:Nette\Database\Table\Selection::_ page] з логікою пагінації, взятою з Paginator. Репозиторій матиме такий вигляд: diff --git a/nette/bg/@home.texy b/nette/bg/@home.texy index feabd53f9c..857560095e 100644 --- a/nette/bg/@home.texy +++ b/nette/bg/@home.texy @@ -58,7 +58,7 @@ - [Latte: Шаблони |latte:] - [Tracy: Инструмент за отстраняване на грешки |tracy:] - [Форми |forms:] -- [База данни |database:core] +- [База данни |database:guide] - [Удостоверяване на потребителя |security:authentication] - [Контрол на достъпа |security:authorization] - [Сесии |http:Sessions] diff --git a/nette/bg/@menu-topics.texy b/nette/bg/@menu-topics.texy index a0ac4f5a35..dd38d66557 100644 --- a/nette/bg/@menu-topics.texy +++ b/nette/bg/@menu-topics.texy @@ -5,7 +5,7 @@ - [Изпълнение на зависимостта |dependency-injection:] - [Комунални услуги |utils:] - [Форми |forms:] -- [База данни |database:core] +- [База данни |database:guide] - [Удостоверяване на потребителя |security:authentication] - [Контрол на достъпа |security:authorization] - [Сесии |http:Sessions] diff --git a/nette/cs/@home.texy b/nette/cs/@home.texy index 9d81baaa96..ebbd1359df 100644 --- a/nette/cs/@home.texy +++ b/nette/cs/@home.texy @@ -58,7 +58,7 @@ Hlavní témata - [Latte: šablony |latte:] - [Tracy: ladění kódu |tracy:] - [Formuláře |forms:] -- [Databáze |database:core] +- [Databáze |database:guide] - [Přihlašování uživatelů |security:authentication] - [Ověřování oprávnění |security:authorization] - [http:Sessions] diff --git a/nette/cs/@menu-topics.texy b/nette/cs/@menu-topics.texy index facb02b4e2..f53c16bd8d 100644 --- a/nette/cs/@menu-topics.texy +++ b/nette/cs/@menu-topics.texy @@ -5,7 +5,7 @@ Hlavní témata - [Dependency Injection|dependency-injection:] - [Utilities |utils:] - [Formuláře |forms:] -- [Databáze |database:core] +- [Databáze |database:guide] - [Přihlašování uživatelů |security:authentication] - [Ověřování oprávnění |security:authorization] - [http:Sessions] diff --git a/nette/de/@home.texy b/nette/de/@home.texy index 9b30ddb609..2936ccc261 100644 --- a/nette/de/@home.texy +++ b/nette/de/@home.texy @@ -58,7 +58,7 @@ Hauptthemen - [Latte: Schablonen |latte:] - [Tracy: Debugging-Werkzeug |tracy:] - [Formulare |forms:] -- [Datenbank |database:core] +- [Datenbank |database:guide] - [Authentifizierung von Benutzern |security:authentication] - [Zugriffskontrolle |security:authorization] - [Sessionen |http:Sessions] diff --git a/nette/de/@menu-topics.texy b/nette/de/@menu-topics.texy index cc870fd15d..af3b41af53 100644 --- a/nette/de/@menu-topics.texy +++ b/nette/de/@menu-topics.texy @@ -5,7 +5,7 @@ Hauptthemen - [Injektion von Abhängigkeiten |dependency-injection:] - [Dienstprogramme |utils:] - [Formulare |forms:] -- [Datenbank |database:core] +- [Datenbank |database:guide] - [Authentifizierung von Benutzern |security:authentication] - [Zugriffskontrolle |security:authorization] - [Sessionen |http:Sessions] diff --git a/nette/el/@home.texy b/nette/el/@home.texy index 2923d00186..d6682a4add 100644 --- a/nette/el/@home.texy +++ b/nette/el/@home.texy @@ -58,7 +58,7 @@ Nette Τεκμηρίωση - [Latte: Προτύπων |latte:] - [Tracy: Tracy: Εργαλείο εντοπισμού σφαλμάτων |tracy:] - [Φόρμες |forms:] -- [Βάση δεδομένων |database:core] +- [Βάση δεδομένων |database:guide] - [Αυθεντικοποίηση χρηστών |security:authentication] - [Έλεγχος πρόσβασης |security:authorization] - [Συνεδρίες |http:Sessions] diff --git a/nette/el/@menu-topics.texy b/nette/el/@menu-topics.texy index 7734874138..cab972abe7 100644 --- a/nette/el/@menu-topics.texy +++ b/nette/el/@menu-topics.texy @@ -5,7 +5,7 @@ - [Έγχυση εξάρτησης |dependency-injection:] - [Βοηθητικά προγράμματα |utils:] - [Φόρμες |forms:] -- [Βάση δεδομένων |database:core] +- [Βάση δεδομένων |database:guide] - [Αυθεντικοποίηση χρηστών |security:authentication] - [Έλεγχος πρόσβασης |security:authorization] - [Συνεδρίες |http:Sessions] diff --git a/nette/en/@home.texy b/nette/en/@home.texy index b2d2e5c09a..1ccd7a5e32 100644 --- a/nette/en/@home.texy +++ b/nette/en/@home.texy @@ -58,7 +58,7 @@ Main Topics - [Latte: Templates |latte:] - [Tracy: Debugging Tool |tracy:] - [Forms|forms:] -- [Database |database:core] +- [Database |database:guide] - [Authenticating Users |security:authentication] - [Access Control |security:authorization] - [http:Sessions] diff --git a/nette/en/@menu-topics.texy b/nette/en/@menu-topics.texy index 0b0ac06465..31c9eb5ff4 100644 --- a/nette/en/@menu-topics.texy +++ b/nette/en/@menu-topics.texy @@ -5,7 +5,7 @@ Main Topics - [Dependency Injection|dependency-injection:] - [Utilities |utils:] - [Forms|forms:] -- [Database |database:core] +- [Database |database:guide] - [Authenticating Users |security:authentication] - [Access Control |security:authorization] - [http:Sessions] diff --git a/nette/es/@home.texy b/nette/es/@home.texy index 0a57b34965..a2c5952a2b 100644 --- a/nette/es/@home.texy +++ b/nette/es/@home.texy @@ -58,7 +58,7 @@ Temas principales - [Latte: Plantillas |latte:] - [Tracy: Herramienta de depuración |tracy:] - [Formularios |forms:] -- [Base de datos |database:core] +- [Base de datos |database:guide] - [Autenticación de usuarios |security:authentication] - [Control de Acceso |security:authorization] - [Sesiones |http:Sessions] diff --git a/nette/es/@menu-topics.texy b/nette/es/@menu-topics.texy index 430c1c8cc6..26fb61b11b 100644 --- a/nette/es/@menu-topics.texy +++ b/nette/es/@menu-topics.texy @@ -5,7 +5,7 @@ Temas principales - [Inyección de Dependencias |dependency-injection:] - [Utilidades |utils:] - [Formularios |forms:] -- [Base de datos |database:core] +- [Base de datos |database:guide] - [Autenticación de usuarios |security:authentication] - [Control de acceso |security:authorization] - [Sesiones |http:Sessions] diff --git a/nette/fr/@home.texy b/nette/fr/@home.texy index 23f87d0522..54aa904a41 100644 --- a/nette/fr/@home.texy +++ b/nette/fr/@home.texy @@ -58,7 +58,7 @@ Sujets principaux - [Latte : Modèles |latte:] - [Tracy : Outil de débogage |tracy:] - [Formulaires |forms:] -- [Base de données |database:core] +- [Base de données |database:guide] - [Authentification des utilisateurs |security:authentication] - [Contrôle d'accès |security:authorization] - [Sessions |http:Sessions] diff --git a/nette/fr/@menu-topics.texy b/nette/fr/@menu-topics.texy index 4eda66e6b1..bc7de71562 100644 --- a/nette/fr/@menu-topics.texy +++ b/nette/fr/@menu-topics.texy @@ -5,7 +5,7 @@ Thèmes principaux - [Injection de dépendances |dependency-injection:] - [Utilitaires |utils:] - [Formulaires |forms:] -- [Base de données |database:core] +- [Base de données |database:guide] - [Authentification des utilisateurs |security:authentication] - [Contrôle d'accès |security:authorization] - [Sessions |http:Sessions] diff --git a/nette/hu/@home.texy b/nette/hu/@home.texy index b3aa613dea..f15545f184 100644 --- a/nette/hu/@home.texy +++ b/nette/hu/@home.texy @@ -58,7 +58,7 @@ Főbb témák - [Latte: Sablonok |latte:] - [Tracy: Tracy: Hibakereső eszköz |tracy:] - [Forms |forms:] -- [Adatbázis |database:core] +- [Adatbázis |database:guide] - [Felhasználók hitelesítése |security:authentication] - [Hozzáférés-szabályozás |security:authorization] - [Sessions |http:Sessions] diff --git a/nette/hu/@menu-topics.texy b/nette/hu/@menu-topics.texy index eeebf4e470..280c5ccecf 100644 --- a/nette/hu/@menu-topics.texy +++ b/nette/hu/@menu-topics.texy @@ -5,7 +5,7 @@ Főbb témák - [Függőségi injektálás |dependency-injection:] - [Segédprogramok |utils:] - [Formák |forms:] -- [Adatbázis |database:core] +- [Adatbázis |database:guide] - [Felhasználók hitelesítése |security:authentication] - [Hozzáférés-szabályozás |security:authorization] - [Sessions |http:Sessions] diff --git a/nette/it/@home.texy b/nette/it/@home.texy index 758fd70193..58d9bebc54 100644 --- a/nette/it/@home.texy +++ b/nette/it/@home.texy @@ -58,7 +58,7 @@ Argomenti principali - [Latte: Modelli |latte:] - [Tracy: Strumento di debug |tracy:] - [Moduli |forms:] -- [Database |database:core] +- [Database |database:guide] - [Autenticazione degli utenti |security:authentication] - [Controllo dell'accesso |security:authorization] - [Sessioni |http:Sessions] diff --git a/nette/it/@menu-topics.texy b/nette/it/@menu-topics.texy index 1407bf0fbb..1619e46060 100644 --- a/nette/it/@menu-topics.texy +++ b/nette/it/@menu-topics.texy @@ -5,7 +5,7 @@ Argomenti principali - [Iniezione di dipendenza |dependency-injection:] - [Utilità |utils:] - [Moduli |forms:] -- [Database |database:core] +- [Database |database:guide] - [Autenticazione degli utenti |security:authentication] - [Controllo dell'accesso |security:authorization] - [Sessioni |http:Sessions] diff --git a/nette/pl/@home.texy b/nette/pl/@home.texy index 6429bb7295..dbe8615c6e 100644 --- a/nette/pl/@home.texy +++ b/nette/pl/@home.texy @@ -58,7 +58,7 @@ Główne tematy - [Latte: szablony |latte:] - [Tracy: debugowanie kodu |tracy:] - [Formularze |forms:] -- [Bazy danych |database:core] +- [Bazy danych |database:guide] - [Login użytkownika |security:authentication] - [Uwierzytelnianie uprawnień |security:authorization] - [Sesje |http:Sessions] diff --git a/nette/pl/@menu-topics.texy b/nette/pl/@menu-topics.texy index 52f98190f7..903769dbe4 100644 --- a/nette/pl/@menu-topics.texy +++ b/nette/pl/@menu-topics.texy @@ -5,7 +5,7 @@ Główne tematy - [Wtrysk zależności |dependency-injection:] - [Narzędzia |utils:] - [Formularze |forms:] -- [Bazy danych |database:core] +- [Bazy danych |database:guide] - [Login użytkownika |security:authentication] - [Uwierzytelnianie uprawnień |security:authorization] - [Sesje |http:Sessions] diff --git a/nette/pt/@home.texy b/nette/pt/@home.texy index e2fdbdc4ec..4aa0529096 100644 --- a/nette/pt/@home.texy +++ b/nette/pt/@home.texy @@ -58,7 +58,7 @@ Tópicos principais - [Latte: Templates |latte:] - [Tracy: Ferramenta de depuração |tracy:] - [Formulários |forms:] -- [Base de dados |database:core] +- [Base de dados |database:guide] - [Autenticação de usuários |security:authentication] - [Controle de acesso |security:authorization] - [Sessões |http:Sessions] diff --git a/nette/pt/@menu-topics.texy b/nette/pt/@menu-topics.texy index bc4b4886b7..15ddbd78f5 100644 --- a/nette/pt/@menu-topics.texy +++ b/nette/pt/@menu-topics.texy @@ -5,7 +5,7 @@ Tópicos principais - [Injeção de dependência |dependency-injection:] - [Utilidades |utils:] - [Formulários |forms:] -- [Base de dados |database:core] +- [Base de dados |database:guide] - [Autenticação de usuários |security:authentication] - [Controle de acesso |security:authorization] - [Sessões |http:Sessions] diff --git a/nette/ro/@home.texy b/nette/ro/@home.texy index 44631364c9..04588f4fb3 100644 --- a/nette/ro/@home.texy +++ b/nette/ro/@home.texy @@ -58,7 +58,7 @@ Subiecte principale - [Latte: Șabloane |latte:] - [Tracy: Instrument de depanare |tracy:] - [Formulare |forms:] -- [Baza de date |database:core] +- [Baza de date |database:guide] - [Autentificarea utilizatorilor |security:authentication] - [Controlul accesului |security:authorization] - [Sesiuni |http:Sessions] diff --git a/nette/ro/@menu-topics.texy b/nette/ro/@menu-topics.texy index a40d964123..cf85f4fdfb 100644 --- a/nette/ro/@menu-topics.texy +++ b/nette/ro/@menu-topics.texy @@ -5,7 +5,7 @@ Principalele subiecte - [Injectarea dependențelor |dependency-injection:] - [Utilități |utils:] - [Formulare |forms:] -- [Bază de date |database:core] +- [Bază de date |database:guide] - [Autentificarea utilizatorilor |security:authentication] - [Controlul accesului |security:authorization] - [Sesiuni |http:Sessions] diff --git a/nette/ru/@home.texy b/nette/ru/@home.texy index e00f7de000..79df790b63 100644 --- a/nette/ru/@home.texy +++ b/nette/ru/@home.texy @@ -58,7 +58,7 @@ - [Latte: Шаблоны |latte:] - [Tracy: Инструмент отладки |tracy:] - [Формы |forms:] -- [База данных |database:core] +- [База данных |database:guide] - [Аутентификация пользователей |security:authentication] - [Контроль доступа |security:authorization] - [Сессии |http:Sessions] diff --git a/nette/ru/@menu-topics.texy b/nette/ru/@menu-topics.texy index 1bee06bd51..682382718f 100644 --- a/nette/ru/@menu-topics.texy +++ b/nette/ru/@menu-topics.texy @@ -5,7 +5,7 @@ - [Внедрение зависимостей |dependency-injection:] - [Утилиты |utils:] - [Формы |forms:] -- [База данных |database:core] +- [База данных |database:guide] - [Аутентификация пользователей |security:authentication] - [Контроль доступа |security:authorization] - [Сессии |http:Sessions] diff --git a/nette/sl/@home.texy b/nette/sl/@home.texy index 170bbd9789..fdb52d270a 100644 --- a/nette/sl/@home.texy +++ b/nette/sl/@home.texy @@ -58,7 +58,7 @@ Glavne teme - [Latte: Predloge |latte:] - [Tracy: Orodje za odpravljanje napak |tracy:] - [Obrazci |forms:] -- [Podatkovna baza |database:core] +- [Podatkovna baza |database:guide] - [Preverjanje pristnosti uporabnikov |security:authentication] - [Nadzor dostopa |security:authorization] - [Seje |http:Sessions] diff --git a/nette/sl/@menu-topics.texy b/nette/sl/@menu-topics.texy index 54e53daf37..dd929992b6 100644 --- a/nette/sl/@menu-topics.texy +++ b/nette/sl/@menu-topics.texy @@ -5,7 +5,7 @@ Glavne teme - [Injekcija odvisnosti (Dependency Injection) |dependency-injection:] - [Orodja |utils:] - [Obrazci |forms:] -- [Podatkovna baza |database:core] +- [Podatkovna baza |database:guide] - [Preverjanje pristnosti uporabnikov |security:authentication] - [Nadzor dostopa |security:authorization] - [Seje |http:Sessions] diff --git a/nette/tr/@home.texy b/nette/tr/@home.texy index cb5c58765f..7e33243cdc 100644 --- a/nette/tr/@home.texy +++ b/nette/tr/@home.texy @@ -58,7 +58,7 @@ Ana Başlıklar - [Latte: Şablonlar |latte:] - [Tracy: Hata Ayıklama Aracı |tracy:] - [Formlar |forms:] -- [Veritabanı |database:core] +- [Veritabanı |database:guide] - [Kullanıcıların Kimliğini Doğrulama |security:authentication] - [Erişim Kontrolü |security:authorization] - [Oturumlar |http:Sessions] diff --git a/nette/tr/@menu-topics.texy b/nette/tr/@menu-topics.texy index 24ac514ee8..904fe6a6ee 100644 --- a/nette/tr/@menu-topics.texy +++ b/nette/tr/@menu-topics.texy @@ -5,7 +5,7 @@ Ana Başlıklar - [Bağımlılık Enjeksiyonu |dependency-injection:] - [Yardımcı Programlar |utils:] - [Formlar |forms:] -- [Veritabanı |database:core] +- [Veritabanı |database:guide] - [Kullanıcıların Kimliğini Doğrulama |security:authentication] - [Erişim Kontrolü |security:authorization] - [Oturumlar |http:Sessions] diff --git a/nette/uk/@home.texy b/nette/uk/@home.texy index 1783ac19fe..00867e028e 100644 --- a/nette/uk/@home.texy +++ b/nette/uk/@home.texy @@ -58,7 +58,7 @@ - [Latte: Шаблони |latte:] - [Tracy: Інструмент налагодження |tracy:] - [Форми |forms:] -- [База даних |database:core] +- [База даних |database:guide] - [Аутентифікація користувачів |security:authentication] - [Контроль доступу |security:authorization] - [Сесії |http:Sessions] diff --git a/nette/uk/@menu-topics.texy b/nette/uk/@menu-topics.texy index 30c287a830..21de7f9394 100644 --- a/nette/uk/@menu-topics.texy +++ b/nette/uk/@menu-topics.texy @@ -5,7 +5,7 @@ - [Впровадження залежностей |dependency-injection:] - [Утиліти |utils:] - [Форми |forms:] -- [База даних |database:core] +- [База даних |database:guide] - [Аутентифікація користувачів |security:authentication] - [Контроль доступу |security:authorization] - [Сесії |http:Sessions]