forked from ruby/www.ruby-lang.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_config.yml
1878 lines (1857 loc) · 62 KB
/
_config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
markdown: kramdown
permalink: pretty
pygments: true
timezone: UTC
kramdown:
auto_ids: false
exclude:
- config.ru
- Gemfile
- Gemfile.lock
- Procfile
- Rakefile
- README.md
- vendor
url: https://www.ruby-lang.org
license:
url: /en/about/license.txt
downloads:
stable:
version: 2.2.1
url:
bz2: http://cache.ruby-lang.org/pub/ruby/2.2/ruby-2.2.1.tar.bz2
gz: http://cache.ruby-lang.org/pub/ruby/2.2/ruby-2.2.1.tar.gz
xz: http://cache.ruby-lang.org/pub/ruby/2.2/ruby-2.2.1.tar.xz
zip: http://cache.ruby-lang.org/pub/ruby/2.2/ruby-2.2.1.zip
sha256:
bz2: 4e5676073246b7ade207be3e80a930567a88100513591a0f19fc38e247370065
gz: 5a4de38068eca8919cb087d338c0c2e3d72c9382c804fb27ab746e6c7819ab28
xz: 3b2852c07fdc12d0ba2b5698c7587ae2b46141539a526d143da5860b55a626c0
zip: 73af1b1a9d5ceebfc129f270652fe81d9f760082c9fb3206a81bb7162b2a4087
previous:
version: 2.1.5
url:
bz2: http://cache.ruby-lang.org/pub/ruby/2.1/ruby-2.1.5.tar.bz2
gz: http://cache.ruby-lang.org/pub/ruby/2.1/ruby-2.1.5.tar.gz
zip: http://cache.ruby-lang.org/pub/ruby/2.1/ruby-2.1.5.zip
sha256:
bz2: 0241b40f1c731cb177994a50b854fb7f18d4ad04dcefc18acc60af73046fb0a9
gz: 4305cc6ceb094df55210d83548dcbeb5117d74eea25196a9b14fa268d354b100
zip: 22ba1eb8d475c9ed7e0541418d86044c1ea4c093ab79c300c38fc0f721afe9a3
previous20:
version: 2.0.0-p643
url:
bz2: http://cache.ruby-lang.org/pub/ruby/2.0/ruby-2.0.0-p643.tar.bz2
gz: http://cache.ruby-lang.org/pub/ruby/2.0/ruby-2.0.0-p643.tar.gz
zip: http://cache.ruby-lang.org/pub/ruby/2.0/ruby-2.0.0-p643.zip
sha256:
bz2: 1f626f20647693a215a8db3ea0d6ab5ab9cee7c1945cc441b9f8f7b9612b91a0
gz: 4bd267a4187e4bc25c1db08f9f9bdc0ce595a705569cac460d98c4f5b02e614e
zip: 73f6d939beda8865e12069689ddabd2658b3f637a9adebeee5e374388715c432
previous19:
version: 1.9.3-p551
url:
bz2: http://cache.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p551.tar.bz2
gz: http://cache.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p551.tar.gz
zip: http://cache.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p551.zip
sha256:
bz2: b0c5e37e3431d58613a160504b39542ec687d473de1d4da983dabcf3c5de771e
gz: bb5be55cd1f49c95bb05b6f587701376b53d310eb1bb7c76fbd445a1c75b51e8
zip: 44228297861f4dfdf23a47372a3e3c4c5116fbf5b0e10883417f2379874b55c6
stable_snapshot:
url:
bz2: https://ftp.ruby-lang.org/pub/ruby/stable-snapshot.tar.bz2
gz: https://ftp.ruby-lang.org/pub/ruby/stable-snapshot.tar.gz
zip: https://ftp.ruby-lang.org/pub/ruby/stable-snapshot.zip
nightly_snapshot:
url:
bz2: https://ftp.ruby-lang.org/pub/ruby/snapshot.tar.bz2
gz: https://ftp.ruby-lang.org/pub/ruby/snapshot.tar.gz
zip: https://ftp.ruby-lang.org/pub/ruby/snapshot.zip
svn:
stable:
version: 2.2
branch: ruby_2_2
previous:
version: 2.1
branch: ruby_2_1
old:
version: 2.0.0
branch: ruby_2_0_0
locales:
sitelinks:
bg:
- text: За сваляне
url: /bg/downloads
- text: Документация
url: /bg/documentation
- text: Библиотеки
url: /bg/libraries
- text: Общност
url: /bg/community
- text: Новини
url: /bg/news
- text: Сигурност
url: /bg/security
- text: Относно
url: /bg/about
de:
- text: Downloads
url: /de/downloads
- text: Dokumentation
url: /de/documentation
- text: Bibliotheken
url: /de/libraries
- text: Community
url: /de/community
- text: Neuigkeiten
url: /de/news
- text: Sicherheit
url: /de/security
- text: Über Ruby
url: /de/about
en:
- text: Downloads
url: /en/downloads
- text: Documentation
url: /en/documentation
- text: Libraries
url: /en/libraries
- text: Community
url: /en/community
- text: News
url: /en/news
- text: Security
url: /en/security
- text: About Ruby
url: /en/about
es:
- text: Descargas
url: /es/downloads
- text: Documentación
url: /es/documentation
- text: Bibliotecas
url: /es/libraries
- text: Comunidad
url: /es/community
- text: Noticias
url: /es/news
- text: Seguridad
url: /es/security
- text: Acerca de Ruby
url: /es/about
fr:
- text: Téléchargements
url: /fr/downloads
- text: Documentation
url: /fr/documentation
- text: Bibliothèques
url: /fr/libraries
- text: Communauté
url: /fr/community
- text: Actualités
url: /fr/news
- text: Sécurité
url: /fr/security
- text: À propos de Ruby
url: /fr/about
id:
- text: Download
url: /id/downloads
- text: Dokumentasi
url: /id/documentation
- text: Library
url: /id/libraries
- text: Komunitas
url: /id/community
- text: Berita
url: /id/news
- text: Keamanan
url: /id/security
- text: Tentang Ruby
url: /id/about
it:
- text: Scarica
url: /it/downloads
- text: Documentazione
url: /it/documentation
- text: Librerie
url: /it/libraries
- text: Comunità
url: /it/community
- text: Notizie
url: /it/news
- text: Sicurezza
url: /it/security
- text: A proposito di Ruby
url: /it/about
ja:
- text: ダウンロード
url: /ja/downloads
- text: ドキュメント
url: /ja/documentation
- text: ライブラリ
url: /ja/libraries
- text: コミュニティ
url: /ja/community
- text: コア開発
url: /ja/dev
- text: ニュース
url: /ja/news
- text: セキュリティ
url: /ja/security
- text: Rubyとは
url: /ja/about
ko:
- text: 다운로드
url: /ko/downloads
- text: 문서
url: /ko/documentation
- text: 라이브러리
url: /ko/libraries
- text: 커뮤니티
url: /ko/community
- text: 뉴스
url: /ko/news
- text: 보안이슈
url: /ko/security
- text: 루비에 대해서
url: /ko/about
pl:
- text: Pobierz
url: /pl/downloads
- text: Dokumentacja
url: /pl/documentation
- text: Biblioteki
url: /pl/libraries
- text: Społeczność
url: /pl/community
- text: Wiadomości
url: /pl/news
- text: Bezpieczeństwo
url: /pl/security
- text: O języku Ruby
url: /pl/about
pt:
- text: Downloads
url: /pt/downloads
- text: Documentação
url: /pt/documentation
- text: Módulos
url: /pt/libraries
- text: Comunidade
url: /pt/community
- text: Notícias
url: /pt/news
# - text:
# url: /pt/security
- text: Sobre Ruby
url: /pt/about
ru:
- text: Скачать
url: /ru/downloads
- text: Документация
url: /ru/documentation
- text: Библиотеки
url: /ru/libraries
- text: Сообщество
url: /ru/community
- text: Новости
url: /ru/news
- text: Безопасность
url: /ru/security
- text: О Ruby
url: /ru/about
tr:
- text: İndirin
url: /tr/downloads
- text: Belgeler
url: /tr/documentation
- text: Kütüphaneler
url: /tr/libraries
- text: Topluluk
url: /tr/community
- text: Haberler
url: /tr/news
# - text: Güvenlik
# url: /tr/security
- text: Ruby Hakkında
url: /tr/about
vi:
- text: Downloads
url: /vi/downloads
- text: Tài liệu
url: /vi/documentation
- text: Thư viện
url: /vi/libraries
- text: Cộng đồng
url: /vi/community
- text: Tin tức
url: /vi/news
- text: Bảo mật
url: /vi/security
- text: Về Ruby
url: /vi/about
zh_cn:
- text: 下载
url: /zh_cn/downloads
- text: 文档
url: /zh_cn/documentation
- text: 代码库
url: /zh_cn/libraries
- text: 社区
url: /zh_cn/community
- text: 新闻
url: /zh_cn/news
- text: 安全
url: /zh_cn/security
- text: 关于 Ruby
url: /zh_cn/about
zh_tw:
- text: 下載安裝
url: /zh_tw/downloads
- text: 文件
url: /zh_tw/documentation
- text: 函式庫
url: /zh_tw/libraries
- text: 社群
url: /zh_tw/community
- text: 新聞
url: /zh_tw/news
- text: 安全
url: /zh_tw/security
- text: 關於 Ruby
url: /zh_tw/about
search:
bg:
text: Търси
de:
text: Suche
cx_id: "008918821236166936739:xplclbf3sh0"
en:
text: Search
cx_id: "013598269713424429640:g5orptiw95w"
es:
text: Buscar
fr:
text: Recherche
cx_id: "016749562256550695330:efcmgh3a1ac"
id:
text: Cari
it:
text: Cerca
ja:
text: 検索
cx_id: "008288045305770251182:fvruzsaknew"
ko:
text: 찾기
pl:
text: Szukaj
pt:
text: Procurar
ru:
text: Поиск
tr:
text: Ara
vi:
text: Tìm
zh_cn:
text: 搜索
zh_tw:
text: 搜尋
slogan:
bg: "най-добрият приятел на програмиста"
de: "Der beste Freund eines Programmierers"
en: "A Programmer's Best Friend"
es: "El mejor amigo de un desarrollador"
fr: "A Programmer's Best Friend"
id: "Sahabat Terbaik Programmer"
it: "Il migliore amico dei programmatori"
ja: "A Programmer's Best Friend"
ko: "프로그래머의 단짝 친구"
pl: "Najlepszy Przyjaciel Programisty"
pt: "O melhor amigo do programador"
ru: "лучший друг программиста"
tr: "A Programmer's Best Friend"
vi: "Người bạn tri kỉ của lập trình viên"
zh_cn: "程序员最要好的朋友"
zh_tw: "程式設計師的摯友"
ruby:
bg: "Ruby"
de: "Ruby"
en: "Ruby"
es: "Ruby"
fr: "Ruby"
id: "Ruby"
it: "Ruby"
ja: "Ruby"
ko: "루비"
pl: "Ruby"
pt: "Ruby"
ru: "Ruby"
tr: "Ruby"
vi: "Ruby"
zh_cn: "Ruby"
zh_tw: "Ruby"
month_names:
bg: [януари, февруари, март, април, май, юни, юли, август, септември, октомври, ноември, декември]
de: [Januar, Februar, März, April, Mai, Juni, Juli, August, September, Oktober, November, Dezember]
en: [January, February, March, April, May, June, July, August, September, October, November, December]
es: [Enero, Febrero, Marzo, Abril, Mayo, Junio, Julio, Agosto, Septiembre, Octubre, Noviembre, Diciembre]
fr: [Janvier, Février, Mars, Avril, Mai, Juin, Juillet, Août, Septembre, Octobre, Novembre, Décembre]
id: [Januari, Februari, Maret, April, Mei, Juni, Juli, Agustus, September, Oktober, November, Desember]
it: [Gennaio, Febbraio, Marzo, Aprile, Maggio, Giugno, Luglio, Agosto, Settembre, Ottobre, Novembre, Dicembre]
pl: [Styczeń, Luty, Marzec, Kwiecień, Maj, Czerwiec, Lipiec, Sierpień, Wrzesień, Październik, Listopad, Grudzień]
pt: [Janeiro, Fevereiro, Março, Abril, Maio, Junho, Julho, Agosto, Setembro, Outubro, Novembro, Dezembro]
ru: [Январь, Февраль, Март, Апрель, Май, Июнь, Июль, Август, Сентябрь, Октябрь, Ноябрь, Декабрь]
tr: [Ocak, Şubat, Mart, Nisan, Mayıs, Haziran, Temmuz, Ağustos, Eylül, Ekim, Kasım, Aralık]
vi: [Tháng một, Tháng hai, Tháng ba, Tháng tư, Tháng năm, Tháng sáu, Tháng bảy, Tháng tám, Tháng chín, Tháng mười, Tháng mười một, Tháng mười hai]
posted_by:
bg: "Публикувана от AUTHOR на %Y-%m-%d"
de: "Geschrieben von AUTHOR am %-d.%-m.%Y"
en: "Posted by AUTHOR on %-d %b %Y"
es: "Publicado por AUTHOR el %Y-%m-%d"
fr: "Posté par AUTHOR le %Y-%m-%d"
id: "Ditulis oleh AUTHOR tanggal %Y-%m-%d"
it: "Inserito da AUTHOR il %Y-%m-%d"
# ja:
ko: "작성자: AUTHOR (%Y-%m-%d)"
pl: "Zamieszczone przez AUTHOR %Y-%m-%d"
pt: "Escrito por AUTHOR em %Y-%m-%d"
ru: "Опубликовал AUTHOR %Y-%m-%d"
tr: "AUTHOR tarafından %Y-%m-%d tarihinde gönderildi"
vi: "Đăng bởi AUTHOR vào %-d %b %Y"
zh_cn: "由 AUTHOR 发表于 %Y-%m-%d"
zh_tw: "由 AUTHOR 發表於 %Y-%m-%d"
translated_by:
bg: "Превод от"
de: "Übersetzt von"
en: "Translated by"
es: "Traducción de"
fr: "Traduit par"
id: "Diterjemahkan oleh"
it: "Tradotto da"
# ja:
ko: "번역자:"
pl: "Tłumaczone przez"
pt: "Traduzido por"
ru: "Перевел:"
tr: "Çeviri:"
vi: "Dịch bởi"
zh_cn: "翻译:"
zh_tw: "翻譯:"
feed:
bg:
title: Ruby новини
description: Последните новини от ruby-lang.org.
lang_code: bg
de:
title: Ruby RSS News
description: Die letzten Neuigkeiten von ruby-lang.org.
lang_code: de-DE
en:
title: Ruby News
description: The latest news from ruby-lang.org.
lang_code: en-US
es:
title: Noticias de Ruby por RSS
description: Las últimas noticias de ruby-lang.org en español.
lang_code: es-ES
fr:
title: Actualités de Ruby-lang
description: Les dernières news sur ruby-lang.org.
lang_code: fr-FR
id:
title: Berita Ruby
description: Berita terhangat dari ruby-lang.org.
lang_code: id
it:
title: Notizie su Ruby
description: Le ultime notizie da ruby-lang.org.
lang_code: it-IT
ja:
title: ruby-langの最新ニュース
description: ruby-lang.orgの最新ニュース
lang_code: ja
ko:
title: 루비 뉴스
description: ruby-lang.org의 최근 소식
lang_code: ko-KR
pl:
title: Ruby Lang PL
description: Najnowsze wiadomości z ruby-lang.org.
lang_code: pl
pt:
title: Notícias de Ruby por RSS
description: As notícias mais recentes do ruby-lang.org em Português.
lang_code: pt-PT
ru:
title: Новости Ruby
description: Последние новости с ruby-lang.org.
lang_code: ru-RU
tr:
title: Ruby Son Haberler
description: Ruby Son Haberler
lang_code: tr
vi:
title: Tin tức Ruby
description: Những tin mới nhất từ ruby-lang.org.
lang_code: vi
zh_cn:
title: Ruby 新闻更新
description: 来自 ruby-lang.org 的最新文章。
lang_code: zh-CN
zh_tw:
title: Ruby 新聞
description: 來自 ruby-lang.org 的新聞快報。
lang_code: zh-TW
news:
bg:
other_news: Други новини
more_news: Още новини...
continue: Прочетете още...
back_to_year: "Back to %Y Archives"
recent_news: Последни новини
yearly_archive_title: "%Y Archives"
monthly_archive_title: "%B %Y Archives"
yearly_archives: Архив по година
monthly_archives: Archives by Month
yearly_archive_link: "%Y"
monthly_archive_link: "%B %Y"
de:
other_news: Weitere Neuigkeiten
more_news: Mehr Neuigkeiten...
continue: Weiterlesen...
back_to_year: "Zurück zum Archiv für %Y"
recent_news: Aktuelle Neuigkeiten
yearly_archive_title: "Archiv für %Y"
monthly_archive_title: "Archiv für %B %Y"
yearly_archives: Archiv
monthly_archives: Archiv nach Monat
yearly_archive_link: "Archiv für %Y"
monthly_archive_link: "%B %Y"
en:
other_news: Other News
more_news: More News...
continue: Continue Reading...
back_to_year: "Back to %Y Archives"
recent_news: Recent News
yearly_archive_title: "%Y Archives"
monthly_archive_title: "%B %Y Archives"
yearly_archives: Archives by Year
monthly_archives: Archives by Month
yearly_archive_link: "%Y Archives"
monthly_archive_link: "%B %Y"
es:
other_news: Otras noticias
more_news: Más noticias...
continue: Continuar leyendo...
back_to_year: "Volver a las noticias de %Y"
recent_news: Noticias recientes
yearly_archive_title: "Noticias de %Y"
monthly_archive_title: "Noticias de %B %Y"
yearly_archives: Noticias por año
monthly_archives: Noticias por mes
yearly_archive_link: "Noticias de %Y"
monthly_archive_link: "%B %Y"
fr:
other_news: Autres actualités
more_news: Plus d’actualités...
continue: Lire la suite...
back_to_year: "Retour aux %Y archives"
recent_news: Actualité récente
yearly_archive_title: "%Y Archives"
monthly_archive_title: "%B %Y Archives"
yearly_archives: Archives par années
monthly_archives: Archives par mois
yearly_archive_link: "Actualités de %Y"
monthly_archive_link: "%m/%Y"
id:
other_news: Berita Lain
more_news: Arsip Sebelumnya...
continue: Baca Selengkapnya...
back_to_year: "Kembali ke Arsip Tahun %Y"
recent_news: Berita
yearly_archive_title: "Arsip Tahun %Y"
monthly_archive_title: "Arsip %B %Y"
yearly_archives: Arsip Tahunan
monthly_archives: Arsip Bulanan
yearly_archive_link: "Tahun %Y"
monthly_archive_link: "%B %Y"
it:
other_news: Altre Notizie
more_news: Ulteriori Notizie...
continue: Continua...
back_to_year: "Vai all'archivio %Y"
recent_news: Notizie Recenti
yearly_archive_title: "Archivio dell'anno %Y"
monthly_archive_title: "Archivio mensile %B %Y"
yearly_archives: Archivio dell'anno
monthly_archives: Archivio Mensile
yearly_archive_link: "Archivio dell'anno %Y"
monthly_archive_link: "%B %Y"
ja:
other_news: その他のニュース
more_news: もっと読む...
continue: もっと読む...
back_to_year: "%Y年のアーカイブに戻る"
recent_news: 最近のニュース
yearly_archive_title: "%Y年のアーカイブ"
monthly_archive_title: "%Y年%m月のアーカイブ"
yearly_archives: 年毎のアーカイブ
monthly_archives: 月毎のアーカイブ
yearly_archive_link: "%Y年のアーカイブ"
monthly_archive_link: "%Y年%m月"
ko:
other_news: 이전 뉴스
more_news: 뉴스 더보기...
continue: 자세히 읽기
back_to_year: "%Y년 아카이브로 돌아가기"
recent_news: 최근 소식
yearly_archive_title: "%Y년 아카이브"
monthly_archive_title: "%Y년 %m월 아카이브"
yearly_archives: 년도별 아카이브
monthly_archives: 월별 아카이브
yearly_archive_link: "%Y년"
monthly_archive_link: "%Y년 %m월"
pl:
other_news: Pozostałe aktualności
more_news: Więcej aktualności...
continue: Więcej...
back_to_year: "Powrót do Archiwum %Y"
recent_news: Aktualności
yearly_archive_title: "Archiwum %Y"
monthly_archive_title: "Archiwum %B %Y"
yearly_archives: Archiwum wiadomości
monthly_archives: Archiwum według miesiąca
yearly_archive_link: "%Y"
monthly_archive_link: "%B %Y"
pt:
other_news: Outras Notícias
more_news: Mais Notícias...
continue: Continuar a Leitura...
back_to_year: "Back to %Y Archives"
recent_news: Notícias Recentes
yearly_archive_title: "Arquivos de %Y"
monthly_archive_title: "%B %Y Archives"
yearly_archives: Arquivos por Ano
monthly_archives: Archives by Month
yearly_archive_link: "Arquivos de %Y"
monthly_archive_link: "%B %Y"
ru:
other_news: Другие новости
more_news: Больше новостей...
continue: Узнать больше...
back_to_year: "Вернуться к архивам %Y года"
recent_news: Последние новости
yearly_archive_title: "Архивы %Y года"
monthly_archive_title: "Архивы %B %Y"
yearly_archives: Архивы по годам
monthly_archives: Архивы по месяцам
yearly_archive_link: "Архивы %Y"
monthly_archive_link: "%B %Y"
tr:
other_news: Diğer Haberler
more_news: Dahası...
continue: Devamını Okuyun...
back_to_year: "Back to %Y Archives"
recent_news: Son Haberler
yearly_archive_title: "%Y Archives"
monthly_archive_title: "%B %Y Archives"
yearly_archives: Archives by Year
monthly_archives: Archives by Month
yearly_archive_link: "%Y Archives"
monthly_archive_link: "%B %Y"
vi:
other_news: Tin khác
more_news: Thêm Tin...
continue: Đọc tiếp...
back_to_year: "Trở về %Y Lưu trữ"
recent_news: Tin mới nhất
yearly_archive_title: "Lưu trữ %Y"
monthly_archive_title: "Lưu trữ %B %Y"
yearly_archives: Lưu trữ bằng Năm
monthly_archives: Lưu trữ bằng Tháng
yearly_archive_link: "Lưu trữ %Y"
monthly_archive_link: "%B %Y"
zh_cn:
other_news: 其它新闻
more_news: 更多新闻...
continue: 阅读全文...
back_to_year: "返回%Y年归档"
recent_news: 最新消息
yearly_archive_title: "%Y年归档"
monthly_archive_title: "%Y年%-m月归档"
yearly_archives: 按年存档
monthly_archives: 按月归档
yearly_archive_link: "%Y年归档"
monthly_archive_link: "%Y年%-m月归档"
zh_tw:
other_news: 其他新聞
more_news: 更多新聞...
continue: 深入閱讀...
back_to_year: "回到 %Y 年彙整"
recent_news: 最新消息
yearly_archive_title: "%Y 彙整"
monthly_archive_title: "%Y 年 %-m 月彙整"
yearly_archives: 按年份彙整
monthly_archives: 按月份彙整
yearly_archive_link: "%Y 年彙整"
monthly_archive_link: "%Y 年 %-m 月彙整"
sidebar:
try_ruby: &try_ruby
url: http://tryruby.org/
books: &books
url: http://www.amazon.com/s/ref=sr_nr_n_5?ie=UTF8&rs=1000&keywords=Ruby&rh=i%3Aaps%2Ck%3ARuby%2Ci%3Astripbooks%2Cn%3A1000%2Cn%3A5
bg:
get_started:
text: <strong>Започнете</strong> лесно е!
try_ruby:
text: Пробвайте Ruby! (в браузъра)
<<: *try_ruby
quickstart:
text: Ruby в 20 минути
url: /bg/documentation/quickstart/
ruby_from_other_languages:
text: Ruby от други езици
url: /bg/documentation/ruby-from-other-languages/
explore:
text: <strong>Изследвайте</strong> нов свят…
documentation:
text: Документация
url: /bg/documentation/
books:
text: Книги
<<: *books
libraries:
text: Библиотеки
url: /bg/libraries/
success_stories:
text: Успешни истории
url: /bg/documentation/success-stories/
participate:
text: <strong>Участвайте</strong> в приятелски настроено общество.
mailing_lists:
text: Пощенски списъци
url: /bg/community/mailing-lists/
description: |
Дискусии относно Ruby с програмисти от цял свят.
user_groups:
text: Потребителски групи
url: /bg/community/user-groups/
description: |
Свържете се с рубисти в твоя район.
weblogs:
text: Блогове
url: /bg/community/weblogs/
description: |
Прочетете какво се случва в Ruby обществото.
ruby_core:
text: Ruby ядро
url: /bg/community/ruby-core/
description: |
Помогнете за разработката на Ruby.
issue_tracking:
text: Следене на бъгове
url: https://bugs.ruby-lang.org/
description: |
Докладвайте или помогнете за решаването на проблеми в Ruby.
syndicate:
text: Новини
recent_news:
text: Последните новини (RSS)
url: /bg/feeds/news.rss
de:
get_started:
text: <strong>Der Einstieg</strong> ist einfach!
try_ruby:
text: Teste Ruby! (im Browser)
<<: *try_ruby
quickstart:
text: Ruby in 20 Minuten
url: /de/documentation/quickstart/
ruby_from_other_languages:
text: Ruby für Umsteiger
url: /de/documentation/ruby-from-other-languages/
explore:
text: <strong>Entdecke</strong> eine neue Welt…
documentation:
text: Dokumentation
url: /de/documentation/
books:
text: Bücher
<<: *books
libraries:
text: Bibliotheken
url: /de/libraries/
success_stories:
text: Erfolgsgeschichten
url: /de/documentation/success-stories/
participate:
text: <strong>Beteilige dich</strong> an einer freundlichen und wachsenden Community.
mailing_lists:
text: Mailing-Listen
url: /de/community/mailing-lists/
description: |
Sprich mit Programmierern auf der ganzen Welt über Ruby.
user_groups:
text: User-Groups
url: /de/community/user-groups/
description: |
Treffe Rubyisten in deiner Umgebung.
weblogs:
text: Weblogs
url: /de/community/weblogs/
description: |
Lies, was gerade jetzt in der Ruby-Community passiert.
ruby_core:
text: Ruby-Entwicklung
url: /de/community/ruby-core/
description: |
Hilf mit, die neuesten Ruby-Versionen zu verbessern.
issue_tracking:
text: Fehler melden
url: https://bugs.ruby-lang.org/
description: |
Melde einen Fehler oder hilf mit, offene Fehler zu beseitigen.
syndicate:
text: Syndication
recent_news:
text: Aktuelle Neuigkeiten (RSS)
url: /de/feeds/news.rss
en:
get_started:
text: <strong>Get Started</strong>, it's easy!
try_ruby:
text: Try Ruby! (in your browser)
<<: *try_ruby
quickstart:
text: Ruby in Twenty Minutes
url: /en/documentation/quickstart/
ruby_from_other_languages:
text: Ruby from Other Languages
url: /en/documentation/ruby-from-other-languages/
explore:
text: <strong>Explore</strong> a new world…
documentation:
text: Documentation
url: /en/documentation/
books:
text: Books
<<: *books
libraries:
text: Libraries
url: /en/libraries/
success_stories:
text: Success Stories
url: /en/documentation/success-stories/
participate:
text: <strong>Participate</strong> in a friendly and growing community.
mailing_lists:
text: Mailing Lists
url: /en/community/mailing-lists/
description: |
Talk about Ruby with programmers from all around the world.
user_groups:
text: User Groups
url: /en/community/user-groups/
description: |
Get in contact with Rubyists in your area.
weblogs:
text: Weblogs
url: /en/community/weblogs/
description: |
Read about what’s happening right now in the Ruby community.
ruby_core:
text: Ruby Core
url: /en/community/ruby-core/
description: |
Help polish the rough edges of the latest Ruby.
issue_tracking:
text: Issue Tracking
url: https://bugs.ruby-lang.org/
description: |
Report or help solve issues in Ruby.
syndicate:
text: Syndicate
recent_news:
text: Recent News (RSS)
url: /en/feeds/news.rss
es:
get_started:
text: "<strong>Iníciate</strong>, ¡es fácil!"
try_ruby:
text: ¡Prueba Ruby! (en tu navegador)
<<: *try_ruby
quickstart:
text: Ruby en 20 Minutos
url: /es/documentation/quickstart/
ruby_from_other_languages:
text: Ruby desde otros lenguajes
url: /es/documentation/ruby-from-other-languages/
explore:
text: <strong>Explora</strong> un nuevo mundo…
documentation:
text: Documentación
url: /es/documentation/
books:
text: Libros
url: http://www.ruby-doc.org/bookstore
libraries:
text: Bibliotecas
url: /es/libraries/
success_stories:
text: Casos exitosos (en inglés)
url: /en/documentation/success-stories/
participate:
text: <strong>Participa</strong> en una amistosa y creciente comunidad.
mailing_lists:
text: Listas de correo
url: /es/community/mailing-lists/
description: |
Habla sobre Ruby con desarrolladores al rededor del mundo.
user_groups:
text: Grupos de usuarios
url: /es/community/user-groups/
description: |
Ponte en contacto con otros Rubyistas en tu localidad.
weblogs:
text: Blogs (en inglés)
url: /en/community/weblogs/
description: |
Entérate de lo que está sucediendo en la comunidad.
ruby_core:
text: Ruby Core (en inglés)
url: /en/community/ruby-core/
description: |
Ayuda a mejorar el futuro de Ruby.
issue_tracking:
text: Reportes de errores
url: https://bugs.ruby-lang.org/
description: |
Reporta o ayuda a resolver problemas en Ruby.
syndicate:
text: Feeds de noticias (RSS)
recent_news:
text: En español
url: /es/feeds/news.rss
fr:
get_started:
text: <strong>Lancez-vous</strong>, c’est facile !
try_ruby:
text: Essayez Ruby !
<<: *try_ruby
quickstart:
text: Apprenez Ruby en vingt minutes
url: /fr/documentation/quickstart/
ruby_from_other_languages:
text: Vous venez d'un autre langage ?
url: /fr/documentation/ruby-from-other-languages/
explore:
text: <strong>Explorez</strong> un nouvel univers…
documentation:
text: Documentation
url: /fr/documentation/
books:
text: Livres
<<: *books
libraries:
text: Bibliothèques
url: /fr/libraries/
success_stories:
text: Témoignages
url: /fr/documentation/success-stories/
participate:
text: <strong>Participez</strong> à la communauté
mailing_lists:
text: Listes de diffusion
url: /fr/community/mailing-lists/
description: |
discutez de Ruby avec des programmeurs du monde entier.
user_groups:
text: Groupes d’utilisateur
url: /fr/community/user-groups/
description: |
entrez en contact avec d’autres rubyistes de votre région.
weblogs:
text: Blogs
url: /fr/community/weblogs/
description: |
suivez toute l’actualité de la communauté Ruby.
ruby_core:
text: Ruby Core