radios-comunitarias-jekyll-theme 0.3.0rc0 → 0.3.0

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.
Files changed (130) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/README.md +69 -18
  4. data/_config.yml +85 -0
  5. data/_data/actions.yml +9 -0
  6. data/_data/components.yml +10 -0
  7. data/_data/en.yml +159 -23
  8. data/_data/es.yml +159 -22
  9. data/_data/full_width_components.yml +2 -0
  10. data/_data/layouts/menu.yml +72 -0
  11. data/_data/layouts/post.yml +11 -11
  12. data/_data/layouts/radio.yml +80 -0
  13. data/_data/layouts/theme.yml +291 -0
  14. data/_data/manifest.json +1340 -0
  15. data/_data/theme.yml +142 -0
  16. data/_includes/activity_pub/actor.html +11 -0
  17. data/_includes/activity_pub/actor_mention.html +28 -0
  18. data/_includes/activity_pub/button.html +22 -0
  19. data/_includes/activity_pub/button_bar.html +16 -0
  20. data/_includes/activity_pub/cards.html +28 -0
  21. data/_includes/activity_pub/fediverse_interactions.html +2 -0
  22. data/_includes/activity_pub/generic_modal.html +55 -0
  23. data/_includes/activity_pub/image_modal.html +27 -0
  24. data/_includes/activity_pub/interactions.html +78 -0
  25. data/_includes/activity_pub/login_modal.html +70 -0
  26. data/_includes/activity_pub/reaction.html +45 -0
  27. data/_includes/activity_pub/reactions.html +17 -0
  28. data/_includes/activity_pub/replying_to.html +23 -0
  29. data/_includes/activity_pub/text_modal.html +16 -0
  30. data/_includes/activity_pub/toot_card.html +95 -0
  31. data/_includes/activity_pub/url.html +8 -0
  32. data/_includes/activity_pub/video_modal.html +20 -0
  33. data/_includes/boolean.html +9 -1
  34. data/_includes/bootstrap/custom_select.html +18 -0
  35. data/_includes/buttons/button.html +9 -0
  36. data/_includes/buttons/copy.html +28 -0
  37. data/_includes/buttons/generic.html +15 -0
  38. data/_includes/buttons/link.html +14 -0
  39. data/_includes/contact.html +6 -8
  40. data/_includes/content.html +9 -1
  41. data/_includes/device_detector.html +30 -0
  42. data/_includes/email.html +9 -1
  43. data/_includes/embed_responsive.html +16 -0
  44. data/_includes/external_link.html +15 -0
  45. data/_includes/fa.html +11 -0
  46. data/_includes/file.html +9 -1
  47. data/_includes/floating_alert.html +6 -0
  48. data/_includes/footer.html +1 -12
  49. data/_includes/headings/generic.html +14 -0
  50. data/_includes/headings/h1.html +9 -0
  51. data/_includes/headings/h2.html +9 -0
  52. data/_includes/headings/h3.html +9 -0
  53. data/_includes/headings/with_link.html +15 -0
  54. data/_includes/image.html +9 -1
  55. data/_includes/input.html +34 -7
  56. data/_includes/item.html +38 -0
  57. data/_includes/logo.html +1 -0
  58. data/_includes/markdown_content.html +9 -1
  59. data/_includes/menu.html +27 -0
  60. data/_includes/navbar.html +5 -1
  61. data/_includes/notification.html +5 -0
  62. data/_includes/number.html +9 -1
  63. data/_includes/pack.html +10 -0
  64. data/_includes/password.html +10 -0
  65. data/_includes/picture.html +25 -0
  66. data/_includes/post.html +18 -7
  67. data/_includes/predefined_array.html +10 -2
  68. data/_includes/preload_font.html +1 -0
  69. data/_includes/reproductor.html +29 -12
  70. data/_includes/script.html +5 -0
  71. data/_includes/search.html +25 -0
  72. data/_includes/share.html +8 -8
  73. data/_includes/share_box.html +41 -12
  74. data/_includes/social_networks.html +6 -0
  75. data/_includes/stretched_link.html +15 -0
  76. data/_includes/string.html +10 -1
  77. data/_includes/submit.html +13 -1
  78. data/_includes/svg/copy-icon.svg +1 -0
  79. data/_includes/svg/done-icon.svg +1 -0
  80. data/_includes/svg/menu.svg +9 -0
  81. data/_includes/svg/x.svg +3 -0
  82. data/_includes/tel.html +9 -1
  83. data/_includes/text.html +9 -1
  84. data/_includes/theme/button_with_copy.html +1 -0
  85. data/_includes/theme/button_with_link.html +5 -0
  86. data/_includes/theme/buttons.html +33 -0
  87. data/_includes/theme/colors.html +14 -0
  88. data/_includes/theme/content.html +41 -0
  89. data/_includes/theme/embed_responsive.html +10 -0
  90. data/_includes/theme/font_sizes.html +18 -0
  91. data/_includes/theme/footer.html +1 -0
  92. data/_includes/theme/letter_spacing.html +3 -0
  93. data/_includes/theme/picture.html +5 -0
  94. data/_includes/toggler/toggler.html +21 -0
  95. data/_includes/toggler/toggler_label.html +21 -0
  96. data/_includes/toggler/toggler_related.html +23 -0
  97. data/_includes/url.html +9 -1
  98. data/_layouts/default.html +50 -22
  99. data/_layouts/home.html +7 -5
  100. data/_layouts/page.html +5 -0
  101. data/_layouts/theme.html +60 -0
  102. data/_sass/accessibility.scss +40 -7
  103. data/_sass/content.scss +28 -0
  104. data/_sass/editor.scss +17 -0
  105. data/_sass/embed.scss +8 -0
  106. data/_sass/floating_alert.scss +48 -0
  107. data/_sass/fonts.scss +29 -0
  108. data/_sass/menu.scss +36 -0
  109. data/_sass/snap.scss +60 -0
  110. data/_sass/toggler.scss +15 -34
  111. data/_sass/utilities.scss +527 -0
  112. data/assets/css/styles.scss +15 -16
  113. data/assets/data/site.json +10 -0
  114. data/assets/fonts/forkawesome-webfont.woff2 +0 -0
  115. data/assets/fonts/roboto/v27/KFOjCnqEu92Fr1Mu51TzBhc9-subset.woff2 +0 -0
  116. data/assets/fonts/roboto/v27/KFOkCnqEu92Fr1MmgWxP-subset.woff2 +0 -0
  117. data/assets/fonts/roboto/v27/KFOkCnqEu92Fr1Mu52xP-subset.woff2 +0 -0
  118. data/assets/fonts/roboto/v27/KFOlCnqEu92Fr1MmWUlvAw-subset.woff2 +0 -0
  119. data/assets/fonts/roboto/v27/KFOmCnqEu92Fr1Me5Q-subset.woff2 +0 -0
  120. data/assets/js/env.js +8 -0
  121. data/assets/js/pack.L3BFF2IJ.js +40 -0
  122. data/assets/js/pack.L3BFF2IJ.js.map +7 -0
  123. data.tar.gz.sig +4 -0
  124. metadata +342 -52
  125. metadata.gz.sig +0 -0
  126. data/_data/forms/contacto.yml +0 -40
  127. data/_sass/helpers.scss +0 -54
  128. data/_sass/share.html +0 -12
  129. data/_sass/share_box.html +0 -16
  130. data/assets/js/script.js +0 -82
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1b9c033de3c73fc2c8925f9e4386fb6126554e276e3c79b1598b8956e8d1f545
4
- data.tar.gz: 1fd22242e0417a153f0d1250719c28cdb3a0cd6ce2d3d8d36b5a114849cae31e
3
+ metadata.gz: 1ab042e47b1a01815b351468d7196b63c326c9b4b320ff6b531fb31788e693e9
4
+ data.tar.gz: c01d8513d19375e733678342ada0e6fe97bdacce9db8a8870073edf3a9d26eb3
5
5
  SHA512:
6
- metadata.gz: ab9e97139cc58c244906db6df5d48a8f6085ee5bde184a8f4be591a1d2702d7b00ae081f8e12cd92bbb981047b2858fec3f296d69c3e888c8427c3dcf21971f3
7
- data.tar.gz: ec4fdd3d1fd72bb7fbda5b58ab70083d3d6a670bd7696ebab4b09c896c36e6a0feeda0e1cc3cb125f09ce3a773a1d5c2afc6a0883e171a0c7124e65359df29a0
6
+ metadata.gz: 9de5e36d9068df90eb894a938220ff291cb2c00e7ef52b99c273611ba21573963a6228795716ee56ccfb243b7306fe1ef1fbd666f1c3bce201f1958f9ef7aa73
7
+ data.tar.gz: cd40dbbedc48461241b468891af9e9584fbe3fdacb9fa5206385d835bfe7c2d10d4d5f4149a9f430f111a2715232d2d7571d3311802e1bdbaa3b4d4461b84c02
checksums.yaml.gz.sig ADDED
Binary file
data/README.md CHANGED
@@ -4,32 +4,83 @@ CAMBIAME: Esta es una plantilla base para comenzar cualquier plantilla
4
4
  relacionada con Sutty, con el entorno de desarrollo que usamos según
5
5
  nuestro flujo de trabajo.
6
6
 
7
- La instalación de esta gema se realiza bifurcando el desarrollo de esta
8
- usando git, por ejemplo:
9
-
10
7
  ```bash
11
- # Hacer un fork local desde sutty-base-jekyll-theme a nuestra plantilla
12
- git clone https://0xacab.org/sutty/jekyll/sutty-base-jekyll-theme.git \
13
- CAMBIAME-jekyll-theme
8
+ # Desde el directorio de trabajo
9
+ cd ~/Sutty
10
+ # Instalar sutty-cli antes de empezar
11
+ gem install sutty-cli
12
+ # Iniciar una plantilla
13
+ sutty-cli theme CAMBIAME
14
+ # Se creó el repositorio
14
15
  cd CAMBIAME-jekyll-theme
16
+ ```
15
17
 
16
- # Sutty-base ahora es el proyecto base, desde el que podemos tomar
17
- # cambios, pero no enviamos para no mezclar las cosas
18
- git remote rename origin upstream
18
+ Para empezar, hay que buscar y reemplazar en todos los archivos donde
19
+ diga `CAMBIAME`.
19
20
 
20
- # Agregamos el repositorio donde vamos a enviar y publicar cambios
21
- git remote add origin \
22
- git@0xacab.org:sutty/jekyll/CAMBIAME-jekyll-theme.git
21
+ También hay que instalar
22
+ [sutty.local](https://0xacab.org/sutty/sutty.local/):
23
23
 
24
- # Configuramos git para que envíe siempre los cambios al repositorio
25
- # nuevo
26
- git push --set-upstream origin master
24
+ ```bash
25
+ # Desde el directorio de trabajo
26
+ cd ~/Sutty
27
+ # Clonar el repositorio
28
+ git clone https://0xacab.org/sutty/sutty.local.git
29
+ cd sutty.local
30
+ make all domain domain=sutty.local
31
+ cd .. # Volver al directorio de trabajo
27
32
  ```
28
33
 
29
- Para empezar, hay que buscar y reemplazar en todos los archivos donde
30
- diga `CAMBIAME`.
34
+ Esto genera un certificado a nivel local que luego va a usar el
35
+ servidor de desarrollo.
36
+
37
+ ## Desarrollo
38
+
39
+ Siempre trabajamos desde el directorio raíz del repositorio:
40
+
41
+ ```bash
42
+ cd ~/Sutty/CAMBIAME-jekyll-theme
43
+ ```
44
+
45
+ Primero hay que iniciar los servidores, antes hay que instalar el
46
+ paquete `nghttp2`.
47
+
48
+ ```bash
49
+ make serve
50
+ ```
31
51
 
32
- También hay que instalar las dependencias de CSS y JS con `yarn`.
52
+ A partir de este momento podemos editar los archivos. Para probar lo
53
+ que estamos haciendo, compilamos el sitio.
54
+
55
+ ```bash
56
+ make build
57
+ ```
58
+
59
+ Hay que hacer esto cada vez que queremos probar cambios.
60
+
61
+ **Nota:** No usamos `jekyll serve` porque entra en conflicto con algunos
62
+ de nuestros complementos y los sitios grandes tardan en compilarse de
63
+ todas formas.
64
+
65
+ ## Actualizar
66
+
67
+ Podemos traer cambios de la base:
68
+
69
+ ```bash
70
+ git pull upstream master
71
+ ```
72
+
73
+ Si hubiera conflictos, los podemos resolver con:
74
+
75
+ ```bash
76
+ # Esto se hace una sola vez, cambiar vimdiff por la herramienta que
77
+ # queramos usar
78
+ git config --global mergetool.tool vimdiff
79
+ git config --global mergetool.keepBackup false
80
+
81
+ # Resolver los conflictos
82
+ git mergetool
83
+ ```
33
84
 
34
85
  ## Publicación
35
86
 
data/_config.yml ADDED
@@ -0,0 +1,85 @@
1
+ plugins:
2
+ - jekyll-activity-pub
3
+ - jekyll-hardlinks
4
+ - jekyll-drafts-as-metadata
5
+ - jekyll-locales
6
+ - jekyll-ignore-layouts
7
+ - jekyll-relative-urls
8
+ - jekyll-dotenv
9
+ - jekyll-include-cache
10
+ - jekyll-linked-posts
11
+ - jekyll-commonmark
12
+ - jekyll-feed
13
+ - jekyll-order
14
+ - jekyll-data
15
+ - jekyll-seo-tag
16
+ - jekyll-images
17
+ - jekyll-embed-urls
18
+ - sutty-liquid
19
+ - jekyll-gzip
20
+ - jekyll-brotli
21
+ markdown: CommonMark
22
+ commonmark:
23
+ options:
24
+ - SMART
25
+ - FOOTNOTES
26
+ - UNSAFE
27
+ extensions:
28
+ - strikethrough
29
+ - autolink
30
+ - table
31
+ # Agregar node_modules a la lista de directorios donde SASS busca
32
+ # archivos. Podríamos haber agregado solo "node_modules/bootstrap/scss"
33
+ # pero queríamos dejarlo abierto para poder cambiar de framework o
34
+ # llamar a varios a la vez.
35
+ sass:
36
+ # style: "compressed"
37
+ load_paths:
38
+ - "node_modules"
39
+ # Opciones para generar las URLs de las páginas. Por defecto Jekyll
40
+ # crea /categoria/año/mes/dia/titulo.html que me parece innecesariamente
41
+ # larga.
42
+ #
43
+ # Con esto generamos URLs relativas (sin / al principio) y solo el
44
+ # titulo convertido en slug. El slug es la versión limpia del título,
45
+ # sin espacios ni mayusculas, a veces sin tildes.
46
+ #
47
+ # En realidad Jekyll es un poco confuso acá porque :title es el nombre
48
+ # del archivo usado en _posts/yyyy-mm-dd-slug.md y no el titulo
49
+ # slugificado. De todas formas Sutty se encarga de que coincidan.
50
+ permalink: ":title/"
51
+ liquid:
52
+ strict_filters: true
53
+ locales:
54
+ - es
55
+ ignored_layouts:
56
+ - menu
57
+ - email
58
+ linked_fields:
59
+ - post
60
+ - item
61
+ - items
62
+ images:
63
+ interlaced: true
64
+ sizes:
65
+ - 576
66
+ - 768
67
+ - 992
68
+ - 1140
69
+ linked_fields:
70
+ - locales
71
+ title: Sutty
72
+ description: Plantilla de Sutty para radios en Internet
73
+ title_separator: "-"
74
+ logo: public/placeholder.png
75
+ url: https://sutty.nl
76
+ activity_pub:
77
+ url: https://social.distributed.press
78
+ announce: false
79
+ manually_approves_followers: false
80
+ activity_pub_private_key: ./privkey.pem
81
+ defaults:
82
+ - scope:
83
+ type: posts
84
+ values:
85
+ activity: false
data/_data/actions.yml ADDED
@@ -0,0 +1,9 @@
1
+ actions:
2
+ - title: "reply"
3
+ icon: "reply"
4
+ - title: "favorite"
5
+ icon: "star-o"
6
+ - title: "bookmark"
7
+ icon: "bookmark-o"
8
+ - title: "boost"
9
+ icon: "retweet"
@@ -0,0 +1,10 @@
1
+ ---
2
+ - "content"
3
+ - "font_sizes"
4
+ - "letter_spacing"
5
+ - "colors"
6
+ - "picture"
7
+ - "embed_responsive"
8
+ - "button_with_link"
9
+ - "button_with_copy"
10
+ - "buttons"
data/_data/en.yml CHANGED
@@ -1,12 +1,71 @@
1
1
  ---
2
- locale: English
3
- date: '%m/%d/%Y'
2
+ locale: 'English'
3
+ date:
4
+ format: '%m/%d/%Y'
5
+ published_at: "Published at"
6
+ last_modified_at: "Last modification"
7
+ abbr_day_names:
8
+ - Mon
9
+ - Tue
10
+ - Wed
11
+ - Thu
12
+ - Fri
13
+ - Sat
14
+ - Sun
15
+ day_names:
16
+ - Monday
17
+ - Tuesday
18
+ - Wednesday
19
+ - Thursday
20
+ - Friday
21
+ - Saturday
22
+ - Sunday
23
+ abbr_month_names:
24
+ - Jan
25
+ - Feb
26
+ - Mar
27
+ - Apr
28
+ - May
29
+ - Jun
30
+ - Jul
31
+ - Aug
32
+ - Sep
33
+ - Oct
34
+ - Nov
35
+ - Dec
36
+ month_names:
37
+ - January
38
+ - February
39
+ - March
40
+ - April
41
+ - May
42
+ - June
43
+ - July
44
+ - August
45
+ - September
46
+ - October
47
+ - November
48
+ - December
49
+ time:
50
+ am: am
51
+ pm: pm
52
+ format: "%H:%M"
53
+ date_time:
54
+ format: '%d %b %Y %H:%M'
55
+ dir: "ltr"
56
+ details:
57
+ open: "Open"
58
+ close: "Close"
59
+ fediverse: "Fediverse"
4
60
  layouts:
5
- post: Article
6
- radio: Radio
61
+ code_of_conduct: "Code of conduct"
62
+ license: "License"
63
+ post: "Post"
64
+ privacy_policy: "Privacy policy"
65
+ radio: "About"
66
+ theme: "Customize"
7
67
  no_audio_support: "Your browser doesn't support audio, please copy this address:"
8
68
  other_posts: "Previous Articles"
9
- fediverse: "Fediverse"
10
69
  footer:
11
70
  credits: "Made with [Sutty](https://sutty.nl/), design by [librenauta](https://copiona.com/)"
12
71
  menu:
@@ -37,34 +96,111 @@ share:
37
96
  text: Share
38
97
  icon: share-alt
39
98
  items:
40
- - title: Fediverse
41
- url: "https://fediverse.sutty.nl/en/?u=%url&t=%title&d=%description"
42
- icon: mastodon-alt
43
- - title: Facebook
44
- url: "https://www.facebook.com/sharer/sharer.php?u=%url&t=%title%0A%0A%description"
45
- icon: facebook-official
46
99
  - title: Twitter
47
- url: "https://twitter.com/intent/tweet?url=%url&text=%title%0A%0A%description&hashtags=%hashtag"
100
+ url: "https://twitter.com/intent/tweet?url=%url&text=%title%0A%0A%description&hashtags=%tags"
48
101
  icon: twitter
102
+ - title: Facebook
103
+ url: "https://www.facebook.com/sharer/sharer.php?u=%url&t=%title%0A%0A%description"
104
+ icon: facebook
49
105
  - title: Whatsapp
50
106
  url: "https://api.whatsapp.com/send?text=%title%0A%0A%description%0A%0A%url"
51
107
  icon: whatsapp
52
108
  - title: Telegram
53
- url: "https://t.me/share/url?url=%url&text=%title%0A%0A%description"
109
+ url: "https://t.me/share/url?url=%url&text=%title%0A%0A%description"
54
110
  icon: telegram
55
111
  - title: Tumblr
56
- url: "https://www.tumblr.com/widgets/share/tool?canonicalUrl=%url&title=%title&caption=%description&tags=%hashtag"
112
+ url: "https://www.tumblr.com/widgets/share/tool?canonicalUrl=%url&title=%title&caption=%description&tags=%tags"
57
113
  icon: tumblr
58
114
  - title: Reddit
59
- url: "https://reddit.com/submit?url=%url&title=%hashtag%20-%20%title"
115
+ url: "https://reddit.com/submit?url=%url&title=%tags%20-%20%title"
60
116
  icon: reddit
61
117
  - title: E-mail
62
- url: "mailto:?subject=%title&body=%description%0A%0A%url"
118
+ url: "mailto:?subject=%title&body=%description%0A%0A%url"
63
119
  icon: envelope
64
- layouts:
65
- code_of_conduct: "Code of conduct"
66
- license: "License"
67
- post: "Post"
68
- privacy_policy: "Privacy policy"
69
- radio: "About"
70
- theme: "Customize"
120
+ - title: Fediverse
121
+ url: "https://fediverse.sutty.nl/en/?u=%url&t=%title&d=%description%20%tags"
122
+ icon: mastodon
123
+ credits: "Made by [Sutty](https://sutty.nl/en/)."
124
+ accessibility:
125
+ skip_to_content: Skip to content
126
+ device_detector:
127
+ outline: Outline
128
+ get_help: Help
129
+ help: |
130
+ If you find an issue, please take a screenshot including this
131
+ information. It helps us fix them.
132
+
133
+ Once the site is published, we'll remove this section.
134
+
135
+ Click the same button to close this message.
136
+ button_copy:
137
+ confirmation: "%s copied"
138
+ close: Close
139
+ fediverse_interactions:
140
+ - value: "conversation"
141
+ title: "Conversation"
142
+ selected: true
143
+ - value: "reactions"
144
+ title: "Reactions"
145
+ - value: "both"
146
+ title: "Conversation and reactions"
147
+ - value: "nothing"
148
+ title: "Nothing"
149
+ no_interactions_yet:
150
+ conversation: "There are no replies to show yet."
151
+ reactions: "There are no reactions to show yet."
152
+ both: "There is nothing to you yet."
153
+ ver_interacciones: "See from Fedi"
154
+ reply:
155
+ text: "In response to"
156
+ link_text: "a post on the Fediverse."
157
+ close: "Close"
158
+ login_modal:
159
+ authorize_interaction_unsupported: "Remote interactions are not supported by this instance. You can still copy-paste this page's address into your preferred client's search bar to interact from the Fediverse."
160
+ boost:
161
+ title: "boost"
162
+ text: "Boost $usuarie's post"
163
+ reply:
164
+ title: "reply"
165
+ text: "Reply to $usuarie's post"
166
+ favorite:
167
+ title: favorite
168
+ text: "Favorite $usuarie's post"
169
+ bookmark:
170
+ title: bookmark
171
+ text: "Bookmark $usuarie's post"
172
+ top_text: |
173
+ To interact with a post in the Fediverse, you will need to do so from an account from any of its instances.
174
+ **Do you have an account?**
175
+
176
+ <mark class="primary background-transparent">Note: you will need to reselect the <strong>$action</strong> option from your account.</mark>
177
+ question: "**Where is your account hosted?**"
178
+ small_text: |
179
+ Tip: That's the website where you signed up. If you don't remember, look for the welcome e-mail in your inbox.
180
+ You can also enter your full username! (e.g. @sutty@todon.nl)
181
+ bottom_text: |
182
+ Want to reply from another Fediverse-integrated Sutty website?
183
+ You can do so from the panel.
184
+ Keep in mind that for now it isn't possible to favorite, retoot or bookmark from here.
185
+
186
+ Don't have a Fediverse account yet?
187
+ [You can choose how to create one.](https://joinfediverse.wiki/How_do_I_get_an_account%3F)
188
+ placeholder: "Domain of your home server, e.g. rebel.ar"
189
+ help: |
190
+ The Fediverse is a federated social network made up of thousands of instances (servers) by and for
191
+ the people, not controlled by any company and free from algorithms that decide what content you
192
+ can consume. Anyone can create a Fediverse account, by first choosing an instance. With your account you
193
+ can write, reply, like and save, and interact with services geared towards microblogging, images, music,
194
+ videos and much more.
195
+ You can now:
196
+ - [Learn more about the Fediverse](https://sutty.nl/)
197
+ - Pick an instance from [https://joinfediverse.wiki/instances](https://joinfediverse.wiki/instances)
198
+ or [https://fediverse.to](https://fediverse.to) and create an account.
199
+ sensitive: "Sensitive content"
200
+ take_me_home: "Take me home"
201
+ total_shares: "Total shares"
202
+ total_likes: "Total likes"
203
+ globe: "Public"
204
+ activities:
205
+ Announce: "Boost"
206
+ Like: "Fave"
data/_data/es.yml CHANGED
@@ -1,12 +1,71 @@
1
1
  ---
2
2
  locale: Castellano
3
- date: '%d/%m/%Y'
3
+ date:
4
+ format: '%d/%m/%Y'
5
+ published_at: "Publicado en"
6
+ last_modified_at: "Última modificación"
7
+ abbr_day_names:
8
+ - Lun
9
+ - Mar
10
+ - Mié
11
+ - Jue
12
+ - Vie
13
+ - Sáb
14
+ - Dom
15
+ day_names:
16
+ - Lunes
17
+ - Martes
18
+ - Miércoles
19
+ - Jueves
20
+ - Viernes
21
+ - Sábado
22
+ - Domingo
23
+ abbr_month_names:
24
+ - Ene
25
+ - Feb
26
+ - Mar
27
+ - Abr
28
+ - May
29
+ - Jun
30
+ - Jul
31
+ - Ago
32
+ - Sep
33
+ - Oct
34
+ - Nov
35
+ - Dic
36
+ month_names:
37
+ - Enero
38
+ - Febrero
39
+ - Marzo
40
+ - Abril
41
+ - Mayo
42
+ - Junio
43
+ - Julio
44
+ - Agosto
45
+ - Septiembre
46
+ - Octubre
47
+ - Noviembre
48
+ - Diciembre
49
+ time:
50
+ am: am
51
+ pm: pm
52
+ format: "%H:%M"
53
+ date_time:
54
+ format: '%d %b %Y %H:%M'
55
+ dir: "ltr"
56
+ details:
57
+ open: "Abrir"
58
+ close: "Cerrar"
59
+ fediverse: "Fediverso"
4
60
  layouts:
5
- post: Artículo
6
- radio: Radio
61
+ code_of_conduct: "Código de conducta"
62
+ license: "Licencia"
63
+ post: "Artículo"
64
+ privacy_policy: "Política de privacidad"
65
+ radio: "Acerca"
66
+ theme: "Personalizar"
7
67
  no_audio_support: "Tu navegador no soporta audio, copia esta dirección en un reproductor:"
8
68
  other_posts: "Artículos anteriores"
9
- fediverse: "Fediverso"
10
69
  footer:
11
70
  credits: "Sitio hecho con [Sutty](https://sutty.nl/), diseño por [librenauta](https://copiona.com/)"
12
71
  menu:
@@ -37,34 +96,112 @@ share:
37
96
  text: Compartir
38
97
  icon: share-alt
39
98
  items:
40
- - title: Fediverso
41
- url: "https://fediverse.sutty.nl/es/?u=%url&t=%title&d=%description"
42
- icon: mastodon-alt
43
- - title: Facebook
44
- url: "https://www.facebook.com/sharer/sharer.php?u=%url&t=%title%0A%0A%description"
45
- icon: facebook-official
46
99
  - title: Twitter
47
- url: "https://twitter.com/intent/tweet?url=%url&text=%title%0A%0A%description&hashtags=%hashtag"
100
+ url: "https://twitter.com/intent/tweet?url=%url&amp;text=%title%0A%0A%description&amp;hashtags=%tags"
48
101
  icon: twitter
102
+ - title: Facebook
103
+ url: "https://www.facebook.com/sharer/sharer.php?u=%url&amp;t=%title%0A%0A%description"
104
+ icon: facebook
49
105
  - title: Whatsapp
50
106
  url: "https://api.whatsapp.com/send?text=%title%0A%0A%description%0A%0A%url"
51
107
  icon: whatsapp
52
108
  - title: Telegram
53
- url: "https://t.me/share/url?url=%url&text=%title%0A%0A%description"
109
+ url: "https://t.me/share/url?url=%url&amp;text=%title%0A%0A%description"
54
110
  icon: telegram
55
111
  - title: Tumblr
56
- url: "https://www.tumblr.com/widgets/share/tool?canonicalUrl=%url&title=%title&caption=%description&tags=%hashtag"
112
+ url: "https://www.tumblr.com/widgets/share/tool?canonicalUrl=%url&amp;title=%title&amp;caption=%description&amp;tags=%tags"
57
113
  icon: tumblr
58
114
  - title: Reddit
59
- url: "https://reddit.com/submit?url=%url&title=%hashtag%20-%20%title"
115
+ url: "https://reddit.com/submit?url=%url&amp;title=%tags%20-%20%title"
60
116
  icon: reddit
61
117
  - title: Correo
62
- url: "mailto:?subject=%title&body=%description%0A%0A%url"
118
+ url: "mailto:?subject=%title&amp;body=%description%0A%0A%url"
63
119
  icon: envelope
64
- layouts:
65
- code_of_conduct: "Código de conducta"
66
- license: "Licencia"
67
- post: "Artículo"
68
- privacy_policy: "Política de privacidad"
69
- radio: "Acerca"
70
- theme: "Personalizar"
120
+ - title: Fediverso
121
+ url: "https://fediverse.sutty.nl/es/?u=%url&amp;t=%title&amp;d=%description%20%tags"
122
+ icon: mastodon
123
+ credits: "Hecho con [Sutty](https://sutty.nl/)."
124
+ accessibility:
125
+ skip_to_content: Saltar al contenido
126
+ device_detector:
127
+ outline: Bordes
128
+ get_help: Ayuda
129
+ help: |
130
+ Si encuentras un problema, por favor toma una captura de pantalla
131
+ con esta información visible. Nos ayuda a resolverlos.
132
+
133
+ Una vez publiquemos el sitio, eliminaremos este recuadro.
134
+
135
+ Usa el mismo botón para cerrar este mensaje.
136
+ button_copy:
137
+ confirmation: "%s copiado"
138
+ close: Cerrar
139
+ fediverse_interactions:
140
+ - value: "conversation"
141
+ title: "Conversación"
142
+ selected: true
143
+ - value: "reactions"
144
+ title: "Reacciones"
145
+ - value: "both"
146
+ title: "Conversación y reacciones"
147
+ - value: "nothing"
148
+ title: "Nada"
149
+ ver_interacciones: "Ver del Fediverso"
150
+ no_interactions_yet:
151
+ conversation: "Todavía no hay respuestas para mostrar."
152
+ reactions: "Todavía no hay reacciones para mostrar."
153
+ both: "Todavía no hay nada para mostrar."
154
+ reply:
155
+ text: "En respuesta a"
156
+ link_text: "una publicación en el Fediverso."
157
+ close: "Cerrar"
158
+ login_modal:
159
+ authorize_interaction_unsupported: "La interacción remota no está soportada por esta instancia. Todavía podés copiar y pegar la dirección de esta página en el buscador de tu cliente favorito para poder interactuar desde el Fediverso."
160
+ boost:
161
+ title: "impulsar"
162
+ text: "Impulsar la publicación de $usuarie"
163
+ reply:
164
+ title: "responder"
165
+ text: "Responder a la publicación de $usuarie"
166
+ favorite:
167
+ title: "favoritear"
168
+ text: "Favoritear la publicación de $usuarie"
169
+ bookmark:
170
+ title: "guardar"
171
+ text: "Guardar la publicación de $usuarie"
172
+ top_text: |
173
+ Para interactuar en el Fediverso, siempre es necesario hacerlo desde una cuenta en cualquiera de sus instancias.
174
+ ¿Tienes una cuenta?
175
+
176
+ <mark class="primary background-transparent">Nota: deberás volver a marcar <strong>$action</strong> desde tu instancia.</mark>
177
+ question: "**¿Dónde tienes tu cuenta?**"
178
+ small_text: |
179
+ Pista: ese es el sitio donde te registraste. Si no lo recuerdas,
180
+ busca el correo electrónico de bienvenida en tu bandeja de entrada.
181
+ También puedes introducir tu nombre de usuario completo (por ejemplo @sutty@todon.nl)
182
+ bottom_text: |
183
+ ¿Quieres responder desde otro sitio de Sutty que tenga habilitada la integración con el Fediverso?
184
+ Para escribir una respuesta, puedes hacerlo desde el panel.
185
+ Ten en cuenta que por ahora no es posible marcar como favorito, retootear o guardar.
186
+
187
+ ¿Aún no tienes cuenta en el Fediverso?
188
+ [Puedes elegir cómo crearla.](https://joinfediverse.wiki/What_is_the_Fediverse%3F/es#%C2%BFC%C3%B3mo_puedo_crear_una_cuenta?)
189
+ placeholder: "Dominio de tu servidor, por ejemplo rebel.ar"
190
+ help: |
191
+ El Fediverso es una red social federada de miles de instancias (servidores) de y por la gente,
192
+ no controlada por ninguna empresa ni con algoritmos que decidan por vos. Cualquiera puede crearse
193
+ una cuenta en el Fediverso, eligiendo primero la instancia. Con una cuenta podés escribir, responder, marcar
194
+ de varias formas, e interactuar con servicios de microblogging, imágenes, música y sonidos, videos y mucho más.
195
+ Ahora podés:
196
+
197
+ - [Conocer más del Fediverso](https://sutty.nl/)
198
+ - Elegir una instancia para crear una cuenta en [https://joinfediverse.wiki/instances](https://joinfediverse.wiki/instances)
199
+ y/o [https://fediverse.to](https://fediverse.to)
200
+ sensitive: "Contenido sensible"
201
+ take_me_home: "Ir a casa"
202
+ total_shares: "Cantidad de veces compartido"
203
+ total_likes: "Cantidad de Me gusta"
204
+ globe: "Público"
205
+ activities:
206
+ Announce: "Impulso"
207
+ Like: "Favorito"
@@ -0,0 +1,2 @@
1
+ ---
2
+ - footer