avo 2.16.1.pre.1.nativefields → 2.17.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of avo might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Gemfile +4 -2
- data/Gemfile.lock +3 -1
- data/README.md +1 -1
- data/app/assets/config/avo_manifest.js +1 -0
- data/app/assets/svgs/placeholder.svg +1 -0
- data/app/components/avo/actions_component.html.erb +3 -3
- data/app/components/avo/base_component.rb +7 -4
- data/app/components/avo/field_wrapper_component.html.erb +8 -10
- data/app/components/avo/field_wrapper_component.rb +14 -12
- data/app/components/avo/fields/badge_field/index_component.html.erb +1 -1
- data/app/components/avo/fields/belongs_to_field/edit_component.rb +9 -3
- data/app/components/avo/fields/belongs_to_field/index_component.html.erb +1 -1
- data/app/components/avo/fields/belongs_to_field/show_component.html.erb +1 -1
- data/app/components/avo/fields/belongs_to_field/show_component.rb +1 -1
- data/app/components/avo/fields/boolean_field/index_component.html.erb +1 -1
- data/app/components/avo/fields/boolean_field/show_component.html.erb +1 -1
- data/app/components/avo/fields/boolean_group_field/index_component.html.erb +1 -1
- data/app/components/avo/fields/boolean_group_field/show_component.html.erb +1 -1
- data/app/components/avo/fields/code_field/show_component.html.erb +1 -1
- data/app/components/avo/fields/common/heading_component.html.erb +5 -4
- data/app/components/avo/fields/common/heading_component.rb +6 -1
- data/app/components/avo/fields/country_field/index_component.html.erb +1 -1
- data/app/components/avo/fields/date_field/index_component.html.erb +1 -1
- data/app/components/avo/fields/date_time_field/index_component.html.erb +1 -1
- data/app/components/avo/fields/edit_component.rb +6 -4
- data/app/components/avo/fields/external_image_field/index_component.html.erb +1 -1
- data/app/components/avo/fields/file_field/edit_component.html.erb +2 -1
- data/app/components/avo/fields/file_field/index_component.html.erb +1 -1
- data/app/components/avo/fields/files_field/edit_component.html.erb +2 -1
- data/app/components/avo/fields/files_field/index_component.html.erb +1 -1
- data/app/components/avo/fields/files_field/show_component.html.erb +1 -1
- data/app/components/avo/fields/gravatar_field/index_component.html.erb +1 -1
- data/app/components/avo/fields/has_one_field/index_component.html.erb +1 -1
- data/app/components/avo/fields/heading_field/edit_component.html.erb +1 -1
- data/app/components/avo/fields/heading_field/show_component.html.erb +1 -1
- data/app/components/avo/fields/id_field/index_component.html.erb +1 -1
- data/app/components/avo/fields/index_component.rb +11 -2
- data/app/components/avo/fields/number_field/index_component.html.erb +1 -1
- data/app/components/avo/fields/progress_bar_field/index_component.html.erb +1 -1
- data/app/components/avo/fields/select_field/index_component.html.erb +1 -1
- data/app/components/avo/fields/show_component.rb +7 -1
- data/app/components/avo/fields/status_field/index_component.html.erb +1 -1
- data/app/components/avo/fields/tags_field/index_component.html.erb +1 -1
- data/app/components/avo/fields/text_field/edit_component.html.erb +3 -1
- data/app/components/avo/fields/text_field/index_component.html.erb +1 -1
- data/app/components/avo/fields/trix_field/edit_component.html.erb +1 -1
- data/app/components/avo/filters_component.html.erb +2 -2
- data/app/components/avo/index/grid_cover_empty_state_component.html.erb +1 -1
- data/app/components/avo/index/grid_item_component.html.erb +15 -13
- data/app/components/avo/index/grid_item_component.rb +1 -1
- data/app/components/avo/index/ordering/buttons_component.html.erb +1 -1
- data/app/components/avo/index/resource_controls_component.rb +2 -2
- data/app/components/avo/index/table_row_component.html.erb +1 -1
- data/app/components/avo/panel_component.html.erb +11 -2
- data/app/components/avo/panel_component.rb +1 -0
- data/app/components/avo/resource_component.rb +18 -0
- data/app/components/avo/resource_sidebar_component.html.erb +19 -0
- data/app/components/avo/resource_sidebar_component.rb +26 -0
- data/app/components/avo/sidebar_profile_component.html.erb +1 -1
- data/app/components/avo/tab_switcher_component.html.erb +2 -2
- data/app/components/avo/views/resource_edit_component.html.erb +31 -25
- data/app/components/avo/views/resource_edit_component.rb +1 -1
- data/app/components/avo/views/resource_show_component.html.erb +8 -2
- data/app/components/avo/views/resource_show_component.rb +1 -1
- data/app/controllers/avo/actions_controller.rb +10 -2
- data/app/controllers/avo/application_controller.rb +4 -2
- data/app/controllers/avo/associations_controller.rb +10 -5
- data/app/controllers/avo/attachments_controller.rb +2 -1
- data/app/controllers/avo/base_controller.rb +6 -4
- data/app/controllers/avo/search_controller.rb +13 -4
- data/app/helpers/avo/application_helper.rb +3 -3
- data/app/helpers/avo/resources_helper.rb +2 -2
- data/app/javascript/avo.base.js +3 -1
- data/app/javascript/js/controllers/action_controller.js +1 -4
- data/app/javascript/js/controllers/actions_picker_controller.js +8 -9
- data/app/javascript/js/controllers/tabs_controller.js +14 -27
- data/app/views/avo/actions/show.html.erb +2 -2
- data/app/views/avo/home/failed_to_load.html.erb +3 -2
- data/config/brakeman.ignore +40 -0
- data/db/factories.rb +20 -0
- data/lib/avo/base_resource.rb +26 -0
- data/lib/avo/concerns/fetches_things.rb +1 -1
- data/lib/avo/concerns/has_fields.rb +22 -0
- data/lib/avo/concerns/is_resource_item.rb +4 -0
- data/lib/avo/configuration/branding.rb +9 -1
- data/lib/avo/fields/belongs_to_field.rb +3 -0
- data/lib/avo/fields/heading_field.rb +15 -0
- data/lib/avo/items_holder.rb +4 -0
- data/lib/avo/licensing/pro_license.rb +1 -0
- data/lib/avo/menu/builder.rb +1 -1
- data/lib/avo/menu/menu.rb +0 -2
- data/lib/avo/reloader.rb +27 -26
- data/lib/avo/services/encryption_service.rb +1 -1
- data/lib/avo/sidebar.rb +60 -0
- data/lib/avo/sidebar_builder.rb +24 -0
- data/lib/avo/version.rb +1 -1
- data/lib/generators/avo/templates/field/components/index_component.html.erb.tt +1 -1
- data/lib/generators/avo/templates/initializer/avo.tt +2 -1
- data/lib/generators/avo/templates/locales/avo.en.yml +0 -1
- data/lib/generators/avo/templates/locales/{avo.nb-NO.yml → avo.nb.yml} +35 -10
- data/lib/generators/avo/templates/locales/avo.nn.yml +118 -0
- data/lib/generators/avo/templates/locales/avo.tr.yml +119 -0
- data/public/avo-assets/avo.base.css +57 -75
- data/public/avo-assets/avo.base.js +63 -63
- data/public/avo-assets/avo.base.js.map +3 -3
- metadata +13 -7
- data/app/views/avo/home/failed_to_load.html copy.erb +0 -23
- data/config/master.key +0 -1
@@ -1,4 +1,4 @@
|
|
1
|
-
nb
|
1
|
+
nb:
|
2
2
|
avo:
|
3
3
|
dashboard: 'Dashboard'
|
4
4
|
dashboards: 'Dashboards'
|
@@ -41,6 +41,10 @@ nb-NO:
|
|
41
41
|
zero: 'ingen %{item}'
|
42
42
|
one: 'en %{item}'
|
43
43
|
other: '%{count} %{item}'
|
44
|
+
x_items_more:
|
45
|
+
zero: 'ingen flere elementer'
|
46
|
+
one: 'ett element til'
|
47
|
+
other: '%{count} flere elementer'
|
44
48
|
are_you_sure: 'Er du sikker?'
|
45
49
|
filters: 'Filter'
|
46
50
|
per_page: 'Per side'
|
@@ -61,6 +65,7 @@ nb-NO:
|
|
61
65
|
and_x_other_resources: 'og %{count} andre ressurser'
|
62
66
|
go_back: 'Gå tilbake'
|
63
67
|
home: 'Hjem'
|
68
|
+
new: 'ny'
|
64
69
|
attach_item: 'Legg til %{item}'
|
65
70
|
choose_item: 'Velge %{item}'
|
66
71
|
create_new_item: 'Lag ny %{item}'
|
@@ -74,6 +79,10 @@ nb-NO:
|
|
74
79
|
zero: 'filer'
|
75
80
|
one: 'fil'
|
76
81
|
other: 'filer'
|
82
|
+
people:
|
83
|
+
zero: 'personer'
|
84
|
+
one: 'person'
|
85
|
+
other: 'personer'
|
77
86
|
resource_translations:
|
78
87
|
user:
|
79
88
|
zero: 'brukere'
|
@@ -81,13 +90,29 @@ nb-NO:
|
|
81
90
|
other: 'brukere'
|
82
91
|
reset_filters: 'Nullstill filter'
|
83
92
|
not_authorized: 'Du er ikke autorisert til å gjøre denne handlingen.'
|
84
|
-
|
85
|
-
|
93
|
+
search:
|
94
|
+
placeholder: 'Søk'
|
95
|
+
cancel_button: 'Avbryt'
|
86
96
|
sign_out: 'Logg ut'
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
97
|
+
failed: 'Feilet'
|
98
|
+
failed_to_load: 'Lasting feilet'
|
99
|
+
key_value_field:
|
100
|
+
key: 'Nøkkel'
|
101
|
+
value: 'Verdi'
|
102
|
+
add_row: 'Legg til rad'
|
103
|
+
delete_row: 'Slett rad'
|
104
|
+
was_successfully_created: 'ble opprettet'
|
105
|
+
was_successfully_updated: 'ble oppdatert'
|
106
|
+
clear_value: 'Nullstill verdi'
|
107
|
+
tools: 'Redskapene'
|
108
|
+
order:
|
109
|
+
reorder_record: 'Sorter elementer'
|
110
|
+
higher: 'Flytt elementet høyere'
|
111
|
+
lower: 'Flytt elementet lavere'
|
112
|
+
to_top: 'Flytt elementet til toppen'
|
113
|
+
to_bottom: 'Flytt elementet til bunnen'
|
114
|
+
empty_dashboard_message: 'Legg til kort i dette dashbordet'
|
115
|
+
no_cards_present: 'Ingen kort til stede'
|
116
|
+
no_options_available: 'Ingen tilgjengelige alternativer'
|
117
|
+
x_records_selected_from_a_total_of_x_html: '<span class="font-bold text-gray-700">%{selected}</span> poster valgt på denne siden fra totalt <span class="font-bold text-gray-700">%{count}</span>'
|
118
|
+
x_records_selected_from_all_pages_html: '<span class="font-bold text-gray-700">%{count}</span> poster valgt fra alle sider'
|
@@ -0,0 +1,118 @@
|
|
1
|
+
nn:
|
2
|
+
avo:
|
3
|
+
dashboard: 'Dashboard'
|
4
|
+
dashboards: 'Dashboards'
|
5
|
+
choose_a_country: 'Vel eit land'
|
6
|
+
choose_an_option: 'Vel eit alternativ'
|
7
|
+
are_you_sure_you_want_to_run_this_option: 'Er du sikker?'
|
8
|
+
are_you_sure_detach_item: 'Er du sikker på at du vil koble frå %{item}.'
|
9
|
+
run: 'Køyr'
|
10
|
+
cancel: 'Avslutt'
|
11
|
+
action_ran_successfully: 'Suksess!'
|
12
|
+
details: "detaljar"
|
13
|
+
unauthorized: 'Ikkje autorisert'
|
14
|
+
attachment_class_attached: '%{attachment_class} lagt til.'
|
15
|
+
attachment_class_detached: '%{attachment_class} fjerna.'
|
16
|
+
resource_updated: 'Ressurs oppdatert'
|
17
|
+
resource_created: 'Ressurs generert'
|
18
|
+
resource_destroyed: 'Ressurs sletta'
|
19
|
+
switch_to_view: "Bytt til %{view_type} vis"
|
20
|
+
click_to_reveal_filters: "Vis filter"
|
21
|
+
attachment_destroyed: 'Vedlegg sletta'
|
22
|
+
failed_to_find_attachment: 'Fann ikkje vedlegg'
|
23
|
+
you_missed_something_check_form: 'Her manglar du noko. Ver venleg og sjekk skjemaet.'
|
24
|
+
remove_selection: 'Fjern val'
|
25
|
+
select_item: 'Vel'
|
26
|
+
select_all: 'Vel alle'
|
27
|
+
select_all_matching: 'Vel alle samsvarende'
|
28
|
+
undo: angre
|
29
|
+
delete_file: 'Slett fil'
|
30
|
+
delete: 'slett'
|
31
|
+
delete_item: 'Slett %{item}'
|
32
|
+
download_item: 'Last ned %{item}'
|
33
|
+
download_file: 'Last ned fil'
|
34
|
+
download: 'Last ned'
|
35
|
+
view: 'Vis'
|
36
|
+
view_item: 'vis %{item}'
|
37
|
+
edit: 'endre'
|
38
|
+
edit_item: 'endre %{item}'
|
39
|
+
detach_item: 'koble frå %{item}'
|
40
|
+
number_of_items:
|
41
|
+
zero: 'ingen %{item}'
|
42
|
+
one: 'en %{item}'
|
43
|
+
other: '%{count} %{item}'
|
44
|
+
x_items_more:
|
45
|
+
zero: 'ingen fleire element'
|
46
|
+
one: 'ett element til'
|
47
|
+
other: '%{count} fleire element'
|
48
|
+
are_you_sure: 'Er du sikker?'
|
49
|
+
filters: 'Filter'
|
50
|
+
per_page: 'Per side'
|
51
|
+
more: 'Meir'
|
52
|
+
attach: 'Legg til'
|
53
|
+
save: 'Lagre'
|
54
|
+
attach_and_attach_another: 'Legg til & Legg til ny'
|
55
|
+
hide_content: 'Skjul innhald'
|
56
|
+
show_content: 'Vis innhald'
|
57
|
+
no_related_item_found: 'Fann ingen relaterte %{item}'
|
58
|
+
no_item_found: 'Fann ingen %{item}'
|
59
|
+
loading: 'Lastar'
|
60
|
+
confirm: 'Stadfest'
|
61
|
+
actions: 'Handlingar'
|
62
|
+
resources: 'Ressursar'
|
63
|
+
oops_nothing_found: 'Oops! Fann ikkje noko...'
|
64
|
+
type_to_search: 'Søk.'
|
65
|
+
and_x_other_resources: 'og %{count} andre ressurar'
|
66
|
+
go_back: 'Gå tilbake'
|
67
|
+
home: 'Heim'
|
68
|
+
new: 'ny'
|
69
|
+
attach_item: 'Legg til %{item}'
|
70
|
+
choose_item: 'Vel %{item}'
|
71
|
+
create_new_item: 'Lag ny %{item}'
|
72
|
+
table_view: 'Tabellvisning'
|
73
|
+
grid_view: 'Gridvisning'
|
74
|
+
next_page: 'Neste side'
|
75
|
+
prev_page: 'Forrige side'
|
76
|
+
list_is_empty: 'Listen er tom'
|
77
|
+
field_translations:
|
78
|
+
file:
|
79
|
+
zero: 'filer'
|
80
|
+
one: 'fil'
|
81
|
+
other: 'filer'
|
82
|
+
people:
|
83
|
+
zero: 'personar'
|
84
|
+
one: 'person'
|
85
|
+
other: 'personar'
|
86
|
+
resource_translations:
|
87
|
+
user:
|
88
|
+
zero: 'brukarar'
|
89
|
+
one: 'bruker'
|
90
|
+
other: 'brukarar'
|
91
|
+
reset_filters: 'Nullstill filter'
|
92
|
+
not_authorized: 'Du er ikkje autorisert til å gjere denne handlinga.'
|
93
|
+
search:
|
94
|
+
placeholder: 'Søk'
|
95
|
+
cancel_button: 'Avbryt'
|
96
|
+
sign_out: 'Logg ut'
|
97
|
+
failed: 'Feila'
|
98
|
+
failed_to_load: 'Lasting feila'
|
99
|
+
key_value_field:
|
100
|
+
key: 'Nøkkel'
|
101
|
+
value: 'Verdi'
|
102
|
+
add_row: 'Legg til rad'
|
103
|
+
delete_row: 'Slett rad'
|
104
|
+
was_successfully_created: 'vart oppretta'
|
105
|
+
was_successfully_updated: 'vart oppdatert'
|
106
|
+
clear_value: 'Nullstill verdi'
|
107
|
+
tools: 'Reiskapane'
|
108
|
+
order:
|
109
|
+
reorder_record: 'Sorter element'
|
110
|
+
higher: 'Flytt elementet opp'
|
111
|
+
lower: 'Flytt elementet ned'
|
112
|
+
to_top: 'Flytt elementet til toppen'
|
113
|
+
to_bottom: 'Flytt elementet til bunnen'
|
114
|
+
empty_dashboard_message: 'Legg til kort i dette dashbordet'
|
115
|
+
no_cards_present: 'Ingen kort til stades'
|
116
|
+
no_options_available: 'Ingen tilgjengelege alternativ'
|
117
|
+
x_records_selected_from_a_total_of_x_html: '<span class="font-bold text-gray-700">%{selected}</span> valde postar på denne sida av totalt <span class="font-bold text-gray-700">%{count}</span>'
|
118
|
+
x_records_selected_from_all_pages_html: '<span class="font-bold text-gray-700">%{count}</span> valde postar frå alle sider'
|
@@ -0,0 +1,119 @@
|
|
1
|
+
tr:
|
2
|
+
avo:
|
3
|
+
dashboard: 'Yönetim Paneli'
|
4
|
+
dashboards: 'Yönetim Panelleri'
|
5
|
+
choose_a_country: 'Bir ülke seç'
|
6
|
+
choose_an_option: 'Bir seçenek seç'
|
7
|
+
are_you_sure_you_want_to_run_this_option: 'Bu işlemi gerçekleştirmek istediğinize emin misiniz?'
|
8
|
+
are_you_sure_detach_item: '%{item} öğesini ayırmak istediğinizden emin misiniz?'
|
9
|
+
run: 'Başlat'
|
10
|
+
cancel: 'İptal et'
|
11
|
+
action_ran_successfully: 'Eylem başarıyla gerçekleşti!'
|
12
|
+
details: "detaylar"
|
13
|
+
unauthorized: 'Yetkisiz'
|
14
|
+
attachment_class_attached: '%{attachment_class} ilişkilendirildi.'
|
15
|
+
attachment_class_detached: '%{attachment_class} ilişkisi kesildi.'
|
16
|
+
resource_updated: 'Kayıt güncellendi'
|
17
|
+
resource_created: 'Kayıt oluşturuldu'
|
18
|
+
resource_destroyed: 'Kayıt silindi'
|
19
|
+
switch_to_view: "%{view_type} görünümüne kay"
|
20
|
+
click_to_reveal_filters: "Filtreleri ortaya çıkarmak için tıklayın"
|
21
|
+
attachment_destroyed: 'Ek silindi'
|
22
|
+
failed_to_find_attachment: 'Ek bulunamadı'
|
23
|
+
you_missed_something_check_form: 'Bir şeyleri kaçırmış olabilirsiniz. Lütfen formu kontrol edin.'
|
24
|
+
remove_selection: 'Seçimi sil'
|
25
|
+
select_item: 'Öğe seç'
|
26
|
+
select_all: 'Tümünü seç'
|
27
|
+
select_all_matching: 'Tüm eşleşenleri seç'
|
28
|
+
undo: geri al
|
29
|
+
delete_file: 'Dosyayı sil'
|
30
|
+
delete: 'sil'
|
31
|
+
delete_item: '%{item} öğresini sil'
|
32
|
+
download_item: '%{item} öğesini indir'
|
33
|
+
download_file: 'Dosya indir'
|
34
|
+
download: 'İndir'
|
35
|
+
view: 'Görünüm'
|
36
|
+
view_item: '%{item} öğresini görüntüle'
|
37
|
+
edit: 'düzenle'
|
38
|
+
edit_item: '%{item} öğesini düzenle'
|
39
|
+
detach_item: '%{item} öğesinin ilişkisini kes'
|
40
|
+
number_of_items:
|
41
|
+
zero: 'sıfır %{item}'
|
42
|
+
one: 'bir %{item}'
|
43
|
+
other: '%{count} %{item}'
|
44
|
+
x_items_more:
|
45
|
+
zero: 'daha fazla öğe yok'
|
46
|
+
one: 'bir öğe daha'
|
47
|
+
other: '%{count} öğe daha'
|
48
|
+
are_you_sure: 'Emin misiniz?'
|
49
|
+
filters: 'Filtreler'
|
50
|
+
per_page: 'Sayfa başına'
|
51
|
+
more: 'Daha fazla'
|
52
|
+
attach: 'İlişkilendir'
|
53
|
+
cancel: 'İptal et'
|
54
|
+
save: 'Kaydet'
|
55
|
+
attach_and_attach_another: 'İlişkilendir & Bir başka daha İlişkilendir'
|
56
|
+
hide_content: 'İçeriği gizle'
|
57
|
+
show_content: 'İçeriği göster'
|
58
|
+
no_related_item_found: 'İlişkili öğe bulunamadı'
|
59
|
+
no_item_found: 'Hiç %{item} bulunamadı'
|
60
|
+
loading: 'Yükleniyor'
|
61
|
+
confirm: 'Onayla'
|
62
|
+
actions: 'Aksiyonlar'
|
63
|
+
resources: 'Kaynaklar'
|
64
|
+
oops_nothing_found: 'Hata! Hiçbir şey bulunamadı'
|
65
|
+
type_to_search: 'Aramak için yazın.'
|
66
|
+
and_x_other_resources: 've %{count} diğer kaynak'
|
67
|
+
go_back: 'Geri dön'
|
68
|
+
home: 'Anasayfa'
|
69
|
+
new: 'yeni'
|
70
|
+
attach_item: '%{item} öğesini ilişkilendir'
|
71
|
+
choose_item: '%{item} seçin'
|
72
|
+
create_new_item: 'Yeni bir %{item} oluşturun'
|
73
|
+
table_view: 'Tablo görünümü'
|
74
|
+
grid_view: 'Grid görünümü'
|
75
|
+
next_page: 'Sonraki sayfa'
|
76
|
+
prev_page: 'Önceki sayfa'
|
77
|
+
list_is_empty: 'Boş liste'
|
78
|
+
field_translations:
|
79
|
+
file:
|
80
|
+
zero: 'dosya'
|
81
|
+
one: 'dosya'
|
82
|
+
other: 'dosya'
|
83
|
+
people:
|
84
|
+
zero: 'kişi'
|
85
|
+
one: 'kişi'
|
86
|
+
other: 'kişi'
|
87
|
+
resource_translations:
|
88
|
+
user:
|
89
|
+
zero: 'kullanıcı'
|
90
|
+
one: 'kullanıcı'
|
91
|
+
other: 'kullanıcı'
|
92
|
+
reset_filters: 'Filtreleri sıfırla'
|
93
|
+
not_authorized: 'Bu eylemi gerçekleştirme yetkiniz yok.'
|
94
|
+
search:
|
95
|
+
placeholder: 'Ara'
|
96
|
+
cancel_button: 'İptal et'
|
97
|
+
sign_out: 'Çıkış yap'
|
98
|
+
failed: 'Başarısız'
|
99
|
+
failed_to_load: 'Yüklenemedi'
|
100
|
+
key_value_field:
|
101
|
+
key: 'Anahtar'
|
102
|
+
value: 'Değer'
|
103
|
+
add_row: 'Satır ekle'
|
104
|
+
delete_row: 'Satır sil'
|
105
|
+
was_successfully_created: 'başarıyla oluşturuldu'
|
106
|
+
was_successfully_updated: 'başarıyla güncellendi'
|
107
|
+
clear_value: "Değeri temizle"
|
108
|
+
tools: Araçlar
|
109
|
+
order:
|
110
|
+
reorder_record: Kaydı yeniden sırala
|
111
|
+
higher: Kaydı yüksekten sırala
|
112
|
+
lower: Kaydı düşükten sırala
|
113
|
+
to_top: Kaydı en üste taşı
|
114
|
+
to_bottom: Kaydı en alta taşı
|
115
|
+
empty_dashboard_message: Kartları yönetim paneline ekle
|
116
|
+
no_cards_present: Kart yok
|
117
|
+
no_options_available: Seçenek yok
|
118
|
+
x_records_selected_from_a_total_of_x_html: <span class="font-bold text-gray-700">%{selected}</span> bu sayfada seçilen toplam kayıtlar <span class="font-bold text-gray-700">%{count}</span>
|
119
|
+
x_records_selected_from_all_pages_html: <span class="font-bold text-gray-700">%{count}</span> tüm sayfalardan seçilen kayıtlar
|
@@ -6349,10 +6349,6 @@ trix-toolbar .trix-button-group:not(:first-child){
|
|
6349
6349
|
z-index:40
|
6350
6350
|
}
|
6351
6351
|
|
6352
|
-
.z-30{
|
6353
|
-
z-index:30
|
6354
|
-
}
|
6355
|
-
|
6356
6352
|
.z-\[100\]{
|
6357
6353
|
z-index:100
|
6358
6354
|
}
|
@@ -6361,6 +6357,10 @@ trix-toolbar .trix-button-group:not(:first-child){
|
|
6361
6357
|
z-index:60
|
6362
6358
|
}
|
6363
6359
|
|
6360
|
+
.z-30{
|
6361
|
+
z-index:30
|
6362
|
+
}
|
6363
|
+
|
6364
6364
|
.col-span-1{
|
6365
6365
|
grid-column:span 1 / span 1
|
6366
6366
|
}
|
@@ -6400,16 +6400,21 @@ trix-toolbar .trix-button-group:not(:first-child){
|
|
6400
6400
|
margin-right:0.75rem
|
6401
6401
|
}
|
6402
6402
|
|
6403
|
-
.my-6{
|
6404
|
-
margin-top:1.5rem;
|
6405
|
-
margin-bottom:1.5rem
|
6406
|
-
}
|
6407
|
-
|
6408
6403
|
.my-4{
|
6409
6404
|
margin-top:1rem;
|
6410
6405
|
margin-bottom:1rem
|
6411
6406
|
}
|
6412
6407
|
|
6408
|
+
.-mx-6{
|
6409
|
+
margin-left:-1.5rem;
|
6410
|
+
margin-right:-1.5rem
|
6411
|
+
}
|
6412
|
+
|
6413
|
+
.my-6{
|
6414
|
+
margin-top:1.5rem;
|
6415
|
+
margin-bottom:1.5rem
|
6416
|
+
}
|
6417
|
+
|
6413
6418
|
.my-\[2px\]{
|
6414
6419
|
margin-top:2px;
|
6415
6420
|
margin-bottom:2px
|
@@ -6445,19 +6450,10 @@ trix-toolbar .trix-button-group:not(:first-child){
|
|
6445
6450
|
margin-right:1.5rem
|
6446
6451
|
}
|
6447
6452
|
|
6448
|
-
.-mx-4{
|
6449
|
-
margin-left:-1rem;
|
6450
|
-
margin-right:-1rem
|
6451
|
-
}
|
6452
|
-
|
6453
6453
|
.mt-3{
|
6454
6454
|
margin-top:0.75rem
|
6455
6455
|
}
|
6456
6456
|
|
6457
|
-
.mt-4{
|
6458
|
-
margin-top:1rem
|
6459
|
-
}
|
6460
|
-
|
6461
6457
|
.mt-8{
|
6462
6458
|
margin-top:2rem
|
6463
6459
|
}
|
@@ -6474,6 +6470,10 @@ trix-toolbar .trix-button-group:not(:first-child){
|
|
6474
6470
|
margin-bottom:0px
|
6475
6471
|
}
|
6476
6472
|
|
6473
|
+
.mt-4{
|
6474
|
+
margin-top:1rem
|
6475
|
+
}
|
6476
|
+
|
6477
6477
|
.mt-2{
|
6478
6478
|
margin-top:0.5rem
|
6479
6479
|
}
|
@@ -6482,34 +6482,6 @@ trix-toolbar .trix-button-group:not(:first-child){
|
|
6482
6482
|
margin-top:0.25rem
|
6483
6483
|
}
|
6484
6484
|
|
6485
|
-
.-ml-20{
|
6486
|
-
margin-left:-5rem
|
6487
|
-
}
|
6488
|
-
|
6489
|
-
.-mt-12{
|
6490
|
-
margin-top:-3rem
|
6491
|
-
}
|
6492
|
-
|
6493
|
-
.-ml-10{
|
6494
|
-
margin-left:-2.5rem
|
6495
|
-
}
|
6496
|
-
|
6497
|
-
.-mt-24{
|
6498
|
-
margin-top:-6rem
|
6499
|
-
}
|
6500
|
-
|
6501
|
-
.ml-8{
|
6502
|
-
margin-left:2rem
|
6503
|
-
}
|
6504
|
-
|
6505
|
-
.ml-20{
|
6506
|
-
margin-left:5rem
|
6507
|
-
}
|
6508
|
-
|
6509
|
-
.-mt-10{
|
6510
|
-
margin-top:-2.5rem
|
6511
|
-
}
|
6512
|
-
|
6513
6485
|
.mb-4{
|
6514
6486
|
margin-bottom:1rem
|
6515
6487
|
}
|
@@ -6542,6 +6514,10 @@ trix-toolbar .trix-button-group:not(:first-child){
|
|
6542
6514
|
margin-bottom:0.5rem
|
6543
6515
|
}
|
6544
6516
|
|
6517
|
+
.-mt-12{
|
6518
|
+
margin-top:-3rem
|
6519
|
+
}
|
6520
|
+
|
6545
6521
|
.ml-1\/2{
|
6546
6522
|
margin-left:50%
|
6547
6523
|
}
|
@@ -6678,18 +6654,6 @@ trix-toolbar .trix-button-group:not(:first-child){
|
|
6678
6654
|
height:100%
|
6679
6655
|
}
|
6680
6656
|
|
6681
|
-
.h-40{
|
6682
|
-
height:10rem
|
6683
|
-
}
|
6684
|
-
|
6685
|
-
.h-20{
|
6686
|
-
height:5rem
|
6687
|
-
}
|
6688
|
-
|
6689
|
-
.h-8{
|
6690
|
-
height:2rem
|
6691
|
-
}
|
6692
|
-
|
6693
6657
|
.h-64{
|
6694
6658
|
height:16rem
|
6695
6659
|
}
|
@@ -6706,6 +6670,10 @@ trix-toolbar .trix-button-group:not(:first-child){
|
|
6706
6670
|
height:4rem
|
6707
6671
|
}
|
6708
6672
|
|
6673
|
+
.h-8{
|
6674
|
+
height:2rem
|
6675
|
+
}
|
6676
|
+
|
6709
6677
|
.h-\[250px\]{
|
6710
6678
|
height:250px
|
6711
6679
|
}
|
@@ -6722,6 +6690,10 @@ trix-toolbar .trix-button-group:not(:first-child){
|
|
6722
6690
|
height:2.5rem
|
6723
6691
|
}
|
6724
6692
|
|
6693
|
+
.h-20{
|
6694
|
+
height:5rem
|
6695
|
+
}
|
6696
|
+
|
6725
6697
|
.h-9{
|
6726
6698
|
height:2.25rem
|
6727
6699
|
}
|
@@ -6802,6 +6774,10 @@ trix-toolbar .trix-button-group:not(:first-child){
|
|
6802
6774
|
width:4rem
|
6803
6775
|
}
|
6804
6776
|
|
6777
|
+
.w-2\/3{
|
6778
|
+
width:66.666667%
|
6779
|
+
}
|
6780
|
+
|
6805
6781
|
.w-64{
|
6806
6782
|
width:16rem
|
6807
6783
|
}
|
@@ -7553,6 +7529,10 @@ trix-toolbar .trix-button-group:not(:first-child){
|
|
7553
7529
|
background-color:rgb(47 50 55 / var(--tw-bg-opacity))
|
7554
7530
|
}
|
7555
7531
|
|
7532
|
+
.bg-primary-100{
|
7533
|
+
background-color:rgb(var(--color-primary-100))
|
7534
|
+
}
|
7535
|
+
|
7556
7536
|
.bg-gray-50{
|
7557
7537
|
--tw-bg-opacity:1;
|
7558
7538
|
background-color:rgb(241 242 243 / var(--tw-bg-opacity))
|
@@ -7653,11 +7633,6 @@ trix-toolbar .trix-button-group:not(:first-child){
|
|
7653
7633
|
padding-right:0px
|
7654
7634
|
}
|
7655
7635
|
|
7656
|
-
.py-12{
|
7657
|
-
padding-top:3rem;
|
7658
|
-
padding-bottom:3rem
|
7659
|
-
}
|
7660
|
-
|
7661
7636
|
.py-4{
|
7662
7637
|
padding-top:1rem;
|
7663
7638
|
padding-bottom:1rem
|
@@ -8085,10 +8060,6 @@ trix-toolbar .trix-button-group:not(:first-child){
|
|
8085
8060
|
opacity:1
|
8086
8061
|
}
|
8087
8062
|
|
8088
|
-
.opacity-80{
|
8089
|
-
opacity:0.8
|
8090
|
-
}
|
8091
|
-
|
8092
8063
|
.shadow-panel{
|
8093
8064
|
--tw-shadow:0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 0px 1px rgba(0, 0, 0, 0.04);
|
8094
8065
|
--tw-shadow-colored:0px 4px 8px var(--tw-shadow-color), 0px 0px 2px var(--tw-shadow-color), 0px 0px 1px var(--tw-shadow-color);
|
@@ -8133,11 +8104,6 @@ trix-toolbar .trix-button-group:not(:first-child){
|
|
8133
8104
|
filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
|
8134
8105
|
}
|
8135
8106
|
|
8136
|
-
.sepia{
|
8137
|
-
--tw-sepia:sepia(100%);
|
8138
|
-
filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
|
8139
|
-
}
|
8140
|
-
|
8141
8107
|
.filter{
|
8142
8108
|
filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
|
8143
8109
|
}
|
@@ -8257,6 +8223,11 @@ trix-editor {
|
|
8257
8223
|
overflow-y: auto;
|
8258
8224
|
}
|
8259
8225
|
|
8226
|
+
.placeholder\:text-gray-300::placeholder{
|
8227
|
+
--tw-text-opacity:1;
|
8228
|
+
color:rgb(172 177 185 / var(--tw-text-opacity))
|
8229
|
+
}
|
8230
|
+
|
8260
8231
|
.checked\:block:checked{
|
8261
8232
|
display:block
|
8262
8233
|
}
|
@@ -9480,6 +9451,10 @@ trix-editor {
|
|
9480
9451
|
width:auto
|
9481
9452
|
}
|
9482
9453
|
|
9454
|
+
.sm\:w-1\/3{
|
9455
|
+
width:33.333333%
|
9456
|
+
}
|
9457
|
+
|
9483
9458
|
.sm\:min-w-\[16rem\]{
|
9484
9459
|
min-width:16rem
|
9485
9460
|
}
|
@@ -9528,6 +9503,10 @@ trix-editor {
|
|
9528
9503
|
justify-content:space-between
|
9529
9504
|
}
|
9530
9505
|
|
9506
|
+
.sm\:gap-4{
|
9507
|
+
gap:1rem
|
9508
|
+
}
|
9509
|
+
|
9531
9510
|
.sm\:space-x-8 > :not([hidden]) ~ :not([hidden]){
|
9532
9511
|
--tw-space-x-reverse:0;
|
9533
9512
|
margin-right:calc(2rem * var(--tw-space-x-reverse));
|
@@ -9593,9 +9572,8 @@ trix-editor {
|
|
9593
9572
|
padding-right:6rem
|
9594
9573
|
}
|
9595
9574
|
|
9596
|
-
.md\:
|
9597
|
-
padding-
|
9598
|
-
padding-right:1.5rem
|
9575
|
+
.md\:pt-4{
|
9576
|
+
padding-top:1rem
|
9599
9577
|
}
|
9600
9578
|
|
9601
9579
|
.md\:pt-0{
|
@@ -9692,6 +9670,10 @@ trix-editor {
|
|
9692
9670
|
margin-top:0px
|
9693
9671
|
}
|
9694
9672
|
|
9673
|
+
.xl\:w-64{
|
9674
|
+
width:16rem
|
9675
|
+
}
|
9676
|
+
|
9695
9677
|
.xl\:grid-cols-4{
|
9696
9678
|
grid-template-columns:repeat(4, minmax(0, 1fr))
|
9697
9679
|
}
|