pagy 7.0.11 → 43.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE.txt +1 -1
- data/apps/calendar.ru +741 -0
- data/apps/demo.ru +513 -0
- data/apps/enable_rails_page_segment.rb +54 -0
- data/apps/index.rb +9 -0
- data/apps/keynav+root_key.ru +316 -0
- data/apps/keynav.ru +255 -0
- data/apps/keyset.ru +219 -0
- data/apps/keyset_sequel.ru +212 -0
- data/apps/rails.ru +216 -0
- data/apps/repro.ru +185 -0
- data/bin/pagy +5 -0
- data/config/pagy.rb +46 -0
- data/javascripts/ai_widget.js +90 -0
- data/javascripts/pagy.js +168 -0
- data/javascripts/pagy.min.js +2 -0
- data/javascripts/pagy.mjs +161 -0
- data/javascripts/wand.js +1172 -0
- data/lib/pagy/classes/calendar/calendar.rb +101 -0
- data/lib/pagy/{calendar → classes/calendar}/day.rb +9 -12
- data/lib/pagy/{calendar → classes/calendar}/month.rb +7 -11
- data/lib/pagy/{calendar → classes/calendar}/quarter.rb +12 -16
- data/lib/pagy/classes/calendar/unit.rb +93 -0
- data/lib/pagy/{calendar → classes/calendar}/week.rb +7 -11
- data/lib/pagy/{calendar → classes/calendar}/year.rb +9 -9
- data/lib/pagy/classes/exceptions.rb +26 -0
- data/lib/pagy/classes/keyset/adapters/active_record.rb +50 -0
- data/lib/pagy/classes/keyset/adapters/sequel.rb +62 -0
- data/lib/pagy/classes/keyset/keynav.rb +85 -0
- data/lib/pagy/classes/keyset/keyset.rb +150 -0
- data/lib/pagy/classes/offset/countish.rb +17 -0
- data/lib/pagy/classes/offset/countless.rb +63 -0
- data/lib/pagy/classes/offset/offset.rb +63 -0
- data/lib/pagy/classes/offset/search.rb +34 -0
- data/lib/pagy/classes/request.rb +48 -0
- data/lib/pagy/cli.rb +122 -0
- data/lib/pagy/console.rb +5 -20
- data/lib/pagy/deprecated.rb +84 -0
- data/lib/pagy/modules/abilities/configurable.rb +37 -0
- data/lib/pagy/modules/abilities/countable.rb +23 -0
- data/lib/pagy/modules/abilities/linkable.rb +72 -0
- data/lib/pagy/modules/abilities/rangeable.rb +14 -0
- data/lib/pagy/modules/abilities/shiftable.rb +12 -0
- data/lib/pagy/modules/b64.rb +35 -0
- data/lib/pagy/modules/console.rb +33 -0
- data/lib/pagy/modules/i18n/i18n.rb +72 -0
- data/lib/pagy/modules/i18n/p11n/arabic.rb +30 -0
- data/lib/pagy/modules/i18n/p11n/east_slavic.rb +27 -0
- data/lib/pagy/modules/i18n/p11n/one_other.rb +15 -0
- data/lib/pagy/modules/i18n/p11n/one_upto_two_other.rb +15 -0
- data/lib/pagy/modules/i18n/p11n/other.rb +13 -0
- data/lib/pagy/modules/i18n/p11n/polish.rb +27 -0
- data/lib/pagy/modules/i18n/p11n/west_slavic.rb +22 -0
- data/lib/pagy/modules/i18n/p11n.rb +16 -0
- data/lib/pagy/modules/searcher.rb +20 -0
- data/lib/pagy/next.rb +25 -0
- data/lib/pagy/tasks/sync.rb +20 -0
- data/lib/pagy/toolbox/helpers/anchor_tags.rb +21 -0
- data/lib/pagy/toolbox/helpers/bootstrap/input_nav_js.rb +28 -0
- data/lib/pagy/toolbox/helpers/bootstrap/previous_next_html.rb +19 -0
- data/lib/pagy/toolbox/helpers/bootstrap/series_nav.rb +32 -0
- data/lib/pagy/toolbox/helpers/bootstrap/series_nav_js.rb +24 -0
- data/lib/pagy/toolbox/helpers/bulma/input_nav_js.rb +25 -0
- data/lib/pagy/toolbox/helpers/bulma/previous_next_html.rb +20 -0
- data/lib/pagy/toolbox/helpers/bulma/series_nav.rb +31 -0
- data/lib/pagy/toolbox/helpers/bulma/series_nav_js.rb +23 -0
- data/lib/pagy/toolbox/helpers/data_hash.rb +29 -0
- data/lib/pagy/toolbox/helpers/headers_hash.rb +30 -0
- data/lib/pagy/toolbox/helpers/info_tag.rb +30 -0
- data/lib/pagy/toolbox/helpers/input_nav_js.rb +22 -0
- data/lib/pagy/toolbox/helpers/limit_tag_js.rb +25 -0
- data/lib/pagy/toolbox/helpers/loaders.rb +55 -0
- data/lib/pagy/toolbox/helpers/page_url.rb +16 -0
- data/lib/pagy/toolbox/helpers/series_nav.rb +30 -0
- data/lib/pagy/toolbox/helpers/series_nav_js.rb +20 -0
- data/lib/pagy/toolbox/helpers/support/a_lambda.rb +36 -0
- data/lib/pagy/toolbox/helpers/support/data_pagy_attribute.rb +19 -0
- data/lib/pagy/toolbox/helpers/support/nav_aria_label_attribute.rb +10 -0
- data/lib/pagy/toolbox/helpers/support/series.rb +37 -0
- data/lib/pagy/toolbox/helpers/support/wrap_input_nav_js.rb +19 -0
- data/lib/pagy/toolbox/helpers/support/wrap_series_nav.rb +17 -0
- data/lib/pagy/toolbox/helpers/support/wrap_series_nav_js.rb +42 -0
- data/lib/pagy/toolbox/helpers/urls_hash.rb +12 -0
- data/lib/pagy/toolbox/paginators/calendar.rb +34 -0
- data/lib/pagy/toolbox/paginators/countish.rb +38 -0
- data/lib/pagy/toolbox/paginators/countless.rb +22 -0
- data/lib/pagy/toolbox/paginators/elasticsearch_rails.rb +56 -0
- data/lib/pagy/toolbox/paginators/keynav_js.rb +26 -0
- data/lib/pagy/toolbox/paginators/keyset.rb +15 -0
- data/lib/pagy/toolbox/paginators/meilisearch.rb +34 -0
- data/lib/pagy/toolbox/paginators/method.rb +38 -0
- data/lib/pagy/toolbox/paginators/offset.rb +24 -0
- data/lib/pagy/toolbox/paginators/searchkick.rb +34 -0
- data/lib/pagy/toolbox/paginators/typesense_rails.rb +34 -0
- data/lib/pagy.rb +67 -131
- data/locales/ar.yml +32 -0
- data/locales/be.yml +28 -0
- data/locales/bg.yml +24 -0
- data/locales/bs.yml +28 -0
- data/locales/ca.yml +24 -0
- data/locales/ckb.yml +20 -0
- data/locales/cs.yml +26 -0
- data/locales/da.yml +24 -0
- data/locales/de.yml +24 -0
- data/locales/dz.yml +20 -0
- data/locales/en.yml +24 -0
- data/{lib/locales → locales}/es.yml +9 -6
- data/locales/fr.yml +24 -0
- data/locales/hr.yml +28 -0
- data/locales/id.yml +20 -0
- data/locales/it.yml +24 -0
- data/locales/ja.yml +20 -0
- data/locales/km.yml +20 -0
- data/locales/ko.yml +20 -0
- data/locales/nb.yml +24 -0
- data/locales/nl.yml +24 -0
- data/locales/nn.yml +24 -0
- data/locales/pl.yml +28 -0
- data/{lib/locales → locales}/pt-BR.yml +10 -7
- data/{lib/locales → locales}/pt.yml +10 -7
- data/locales/ru.yml +28 -0
- data/locales/sk.yml +26 -0
- data/locales/sr.yml +28 -0
- data/locales/sv-SE.yml +24 -0
- data/locales/sv.yml +24 -0
- data/locales/sw.yml +28 -0
- data/locales/ta.yml +24 -0
- data/locales/tr.yml +24 -0
- data/locales/uk.yml +28 -0
- data/locales/vi.yml +20 -0
- data/locales/zh-CN.yml +20 -0
- data/locales/zh-HK.yml +20 -0
- data/locales/zh-TW.yml +20 -0
- data/stylesheets/pagy-tailwind.css +68 -0
- data/stylesheets/pagy.css +83 -0
- metadata +185 -94
- data/lib/config/pagy.rb +0 -258
- data/lib/javascripts/pagy-dev.js +0 -112
- data/lib/javascripts/pagy-module.js +0 -111
- data/lib/javascripts/pagy.js +0 -1
- data/lib/locales/ar.yml +0 -30
- data/lib/locales/be.yml +0 -25
- data/lib/locales/bg.yml +0 -21
- data/lib/locales/bs.yml +0 -25
- data/lib/locales/ca.yml +0 -23
- data/lib/locales/ckb.yml +0 -18
- data/lib/locales/cs.yml +0 -23
- data/lib/locales/da.yml +0 -23
- data/lib/locales/de.yml +0 -21
- data/lib/locales/en.yml +0 -21
- data/lib/locales/fr.yml +0 -21
- data/lib/locales/hr.yml +0 -25
- data/lib/locales/id.yml +0 -19
- data/lib/locales/it.yml +0 -21
- data/lib/locales/ja.yml +0 -19
- data/lib/locales/km.yml +0 -19
- data/lib/locales/ko.yml +0 -19
- data/lib/locales/nb.yml +0 -21
- data/lib/locales/nl.yml +0 -21
- data/lib/locales/nn.yml +0 -21
- data/lib/locales/pl.yml +0 -25
- data/lib/locales/ru.yml +0 -27
- data/lib/locales/sr.yml +0 -25
- data/lib/locales/sv-SE.yml +0 -21
- data/lib/locales/sv.yml +0 -21
- data/lib/locales/sw.yml +0 -23
- data/lib/locales/ta.yml +0 -23
- data/lib/locales/tr.yml +0 -19
- data/lib/locales/uk.yml +0 -25
- data/lib/locales/vi.yml +0 -17
- data/lib/locales/zh-CN.yml +0 -19
- data/lib/locales/zh-HK.yml +0 -19
- data/lib/locales/zh-TW.yml +0 -19
- data/lib/pagy/backend.rb +0 -39
- data/lib/pagy/calendar/helper.rb +0 -65
- data/lib/pagy/calendar.rb +0 -126
- data/lib/pagy/countless.rb +0 -37
- data/lib/pagy/exceptions.rb +0 -25
- data/lib/pagy/extras/arel.rb +0 -36
- data/lib/pagy/extras/array.rb +0 -24
- data/lib/pagy/extras/bootstrap.rb +0 -108
- data/lib/pagy/extras/bulma.rb +0 -105
- data/lib/pagy/extras/calendar.rb +0 -53
- data/lib/pagy/extras/countless.rb +0 -37
- data/lib/pagy/extras/elasticsearch_rails.rb +0 -80
- data/lib/pagy/extras/foundation.rb +0 -105
- data/lib/pagy/extras/frontend_helpers.rb +0 -67
- data/lib/pagy/extras/gearbox.rb +0 -54
- data/lib/pagy/extras/headers.rb +0 -53
- data/lib/pagy/extras/i18n.rb +0 -26
- data/lib/pagy/extras/items.rb +0 -61
- data/lib/pagy/extras/jsonapi.rb +0 -79
- data/lib/pagy/extras/materialize.rb +0 -96
- data/lib/pagy/extras/meilisearch.rb +0 -65
- data/lib/pagy/extras/metadata.rb +0 -38
- data/lib/pagy/extras/navs.rb +0 -51
- data/lib/pagy/extras/overflow.rb +0 -80
- data/lib/pagy/extras/searchkick.rb +0 -67
- data/lib/pagy/extras/semantic.rb +0 -95
- data/lib/pagy/extras/standalone.rb +0 -60
- data/lib/pagy/extras/support.rb +0 -40
- data/lib/pagy/extras/trim.rb +0 -29
- data/lib/pagy/extras/uikit.rb +0 -97
- data/lib/pagy/frontend.rb +0 -114
- data/lib/pagy/i18n.rb +0 -165
- data/lib/pagy/url_helpers.rb +0 -27
- data/lib/stylesheets/pagy.css +0 -61
- data/lib/stylesheets/pagy.scss +0 -50
- data/lib/stylesheets/pagy.tailwind.scss +0 -24
- /data/{lib/javascripts/pagy-module.d.ts → javascripts/pagy.d.ts} +0 -0
data/lib/locales/ckb.yml
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
# :other pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
|
|
3
|
-
ckb:
|
|
4
|
-
pagy:
|
|
5
|
-
item_name: "بابەت"
|
|
6
|
-
aria_label:
|
|
7
|
-
nav: "پەڕەکان"
|
|
8
|
-
prev: "پاش"
|
|
9
|
-
next: "پێش"
|
|
10
|
-
prev: "<"
|
|
11
|
-
next: ">"
|
|
12
|
-
gap: "…"
|
|
13
|
-
info:
|
|
14
|
-
no_items: "هیچ %{item_name}ێک نەدۆزرایەوە"
|
|
15
|
-
single_page: "پیشاندانی <b>%{count}</b> %{item_name}"
|
|
16
|
-
multiple_pages: "پشاندانی %{item_name}ی <b>%{from}-%{to}</b> لە کۆی <b>%{count}</b> بە گشتی"
|
|
17
|
-
combo_nav_js: "<label>پەڕی %{page_input} لە %{pages}</label>"
|
|
18
|
-
items_selector_js: "<label>نیشاندانی %{items_input} %{item_name} لە هەر پەڕێک</label>"
|
data/lib/locales/cs.yml
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# :west_slavic pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
cs:
|
|
3
|
-
pagy:
|
|
4
|
-
aria_label:
|
|
5
|
-
nav:
|
|
6
|
-
one: "Stránka"
|
|
7
|
-
few: "Stránky" # use the other variant as this word is used as a bare plural without the numeral
|
|
8
|
-
other: "Stránky"
|
|
9
|
-
prev: "Předchozí"
|
|
10
|
-
next: "Další"
|
|
11
|
-
prev: "<"
|
|
12
|
-
next: ">"
|
|
13
|
-
gap: "…"
|
|
14
|
-
item_name:
|
|
15
|
-
one: "položka"
|
|
16
|
-
few: "položky"
|
|
17
|
-
other: "položek"
|
|
18
|
-
info:
|
|
19
|
-
no_items: "Nic nebylo nalezeno"
|
|
20
|
-
single_page: "Zobrazeno <b>%{count}</b> %{item_name}"
|
|
21
|
-
multiple_pages: "Zobrazeny položky <b>%{from}-%{to}</b> z <b>%{count}</b> celkem"
|
|
22
|
-
combo_nav_js: "<label>Strana %{page_input} z %{pages}</label>"
|
|
23
|
-
items_selector_js: "<label>Zobrazit %{items_input} %{item_name} na stránce</label>"
|
data/lib/locales/da.yml
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# :one_other pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
da:
|
|
3
|
-
pagy:
|
|
4
|
-
aria_label:
|
|
5
|
-
# please add a comment in the https://github.com/ddnexus/pagy/issues/583
|
|
6
|
-
# posting the translation of the following "Page"/"Pages" with the plurals for this locale
|
|
7
|
-
nav: "Pages"
|
|
8
|
-
# one: ""
|
|
9
|
-
# other: ""
|
|
10
|
-
prev: "Forrige"
|
|
11
|
-
next: "Næste"
|
|
12
|
-
prev: "<"
|
|
13
|
-
next: ">"
|
|
14
|
-
gap: "…"
|
|
15
|
-
item_name:
|
|
16
|
-
one: "resultat"
|
|
17
|
-
other: "resultater"
|
|
18
|
-
info:
|
|
19
|
-
no_items: "Ingen %{item_name} fundet"
|
|
20
|
-
single_page: "Viser <b>%{count}</b> %{item_name}"
|
|
21
|
-
multiple_pages: "Viser %{item_name} <b>%{from}-%{to}</b> af <b>%{count}</b> totalt"
|
|
22
|
-
combo_nav_js: "<label>Side %{page_input} af %{pages}</label>"
|
|
23
|
-
items_selector_js: "<label>Antal %{items_input} %{item_name} per side</label>"
|
data/lib/locales/de.yml
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
# :one_other pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
de:
|
|
3
|
-
pagy:
|
|
4
|
-
aria_label:
|
|
5
|
-
nav:
|
|
6
|
-
one: "Seite"
|
|
7
|
-
other: "Seiten"
|
|
8
|
-
prev: "Zurück"
|
|
9
|
-
next: "Weiter"
|
|
10
|
-
prev: "<"
|
|
11
|
-
next: ">"
|
|
12
|
-
gap: "…"
|
|
13
|
-
item_name:
|
|
14
|
-
one: "Eintrag"
|
|
15
|
-
other: "Einträge"
|
|
16
|
-
info:
|
|
17
|
-
no_items: "Keine %{item_name} gefunden"
|
|
18
|
-
single_page: "Zeige <b>%{count}</b> %{item_name}"
|
|
19
|
-
multiple_pages: "Zeige %{item_name} <b>%{from}-%{to}</b> von <b>%{count}</b> gesamt"
|
|
20
|
-
combo_nav_js: "<label>Seite %{page_input} von %{pages}</label>"
|
|
21
|
-
items_selector_js: "<label>Zeige %{items_input} %{item_name} pro Seite</label>"
|
data/lib/locales/en.yml
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
# :one_other pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
en:
|
|
3
|
-
pagy:
|
|
4
|
-
aria_label:
|
|
5
|
-
nav:
|
|
6
|
-
one: "Page"
|
|
7
|
-
other: "Pages"
|
|
8
|
-
prev: "Previous"
|
|
9
|
-
next: "Next"
|
|
10
|
-
prev: "<"
|
|
11
|
-
next: ">"
|
|
12
|
-
gap: "…"
|
|
13
|
-
item_name:
|
|
14
|
-
one: "item"
|
|
15
|
-
other: "items"
|
|
16
|
-
info:
|
|
17
|
-
no_items: "No %{item_name} found"
|
|
18
|
-
single_page: "Displaying <b>%{count}</b> %{item_name}"
|
|
19
|
-
multiple_pages: "Displaying %{item_name} <b>%{from}-%{to}</b> of <b>%{count}</b> in total"
|
|
20
|
-
combo_nav_js: "<label>Page %{page_input} of %{pages}</label>"
|
|
21
|
-
items_selector_js: "<label>Show %{items_input} %{item_name} per page</label>"
|
data/lib/locales/fr.yml
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
# :one_upto_two_other pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
fr:
|
|
3
|
-
pagy:
|
|
4
|
-
aria_label:
|
|
5
|
-
nav:
|
|
6
|
-
one: "Page"
|
|
7
|
-
other: "Pages"
|
|
8
|
-
prev: "Précédent"
|
|
9
|
-
next: "Suivant"
|
|
10
|
-
prev: "<"
|
|
11
|
-
next: ">"
|
|
12
|
-
gap: "…"
|
|
13
|
-
item_name:
|
|
14
|
-
one: "élément"
|
|
15
|
-
other: "éléments"
|
|
16
|
-
info:
|
|
17
|
-
no_items: "Aucun %{item_name} trouvé"
|
|
18
|
-
single_page: "Affichage de <b>%{count}</b> %{item_name}"
|
|
19
|
-
multiple_pages: "Affichage des %{item_name} <b>%{from} à %{to}</b> sur <b>%{count}</b> au total"
|
|
20
|
-
combo_nav_js: "<label>Page %{page_input} sur %{pages}</label>"
|
|
21
|
-
items_selector_js: "<label>Afficher %{items_input} %{item_name} par page</label>"
|
data/lib/locales/hr.yml
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# :east_slavic pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
hr:
|
|
3
|
-
pagy:
|
|
4
|
-
aria_label:
|
|
5
|
-
nav:
|
|
6
|
-
one: "Stranica"
|
|
7
|
-
few: "Stranice"
|
|
8
|
-
many: "Stranica"
|
|
9
|
-
other: "Stranice"
|
|
10
|
-
prev: "Prethodna"
|
|
11
|
-
next: "Sljedeća "
|
|
12
|
-
prev: "<"
|
|
13
|
-
next: ">"
|
|
14
|
-
gap: "…"
|
|
15
|
-
item_name:
|
|
16
|
-
one: "stavka"
|
|
17
|
-
few: "stavke"
|
|
18
|
-
many: "stavki"
|
|
19
|
-
other: "stavki"
|
|
20
|
-
info:
|
|
21
|
-
no_items: "Nije pronađena %{item_name}"
|
|
22
|
-
single_page: "Prikazuje se <b>%{count}</b> %{item_name}"
|
|
23
|
-
multiple_pages: "Prikaz %{item_name} <b>%{from}-%{to}</b> od <b>%{count}</b> ukupno"
|
|
24
|
-
combo_nav_js: "<label>Stranica %{page_input} od %{pages}</label>"
|
|
25
|
-
items_selector_js: "<label>Prikaži %{items_input} %{item_name} po stranici</label>"
|
data/lib/locales/id.yml
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
# :other pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
id:
|
|
3
|
-
pagy:
|
|
4
|
-
aria_label:
|
|
5
|
-
# please add a comment in the https://github.com/ddnexus/pagy/issues/588
|
|
6
|
-
# posting the translation of the following "Page"/"Pages" with the plurals for this locale
|
|
7
|
-
nav: "Pages"
|
|
8
|
-
prev: "Sebelumnya"
|
|
9
|
-
next: "Selanjutnya"
|
|
10
|
-
prev: "<"
|
|
11
|
-
next: ">"
|
|
12
|
-
gap: "…"
|
|
13
|
-
item_name: "item"
|
|
14
|
-
info:
|
|
15
|
-
no_items: "Tidak ditemukan %{item_name}"
|
|
16
|
-
single_page: "Menampilkan <b>%{count}</b> %{item_name}"
|
|
17
|
-
multiple_pages: "Menampilkan %{item_name} <b>%{from}-%{to}</b> dari total <b>%{count}</b>"
|
|
18
|
-
combo_nav_js: "<label>Halaman %{page_input} dari %{pages}</label>"
|
|
19
|
-
items_selector_js: "<label>Tampilkan %{items_input} %{item_name} per halaman</label>"
|
data/lib/locales/it.yml
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
# :one_other pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
it:
|
|
3
|
-
pagy:
|
|
4
|
-
aria_label:
|
|
5
|
-
nav:
|
|
6
|
-
one: "Pagina"
|
|
7
|
-
other: "Pagine"
|
|
8
|
-
prev: "Precedente"
|
|
9
|
-
next: "Seguente"
|
|
10
|
-
prev: "<"
|
|
11
|
-
next: ">"
|
|
12
|
-
gap: "…"
|
|
13
|
-
item_name:
|
|
14
|
-
one: "elemento"
|
|
15
|
-
other: "elementi"
|
|
16
|
-
info:
|
|
17
|
-
no_items: "Nessun %{item_name} trovato"
|
|
18
|
-
single_page: "Visualizzazione di <b>%{count}</b> %{item_name}"
|
|
19
|
-
multiple_pages: "Visualizzazione %{item_name} <b>%{from}-%{to}</b> di <b>%{count}</b> in totale"
|
|
20
|
-
combo_nav_js: "<label>Pagina %{page_input} di %{pages}</label>"
|
|
21
|
-
items_selector_js: "<label>Mostra %{items_input} %{item_name} per pagina</label>"
|
data/lib/locales/ja.yml
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
# :other pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
ja:
|
|
3
|
-
pagy:
|
|
4
|
-
aria_label:
|
|
5
|
-
# please add a comment in the https://github.com/ddnexus/pagy/issues/590
|
|
6
|
-
# posting the translation of the following "Page"/"Pages" with the plurals for this locale
|
|
7
|
-
nav: "Pages"
|
|
8
|
-
prev: "前へ"
|
|
9
|
-
next: "次へ"
|
|
10
|
-
prev: "<"
|
|
11
|
-
next: ">"
|
|
12
|
-
gap: "…"
|
|
13
|
-
item_name: "結果"
|
|
14
|
-
info:
|
|
15
|
-
no_items: "見つかりませんでした"
|
|
16
|
-
single_page: "<b>%{count}</b> 件の%{item_name}"
|
|
17
|
-
multiple_pages: "<b>%{count}</b> 件中 <b>%{from}-%{to}</b> 件目の%{item_name}を表示中"
|
|
18
|
-
combo_nav_js: "<label>%{page_input} / %{pages} ページ</label>"
|
|
19
|
-
items_selector_js: "<label>%{items_input} 件ずつ表示</label>"
|
data/lib/locales/km.yml
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
# :other pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
km:
|
|
3
|
-
pagy:
|
|
4
|
-
aria_label:
|
|
5
|
-
# please add a comment in the https://github.com/ddnexus/pagy/issues/591
|
|
6
|
-
# posting the translation of the following "Page"/"Pages" with the plurals for this locale
|
|
7
|
-
nav: "Pages"
|
|
8
|
-
prev: "មុន"
|
|
9
|
-
next: "បន្ទាប់"
|
|
10
|
-
prev: "<"
|
|
11
|
-
next: ">"
|
|
12
|
-
gap: "…"
|
|
13
|
-
item_name: "ធាតុ"
|
|
14
|
-
info:
|
|
15
|
-
no_items: "មិនមាន %{item_name} ទេ"
|
|
16
|
-
single_page: "បង្ហាញ <b>%{count}</b> %{item_name}"
|
|
17
|
-
multiple_pages: "បង្ហាញ %{item_name} <b>%{from}-%{to}</b> នៃ <b>%{count}</b> ជាចំនួនសរុប"
|
|
18
|
-
combo_nav_js: "<label>ទំព័រ %{page_input} នៃ %{pages}</label>"
|
|
19
|
-
items_selector_js: "<label>បង្ហាញ %{items_input} %{item_name} ក្នុង ១ ទំព័រ</label>"
|
data/lib/locales/ko.yml
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
# :other pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
ko:
|
|
3
|
-
pagy:
|
|
4
|
-
aria_label:
|
|
5
|
-
# please add a comment in the https://github.com/ddnexus/pagy/issues/592
|
|
6
|
-
# posting the translation of the following "Page"/"Pages" with the plurals for this locale
|
|
7
|
-
nav: "Pages"
|
|
8
|
-
prev: "이전"
|
|
9
|
-
next: "다음"
|
|
10
|
-
prev: "<"
|
|
11
|
-
next: ">"
|
|
12
|
-
gap: "…"
|
|
13
|
-
item_name: "항목"
|
|
14
|
-
info:
|
|
15
|
-
no_items: "%{item_name} 없음"
|
|
16
|
-
single_page: "<b>%{count}</b>개의 %{item_name} 표시됨"
|
|
17
|
-
multiple_pages: "총 <b>%{count}</b>개의 %{item_name} 중 <b>%{from}-%{to}</b>"
|
|
18
|
-
combo_nav_js: "<label>총 %{pages} 중 %{page_input} 페이지</label>"
|
|
19
|
-
items_selector_js: "<label>페이지 당 %{items_input}개 표시%</label>"
|
data/lib/locales/nb.yml
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
# :one_other pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
nb:
|
|
3
|
-
pagy:
|
|
4
|
-
aria_label:
|
|
5
|
-
nav:
|
|
6
|
-
one: "Side"
|
|
7
|
-
other: "Sider"
|
|
8
|
-
prev: "Forrige"
|
|
9
|
-
next: "Neste"
|
|
10
|
-
prev: "<"
|
|
11
|
-
next: ">"
|
|
12
|
-
gap: "…"
|
|
13
|
-
item_name:
|
|
14
|
-
one: "resultat"
|
|
15
|
-
other: "resultater"
|
|
16
|
-
info:
|
|
17
|
-
no_items: "Ingen %{item_name} funnet"
|
|
18
|
-
single_page: "Viser <b>%{count}</b> %{item_name}"
|
|
19
|
-
multiple_pages: "Viser %{item_name} <b>%{from}-%{to}</b> av totalt <b>%{count}</b>"
|
|
20
|
-
combo_nav_js: "<label>Side %{page_input} av %{pages}</label>"
|
|
21
|
-
items_selector_js: "<label>Vis %{items_input} %{item_name} per side</label>"
|
data/lib/locales/nl.yml
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
# :one_other pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
nl:
|
|
3
|
-
pagy:
|
|
4
|
-
aria_label:
|
|
5
|
-
nav:
|
|
6
|
-
one: "Pagina"
|
|
7
|
-
other: "Pagina's"
|
|
8
|
-
prev: "Vorige"
|
|
9
|
-
next: "Volgende"
|
|
10
|
-
prev: "<"
|
|
11
|
-
next: ">"
|
|
12
|
-
gap: "…"
|
|
13
|
-
item_name:
|
|
14
|
-
one: "stuk"
|
|
15
|
-
other: "stuks"
|
|
16
|
-
info:
|
|
17
|
-
no_items: "Geen %{item_name} gevonden"
|
|
18
|
-
single_page: "Toont <b>%{count}</b> %{item_name}"
|
|
19
|
-
multiple_pages: "Toont <b>%{from}-%{to}</b> %{item_name} van <b>%{count}</b> in totaal"
|
|
20
|
-
combo_nav_js: "<label>Pagina %{page_input} van %{pages}</label>"
|
|
21
|
-
items_selector_js: "<label>Toont %{items_input} %{item_name} per pagina</label>"
|
data/lib/locales/nn.yml
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
# :one_other pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
nn:
|
|
3
|
-
pagy:
|
|
4
|
-
aria_label:
|
|
5
|
-
nav:
|
|
6
|
-
one: "Side"
|
|
7
|
-
other: "Sider"
|
|
8
|
-
prev: "Førre"
|
|
9
|
-
next: "Neste"
|
|
10
|
-
prev: "<"
|
|
11
|
-
next: ">"
|
|
12
|
-
gap: "…"
|
|
13
|
-
item_name:
|
|
14
|
-
one: "resultat"
|
|
15
|
-
other: "resultat"
|
|
16
|
-
info:
|
|
17
|
-
no_items: "Ingen %{item_name} funne"
|
|
18
|
-
single_page: "Viser <b>%{count}</b> %{item_name}"
|
|
19
|
-
multiple_pages: "Viser %{item_name} <b>%{from}-%{to}</b> av totalt <b>%{count}</b>"
|
|
20
|
-
combo_nav_js: "<label>Side %{page_input} av %{pages}</label>"
|
|
21
|
-
items_selector_js: "<label>Vis %{items_input} %{item_name} per side</label>"
|
data/lib/locales/pl.yml
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# :polish pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
pl:
|
|
3
|
-
pagy:
|
|
4
|
-
aria_label:
|
|
5
|
-
nav:
|
|
6
|
-
one: "Strona"
|
|
7
|
-
few: "Strony"
|
|
8
|
-
many: "Stron"
|
|
9
|
-
other: "Strony"
|
|
10
|
-
prev: "Poprzednia"
|
|
11
|
-
next: "Następna"
|
|
12
|
-
prev: "<"
|
|
13
|
-
next: ">"
|
|
14
|
-
gap: "…"
|
|
15
|
-
item_name:
|
|
16
|
-
one: "element"
|
|
17
|
-
few: "elementy"
|
|
18
|
-
many: "elementów"
|
|
19
|
-
other: "elementów"
|
|
20
|
-
info:
|
|
21
|
-
no_items: "Nie znaleziono %{item_name}"
|
|
22
|
-
single_page: "Wyświetlono <b>%{count}</b> %{item_name}"
|
|
23
|
-
multiple_pages: "Wyświetlono %{item_name} <b>%{from}-%{to}</b> z wszystkich <b>%{count}</b>"
|
|
24
|
-
combo_nav_js: "<label>Strona %{page_input} z %{pages}</label>"
|
|
25
|
-
items_selector_js: "<label>Pokaż %{items_input} %{item_name} na stronie</label>"
|
data/lib/locales/ru.yml
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
# :east_slavic pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
ru:
|
|
3
|
-
pagy:
|
|
4
|
-
aria_label:
|
|
5
|
-
# please add a comment in the https://github.com/ddnexus/pagy/issues/599
|
|
6
|
-
# posting the translation of the following "Page"/"Pages" with the plurals for this locale
|
|
7
|
-
nav: "Pages"
|
|
8
|
-
# one: ""
|
|
9
|
-
# few: ""
|
|
10
|
-
# many: ""
|
|
11
|
-
# other: ""
|
|
12
|
-
prev: "Назад"
|
|
13
|
-
next: "Вперёд"
|
|
14
|
-
prev: "<"
|
|
15
|
-
next: ">"
|
|
16
|
-
gap: "…"
|
|
17
|
-
item_name:
|
|
18
|
-
one: "запись"
|
|
19
|
-
few: "записи"
|
|
20
|
-
many: "записей"
|
|
21
|
-
other: "записей"
|
|
22
|
-
info:
|
|
23
|
-
no_items: "Пока %{item_name} нет"
|
|
24
|
-
single_page: "<b>%{count}</b> %{item_name}"
|
|
25
|
-
multiple_pages: "Всего <b>%{count}</b> %{item_name}, показаны с <b>%{from}</b> по <b>%{to}</b>"
|
|
26
|
-
combo_nav_js: "<label>Страница %{page_input} из %{pages}</label>"
|
|
27
|
-
items_selector_js: "<label>Показать %{items_input} %{item_name} на странице</label>"
|
data/lib/locales/sr.yml
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# :east_slavic pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
sr:
|
|
3
|
-
pagy:
|
|
4
|
-
aria_label:
|
|
5
|
-
nav:
|
|
6
|
-
one: "Страница"
|
|
7
|
-
few: "Странице"
|
|
8
|
-
many: "Страница"
|
|
9
|
-
other: "Странице"
|
|
10
|
-
prev: "Претходна"
|
|
11
|
-
next: "Следећa "
|
|
12
|
-
prev: "<"
|
|
13
|
-
next: ">"
|
|
14
|
-
gap: "…"
|
|
15
|
-
item_name:
|
|
16
|
-
one: "ставка"
|
|
17
|
-
few: "ставкe"
|
|
18
|
-
many: "ставки"
|
|
19
|
-
other: "ставки"
|
|
20
|
-
info:
|
|
21
|
-
no_items: "Нema пронађених %{item_name}"
|
|
22
|
-
single_page: "Приказује се <b>%{count}</b> %{item_name}"
|
|
23
|
-
multiple_pages: "Приказ %{item_name} <b>%{from}-%{to}</b> од <b>%{count}</b> укупно"
|
|
24
|
-
combo_nav_js: "<label>Страниca %{page_input} од %{pages}</label>"
|
|
25
|
-
items_selector_js: "<label>Прикажи %{items_input} %{item_name} по страниcи</label>"
|
data/lib/locales/sv-SE.yml
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
# :one_other pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
sv-SE:
|
|
3
|
-
pagy:
|
|
4
|
-
aria_label:
|
|
5
|
-
nav:
|
|
6
|
-
one: "Sida"
|
|
7
|
-
other: "Sidor"
|
|
8
|
-
prev: "Föregående"
|
|
9
|
-
next: "Nästa"
|
|
10
|
-
prev: "<"
|
|
11
|
-
next: ">"
|
|
12
|
-
gap: "…"
|
|
13
|
-
item_name:
|
|
14
|
-
one: "resultat"
|
|
15
|
-
other: "resultat"
|
|
16
|
-
info:
|
|
17
|
-
no_items: "Inga %{item_name} hittade"
|
|
18
|
-
single_page: "Visar <b>%{count}</b> %{item_name}"
|
|
19
|
-
multiple_pages: "Visar %{item_name} <b>%{from}-%{to}</b> av <b>%{count}</b> totalt"
|
|
20
|
-
combo_nav_js: "<label>Sida %{page_input} av %{pages}</label>"
|
|
21
|
-
items_selector_js: "<label>Visa %{items_input} %{item_name} per sida</label>"
|
data/lib/locales/sv.yml
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
# :one_other pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
sv:
|
|
3
|
-
pagy:
|
|
4
|
-
aria_label:
|
|
5
|
-
nav:
|
|
6
|
-
one: "Sida"
|
|
7
|
-
other: "Sidor"
|
|
8
|
-
prev: "Föregående"
|
|
9
|
-
next: "Nästa"
|
|
10
|
-
prev: "<"
|
|
11
|
-
next: ">"
|
|
12
|
-
gap: "…"
|
|
13
|
-
item_name:
|
|
14
|
-
one: "resultat"
|
|
15
|
-
other: "resultat"
|
|
16
|
-
info:
|
|
17
|
-
no_items: "Inga %{item_name} hittade"
|
|
18
|
-
single_page: "Visar <b>%{count}</b> %{item_name}"
|
|
19
|
-
multiple_pages: "Visar %{item_name} <b>%{from}-%{to}</b> av <b>%{count}</b> totalt"
|
|
20
|
-
combo_nav_js: "<label>Sida %{page_input} av %{pages}</label>"
|
|
21
|
-
items_selector_js: "<label>Visa %{items_input} %{item_name} per sida</label>"
|
data/lib/locales/sw.yml
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# :one_other pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
sw:
|
|
3
|
-
pagy:
|
|
4
|
-
# please add a comment in the https://github.com/ddnexus/pagy/issues/603
|
|
5
|
-
# posting the translation of the following "Page"/"Pages" with the plurals for this locale
|
|
6
|
-
aria_label:
|
|
7
|
-
nav: "Pages"
|
|
8
|
-
# one: ""
|
|
9
|
-
# other: ""
|
|
10
|
-
prev: "Awali"
|
|
11
|
-
next: "Ifuatayo"
|
|
12
|
-
prev: "<"
|
|
13
|
-
next: ">"
|
|
14
|
-
gap: "…"
|
|
15
|
-
item_name:
|
|
16
|
-
one: "kifaa"
|
|
17
|
-
other: "vifaa"
|
|
18
|
-
info:
|
|
19
|
-
no_items: "Hamna %{item_name} vilivyopatikana"
|
|
20
|
-
single_page: "Inaonyesha %{item_name} <b>%{count}</b>"
|
|
21
|
-
multiple_pages: "Inaonyesha %{item_name} <b>%{from}-%{to}</b> ya <b>%{count}</b> kwa jumla"
|
|
22
|
-
combo_nav_js: "<label>Kurasa %{page_input} ya %{pages}</label>"
|
|
23
|
-
items_selector_js: "<label>Onyesha %{items_input} %{item_name} kwa kila ukurasa</label>"
|
data/lib/locales/ta.yml
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
# :one_other pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
ta:
|
|
3
|
-
pagy:
|
|
4
|
-
aria_label:
|
|
5
|
-
# please add a comment in the https://github.com/ddnexus/pagy/issues/604
|
|
6
|
-
# posting the translation of the following "Page"/"Pages" with the plurals for this locale
|
|
7
|
-
nav: "Pages"
|
|
8
|
-
# one: ""
|
|
9
|
-
# other: ""
|
|
10
|
-
prev: "முந்தையது"
|
|
11
|
-
next: "அடுத்தது"
|
|
12
|
-
prev: "<"
|
|
13
|
-
next: ">"
|
|
14
|
-
gap: "…"
|
|
15
|
-
item_name:
|
|
16
|
-
one: "பதிவு"
|
|
17
|
-
other: "பதிவுகள்"
|
|
18
|
-
info:
|
|
19
|
-
no_items: "%{item_name} கிடைக்கவில்லை"
|
|
20
|
-
single_page: "<b>%{count}</b> %{item_name} காட்டப்படுகின்றது"
|
|
21
|
-
multiple_pages: "மொத்தம் <b>%{count}</b> %{item_name}, காட்டப்படுபவை <b>%{from}-%{to}</b>"
|
|
22
|
-
combo_nav_js: "<label>%{pages}-இல் %{page_input}-வது பக்கம்</label>"
|
|
23
|
-
items_selector_js: "<label>ஒரு பக்கத்திற்கு %{items_input} %{item_name} காட்டு</label>"
|
data/lib/locales/tr.yml
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
# :other pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
tr:
|
|
3
|
-
pagy:
|
|
4
|
-
aria_label:
|
|
5
|
-
# please add a comment in the https://github.com/ddnexus/pagy/issues/605
|
|
6
|
-
# posting the translation of the following "Page"/"Pages" with the plurals for this locale
|
|
7
|
-
nav: "Pages"
|
|
8
|
-
prev: "Önceki"
|
|
9
|
-
next: "Sonraki"
|
|
10
|
-
prev: "<"
|
|
11
|
-
next: ">"
|
|
12
|
-
gap: "…"
|
|
13
|
-
item_name: "kayıt"
|
|
14
|
-
info:
|
|
15
|
-
no_items: "Hiç %{item_name} bulunamadı"
|
|
16
|
-
single_page: "Toplam <b>%{count}</b> %{item_name} gösteriliyor"
|
|
17
|
-
multiple_pages: "<b>%{count}</b> %{item_name} içerisinden <b>%{from}-%{to}</b> kadarı gösteriliyor"
|
|
18
|
-
combo_nav_js: "<label>Sayfa %{page_input} / %{pages}</label>"
|
|
19
|
-
items_selector_js: "<label>Sayfada %{items_input} %{item_name} göster</label>"
|
data/lib/locales/uk.yml
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# :east_slavic pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
uk:
|
|
3
|
-
pagy:
|
|
4
|
-
aria_label:
|
|
5
|
-
nav:
|
|
6
|
-
one: "Сторінка"
|
|
7
|
-
few: "Сторінки"
|
|
8
|
-
many: "Сторінок"
|
|
9
|
-
other: "Сторінки"
|
|
10
|
-
prev: "Назад"
|
|
11
|
-
next: "Далі"
|
|
12
|
-
prev: "<"
|
|
13
|
-
next: ">"
|
|
14
|
-
gap: "…"
|
|
15
|
-
item_name:
|
|
16
|
-
one: "запис"
|
|
17
|
-
few: "записів"
|
|
18
|
-
many: "записів"
|
|
19
|
-
other: "записів"
|
|
20
|
-
info:
|
|
21
|
-
no_items: "Більше %{item_name} немає"
|
|
22
|
-
single_page: "<b>%{count}</b> %{item_name}"
|
|
23
|
-
multiple_pages: "Загалом <b>%{count}</b> %{item_name}, показані з <b>%{from}</b> по <b>%{to}</b>"
|
|
24
|
-
combo_nav_js: "<label>Сторінка %{page_input} з %{pages}</label>"
|
|
25
|
-
items_selector_js: "<label>Показати %{items_input} %{item_name} на сторінці</label>"
|
data/lib/locales/vi.yml
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
# :other pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
vi:
|
|
3
|
-
pagy:
|
|
4
|
-
aria_label:
|
|
5
|
-
nav: "Trang"
|
|
6
|
-
prev: "Trang trước"
|
|
7
|
-
next: "Trang sau"
|
|
8
|
-
prev: "<"
|
|
9
|
-
next: ">"
|
|
10
|
-
gap: "…"
|
|
11
|
-
item_name: "kết quả"
|
|
12
|
-
info:
|
|
13
|
-
no_items: "Không tìm thấy %{item_name} nào"
|
|
14
|
-
single_page: "<b>%{count}</b> %{item_name}"
|
|
15
|
-
multiple_pages: "Đang hiển thị <b>%{from}-%{to}</b> trong tổng số <b>%{count} %{item_name}</b>"
|
|
16
|
-
combo_nav_js: "<label>Trang %{page_input} trên %{pages}</label>"
|
|
17
|
-
items_selector_js: "<label>Hiển thị %{items_input} %{item_name} mỗi trang</label>"
|
data/lib/locales/zh-CN.yml
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
# :other pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
zh-CN:
|
|
3
|
-
pagy:
|
|
4
|
-
aria_label:
|
|
5
|
-
# please add a comment in the https://github.com/ddnexus/pagy/issues/608
|
|
6
|
-
# posting the translation of the following "Page"/"Pages" with the plurals for this locale
|
|
7
|
-
nav: "Pages"
|
|
8
|
-
prev: "上一页"
|
|
9
|
-
next: "下一页"
|
|
10
|
-
prev: "<"
|
|
11
|
-
next: ">"
|
|
12
|
-
gap: "…"
|
|
13
|
-
item_name: ""
|
|
14
|
-
info:
|
|
15
|
-
no_items: "项目未找到"
|
|
16
|
-
single_page: "显示<b>%{count}</b> 项%{item_name}"
|
|
17
|
-
multiple_pages: "共 <b>%{count}</b> 项%{item_name},显示 <b>%{from}-%{to}</b>"
|
|
18
|
-
combo_nav_js: "<label>第 %{page_input} / %{pages} 页</label>"
|
|
19
|
-
items_selector_js: "<label>每页显示 %{items_input} 条%</label>"
|
data/lib/locales/zh-HK.yml
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
# :other pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
zh-HK:
|
|
3
|
-
pagy:
|
|
4
|
-
aria_label:
|
|
5
|
-
# please add a comment in the https://github.com/ddnexus/pagy/issues/609
|
|
6
|
-
# posting the translation of the following "Page"/"Pages" with the plurals for this locale
|
|
7
|
-
nav: "Pages"
|
|
8
|
-
prev: "上一頁"
|
|
9
|
-
next: "下一頁"
|
|
10
|
-
prev: "<"
|
|
11
|
-
next: ">"
|
|
12
|
-
gap: "…"
|
|
13
|
-
item_name: ""
|
|
14
|
-
info:
|
|
15
|
-
no_items: "記錄未搵到"
|
|
16
|
-
single_page: "顯示 <b>%{count}</b> %{item_name}"
|
|
17
|
-
multiple_pages: "共 <b>%{count}</b> %{item_name},顯示 <b>%{from}-%{to}</b>"
|
|
18
|
-
combo_nav_js: "<label>第 %{page_input} / %{pages} 頁</label>"
|
|
19
|
-
items_selector_js: "<label>每頁顯示 %{items_input} 記錄</label>"
|
data/lib/locales/zh-TW.yml
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
# :other pluralization (see https://github.com/ddnexus/pagy/blob/master/lib/pagy/i18n.rb)
|
|
2
|
-
zh-TW:
|
|
3
|
-
pagy:
|
|
4
|
-
aria_label:
|
|
5
|
-
# please add a comment in the https://github.com/ddnexus/pagy/issues/610
|
|
6
|
-
# posting the translation of the following "Page"/"Pages" with the plurals for this locale
|
|
7
|
-
nav: "Pages"
|
|
8
|
-
prev: "上一頁"
|
|
9
|
-
next: "下一頁"
|
|
10
|
-
prev: "<"
|
|
11
|
-
next: ">"
|
|
12
|
-
gap: "…"
|
|
13
|
-
item_name: ""
|
|
14
|
-
info:
|
|
15
|
-
no_items: "沒找到項"
|
|
16
|
-
single_page: "顯示 <b>%{count}</b> 項%{item_name}"
|
|
17
|
-
multiple_pages: "共 <b>%{count}</b> 項%{item_name},顯示 <b>%{from}-%{to}</b>"
|
|
18
|
-
combo_nav_js: "<label>第 %{page_input} / %{pages} 頁</label>"
|
|
19
|
-
items_selector_js: "<label>每頁顯示 %{items_input} 項%{item_name}</label>"
|