├── .gitignore ├── README.md ├── articles ├── article-text-size-data │ ├── en-th-line-height.gif │ ├── photostream.jpg │ └── translations.js ├── article-text-size.ar.html ├── article-text-size.de.html ├── article-text-size.en.html ├── article-text-size.es.html ├── article-text-size.fr.html ├── article-text-size.hu.html ├── article-text-size.it.html ├── article-text-size.ja.html ├── article-text-size.ko.html ├── article-text-size.pl.html ├── article-text-size.ro.html ├── article-text-size.ru.html ├── article-text-size.uk.html ├── article-text-size.zh-hans.html ├── composite-messages │ ├── index-data │ │ ├── image1.gif │ │ ├── pulldown.gif │ │ └── translations.js │ ├── index.en.html │ ├── index.es.html │ └── index.uk.html ├── css3-text │ ├── index-data │ │ ├── Hbaseline-rule.png │ │ ├── Slide0050.gif │ │ ├── Slide0060.gif │ │ ├── Slide0080.gif │ │ ├── Slide0090.gif │ │ ├── Slide0100.gif │ │ ├── Slide0110.gif │ │ ├── Slide0120.gif │ │ ├── Slide0130.gif │ │ ├── Slide0140.gif │ │ ├── Slide0150.gif │ │ ├── Slide0160.gif │ │ ├── Slide0170.gif │ │ ├── Slide0180.gif │ │ ├── Slide0190a.gif │ │ ├── Slide0190b.gif │ │ ├── Slide0210.gif │ │ ├── Slide0230.gif │ │ ├── Slide0240a.gif │ │ ├── Slide0240b.gif │ │ ├── Slide0240c.gif │ │ ├── Slide0250.gif │ │ ├── Slide0260.gif │ │ └── translations.js │ └── index.en.html ├── definitions-characters │ ├── index-data │ │ ├── a.png │ │ ├── alef.png │ │ ├── an.png │ │ ├── emoji_family.png │ │ ├── emoji_family_plus1.png │ │ ├── encodings-utf8.png │ │ ├── encodings.png │ │ ├── ksha-parts-gc.png │ │ ├── ksha.png │ │ ├── served-as.gif │ │ ├── stumpOfTree.gif │ │ ├── translations.js │ │ ├── unicodeblocks.png │ │ ├── unicodeplanes.png │ │ ├── viet-parts-gc.png │ │ └── viet.png │ ├── index.de.html │ ├── index.en.html │ ├── index.es.html │ ├── index.fr.html │ ├── index.ro.html │ ├── index.uk.html │ └── index.zh-hans.html ├── definitions-time │ ├── index-data │ │ └── translations.js │ ├── index.en.html │ ├── index.es.html │ └── index.zh-hans.html ├── http-charset │ ├── index-data │ │ └── translations.js │ ├── index.de.html │ ├── index.en.html │ ├── index.es.html │ ├── index.fr.html │ ├── index.hu.html │ ├── index.pl.html │ ├── index.pt-br.html │ ├── index.ro.html │ ├── index.ru.html │ ├── index.sv.html │ └── index.uk.html ├── idn-and-iri │ ├── JP納豆 │ │ ├── hikiwari.jpg │ │ └── 引き割り納豆.html │ ├── index-data │ │ └── translations.js │ ├── index.en.html │ ├── index.es.html │ ├── index.ro.html │ └── parts.gif ├── inline-bidi-markup │ ├── bidi_examples-data │ │ └── translations.js │ ├── bidi_examples.en.html │ ├── index-data │ │ ├── 5-stars.png │ │ ├── basic_bulletproof.html │ │ ├── basic_dir_auto.html │ │ ├── basic_tight_wrap.html │ │ ├── bdo.html │ │ ├── book-result-correct.png │ │ ├── book-result-incorrect.png │ │ ├── comma-right.gif │ │ ├── comma-wrong.gif │ │ ├── dir_cite_bad.png │ │ ├── dir_cite_ok.png │ │ ├── dir_nested_bad.png │ │ ├── dir_nested_ok.png │ │ ├── dir_span_bad.png │ │ ├── dir_span_ok.png │ │ ├── dir_spillover_list_bad.png │ │ ├── dir_spillover_list_ok.png │ │ ├── examples │ │ │ ├── dir_cite.html │ │ │ ├── dir_nested.html │ │ │ ├── dir_span.html │ │ │ ├── dir_spillover_list.html │ │ │ └── dir_spillover_number.html │ │ ├── exclamation-right.gif │ │ ├── exclamation-wrong.gif │ │ ├── intro-to-C-attempt1.png │ │ ├── intro-to-C-direction.png │ │ ├── intro-to-C-lrm.png │ │ ├── intro-to-C-right.png │ │ ├── intro-to-C-wrong.png │ │ ├── local.css │ │ ├── mac-correct.png │ │ ├── mac-incorrect.png │ │ ├── mirrored-parens.html │ │ ├── mirrored-parens.png │ │ ├── mirrored_chars.html │ │ ├── mirrored_chars_he.png │ │ ├── nested_directions.png │ │ ├── number-following-right.png │ │ ├── number-following-wrong.png │ │ ├── override.png │ │ ├── phonenumber-correct.png │ │ ├── phonenumber-incorrect.png │ │ ├── restaurant-right.png │ │ ├── restaurant-wrong.png │ │ ├── rle.html │ │ ├── rlm.html │ │ ├── translations.js │ │ ├── uc1.html │ │ ├── uc1_cite.html │ │ ├── uc2.html │ │ ├── uc2_a.html │ │ ├── uc2_bulletproof.html │ │ ├── uc3.html │ │ ├── uc3_a.html │ │ ├── uc3_bulletproof.html │ │ ├── uc4.html │ │ ├── uc4_cite.html │ │ ├── uc5.html │ │ ├── uc5_a.html │ │ ├── uc5_auto.html │ │ ├── uc5_bulletproof.html │ │ ├── uc6_dynamic.html │ │ ├── uc6_static.html │ │ ├── uc7_dynamic.html │ │ ├── uc7_static.html │ │ ├── wadi_rum_bad.png │ │ └── wadi_rum_ok.png │ ├── index.html │ ├── index.zh-hans.html │ ├── uba-basics-data │ │ ├── 5-stars.png │ │ ├── base_direction_bidi.html │ │ ├── base_direction_punctuation.html │ │ ├── comma_right.gif │ │ ├── comma_wrong.gif │ │ ├── digits.gif │ │ ├── directional-runs.gif │ │ ├── directional-typing.gif │ │ ├── directional_runs_bidi.html │ │ ├── directional_runs_comma.html │ │ ├── directional_runs_digits.html │ │ ├── directional_runs_exclamation.html │ │ ├── directional_runs_ltr.html │ │ ├── directional_runs_rtl.html │ │ ├── directional_runs_spaces.html │ │ ├── isolation.html │ │ ├── list_isolation.html │ │ ├── local.css │ │ ├── ltr-directional-runs.gif │ │ ├── mirrored_chars_he.png │ │ ├── more-complex.png │ │ ├── neutrals-basic.gif │ │ ├── punctuation-he.png │ │ ├── rtl-directional-runs.gif │ │ ├── strong_direction.html │ │ ├── title-comma.png │ │ ├── title-exclamation.png │ │ ├── translations.js │ │ └── w3c-i18n-he.png │ ├── uba-basics.en.html │ └── uba-basics.zh-hans.html ├── intl │ ├── index-data │ │ └── translations.js │ └── index.en.html ├── lang-bidi-use-cases │ ├── index-data │ │ ├── codepoints.html │ │ ├── easy.png │ │ ├── easy_LTR.png │ │ ├── easy_RTL.png │ │ ├── initial.png │ │ ├── initial_LTR.png │ │ ├── isbn.png │ │ ├── isbn_RTL.png │ │ ├── ja_zh_fonts.png │ │ ├── local.css │ │ ├── markup.png │ │ ├── markup_scrambled.png │ │ ├── position_LTR.png │ │ ├── position_LTR_corrected.png │ │ ├── position_RTL.png │ │ ├── position_string.png │ │ ├── publisher.png │ │ ├── spillover.png │ │ ├── spillover_right.png │ │ ├── spillover_wrong.png │ │ ├── test1.png │ │ ├── test2.png │ │ ├── test4.png │ │ ├── test5.png │ │ ├── translations.js │ │ ├── xhtml.png │ │ └── xhtml_LTR.png │ ├── index.en.html │ └── index.zh-hans.html ├── language-negotiation │ └── language-negotiation.md ├── language-tags │ ├── index-data │ │ └── translations.js │ ├── index.en.html │ ├── index.fr.html │ ├── index.ja.html │ └── index.ru.html ├── missing-char-glyph │ ├── index-data │ │ └── translations.js │ ├── index.en.html │ ├── index.es.html │ ├── index.ru.html │ └── index.uk.html ├── ruby │ ├── index-data │ │ ├── Slide0050.gif │ │ ├── Slide0060.gif │ │ ├── Slide0070.gif │ │ ├── Slide0080.gif │ │ ├── Slide0100.gif │ │ ├── Slide0110.gif │ │ ├── Slide0120.gif │ │ ├── Slide0130.gif │ │ ├── Slide0140.gif │ │ ├── Slide0150.gif │ │ ├── Slide0160.gif │ │ ├── Slide0180.gif │ │ ├── Slide0190.gif │ │ ├── Slide0200.gif │ │ ├── Slide0210.gif │ │ ├── Slide0220.gif │ │ ├── Slide0230.gif │ │ ├── Slide0240.gif │ │ ├── Slide0250.gif │ │ ├── Slide0260.gif │ │ ├── Slide0270.gif │ │ ├── Slide0280.gif │ │ ├── Slide0290.gif │ │ └── translations.js │ ├── index.en.html │ ├── local.css │ ├── markup-data │ │ ├── bopomofo.gif │ │ ├── double-mixed.png │ │ ├── double-mono.png │ │ ├── double-zhuyin.png │ │ ├── eg_bopomofo_ruby.html │ │ ├── eg_dbl_mismatch.html │ │ ├── eg_dbl_mismatch_nested.html │ │ ├── eg_dbl_mixed.html │ │ ├── eg_dbl_mixed_nested.html │ │ ├── eg_dbl_mono.html │ │ ├── eg_dbl_mono_nested.html │ │ ├── eg_gaps1.html │ │ ├── eg_gaps2.html │ │ ├── eg_gaps3.html │ │ ├── eg_gaps4.html │ │ ├── eg_group_ruby.html │ │ ├── eg_interleaved1.html │ │ ├── eg_interleaved2.html │ │ ├── eg_simple.html │ │ ├── eg_tabular.html │ │ ├── eg_words_il.html │ │ ├── eg_words_tab.html │ │ ├── moedict-zi.png │ │ ├── nihongo.png │ │ ├── protego.png │ │ └── translations.js │ ├── markup.en.html │ ├── styling-data │ │ ├── autohide_hor.png │ │ ├── autohide_ver.png │ │ ├── bopomofo.png │ │ ├── bopomofo_hor.png │ │ ├── bopomofo_ver.png │ │ ├── double_mono.png │ │ ├── double_mono_nested.png │ │ ├── eg_autohide.html │ │ ├── eg_autohide_defective.html │ │ ├── eg_bopomofo.html │ │ ├── eg_dbl_mono.html │ │ ├── eg_dbl_mono_nested.html │ │ ├── eg_inline.html │ │ ├── eg_inline_tabular.html │ │ ├── eg_ruby_align_center.html │ │ ├── eg_ruby_align_space_around.html │ │ ├── eg_ruby_align_space_around_latin.html │ │ ├── eg_ruby_align_space_between.html │ │ ├── eg_ruby_align_start.html │ │ ├── eg_ruby_position_over.html │ │ ├── eg_ruby_position_under.html │ │ ├── inline-tester.html │ │ ├── inline_interleaved_hor.png │ │ ├── inline_interleaved_ver.png │ │ ├── inline_tabular_hor.png │ │ ├── inline_tabular_ver.png │ │ ├── local.css │ │ ├── pinyin-under.png │ │ ├── ruby-align-around.png │ │ ├── ruby-align-between.png │ │ ├── ruby-align-center.png │ │ ├── ruby-align-start.png │ │ ├── ruby_position_over_hor.png │ │ ├── ruby_position_over_ver.png │ │ ├── ruby_position_under_hor.png │ │ ├── ruby_position_under_ver.png │ │ ├── simple_ja_mono.html │ │ ├── simple_ja_mono.png │ │ ├── simple_ja_vert.png │ │ ├── simple_zh_mono.html │ │ ├── simple_zh_mono.png │ │ ├── simple_zh_word.html │ │ ├── simple_zh_word.png │ │ ├── simple_zh_word_under.html │ │ ├── simple_zh_word_under.png │ │ ├── summer-palace.png │ │ └── translations.js │ └── styling.en.html ├── serving-xhtml │ ├── index-data │ │ ├── quirks-scan.png │ │ ├── quirks.html │ │ ├── standards-scan.png │ │ ├── standards.html │ │ └── translations.js │ ├── index.de.html │ ├── index.en.html │ ├── index.es.html │ ├── index.it.html │ ├── index.pt-br.html │ ├── index.ru.html │ ├── index.sv.html │ └── index.uk.html ├── strings-and-bidi │ ├── index-data │ │ ├── data.json │ │ ├── datafinal.json │ │ ├── example-final.html │ │ ├── example-final.png │ │ ├── example-ltr.html │ │ ├── example-ltr.png │ │ ├── example-rtl-isolated.html │ │ ├── example-rtl-isolated.png │ │ ├── example-rtl.html │ │ ├── example-rtl.png │ │ ├── local.css │ │ └── translations.js │ ├── index.en.html │ └── index.var ├── text-reuse │ ├── index-data │ │ ├── on.gif │ │ └── translations.js │ ├── index.en.html │ ├── index.es.html │ └── index.uk.html ├── typography │ ├── fontstyles-data │ │ ├── adlam_unjoined.jpg │ │ ├── adlam_unjoined.png │ │ ├── ja_gothic.png │ │ ├── ja_mincho.png │ │ ├── ja_rounded.png │ │ ├── ja_unrounded.png │ │ ├── ja_zh_fonts.png │ │ ├── jv_modulated.png │ │ ├── jv_monoline.png │ │ ├── khmer_mix.jpg │ │ ├── km_moul.png │ │ ├── km_slanted.png │ │ ├── km_upright.png │ │ ├── nqo_unjoined.png │ │ ├── style_kano.png │ │ ├── style_kufi.png │ │ ├── style_naskh.png │ │ ├── style_nastaliq.png │ │ ├── style_ruqah.png │ │ ├── syr_adiabene.png │ │ ├── syr_estrangelo_edessa.png │ │ ├── syr_heading_east_estrangelo.png │ │ ├── syr_serto_jerusalem.png │ │ ├── ta_1978_reforms.png │ │ ├── ta_ra.png │ │ ├── th_looped_silom.png │ │ ├── th_loopless_sukhumvitset.png │ │ ├── tham_a copy.png │ │ ├── tham_a.png │ │ ├── tham_khun.png │ │ ├── tham_lanna.png │ │ ├── translations.js │ │ ├── zh_fangsong.png │ │ ├── zh_hei.png │ │ ├── zh_kai.png │ │ └── zh_song.png │ ├── fontstyles.en.html │ ├── justification-data │ │ ├── arabic.jpg │ │ ├── ethiopic.jpg │ │ ├── japanese.jpg │ │ ├── justification_full_stop.png │ │ ├── partridge.png │ │ ├── tibetan.jpg │ │ └── translations.js │ ├── justification.en.html │ ├── linebreak-data │ │ ├── arab-bidi.png │ │ ├── arab.png │ │ ├── deva copy.png │ │ ├── deva.png │ │ ├── double-rin-chen.png │ │ ├── double-shad.png │ │ ├── ethi-space.png │ │ ├── ethi-wordspace.png │ │ ├── ethi.png │ │ ├── hanging_punctuation.png │ │ ├── hans.png │ │ ├── hant.png │ │ ├── japn.png │ │ ├── java.png │ │ ├── khmr.png │ │ ├── kore-char.png │ │ ├── kore-word.png │ │ ├── leu.png │ │ ├── line-break-taling.png │ │ ├── local.css │ │ ├── pangandika.png │ │ ├── rin_chen_spungs_shad.png │ │ ├── shad.png │ │ ├── sund.png │ │ ├── taling.png │ │ ├── thai-alt1.png │ │ ├── thai-alt2.png │ │ ├── thai.png │ │ ├── tibt.png │ │ └── translations.js │ ├── linebreak.en.html │ └── linebreak.zh-hans.html ├── unicode-migration │ ├── index-data │ │ ├── translations.js │ │ └── zhs-jpn-font.jpg │ ├── index.en.html │ ├── index.es.html │ ├── index.ru.html │ └── index.uk.html ├── vertical-text.en.html └── vertical-text │ ├── index-data │ ├── basic-ja-pref.html │ ├── basic-ja.html │ ├── basic-ja.png │ ├── basic-mn-pref.html │ ├── basic-mn.html │ ├── basic-mn.png │ ├── digit2.png │ ├── digit4.png │ ├── digits-pref-for-img.html │ ├── digits-pref.html │ ├── digits.html │ ├── digits4-pref.html │ ├── digits4.html │ ├── embedded-ar-pref.html │ ├── embedded-ar.html │ ├── embedded-ar.png │ ├── fig_controls_progress.png │ ├── fullwidth-digits-pref.html │ ├── fullwidth-digits.html │ ├── fullwidth-digits.png │ ├── fullwidth-w3c-pref.html │ ├── fullwidth-w3c.html │ ├── fullwidth-w3c.png │ ├── japanese_list_upright.html │ ├── japanese_list_upright.png │ ├── japanese_list_upright_pref.html │ ├── korean-list-counterstyles-pref.html │ ├── korean-list-counterstyles.html │ ├── korean-list-counterstyles.png │ ├── korean-list-pref.html │ ├── korean-list-upright-pref.html │ ├── korean-list-upright.html │ ├── korean-list.html │ ├── korean-list.png │ ├── korean-table-pref.html │ ├── korean-table.html │ ├── korean-table.png │ ├── local.css │ ├── safari_mongolian.png │ ├── sideways copy.png │ ├── sideways-left-pref.html │ ├── sideways-left.html │ ├── sideways-left.png │ ├── sideways-pref.html │ ├── sideways-right-pref.html │ ├── sideways-right.html │ ├── sideways-right.png │ ├── sideways.html │ ├── sideways.png │ ├── source.css │ ├── source.js │ ├── tatechuyoko.png │ ├── tcu-all-pref.html │ ├── tcu-all.html │ ├── tcu-all.png │ ├── tcu-none-pref-img.html │ ├── tcu-none-pref.html │ ├── tcu-none.html │ ├── tcu-none.png │ ├── tests │ │ ├── chinese-forms.html │ │ ├── chinese-lists.html │ │ ├── chinese-table.html │ │ ├── chinese.html │ │ ├── mongolian-forms.html │ │ ├── mongolian-lists.html │ │ ├── mongolian-table.html │ │ └── mongolian.html │ ├── text-align-end-pref.html │ ├── text-align-end.html │ ├── text-align-end.png │ ├── translations.js │ ├── upright-ar-hi-pref.html │ ├── upright-ar-hi.html │ ├── upright-ar-hi.png │ ├── upright-en-pref.html │ ├── upright-en.html │ ├── upright-en.png │ ├── upright-i-pref.html │ ├── upright-i.html │ ├── upright-i.png │ ├── vertical-form-pref.html │ ├── vertical-form.html │ ├── vertical-form.png │ ├── watto_h.png │ ├── watto_v.png │ └── world.png │ └── index.en.html ├── getting-started ├── characters-data │ ├── local.css │ └── translations.js ├── characters.ar.html ├── characters.de.html ├── characters.en.html ├── characters.es.html ├── characters.fr.html ├── characters.gl.html ├── characters.hi.html ├── characters.hu.html ├── characters.pt-br.html ├── characters.pt.html ├── characters.ro.html ├── characters.ru.html ├── characters.sv.html ├── characters.uk.html ├── characters.zh-hans.html ├── characters.zh-hant.html ├── contentdev-data │ ├── local.css │ └── translations.js ├── contentdev.en.html ├── index-data │ ├── local.css │ └── translations.js ├── index.ar.html ├── index.de.html ├── index.en.html ├── index.enOLD copy.html ├── index.es.html ├── index.fr copy.html ├── index.fr.html ├── index.html ├── index.pt-br.html ├── index.pt.html ├── index.ro.html ├── index.uk.html ├── index.zh-hans.html ├── language-data │ ├── local.css │ └── translations.js ├── language.ar.html ├── language.de.html ├── language.en.html ├── language.es.html ├── language.fr.html ├── language.gl.html ├── language.hi.html ├── language.hu.html ├── language.ja.html ├── language.ko.html ├── language.pl.html ├── language.pt-br.html ├── language.ro.html ├── language.ru.html ├── language.sv.html ├── language.uk.html ├── language.zh-hans.html ├── languagedev-data │ ├── local.css │ └── translations.js ├── languagedev.en.html ├── languagedev_participation.html ├── specdev-data │ ├── local.css │ └── translations.js ├── specdev.en.html ├── temp.html ├── temple.html ├── test.html ├── wg-data │ ├── local.css │ └── translations.js └── wg.en.html ├── icons ├── checkbox.png ├── chrome_16x16.png ├── codelink.gif ├── dontcopy.png ├── edge_16x16.png ├── external.png ├── fail.png ├── firefox_16x16.png ├── goto.png ├── goto_rtl.png ├── implementation.png ├── internet-explorer_16x16.png ├── mastodon.png ├── ok.png ├── recommended.png ├── rssLink.gif ├── rssLink.png ├── safari_16x16.png ├── twitter-bird.png ├── w3.png ├── w3c_home.gif ├── workaround.png └── world.gif ├── javascript ├── articletoc-2022.js ├── articletoc-html5.js ├── boilerplate-text │ ├── boilerplate-ar.js │ ├── boilerplate-bg.js │ ├── boilerplate-de.js │ ├── boilerplate-el.js │ ├── boilerplate-en.js │ ├── boilerplate-es.js │ ├── boilerplate-fr.js │ ├── boilerplate-gl.js │ ├── boilerplate-he.js │ ├── boilerplate-hi.js │ ├── boilerplate-hu.js │ ├── boilerplate-it.js │ ├── boilerplate-ja.js │ ├── boilerplate-ko.js │ ├── boilerplate-nl.js │ ├── boilerplate-pes.js │ ├── boilerplate-pl.js │ ├── boilerplate-pt-br.js │ ├── boilerplate-pt.js │ ├── boilerplate-ro.js │ ├── boilerplate-ru.js │ ├── boilerplate-sv.js │ ├── boilerplate-th.js │ ├── boilerplate-tr.js │ ├── boilerplate-uk.js │ ├── boilerplate-vi.js │ ├── boilerplate-zh-hans.js │ ├── boilerplate-zh-hant.js │ └── make_boilerplate.html ├── demos │ ├── source.css │ └── source.js ├── doc-structure │ ├── article-2022.js │ ├── article-dt.js │ ├── article.js │ ├── article_new.js │ ├── sitepage-2022.js │ ├── sitepage.js │ └── sitepage_2021.js ├── expanding_toc_2021.js └── prism.js ├── nav ├── about-data │ ├── Internationalization1.png │ ├── Internationalization2.png │ ├── arabic.png │ ├── style.css │ └── translations.js ├── about.html ├── about.zh-hans.html ├── ask-data │ └── translations.js ├── ask.html ├── contentdev-data │ └── translations.js ├── contentdev.html ├── description-data │ └── translations.js ├── find.html ├── follow.html ├── languagedev-data │ └── translations.js ├── languagedev.html ├── languagedev.zh-hans.html ├── learn-data │ └── translations.js ├── learn.html ├── learn.zh-hans.html ├── participate-data │ └── translations.js ├── participate.html ├── participate.zh-hans.html ├── resources-data │ └── translations.js ├── sitemap-data │ ├── local.css │ └── translations.js ├── sitemap.html ├── specdev-data │ └── translations.js └── specdev.html ├── pages ├── documenting_gaps-data │ ├── ga_pipeline.png │ ├── gh_issue.png │ ├── jlreq_gaps.png │ └── translations.js ├── documenting_gaps.html ├── interactive_tests-data │ ├── repositories.png │ ├── results_page.png │ ├── test_rigs.png │ └── translations.js ├── interactive_tests.html ├── language_framework_overview-data │ ├── issue_tracker.png │ ├── jlreq_gaps.png │ ├── jlreq_pages.png │ ├── lang_matrix.png │ ├── layout_index.png │ ├── matrix_to_gap.jpg │ ├── notifications.png │ ├── sealreq_repo.jpg │ ├── translations.js │ └── type_samples.png ├── language_framework_overview.html ├── language_framework_overview.zh-hans.html ├── languagedev_participation-data │ └── translations.js ├── languagedev_participation.html ├── languagedev_participation.zh-hans.html ├── task_force_roles-data │ └── translations.js ├── task_force_roles.html ├── tools-data │ └── translations.js ├── tools.en.html ├── translation-data │ └── translations.js ├── translation.html └── translation.zh-hans.html ├── questions ├── qa-accept-lang-locales-data │ └── translations.js ├── qa-accept-lang-locales.de.html ├── qa-accept-lang-locales.en.html ├── qa-accept-lang-locales.es.html ├── qa-accept-lang-locales.hu.html ├── qa-accept-lang-locales.ru.html ├── qa-accept-lang-locales.uk.html ├── qa-accept-lang-locales.zh-hans.html ├── qa-address-formats-data │ ├── local.css │ └── translations.js ├── qa-address-formats.en.html ├── qa-apache-lang-neg-data │ └── translations.js ├── qa-apache-lang-neg.de.html ├── qa-apache-lang-neg.en.html ├── qa-apache-lang-neg.ru.html ├── qa-apache-lang-neg.uk.html ├── qa-apache-lang-neg.zh-hans.html ├── qa-b-and-i-tags-TEST.en.html ├── qa-b-and-i-tags-data │ └── translations.js ├── qa-b-and-i-tags.de.html ├── qa-b-and-i-tags.en.html ├── qa-b-and-i-tags.zh-hans.html ├── qa-backwards-deletion-data │ ├── backward-deletion.png │ ├── backwards-deletion.png │ ├── cursor-movement.png │ ├── forward-deletion.png │ ├── forward-reverse-selection.png │ ├── forwards.deletion.png │ ├── latin-backspace-progression.png │ └── text-selection.png ├── qa-backwards-deletion.en.html ├── qa-bidi-controls-data │ └── translations.js ├── qa-bidi-controls.en.html ├── qa-bidi-controls.zh-hans.html ├── qa-bidi-css-markup-data │ └── translations.js ├── qa-bidi-css-markup.en.html ├── qa-bidi-css-markup.zh-hans.html ├── qa-bidi-localization-data │ ├── arabic.png │ ├── russian.png │ └── translations.js ├── qa-bidi-localization.en.html ├── qa-bidi-source-data │ └── translations.js ├── qa-bidi-source.en.html ├── qa-bidi-source.zh-hans.html ├── qa-bidi-space-data │ ├── eg-space-ok.html │ ├── eg-space-problem.html │ ├── example-style.css │ ├── missing-space-1.png │ ├── missing-space-2.png │ └── translations.js ├── qa-bidi-space.en.html ├── qa-bidi-space.sv.html ├── qa-bidi-space.zh-hans.html ├── qa-bidi-unicode-controls-data │ ├── book-result-incorrect.png │ ├── comma-right.gif │ ├── comma-wrong.gif │ ├── eg-lists-ok.html │ ├── eg-number-ok.html │ ├── eg-number-wrong.html │ ├── eg-punctuation-ok.html │ ├── eg-punctuation-rlm.html │ ├── eg-tooltip-ok.html │ ├── eg-tooltip-wrong.html │ ├── example-style.css │ ├── exclamation-right.gif │ ├── exclamation-wrong.gif │ ├── number-following-right.png │ ├── number-following-wrong.png │ ├── persian-link-right.de.png │ ├── persian-link-right.png │ ├── persian-link-wrong.de.png │ ├── persian-link-wrong.png │ └── translations.js ├── qa-bidi-unicode-controls.en.html ├── qa-bidi-unicode-controls.zh-hans.html ├── qa-byte-order-mark-TEST.en.html ├── qa-byte-order-mark-data │ ├── bom.png │ ├── dwprefs-bom.png │ └── translations.js ├── qa-byte-order-mark.de.html ├── qa-byte-order-mark.en.html ├── qa-byte-order-mark.fr.html ├── qa-byte-order-mark.zh-hans.html ├── qa-changing-encoding-data │ └── translations.js ├── qa-changing-encoding.bg.html ├── qa-changing-encoding.en.html ├── qa-changing-encoding.fr.html ├── qa-changing-encoding.it.html ├── qa-changing-encoding.zh-hans.html ├── qa-chars-vs-markup-data │ └── translations.js ├── qa-chars-vs-markup.de.html ├── qa-chars-vs-markup.en.html ├── qa-chars-vs-markup.es.html ├── qa-chars-vs-markup.pl.html ├── qa-chars-vs-markup.ru.html ├── qa-chars-vs-markup.uk.html ├── qa-choosing-encodings-data │ ├── dwprefs-encoding.png │ └── translations.js ├── qa-choosing-encodings.de.html ├── qa-choosing-encodings.en.html ├── qa-choosing-encodings.es.html ├── qa-choosing-encodings.fr.html ├── qa-choosing-encodings.pt-br.html ├── qa-choosing-encodings.sv.html ├── qa-choosing-language-tags-data │ └── translations.js ├── qa-choosing-language-tags.en.html ├── qa-choosing-language-tags.es.html ├── qa-choosing-language-tags.ru.html ├── qa-choosing-language-tags.zh-hans.html ├── qa-controls-data │ └── translations.js ├── qa-controls.de.html ├── qa-controls.en.html ├── qa-controls.es.html ├── qa-controls.pl.html ├── qa-controls.pt-br.html ├── qa-controls.ro.html ├── qa-controls.ru.html ├── qa-controls.uk.html ├── qa-css-charset-data │ └── translations.js ├── qa-css-charset.de.html ├── qa-css-charset.en.html ├── qa-css-charset.sv.html ├── qa-css-lang-data │ ├── css-lang-e1.de.gif │ ├── css-lang-e1.gif │ └── translations.js ├── qa-css-lang.de.html ├── qa-css-lang.en.html ├── qa-css-lang.zh-hans.html ├── qa-date-format-data │ └── translations.js ├── qa-date-format.de.html ├── qa-date-format.en.html ├── qa-date-format.es.html ├── qa-date-format.hu.html ├── qa-date-format.ro.html ├── qa-date-format.sv.html ├── qa-date-format.uk.html ├── qa-direction-from-language-data │ ├── codepoints.html │ └── translations.js ├── qa-direction-from-language.html ├── qa-direction-native-data │ ├── java-example.png │ ├── local.css │ └── translations.js ├── qa-direction-native.en.html ├── qa-display-capabilities-data │ └── translations.js ├── qa-display-capabilities.de.html ├── qa-display-capabilities.en.html ├── qa-display-capabilities.es.html ├── qa-display-capabilities.fr.html ├── qa-display-capabilities.hu.html ├── qa-display-capabilities.ro.html ├── qa-display-capabilities.sv.html ├── qa-display-capabilities.uk.html ├── qa-doc-charset-data │ └── translations.js ├── qa-doc-charset.de.html ├── qa-doc-charset.en.html ├── qa-doc-charset.es.html ├── qa-doc-charset.fr.html ├── qa-doc-charset.hi.html ├── qa-doc-charset.hu.html ├── qa-doc-charset.it.html ├── qa-doc-charset.ja.html ├── qa-doc-charset.pl.html ├── qa-doc-charset.pt-br.html ├── qa-doc-charset.pt.html ├── qa-doc-charset.ro.html ├── qa-doc-charset.ru.html ├── qa-doc-charset.sv.html ├── qa-doc-charset.uk.html ├── qa-escapes-data │ ├── egyptian.png │ ├── egyptian.svg │ └── translations.js ├── qa-escapes.de.html ├── qa-escapes.en.html ├── qa-escapes.fr.html ├── qa-escapes.sv.html ├── qa-floating-times-data │ └── translations.js ├── qa-floating-times.en.html ├── qa-forms-utf-8-data │ └── translations.js ├── qa-forms-utf-8.ar.html ├── qa-forms-utf-8.de.html ├── qa-forms-utf-8.el.html ├── qa-forms-utf-8.en.html ├── qa-forms-utf-8.es.html ├── qa-forms-utf-8.fr.html ├── qa-forms-utf-8.hu.html ├── qa-forms-utf-8.it.html ├── qa-forms-utf-8.ja.html ├── qa-forms-utf-8.ko.html ├── qa-forms-utf-8.pl.html ├── qa-forms-utf-8.ru.html ├── qa-forms-utf-8.uk.html ├── qa-forms-utf-8.zh-hans.html ├── qa-headers-charset-data │ └── translations.js ├── qa-headers-charset.de.html ├── qa-headers-charset.en.html ├── qa-headers-charset.es.html ├── qa-headers-charset.fr.html ├── qa-headers-charset.hu.html ├── qa-headers-charset.ko.html ├── qa-headers-charset.pl.html ├── qa-headers-charset.pt-br.html ├── qa-headers-charset.ro.html ├── qa-headers-charset.sv.html ├── qa-htaccess-charset-data │ └── translations.js ├── qa-htaccess-charset.de.html ├── qa-htaccess-charset.en.html ├── qa-htaccess-charset.es.html ├── qa-htaccess-charset.hu.html ├── qa-htaccess-charset.pl.html ├── qa-htaccess-charset.pt-br.html ├── qa-htaccess-charset.ro.html ├── qa-htaccess-charset.ru.html ├── qa-htaccess-charset.sv.html ├── qa-htaccess-charset.uk.html ├── qa-htaccess-charset.zh-hans.html ├── qa-html-css-normalization-TEST.en.html ├── qa-html-css-normalization-TEST.ru.html ├── qa-html-css-normalization-data │ ├── dwprefs-nfc.png │ ├── translations.js │ └── vilag.png ├── qa-html-css-normalization.de.html ├── qa-html-css-normalization.en.html ├── qa-html-css-normalization.es.html ├── qa-html-css-normalization.fr.html ├── qa-html-css-normalization.pl.html ├── qa-html-css-normalization.pt-br.html ├── qa-html-css-normalization.ru.html ├── qa-html-css-normalization.uk.html ├── qa-html-dir-data │ ├── block-differences-aligned.png │ ├── block-differences.png │ ├── examples │ │ ├── auto.html │ │ ├── books_ltr.html │ │ ├── books_rtl.html │ │ ├── dirname.html │ │ ├── dirname_test.html │ │ ├── search-button-blue.png │ │ ├── table_align_left.html │ │ ├── table_ltr.html │ │ ├── table_rtl.html │ │ ├── textarea_auto.html │ │ └── textarea_rtl.html │ ├── googlebooks-correct.png │ ├── googlebooks-incorrect.png │ ├── html-dir-in-ie.gif │ ├── html-dir-results.gif │ ├── html-dir-results_ltr.png │ ├── html-dir-results_rtl.png │ ├── im.png │ ├── markupcrazy.png │ ├── table-ltr.png │ ├── table-rtl.png │ ├── textarea_auto.png │ ├── textarea_rtl.png │ └── translations.js ├── qa-html-dir.en.html ├── qa-html-dir.zh-hans.html ├── qa-html-encoding-declarations-data │ └── translations.js ├── qa-html-encoding-declarations.de.html ├── qa-html-encoding-declarations.en.html ├── qa-html-encoding-declarations.fr.html ├── qa-html-encoding-declarations.ja.html ├── qa-html-encoding-declarations.sv.html ├── qa-html-language-declarations-data │ ├── translation-title.de.png │ ├── translation-title.en.png │ ├── translation-title.pt-BR.png │ ├── translation-title.zh-hans.png │ └── translations.js ├── qa-html-language-declarations.de.html ├── qa-html-language-declarations.en.html ├── qa-html-language-declarations.es.html ├── qa-html-language-declarations.fr.html ├── qa-html-language-declarations.it.html ├── qa-html-language-declarations.pt-br.html ├── qa-html-language-declarations.ru.html ├── qa-html-language-declarations.zh-hans.html ├── qa-http-and-lang-data │ └── translations.js ├── qa-http-and-lang.de.html ├── qa-http-and-lang.en.html ├── qa-http-and-lang.fr.html ├── qa-i18n-data │ └── translations.js ├── qa-i18n.ar.html ├── qa-i18n.de.html ├── qa-i18n.en.html ├── qa-i18n.es.html ├── qa-i18n.fr.html ├── qa-i18n.hu.html ├── qa-i18n.it.html ├── qa-i18n.pl.html ├── qa-i18n.pt-br.html ├── qa-i18n.pt.html ├── qa-i18n.ro.html ├── qa-i18n.ru.html ├── qa-i18n.sv.html ├── qa-i18n.uk.html ├── qa-i18n.zh-hans.html ├── qa-indic-graphemes-data │ ├── ban_vowel_signs.png │ ├── bn_vowel_signs.png │ ├── codepoints.html │ ├── gujarati.png │ ├── hindi.png │ ├── jhilli.png │ ├── jhilli_codepoints.png │ ├── jhilli_virama.png │ ├── justification_full_stop.png │ ├── justification_intercharacter_spacing.jpg │ ├── local.css │ ├── partridge.png │ ├── pulli.png │ ├── ra.png │ ├── shakti.png │ ├── tamil_segments.png │ ├── thai_sara_am_spacing.png │ └── translations.js ├── qa-indic-graphemes.en.html ├── qa-international-multilingual-data │ └── translations.js ├── qa-international-multilingual.ar.html ├── qa-international-multilingual.de.html ├── qa-international-multilingual.en.html ├── qa-international-multilingual.es.html ├── qa-international-multilingual.fr.html ├── qa-international-multilingual.hu.html ├── qa-international-multilingual.it.html ├── qa-international-multilingual.pl.html ├── qa-international-multilingual.pt-br.html ├── qa-international-multilingual.pt.html ├── qa-international-multilingual.ro.html ├── qa-international-multilingual.ru.html ├── qa-international-multilingual.sv.html ├── qa-international-multilingual.uk.html ├── qa-international-multilingual.zh-hans.html ├── qa-lang-2or3-data │ └── translations.js ├── qa-lang-2or3.bg.html ├── qa-lang-2or3.de.html ├── qa-lang-2or3.el.html ├── qa-lang-2or3.en.html ├── qa-lang-2or3.es.html ├── qa-lang-2or3.fr.html ├── qa-lang-2or3.it.html ├── qa-lang-2or3.pl.html ├── qa-lang-2or3.ro.html ├── qa-lang-2or3.ru.html ├── qa-lang-2or3.uk.html ├── qa-lang-priorities-data │ ├── edge-klingon.png │ ├── fr-lang-settings-ok.png │ ├── fr-lang-settings.png │ └── translations.js ├── qa-lang-priorities.en.html ├── qa-lang-priorities.ru.html ├── qa-lang-why-data │ ├── hyphenation-de.png │ ├── ideographs.png │ └── translations.js ├── qa-lang-why.de.html ├── qa-lang-why.en.html ├── qa-lang-why.es.html ├── qa-lang-why.fr.html ├── qa-lang-why.it.html ├── qa-lang-why.pes.html ├── qa-lang-why.ru.html ├── qa-lang-why.sv.html ├── qa-lang-why.uk.html ├── qa-lang-why.zh-hans.html ├── qa-link-lang-data │ ├── sv-de.html │ ├── sv-pl.html │ ├── sv.html │ ├── swedish-de.html │ ├── swedish-pl.html │ ├── swedish.html │ └── translations.js ├── qa-link-lang.de.html ├── qa-link-lang.en.html ├── qa-link-lang.es.html ├── qa-link-lang.pl.html ├── qa-ltr-scripts-in-rtl-data │ ├── NotoSansTifinagh-Regularwebfont.woff2 │ ├── commas.png │ ├── commas_in_ad.png │ ├── eg_bidi.html │ ├── eg_mirrored.html │ ├── eg_simple.html │ ├── egyptian-ltr.png │ ├── egyptian.jpeg │ ├── fig_zh_freshman.png │ ├── harja.png │ ├── hieroglyphs-reversed.png │ ├── hieroglyphs.png │ ├── japanese_stamp.jpg │ ├── local.css │ ├── taiwanese_newspaper.jpg │ ├── tifinagh-mirrored.png │ └── translations.js ├── qa-ltr-scripts-in-rtl.en.html ├── qa-ltr-scripts-in-rtl.zh-hans.html ├── qa-mono-multilingual-data │ └── translations.js ├── qa-mono-multilingual.ar.html ├── qa-mono-multilingual.de.html ├── qa-mono-multilingual.en.html ├── qa-mono-multilingual.es.html ├── qa-mono-multilingual.fr.html ├── qa-mono-multilingual.hu.html ├── qa-mono-multilingual.it.html ├── qa-mono-multilingual.pl.html ├── qa-mono-multilingual.ro.html ├── qa-mono-multilingual.ru.html ├── qa-mono-multilingual.sv.html ├── qa-mono-multilingual.uk.html ├── qa-mono-multilingual.zh-hans.html ├── qa-navigation-select-data │ ├── local.css │ ├── select-non-latin-outside.gif │ ├── select-size-attr.gif │ └── translations.js ├── qa-navigation-select.ar.html ├── qa-navigation-select.de.html ├── qa-navigation-select.en.html ├── qa-navigation-select.es.html ├── qa-navigation-select.pl.html ├── qa-navigation-select.pt-br.html ├── qa-navigation-select.ru.html ├── qa-navigation-select.uk.html ├── qa-navigation-select.zh-hans.html ├── qa-navigation-select.zh-hant.html ├── qa-no-language-data │ └── translations.js ├── qa-no-language.de.html ├── qa-no-language.en.html ├── qa-no-language.es.html ├── qa-no-language.fr.html ├── qa-no-language.it.html ├── qa-no-language.sv.html ├── qa-non-eng-tags-data │ └── translations.js ├── qa-non-eng-tags.de.html ├── qa-non-eng-tags.el.html ├── qa-non-eng-tags.en.html ├── qa-non-eng-tags.es.html ├── qa-non-eng-tags.fr.html ├── qa-non-eng-tags.hu.html ├── qa-non-eng-tags.pl.html ├── qa-non-eng-tags.pt-br.html ├── qa-non-eng-tags.ru.html ├── qa-non-eng-tags.tr.html ├── qa-non-eng-tags.uk.html ├── qa-number-format-data │ └── translations.js ├── qa-number-format.en.html ├── qa-personal-names-data │ ├── circles.es.png │ ├── circles.png │ ├── firstmlast.es.png │ ├── firstmlast.png │ ├── local.css │ └── translations.js ├── qa-personal-names.de.html ├── qa-personal-names.en.html ├── qa-personal-names.es.html ├── qa-personal-names.fr.html ├── qa-personal-names.uk.html ├── qa-personal-names.zh-hans.html ├── qa-reference-links-data │ └── translations.js ├── qa-reference-links.en.html ├── qa-resizing-backgrounds-data │ ├── examples │ │ ├── qa-resizing-backgrounds-1.html │ │ ├── qa-resizing-backgrounds-2.html │ │ └── qa-resizing-backgrounds-3.html │ ├── h3-bg-malay-broken.png │ ├── h3-bg-malay.png │ ├── h3-bg-small.gif │ ├── h3-bg-spanish.png │ ├── h3-bg.gif │ ├── local.css │ ├── slidingdoors │ │ ├── bg.gif │ │ ├── left.gif │ │ ├── left_on.gif │ │ ├── right.gif │ │ ├── right_on.gif │ │ ├── rounded-left.gif │ │ └── rounded-right.gif │ ├── soft-hyphen.gif │ ├── tabs-broken.gif │ ├── tabs-chinese.gif │ └── translations.js ├── qa-resizing-backgrounds.de.html ├── qa-resizing-backgrounds.en.html ├── qa-ruby-data │ ├── bopomofo-vertical.gif │ ├── bopomofo.gif │ ├── double-sided.png │ ├── group.png │ ├── jukugo1.png │ ├── jukugo2.png │ ├── local.css │ ├── mixed-script1.gif │ ├── mixed-script2.gif │ ├── mixed-script3.gif │ ├── mono.png │ ├── pinyin.png │ ├── translations.js │ └── vertical.png ├── qa-ruby.en.html ├── qa-ruby.zh-hans.html ├── qa-scripts-data │ └── translations.js ├── qa-scripts.de.html ├── qa-scripts.en.html ├── qa-scripts.es.html ├── qa-scripts.fr.html ├── qa-scripts.ru.html ├── qa-scripts.uk.html ├── qa-select-sorting-data │ └── translations.js ├── qa-select-sorting.de.html ├── qa-select-sorting.en.html ├── qa-select-sorting.fr.html ├── qa-select-sorting.pl.html ├── qa-select-sorting.ru.html ├── qa-select-sorting.uk.html ├── qa-select-sorting.zh-hans.html ├── qa-setting-encoding-in-applications-data │ └── translations.js ├── qa-site-conneg-data │ └── translations.js ├── qa-site-conneg.en.html ├── qa-site-conneg.sv.html ├── qa-text-processing-vs-metadata-data │ ├── local.css │ └── translations.js ├── qa-text-processing-vs-metadata.en.html ├── qa-text-processing-vs-metadata.es.html ├── qa-text-processing-vs-metadata.fr.html ├── qa-text-processing-vs-metadata.it.html ├── qa-text-processing-vs-metadata.zh-hans.html ├── qa-the-q-element-data │ ├── css_quotes.png │ └── translations.js ├── qa-the-q-element.en.html ├── qa-translate-flag-data │ └── translations.js ├── qa-translate-flag.de.html ├── qa-translate-flag.en.html ├── qa-translate-flag.es.html ├── qa-translate-flag.fr.html ├── qa-translate-flag.it.html ├── qa-upright-counters-in-vertical-data │ ├── layout2.png │ ├── mongolian_list.jpg │ ├── translations.js │ ├── vertical_horizontal.png │ └── vertical_lists.png ├── qa-upright-counters-in-vertical.en.html ├── qa-utf8-bom-data │ └── translations.js ├── qa-utf8-bom.bg.html ├── qa-utf8-bom.de.html ├── qa-utf8-bom.en.html ├── qa-utf8-bom.es.html ├── qa-utf8-bom.hu.html ├── qa-utf8-bom.pl.html ├── qa-validator-charset-check-data │ └── translations.js ├── qa-validator-charset-check.de.html ├── qa-validator-charset-check.en.html ├── qa-validator-charset-check.es.html ├── qa-validator-charset-check.hu.html ├── qa-validator-charset-check.ro.html ├── qa-validator-charset-check.ru.html ├── qa-validator-charset-check.uk.html ├── qa-visual-vs-logical-data │ ├── directions.gif │ ├── translations.js │ └── visual-example.png ├── qa-visual-vs-logical.de.html ├── qa-visual-vs-logical.en.html ├── qa-visual-vs-logical.es.html ├── qa-visual-vs-logical.zh-hans.html ├── qa-what-is-encoding-data │ ├── 1097.png │ ├── 225.png │ ├── 2325.png │ ├── 233.png │ ├── 2361.png │ ├── 35531.png │ ├── mojibake1.gif │ ├── mojibake2.gif │ ├── mojibake3.gif │ └── translations.js ├── qa-what-is-encoding.de.html ├── qa-what-is-encoding.en.html ├── qa-what-is-encoding.fr.html ├── qa-what-is-encoding.sv.html ├── qa-when-lang-neg-data │ └── translations.js ├── qa-when-lang-neg.de.html ├── qa-when-lang-neg.en.html ├── qa-when-lang-neg.fr.html ├── qa-when-lang-neg.hu.html ├── qa-when-lang-neg.pl.html ├── qa-when-lang-neg.ro.html ├── qa-when-lang-neg.ru.html ├── qa-when-lang-neg.uk.html ├── qa-when-lang-neg.zh-hans.html ├── qa-when-xmllang-data │ └── translations.js ├── qa-when-xmllang.de.html ├── qa-when-xmllang.en.html ├── qa-when-xmllang.es.html ├── qa-when-xmllang.pl.html ├── qa-when-xmllang.ru.html ├── qa-when-xmllang.uk.html ├── qa-who-uses-unicode-data │ ├── google.gif │ ├── translations.js │ └── unicode.png ├── qa-who-uses-unicode.en.html ├── qa-who-uses-unicode.sv.html └── qa-who-uses-unicode.zh-hans.html ├── quicktips ├── index-data │ ├── local-bidi.css │ ├── local.css │ └── translations.js ├── index.ar.html ├── index.de.html ├── index.en.html ├── index.es.html ├── index.fr.html ├── index.gl.html ├── index.hu.html ├── index.pl.html ├── index.pt-br.html ├── index.pt.html ├── index.ro.html ├── index.ru.html ├── index.sv.html ├── index.uk.html ├── index.zh-hans.html └── quicktips.pdf ├── style ├── article-2016-bidi.css ├── article-2016.css ├── article-2016_new.css ├── article-2018.css ├── article-2022.css ├── fonts │ ├── notosans-bold-webfont.woff2 │ ├── notosans-bolditalic-webfont.woff2 │ ├── notosans-italic-webfont.woff2 │ ├── notosans-regular-webfont.woff2 │ ├── raleway-bold-webfont.woff2 │ ├── raleway-italic-webfont.woff2 │ ├── raleway-regular-webfont.woff2 │ ├── scheherazadenew-regular-webfont.woff2 │ └── vazirmatn │ │ ├── Vazirmatn-Black.woff2 │ │ ├── Vazirmatn-Bold.woff2 │ │ ├── Vazirmatn-ExtraBold.woff2 │ │ ├── Vazirmatn-ExtraLight.woff2 │ │ ├── Vazirmatn-Light.woff2 │ │ ├── Vazirmatn-Medium.woff2 │ │ ├── Vazirmatn-Regular.woff2 │ │ ├── Vazirmatn-SemiBold.woff2 │ │ ├── Vazirmatn-Thin.woff2 │ │ └── Vazirmatn[wght].woff2 ├── menu.css ├── prism.css ├── respec_2022.css ├── sitepage-2016.css ├── sitepage-2022.css ├── standards-corner-rtl.png └── standards-corner.png ├── techniques ├── authoring-html-data │ └── translations.js ├── authoring-html.en.html ├── common │ ├── expandcollapse.js │ ├── expandcollapsestyle.css │ ├── techniques-2022.css │ ├── techniques.css │ └── techniques2.css ├── developing-schemas-data │ └── translations.js ├── developing-schemas.en.html ├── developing-specs-data │ └── translations.js ├── developing-specs.en.html ├── expanding_toc_2021.js ├── menu.css ├── monetisation │ ├── index-data │ │ ├── local.css │ │ └── translations.js │ └── index.html ├── shortchecklist-data │ ├── local.css │ └── translations.js ├── shortchecklist.html └── sitepage_2021.js ├── temp └── fonts │ ├── notosans-bold-webfont.woff2 │ ├── notosans-bolditalic-webfont.woff2 │ ├── notosans-italic-webfont.woff2 │ └── notosans-regular-webfont.woff2 ├── tutorials ├── bidi-xhtml │ ├── index-data │ │ ├── local.css │ │ └── translations.js │ ├── index.de.html │ ├── index.en.html │ ├── index.es.html │ ├── index.fr.html │ └── index.zh-hans.html ├── language-decl │ ├── index.de.html │ ├── index.en.html │ ├── index.es.html │ ├── index.fr.html │ ├── index.ru.html │ ├── index.uk.html │ ├── index.zh-hans.html │ └── language-decl-data │ │ ├── local.css │ │ └── translations.js └── tutorial-char-enc │ ├── index.de.html │ ├── index.en.html │ ├── index.fr.html │ ├── index.ro.html │ ├── index.sv.html │ └── tutorial-char-enc-data │ └── translations.js └── w3c.json /.gitignore: -------------------------------------------------------------------------------- 1 | /articles/pagedmediatest/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/README.md -------------------------------------------------------------------------------- /articles/article-text-size.ar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/article-text-size.ar.html -------------------------------------------------------------------------------- /articles/article-text-size.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/article-text-size.de.html -------------------------------------------------------------------------------- /articles/article-text-size.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/article-text-size.en.html -------------------------------------------------------------------------------- /articles/article-text-size.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/article-text-size.es.html -------------------------------------------------------------------------------- /articles/article-text-size.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/article-text-size.fr.html -------------------------------------------------------------------------------- /articles/article-text-size.hu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/article-text-size.hu.html -------------------------------------------------------------------------------- /articles/article-text-size.it.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/article-text-size.it.html -------------------------------------------------------------------------------- /articles/article-text-size.ja.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/article-text-size.ja.html -------------------------------------------------------------------------------- /articles/article-text-size.ko.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/article-text-size.ko.html -------------------------------------------------------------------------------- /articles/article-text-size.pl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/article-text-size.pl.html -------------------------------------------------------------------------------- /articles/article-text-size.ro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/article-text-size.ro.html -------------------------------------------------------------------------------- /articles/article-text-size.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/article-text-size.ru.html -------------------------------------------------------------------------------- /articles/article-text-size.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/article-text-size.uk.html -------------------------------------------------------------------------------- /articles/article-text-size.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/article-text-size.zh-hans.html -------------------------------------------------------------------------------- /articles/composite-messages/index.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/composite-messages/index.en.html -------------------------------------------------------------------------------- /articles/composite-messages/index.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/composite-messages/index.es.html -------------------------------------------------------------------------------- /articles/composite-messages/index.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/composite-messages/index.uk.html -------------------------------------------------------------------------------- /articles/css3-text/index-data/Slide0050.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/css3-text/index-data/Slide0050.gif -------------------------------------------------------------------------------- /articles/css3-text/index-data/Slide0060.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/css3-text/index-data/Slide0060.gif -------------------------------------------------------------------------------- /articles/css3-text/index-data/Slide0080.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/css3-text/index-data/Slide0080.gif -------------------------------------------------------------------------------- /articles/css3-text/index-data/Slide0090.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/css3-text/index-data/Slide0090.gif -------------------------------------------------------------------------------- /articles/css3-text/index-data/Slide0100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/css3-text/index-data/Slide0100.gif -------------------------------------------------------------------------------- /articles/css3-text/index-data/Slide0110.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/css3-text/index-data/Slide0110.gif -------------------------------------------------------------------------------- /articles/css3-text/index-data/Slide0120.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/css3-text/index-data/Slide0120.gif -------------------------------------------------------------------------------- /articles/css3-text/index-data/Slide0130.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/css3-text/index-data/Slide0130.gif -------------------------------------------------------------------------------- /articles/css3-text/index-data/Slide0140.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/css3-text/index-data/Slide0140.gif -------------------------------------------------------------------------------- /articles/css3-text/index-data/Slide0150.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/css3-text/index-data/Slide0150.gif -------------------------------------------------------------------------------- /articles/css3-text/index-data/Slide0160.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/css3-text/index-data/Slide0160.gif -------------------------------------------------------------------------------- /articles/css3-text/index-data/Slide0170.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/css3-text/index-data/Slide0170.gif -------------------------------------------------------------------------------- /articles/css3-text/index-data/Slide0180.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/css3-text/index-data/Slide0180.gif -------------------------------------------------------------------------------- /articles/css3-text/index-data/Slide0190a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/css3-text/index-data/Slide0190a.gif -------------------------------------------------------------------------------- /articles/css3-text/index-data/Slide0190b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/css3-text/index-data/Slide0190b.gif -------------------------------------------------------------------------------- /articles/css3-text/index-data/Slide0210.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/css3-text/index-data/Slide0210.gif -------------------------------------------------------------------------------- /articles/css3-text/index-data/Slide0230.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/css3-text/index-data/Slide0230.gif -------------------------------------------------------------------------------- /articles/css3-text/index-data/Slide0240a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/css3-text/index-data/Slide0240a.gif -------------------------------------------------------------------------------- /articles/css3-text/index-data/Slide0240b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/css3-text/index-data/Slide0240b.gif -------------------------------------------------------------------------------- /articles/css3-text/index-data/Slide0240c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/css3-text/index-data/Slide0240c.gif -------------------------------------------------------------------------------- /articles/css3-text/index-data/Slide0250.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/css3-text/index-data/Slide0250.gif -------------------------------------------------------------------------------- /articles/css3-text/index-data/Slide0260.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/css3-text/index-data/Slide0260.gif -------------------------------------------------------------------------------- /articles/css3-text/index-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/css3-text/index-data/translations.js -------------------------------------------------------------------------------- /articles/css3-text/index.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/css3-text/index.en.html -------------------------------------------------------------------------------- /articles/definitions-characters/index.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/definitions-characters/index.de.html -------------------------------------------------------------------------------- /articles/definitions-characters/index.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/definitions-characters/index.en.html -------------------------------------------------------------------------------- /articles/definitions-characters/index.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/definitions-characters/index.es.html -------------------------------------------------------------------------------- /articles/definitions-characters/index.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/definitions-characters/index.fr.html -------------------------------------------------------------------------------- /articles/definitions-characters/index.ro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/definitions-characters/index.ro.html -------------------------------------------------------------------------------- /articles/definitions-characters/index.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/definitions-characters/index.uk.html -------------------------------------------------------------------------------- /articles/definitions-time/index.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/definitions-time/index.en.html -------------------------------------------------------------------------------- /articles/definitions-time/index.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/definitions-time/index.es.html -------------------------------------------------------------------------------- /articles/definitions-time/index.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/definitions-time/index.zh-hans.html -------------------------------------------------------------------------------- /articles/http-charset/index.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/http-charset/index.de.html -------------------------------------------------------------------------------- /articles/http-charset/index.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/http-charset/index.en.html -------------------------------------------------------------------------------- /articles/http-charset/index.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/http-charset/index.es.html -------------------------------------------------------------------------------- /articles/http-charset/index.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/http-charset/index.fr.html -------------------------------------------------------------------------------- /articles/http-charset/index.hu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/http-charset/index.hu.html -------------------------------------------------------------------------------- /articles/http-charset/index.pl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/http-charset/index.pl.html -------------------------------------------------------------------------------- /articles/http-charset/index.pt-br.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/http-charset/index.pt-br.html -------------------------------------------------------------------------------- /articles/http-charset/index.ro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/http-charset/index.ro.html -------------------------------------------------------------------------------- /articles/http-charset/index.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/http-charset/index.ru.html -------------------------------------------------------------------------------- /articles/http-charset/index.sv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/http-charset/index.sv.html -------------------------------------------------------------------------------- /articles/http-charset/index.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/http-charset/index.uk.html -------------------------------------------------------------------------------- /articles/idn-and-iri/JP納豆/hikiwari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/idn-and-iri/JP納豆/hikiwari.jpg -------------------------------------------------------------------------------- /articles/idn-and-iri/JP納豆/引き割り納豆.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/idn-and-iri/JP納豆/引き割り納豆.html -------------------------------------------------------------------------------- /articles/idn-and-iri/index.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/idn-and-iri/index.en.html -------------------------------------------------------------------------------- /articles/idn-and-iri/index.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/idn-and-iri/index.es.html -------------------------------------------------------------------------------- /articles/idn-and-iri/index.ro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/idn-and-iri/index.ro.html -------------------------------------------------------------------------------- /articles/idn-and-iri/parts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/idn-and-iri/parts.gif -------------------------------------------------------------------------------- /articles/inline-bidi-markup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/inline-bidi-markup/index.html -------------------------------------------------------------------------------- /articles/inline-bidi-markup/index.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/inline-bidi-markup/index.zh-hans.html -------------------------------------------------------------------------------- /articles/inline-bidi-markup/uba-basics.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/inline-bidi-markup/uba-basics.en.html -------------------------------------------------------------------------------- /articles/intl/index-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/intl/index-data/translations.js -------------------------------------------------------------------------------- /articles/intl/index.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/intl/index.en.html -------------------------------------------------------------------------------- /articles/lang-bidi-use-cases/index.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/lang-bidi-use-cases/index.en.html -------------------------------------------------------------------------------- /articles/language-tags/index.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/language-tags/index.en.html -------------------------------------------------------------------------------- /articles/language-tags/index.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/language-tags/index.fr.html -------------------------------------------------------------------------------- /articles/language-tags/index.ja.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/language-tags/index.ja.html -------------------------------------------------------------------------------- /articles/language-tags/index.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/language-tags/index.ru.html -------------------------------------------------------------------------------- /articles/missing-char-glyph/index.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/missing-char-glyph/index.en.html -------------------------------------------------------------------------------- /articles/missing-char-glyph/index.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/missing-char-glyph/index.es.html -------------------------------------------------------------------------------- /articles/missing-char-glyph/index.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/missing-char-glyph/index.ru.html -------------------------------------------------------------------------------- /articles/missing-char-glyph/index.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/missing-char-glyph/index.uk.html -------------------------------------------------------------------------------- /articles/ruby/index-data/Slide0050.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/index-data/Slide0050.gif -------------------------------------------------------------------------------- /articles/ruby/index-data/Slide0060.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/index-data/Slide0060.gif -------------------------------------------------------------------------------- /articles/ruby/index-data/Slide0070.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/index-data/Slide0070.gif -------------------------------------------------------------------------------- /articles/ruby/index-data/Slide0080.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/index-data/Slide0080.gif -------------------------------------------------------------------------------- /articles/ruby/index-data/Slide0100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/index-data/Slide0100.gif -------------------------------------------------------------------------------- /articles/ruby/index-data/Slide0110.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/index-data/Slide0110.gif -------------------------------------------------------------------------------- /articles/ruby/index-data/Slide0120.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/index-data/Slide0120.gif -------------------------------------------------------------------------------- /articles/ruby/index-data/Slide0130.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/index-data/Slide0130.gif -------------------------------------------------------------------------------- /articles/ruby/index-data/Slide0140.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/index-data/Slide0140.gif -------------------------------------------------------------------------------- /articles/ruby/index-data/Slide0150.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/index-data/Slide0150.gif -------------------------------------------------------------------------------- /articles/ruby/index-data/Slide0160.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/index-data/Slide0160.gif -------------------------------------------------------------------------------- /articles/ruby/index-data/Slide0180.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/index-data/Slide0180.gif -------------------------------------------------------------------------------- /articles/ruby/index-data/Slide0190.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/index-data/Slide0190.gif -------------------------------------------------------------------------------- /articles/ruby/index-data/Slide0200.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/index-data/Slide0200.gif -------------------------------------------------------------------------------- /articles/ruby/index-data/Slide0210.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/index-data/Slide0210.gif -------------------------------------------------------------------------------- /articles/ruby/index-data/Slide0220.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/index-data/Slide0220.gif -------------------------------------------------------------------------------- /articles/ruby/index-data/Slide0230.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/index-data/Slide0230.gif -------------------------------------------------------------------------------- /articles/ruby/index-data/Slide0240.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/index-data/Slide0240.gif -------------------------------------------------------------------------------- /articles/ruby/index-data/Slide0250.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/index-data/Slide0250.gif -------------------------------------------------------------------------------- /articles/ruby/index-data/Slide0260.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/index-data/Slide0260.gif -------------------------------------------------------------------------------- /articles/ruby/index-data/Slide0270.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/index-data/Slide0270.gif -------------------------------------------------------------------------------- /articles/ruby/index-data/Slide0280.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/index-data/Slide0280.gif -------------------------------------------------------------------------------- /articles/ruby/index-data/Slide0290.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/index-data/Slide0290.gif -------------------------------------------------------------------------------- /articles/ruby/index-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/index-data/translations.js -------------------------------------------------------------------------------- /articles/ruby/index.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/index.en.html -------------------------------------------------------------------------------- /articles/ruby/local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/local.css -------------------------------------------------------------------------------- /articles/ruby/markup-data/bopomofo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/markup-data/bopomofo.gif -------------------------------------------------------------------------------- /articles/ruby/markup-data/double-mixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/markup-data/double-mixed.png -------------------------------------------------------------------------------- /articles/ruby/markup-data/double-mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/markup-data/double-mono.png -------------------------------------------------------------------------------- /articles/ruby/markup-data/double-zhuyin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/markup-data/double-zhuyin.png -------------------------------------------------------------------------------- /articles/ruby/markup-data/eg_dbl_mismatch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/markup-data/eg_dbl_mismatch.html -------------------------------------------------------------------------------- /articles/ruby/markup-data/eg_dbl_mixed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/markup-data/eg_dbl_mixed.html -------------------------------------------------------------------------------- /articles/ruby/markup-data/eg_dbl_mono.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/markup-data/eg_dbl_mono.html -------------------------------------------------------------------------------- /articles/ruby/markup-data/eg_gaps1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/markup-data/eg_gaps1.html -------------------------------------------------------------------------------- /articles/ruby/markup-data/eg_gaps2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/markup-data/eg_gaps2.html -------------------------------------------------------------------------------- /articles/ruby/markup-data/eg_gaps3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/markup-data/eg_gaps3.html -------------------------------------------------------------------------------- /articles/ruby/markup-data/eg_gaps4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/markup-data/eg_gaps4.html -------------------------------------------------------------------------------- /articles/ruby/markup-data/eg_group_ruby.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/markup-data/eg_group_ruby.html -------------------------------------------------------------------------------- /articles/ruby/markup-data/eg_interleaved1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/markup-data/eg_interleaved1.html -------------------------------------------------------------------------------- /articles/ruby/markup-data/eg_interleaved2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/markup-data/eg_interleaved2.html -------------------------------------------------------------------------------- /articles/ruby/markup-data/eg_simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/markup-data/eg_simple.html -------------------------------------------------------------------------------- /articles/ruby/markup-data/eg_tabular.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/markup-data/eg_tabular.html -------------------------------------------------------------------------------- /articles/ruby/markup-data/eg_words_il.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/markup-data/eg_words_il.html -------------------------------------------------------------------------------- /articles/ruby/markup-data/eg_words_tab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/markup-data/eg_words_tab.html -------------------------------------------------------------------------------- /articles/ruby/markup-data/moedict-zi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/markup-data/moedict-zi.png -------------------------------------------------------------------------------- /articles/ruby/markup-data/nihongo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/markup-data/nihongo.png -------------------------------------------------------------------------------- /articles/ruby/markup-data/protego.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/markup-data/protego.png -------------------------------------------------------------------------------- /articles/ruby/markup-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/markup-data/translations.js -------------------------------------------------------------------------------- /articles/ruby/markup.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/markup.en.html -------------------------------------------------------------------------------- /articles/ruby/styling-data/autohide_hor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/styling-data/autohide_hor.png -------------------------------------------------------------------------------- /articles/ruby/styling-data/autohide_ver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/styling-data/autohide_ver.png -------------------------------------------------------------------------------- /articles/ruby/styling-data/bopomofo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/styling-data/bopomofo.png -------------------------------------------------------------------------------- /articles/ruby/styling-data/bopomofo_hor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/styling-data/bopomofo_hor.png -------------------------------------------------------------------------------- /articles/ruby/styling-data/bopomofo_ver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/styling-data/bopomofo_ver.png -------------------------------------------------------------------------------- /articles/ruby/styling-data/double_mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/styling-data/double_mono.png -------------------------------------------------------------------------------- /articles/ruby/styling-data/eg_autohide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/styling-data/eg_autohide.html -------------------------------------------------------------------------------- /articles/ruby/styling-data/eg_bopomofo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/styling-data/eg_bopomofo.html -------------------------------------------------------------------------------- /articles/ruby/styling-data/eg_dbl_mono.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/styling-data/eg_dbl_mono.html -------------------------------------------------------------------------------- /articles/ruby/styling-data/eg_inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/styling-data/eg_inline.html -------------------------------------------------------------------------------- /articles/ruby/styling-data/inline-tester.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/styling-data/inline-tester.html -------------------------------------------------------------------------------- /articles/ruby/styling-data/local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/styling-data/local.css -------------------------------------------------------------------------------- /articles/ruby/styling-data/pinyin-under.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/styling-data/pinyin-under.png -------------------------------------------------------------------------------- /articles/ruby/styling-data/simple_ja_mono.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/styling-data/simple_ja_mono.html -------------------------------------------------------------------------------- /articles/ruby/styling-data/simple_ja_mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/styling-data/simple_ja_mono.png -------------------------------------------------------------------------------- /articles/ruby/styling-data/simple_ja_vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/styling-data/simple_ja_vert.png -------------------------------------------------------------------------------- /articles/ruby/styling-data/simple_zh_mono.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/styling-data/simple_zh_mono.html -------------------------------------------------------------------------------- /articles/ruby/styling-data/simple_zh_mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/styling-data/simple_zh_mono.png -------------------------------------------------------------------------------- /articles/ruby/styling-data/simple_zh_word.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/styling-data/simple_zh_word.html -------------------------------------------------------------------------------- /articles/ruby/styling-data/simple_zh_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/styling-data/simple_zh_word.png -------------------------------------------------------------------------------- /articles/ruby/styling-data/summer-palace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/styling-data/summer-palace.png -------------------------------------------------------------------------------- /articles/ruby/styling-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/styling-data/translations.js -------------------------------------------------------------------------------- /articles/ruby/styling.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/ruby/styling.en.html -------------------------------------------------------------------------------- /articles/serving-xhtml/index-data/quirks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/serving-xhtml/index-data/quirks.html -------------------------------------------------------------------------------- /articles/serving-xhtml/index.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/serving-xhtml/index.de.html -------------------------------------------------------------------------------- /articles/serving-xhtml/index.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/serving-xhtml/index.en.html -------------------------------------------------------------------------------- /articles/serving-xhtml/index.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/serving-xhtml/index.es.html -------------------------------------------------------------------------------- /articles/serving-xhtml/index.it.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/serving-xhtml/index.it.html -------------------------------------------------------------------------------- /articles/serving-xhtml/index.pt-br.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/serving-xhtml/index.pt-br.html -------------------------------------------------------------------------------- /articles/serving-xhtml/index.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/serving-xhtml/index.ru.html -------------------------------------------------------------------------------- /articles/serving-xhtml/index.sv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/serving-xhtml/index.sv.html -------------------------------------------------------------------------------- /articles/serving-xhtml/index.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/serving-xhtml/index.uk.html -------------------------------------------------------------------------------- /articles/strings-and-bidi/index-data/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/strings-and-bidi/index-data/data.json -------------------------------------------------------------------------------- /articles/strings-and-bidi/index-data/local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/strings-and-bidi/index-data/local.css -------------------------------------------------------------------------------- /articles/strings-and-bidi/index.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/strings-and-bidi/index.en.html -------------------------------------------------------------------------------- /articles/strings-and-bidi/index.var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/strings-and-bidi/index.var -------------------------------------------------------------------------------- /articles/text-reuse/index-data/on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/text-reuse/index-data/on.gif -------------------------------------------------------------------------------- /articles/text-reuse/index-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/text-reuse/index-data/translations.js -------------------------------------------------------------------------------- /articles/text-reuse/index.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/text-reuse/index.en.html -------------------------------------------------------------------------------- /articles/text-reuse/index.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/text-reuse/index.es.html -------------------------------------------------------------------------------- /articles/text-reuse/index.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/text-reuse/index.uk.html -------------------------------------------------------------------------------- /articles/typography/fontstyles-data/ta_ra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/typography/fontstyles-data/ta_ra.png -------------------------------------------------------------------------------- /articles/typography/fontstyles-data/tham_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/typography/fontstyles-data/tham_a.png -------------------------------------------------------------------------------- /articles/typography/fontstyles-data/zh_hei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/typography/fontstyles-data/zh_hei.png -------------------------------------------------------------------------------- /articles/typography/fontstyles-data/zh_kai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/typography/fontstyles-data/zh_kai.png -------------------------------------------------------------------------------- /articles/typography/fontstyles.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/typography/fontstyles.en.html -------------------------------------------------------------------------------- /articles/typography/justification.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/typography/justification.en.html -------------------------------------------------------------------------------- /articles/typography/linebreak-data/arab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/typography/linebreak-data/arab.png -------------------------------------------------------------------------------- /articles/typography/linebreak-data/deva.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/typography/linebreak-data/deva.png -------------------------------------------------------------------------------- /articles/typography/linebreak-data/ethi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/typography/linebreak-data/ethi.png -------------------------------------------------------------------------------- /articles/typography/linebreak-data/hans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/typography/linebreak-data/hans.png -------------------------------------------------------------------------------- /articles/typography/linebreak-data/hant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/typography/linebreak-data/hant.png -------------------------------------------------------------------------------- /articles/typography/linebreak-data/japn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/typography/linebreak-data/japn.png -------------------------------------------------------------------------------- /articles/typography/linebreak-data/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/typography/linebreak-data/java.png -------------------------------------------------------------------------------- /articles/typography/linebreak-data/khmr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/typography/linebreak-data/khmr.png -------------------------------------------------------------------------------- /articles/typography/linebreak-data/leu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/typography/linebreak-data/leu.png -------------------------------------------------------------------------------- /articles/typography/linebreak-data/local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/typography/linebreak-data/local.css -------------------------------------------------------------------------------- /articles/typography/linebreak-data/shad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/typography/linebreak-data/shad.png -------------------------------------------------------------------------------- /articles/typography/linebreak-data/sund.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/typography/linebreak-data/sund.png -------------------------------------------------------------------------------- /articles/typography/linebreak-data/taling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/typography/linebreak-data/taling.png -------------------------------------------------------------------------------- /articles/typography/linebreak-data/thai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/typography/linebreak-data/thai.png -------------------------------------------------------------------------------- /articles/typography/linebreak-data/tibt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/typography/linebreak-data/tibt.png -------------------------------------------------------------------------------- /articles/typography/linebreak.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/typography/linebreak.en.html -------------------------------------------------------------------------------- /articles/typography/linebreak.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/typography/linebreak.zh-hans.html -------------------------------------------------------------------------------- /articles/unicode-migration/index.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/unicode-migration/index.en.html -------------------------------------------------------------------------------- /articles/unicode-migration/index.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/unicode-migration/index.es.html -------------------------------------------------------------------------------- /articles/unicode-migration/index.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/unicode-migration/index.ru.html -------------------------------------------------------------------------------- /articles/unicode-migration/index.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/unicode-migration/index.uk.html -------------------------------------------------------------------------------- /articles/vertical-text.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/vertical-text.en.html -------------------------------------------------------------------------------- /articles/vertical-text/index-data/basic-ja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/vertical-text/index-data/basic-ja.png -------------------------------------------------------------------------------- /articles/vertical-text/index-data/basic-mn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/vertical-text/index-data/basic-mn.png -------------------------------------------------------------------------------- /articles/vertical-text/index-data/digit2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/vertical-text/index-data/digit2.png -------------------------------------------------------------------------------- /articles/vertical-text/index-data/digit4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/vertical-text/index-data/digit4.png -------------------------------------------------------------------------------- /articles/vertical-text/index-data/digits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/vertical-text/index-data/digits.html -------------------------------------------------------------------------------- /articles/vertical-text/index-data/digits4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/vertical-text/index-data/digits4.html -------------------------------------------------------------------------------- /articles/vertical-text/index-data/local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/vertical-text/index-data/local.css -------------------------------------------------------------------------------- /articles/vertical-text/index-data/sideways.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/vertical-text/index-data/sideways.png -------------------------------------------------------------------------------- /articles/vertical-text/index-data/source.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/vertical-text/index-data/source.css -------------------------------------------------------------------------------- /articles/vertical-text/index-data/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/vertical-text/index-data/source.js -------------------------------------------------------------------------------- /articles/vertical-text/index-data/tcu-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/vertical-text/index-data/tcu-all.html -------------------------------------------------------------------------------- /articles/vertical-text/index-data/tcu-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/vertical-text/index-data/tcu-all.png -------------------------------------------------------------------------------- /articles/vertical-text/index-data/tcu-none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/vertical-text/index-data/tcu-none.png -------------------------------------------------------------------------------- /articles/vertical-text/index-data/watto_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/vertical-text/index-data/watto_h.png -------------------------------------------------------------------------------- /articles/vertical-text/index-data/watto_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/vertical-text/index-data/watto_v.png -------------------------------------------------------------------------------- /articles/vertical-text/index-data/world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/vertical-text/index-data/world.png -------------------------------------------------------------------------------- /articles/vertical-text/index.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/articles/vertical-text/index.en.html -------------------------------------------------------------------------------- /getting-started/characters-data/local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/characters-data/local.css -------------------------------------------------------------------------------- /getting-started/characters.ar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/characters.ar.html -------------------------------------------------------------------------------- /getting-started/characters.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/characters.de.html -------------------------------------------------------------------------------- /getting-started/characters.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/characters.en.html -------------------------------------------------------------------------------- /getting-started/characters.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/characters.es.html -------------------------------------------------------------------------------- /getting-started/characters.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/characters.fr.html -------------------------------------------------------------------------------- /getting-started/characters.gl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/characters.gl.html -------------------------------------------------------------------------------- /getting-started/characters.hi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/characters.hi.html -------------------------------------------------------------------------------- /getting-started/characters.hu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/characters.hu.html -------------------------------------------------------------------------------- /getting-started/characters.pt-br.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/characters.pt-br.html -------------------------------------------------------------------------------- /getting-started/characters.pt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/characters.pt.html -------------------------------------------------------------------------------- /getting-started/characters.ro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/characters.ro.html -------------------------------------------------------------------------------- /getting-started/characters.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/characters.ru.html -------------------------------------------------------------------------------- /getting-started/characters.sv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/characters.sv.html -------------------------------------------------------------------------------- /getting-started/characters.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/characters.uk.html -------------------------------------------------------------------------------- /getting-started/characters.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/characters.zh-hans.html -------------------------------------------------------------------------------- /getting-started/characters.zh-hant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/characters.zh-hant.html -------------------------------------------------------------------------------- /getting-started/contentdev-data/local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/contentdev-data/local.css -------------------------------------------------------------------------------- /getting-started/contentdev.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/contentdev.en.html -------------------------------------------------------------------------------- /getting-started/index-data/local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/index-data/local.css -------------------------------------------------------------------------------- /getting-started/index-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/index-data/translations.js -------------------------------------------------------------------------------- /getting-started/index.ar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/index.ar.html -------------------------------------------------------------------------------- /getting-started/index.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/index.de.html -------------------------------------------------------------------------------- /getting-started/index.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/index.en.html -------------------------------------------------------------------------------- /getting-started/index.enOLD copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/index.enOLD copy.html -------------------------------------------------------------------------------- /getting-started/index.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/index.es.html -------------------------------------------------------------------------------- /getting-started/index.fr copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/index.fr copy.html -------------------------------------------------------------------------------- /getting-started/index.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/index.fr.html -------------------------------------------------------------------------------- /getting-started/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/index.html -------------------------------------------------------------------------------- /getting-started/index.pt-br.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/index.pt-br.html -------------------------------------------------------------------------------- /getting-started/index.pt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/index.pt.html -------------------------------------------------------------------------------- /getting-started/index.ro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/index.ro.html -------------------------------------------------------------------------------- /getting-started/index.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/index.uk.html -------------------------------------------------------------------------------- /getting-started/index.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/index.zh-hans.html -------------------------------------------------------------------------------- /getting-started/language-data/local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/language-data/local.css -------------------------------------------------------------------------------- /getting-started/language-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/language-data/translations.js -------------------------------------------------------------------------------- /getting-started/language.ar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/language.ar.html -------------------------------------------------------------------------------- /getting-started/language.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/language.de.html -------------------------------------------------------------------------------- /getting-started/language.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/language.en.html -------------------------------------------------------------------------------- /getting-started/language.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/language.es.html -------------------------------------------------------------------------------- /getting-started/language.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/language.fr.html -------------------------------------------------------------------------------- /getting-started/language.gl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/language.gl.html -------------------------------------------------------------------------------- /getting-started/language.hi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/language.hi.html -------------------------------------------------------------------------------- /getting-started/language.hu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/language.hu.html -------------------------------------------------------------------------------- /getting-started/language.ja.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/language.ja.html -------------------------------------------------------------------------------- /getting-started/language.ko.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/language.ko.html -------------------------------------------------------------------------------- /getting-started/language.pl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/language.pl.html -------------------------------------------------------------------------------- /getting-started/language.pt-br.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/language.pt-br.html -------------------------------------------------------------------------------- /getting-started/language.ro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/language.ro.html -------------------------------------------------------------------------------- /getting-started/language.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/language.ru.html -------------------------------------------------------------------------------- /getting-started/language.sv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/language.sv.html -------------------------------------------------------------------------------- /getting-started/language.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/language.uk.html -------------------------------------------------------------------------------- /getting-started/language.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/language.zh-hans.html -------------------------------------------------------------------------------- /getting-started/languagedev-data/local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/languagedev-data/local.css -------------------------------------------------------------------------------- /getting-started/languagedev.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/languagedev.en.html -------------------------------------------------------------------------------- /getting-started/languagedev_participation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/languagedev_participation.html -------------------------------------------------------------------------------- /getting-started/specdev-data/local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/specdev-data/local.css -------------------------------------------------------------------------------- /getting-started/specdev-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/specdev-data/translations.js -------------------------------------------------------------------------------- /getting-started/specdev.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/specdev.en.html -------------------------------------------------------------------------------- /getting-started/temp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/temp.html -------------------------------------------------------------------------------- /getting-started/temple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/temple.html -------------------------------------------------------------------------------- /getting-started/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/test.html -------------------------------------------------------------------------------- /getting-started/wg-data/local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/wg-data/local.css -------------------------------------------------------------------------------- /getting-started/wg-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/wg-data/translations.js -------------------------------------------------------------------------------- /getting-started/wg.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/getting-started/wg.en.html -------------------------------------------------------------------------------- /icons/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/icons/checkbox.png -------------------------------------------------------------------------------- /icons/chrome_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/icons/chrome_16x16.png -------------------------------------------------------------------------------- /icons/codelink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/icons/codelink.gif -------------------------------------------------------------------------------- /icons/dontcopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/icons/dontcopy.png -------------------------------------------------------------------------------- /icons/edge_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/icons/edge_16x16.png -------------------------------------------------------------------------------- /icons/external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/icons/external.png -------------------------------------------------------------------------------- /icons/fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/icons/fail.png -------------------------------------------------------------------------------- /icons/firefox_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/icons/firefox_16x16.png -------------------------------------------------------------------------------- /icons/goto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/icons/goto.png -------------------------------------------------------------------------------- /icons/goto_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/icons/goto_rtl.png -------------------------------------------------------------------------------- /icons/implementation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/icons/implementation.png -------------------------------------------------------------------------------- /icons/internet-explorer_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/icons/internet-explorer_16x16.png -------------------------------------------------------------------------------- /icons/mastodon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/icons/mastodon.png -------------------------------------------------------------------------------- /icons/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/icons/ok.png -------------------------------------------------------------------------------- /icons/recommended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/icons/recommended.png -------------------------------------------------------------------------------- /icons/rssLink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/icons/rssLink.gif -------------------------------------------------------------------------------- /icons/rssLink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/icons/rssLink.png -------------------------------------------------------------------------------- /icons/safari_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/icons/safari_16x16.png -------------------------------------------------------------------------------- /icons/twitter-bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/icons/twitter-bird.png -------------------------------------------------------------------------------- /icons/w3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/icons/w3.png -------------------------------------------------------------------------------- /icons/w3c_home.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/icons/w3c_home.gif -------------------------------------------------------------------------------- /icons/workaround.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/icons/workaround.png -------------------------------------------------------------------------------- /icons/world.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/icons/world.gif -------------------------------------------------------------------------------- /javascript/articletoc-2022.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/articletoc-2022.js -------------------------------------------------------------------------------- /javascript/articletoc-html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/articletoc-html5.js -------------------------------------------------------------------------------- /javascript/boilerplate-text/boilerplate-ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/boilerplate-text/boilerplate-ar.js -------------------------------------------------------------------------------- /javascript/boilerplate-text/boilerplate-bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/boilerplate-text/boilerplate-bg.js -------------------------------------------------------------------------------- /javascript/boilerplate-text/boilerplate-de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/boilerplate-text/boilerplate-de.js -------------------------------------------------------------------------------- /javascript/boilerplate-text/boilerplate-el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/boilerplate-text/boilerplate-el.js -------------------------------------------------------------------------------- /javascript/boilerplate-text/boilerplate-en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/boilerplate-text/boilerplate-en.js -------------------------------------------------------------------------------- /javascript/boilerplate-text/boilerplate-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/boilerplate-text/boilerplate-es.js -------------------------------------------------------------------------------- /javascript/boilerplate-text/boilerplate-fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/boilerplate-text/boilerplate-fr.js -------------------------------------------------------------------------------- /javascript/boilerplate-text/boilerplate-gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/boilerplate-text/boilerplate-gl.js -------------------------------------------------------------------------------- /javascript/boilerplate-text/boilerplate-he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/boilerplate-text/boilerplate-he.js -------------------------------------------------------------------------------- /javascript/boilerplate-text/boilerplate-hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/boilerplate-text/boilerplate-hi.js -------------------------------------------------------------------------------- /javascript/boilerplate-text/boilerplate-hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/boilerplate-text/boilerplate-hu.js -------------------------------------------------------------------------------- /javascript/boilerplate-text/boilerplate-it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/boilerplate-text/boilerplate-it.js -------------------------------------------------------------------------------- /javascript/boilerplate-text/boilerplate-ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/boilerplate-text/boilerplate-ja.js -------------------------------------------------------------------------------- /javascript/boilerplate-text/boilerplate-ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/boilerplate-text/boilerplate-ko.js -------------------------------------------------------------------------------- /javascript/boilerplate-text/boilerplate-nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/boilerplate-text/boilerplate-nl.js -------------------------------------------------------------------------------- /javascript/boilerplate-text/boilerplate-pes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/boilerplate-text/boilerplate-pes.js -------------------------------------------------------------------------------- /javascript/boilerplate-text/boilerplate-pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/boilerplate-text/boilerplate-pl.js -------------------------------------------------------------------------------- /javascript/boilerplate-text/boilerplate-pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/boilerplate-text/boilerplate-pt.js -------------------------------------------------------------------------------- /javascript/boilerplate-text/boilerplate-ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/boilerplate-text/boilerplate-ro.js -------------------------------------------------------------------------------- /javascript/boilerplate-text/boilerplate-ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/boilerplate-text/boilerplate-ru.js -------------------------------------------------------------------------------- /javascript/boilerplate-text/boilerplate-sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/boilerplate-text/boilerplate-sv.js -------------------------------------------------------------------------------- /javascript/boilerplate-text/boilerplate-th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/boilerplate-text/boilerplate-th.js -------------------------------------------------------------------------------- /javascript/boilerplate-text/boilerplate-tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/boilerplate-text/boilerplate-tr.js -------------------------------------------------------------------------------- /javascript/boilerplate-text/boilerplate-uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/boilerplate-text/boilerplate-uk.js -------------------------------------------------------------------------------- /javascript/boilerplate-text/boilerplate-vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/boilerplate-text/boilerplate-vi.js -------------------------------------------------------------------------------- /javascript/demos/source.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/demos/source.css -------------------------------------------------------------------------------- /javascript/demos/source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/demos/source.js -------------------------------------------------------------------------------- /javascript/doc-structure/article-2022.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/doc-structure/article-2022.js -------------------------------------------------------------------------------- /javascript/doc-structure/article-dt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/doc-structure/article-dt.js -------------------------------------------------------------------------------- /javascript/doc-structure/article.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/doc-structure/article.js -------------------------------------------------------------------------------- /javascript/doc-structure/article_new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/doc-structure/article_new.js -------------------------------------------------------------------------------- /javascript/doc-structure/sitepage-2022.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/doc-structure/sitepage-2022.js -------------------------------------------------------------------------------- /javascript/doc-structure/sitepage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/doc-structure/sitepage.js -------------------------------------------------------------------------------- /javascript/doc-structure/sitepage_2021.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/doc-structure/sitepage_2021.js -------------------------------------------------------------------------------- /javascript/expanding_toc_2021.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/expanding_toc_2021.js -------------------------------------------------------------------------------- /javascript/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/javascript/prism.js -------------------------------------------------------------------------------- /nav/about-data/Internationalization1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/about-data/Internationalization1.png -------------------------------------------------------------------------------- /nav/about-data/Internationalization2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/about-data/Internationalization2.png -------------------------------------------------------------------------------- /nav/about-data/arabic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/about-data/arabic.png -------------------------------------------------------------------------------- /nav/about-data/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/about-data/style.css -------------------------------------------------------------------------------- /nav/about-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/about-data/translations.js -------------------------------------------------------------------------------- /nav/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/about.html -------------------------------------------------------------------------------- /nav/about.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/about.zh-hans.html -------------------------------------------------------------------------------- /nav/ask-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/ask-data/translations.js -------------------------------------------------------------------------------- /nav/ask.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/ask.html -------------------------------------------------------------------------------- /nav/contentdev-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/contentdev-data/translations.js -------------------------------------------------------------------------------- /nav/contentdev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/contentdev.html -------------------------------------------------------------------------------- /nav/description-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/description-data/translations.js -------------------------------------------------------------------------------- /nav/find.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/find.html -------------------------------------------------------------------------------- /nav/follow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/follow.html -------------------------------------------------------------------------------- /nav/languagedev-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/languagedev-data/translations.js -------------------------------------------------------------------------------- /nav/languagedev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/languagedev.html -------------------------------------------------------------------------------- /nav/languagedev.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/languagedev.zh-hans.html -------------------------------------------------------------------------------- /nav/learn-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/learn-data/translations.js -------------------------------------------------------------------------------- /nav/learn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/learn.html -------------------------------------------------------------------------------- /nav/learn.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/learn.zh-hans.html -------------------------------------------------------------------------------- /nav/participate-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/participate-data/translations.js -------------------------------------------------------------------------------- /nav/participate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/participate.html -------------------------------------------------------------------------------- /nav/participate.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/participate.zh-hans.html -------------------------------------------------------------------------------- /nav/resources-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/resources-data/translations.js -------------------------------------------------------------------------------- /nav/sitemap-data/local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/sitemap-data/local.css -------------------------------------------------------------------------------- /nav/sitemap-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/sitemap-data/translations.js -------------------------------------------------------------------------------- /nav/sitemap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/sitemap.html -------------------------------------------------------------------------------- /nav/specdev-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/specdev-data/translations.js -------------------------------------------------------------------------------- /nav/specdev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/nav/specdev.html -------------------------------------------------------------------------------- /pages/documenting_gaps-data/ga_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/pages/documenting_gaps-data/ga_pipeline.png -------------------------------------------------------------------------------- /pages/documenting_gaps-data/gh_issue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/pages/documenting_gaps-data/gh_issue.png -------------------------------------------------------------------------------- /pages/documenting_gaps-data/jlreq_gaps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/pages/documenting_gaps-data/jlreq_gaps.png -------------------------------------------------------------------------------- /pages/documenting_gaps-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/pages/documenting_gaps-data/translations.js -------------------------------------------------------------------------------- /pages/documenting_gaps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/pages/documenting_gaps.html -------------------------------------------------------------------------------- /pages/interactive_tests-data/repositories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/pages/interactive_tests-data/repositories.png -------------------------------------------------------------------------------- /pages/interactive_tests-data/results_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/pages/interactive_tests-data/results_page.png -------------------------------------------------------------------------------- /pages/interactive_tests-data/test_rigs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/pages/interactive_tests-data/test_rigs.png -------------------------------------------------------------------------------- /pages/interactive_tests-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/pages/interactive_tests-data/translations.js -------------------------------------------------------------------------------- /pages/interactive_tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/pages/interactive_tests.html -------------------------------------------------------------------------------- /pages/language_framework_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/pages/language_framework_overview.html -------------------------------------------------------------------------------- /pages/language_framework_overview.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/pages/language_framework_overview.zh-hans.html -------------------------------------------------------------------------------- /pages/languagedev_participation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/pages/languagedev_participation.html -------------------------------------------------------------------------------- /pages/languagedev_participation.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/pages/languagedev_participation.zh-hans.html -------------------------------------------------------------------------------- /pages/task_force_roles-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/pages/task_force_roles-data/translations.js -------------------------------------------------------------------------------- /pages/task_force_roles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/pages/task_force_roles.html -------------------------------------------------------------------------------- /pages/tools-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/pages/tools-data/translations.js -------------------------------------------------------------------------------- /pages/tools.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/pages/tools.en.html -------------------------------------------------------------------------------- /pages/translation-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/pages/translation-data/translations.js -------------------------------------------------------------------------------- /pages/translation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/pages/translation.html -------------------------------------------------------------------------------- /pages/translation.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/pages/translation.zh-hans.html -------------------------------------------------------------------------------- /questions/qa-accept-lang-locales.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-accept-lang-locales.de.html -------------------------------------------------------------------------------- /questions/qa-accept-lang-locales.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-accept-lang-locales.en.html -------------------------------------------------------------------------------- /questions/qa-accept-lang-locales.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-accept-lang-locales.es.html -------------------------------------------------------------------------------- /questions/qa-accept-lang-locales.hu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-accept-lang-locales.hu.html -------------------------------------------------------------------------------- /questions/qa-accept-lang-locales.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-accept-lang-locales.ru.html -------------------------------------------------------------------------------- /questions/qa-accept-lang-locales.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-accept-lang-locales.uk.html -------------------------------------------------------------------------------- /questions/qa-accept-lang-locales.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-accept-lang-locales.zh-hans.html -------------------------------------------------------------------------------- /questions/qa-address-formats-data/local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-address-formats-data/local.css -------------------------------------------------------------------------------- /questions/qa-address-formats.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-address-formats.en.html -------------------------------------------------------------------------------- /questions/qa-apache-lang-neg.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-apache-lang-neg.de.html -------------------------------------------------------------------------------- /questions/qa-apache-lang-neg.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-apache-lang-neg.en.html -------------------------------------------------------------------------------- /questions/qa-apache-lang-neg.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-apache-lang-neg.ru.html -------------------------------------------------------------------------------- /questions/qa-apache-lang-neg.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-apache-lang-neg.uk.html -------------------------------------------------------------------------------- /questions/qa-apache-lang-neg.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-apache-lang-neg.zh-hans.html -------------------------------------------------------------------------------- /questions/qa-b-and-i-tags-TEST.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-b-and-i-tags-TEST.en.html -------------------------------------------------------------------------------- /questions/qa-b-and-i-tags-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-b-and-i-tags-data/translations.js -------------------------------------------------------------------------------- /questions/qa-b-and-i-tags.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-b-and-i-tags.de.html -------------------------------------------------------------------------------- /questions/qa-b-and-i-tags.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-b-and-i-tags.en.html -------------------------------------------------------------------------------- /questions/qa-b-and-i-tags.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-b-and-i-tags.zh-hans.html -------------------------------------------------------------------------------- /questions/qa-backwards-deletion.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-backwards-deletion.en.html -------------------------------------------------------------------------------- /questions/qa-bidi-controls.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-bidi-controls.en.html -------------------------------------------------------------------------------- /questions/qa-bidi-controls.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-bidi-controls.zh-hans.html -------------------------------------------------------------------------------- /questions/qa-bidi-css-markup.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-bidi-css-markup.en.html -------------------------------------------------------------------------------- /questions/qa-bidi-css-markup.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-bidi-css-markup.zh-hans.html -------------------------------------------------------------------------------- /questions/qa-bidi-localization-data/arabic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-bidi-localization-data/arabic.png -------------------------------------------------------------------------------- /questions/qa-bidi-localization.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-bidi-localization.en.html -------------------------------------------------------------------------------- /questions/qa-bidi-source-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-bidi-source-data/translations.js -------------------------------------------------------------------------------- /questions/qa-bidi-source.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-bidi-source.en.html -------------------------------------------------------------------------------- /questions/qa-bidi-source.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-bidi-source.zh-hans.html -------------------------------------------------------------------------------- /questions/qa-bidi-space-data/eg-space-ok.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-bidi-space-data/eg-space-ok.html -------------------------------------------------------------------------------- /questions/qa-bidi-space-data/example-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-bidi-space-data/example-style.css -------------------------------------------------------------------------------- /questions/qa-bidi-space-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-bidi-space-data/translations.js -------------------------------------------------------------------------------- /questions/qa-bidi-space.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-bidi-space.en.html -------------------------------------------------------------------------------- /questions/qa-bidi-space.sv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-bidi-space.sv.html -------------------------------------------------------------------------------- /questions/qa-bidi-space.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-bidi-space.zh-hans.html -------------------------------------------------------------------------------- /questions/qa-bidi-unicode-controls.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-bidi-unicode-controls.en.html -------------------------------------------------------------------------------- /questions/qa-byte-order-mark-TEST.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-byte-order-mark-TEST.en.html -------------------------------------------------------------------------------- /questions/qa-byte-order-mark-data/bom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-byte-order-mark-data/bom.png -------------------------------------------------------------------------------- /questions/qa-byte-order-mark.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-byte-order-mark.de.html -------------------------------------------------------------------------------- /questions/qa-byte-order-mark.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-byte-order-mark.en.html -------------------------------------------------------------------------------- /questions/qa-byte-order-mark.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-byte-order-mark.fr.html -------------------------------------------------------------------------------- /questions/qa-byte-order-mark.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-byte-order-mark.zh-hans.html -------------------------------------------------------------------------------- /questions/qa-changing-encoding.bg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-changing-encoding.bg.html -------------------------------------------------------------------------------- /questions/qa-changing-encoding.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-changing-encoding.en.html -------------------------------------------------------------------------------- /questions/qa-changing-encoding.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-changing-encoding.fr.html -------------------------------------------------------------------------------- /questions/qa-changing-encoding.it.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-changing-encoding.it.html -------------------------------------------------------------------------------- /questions/qa-changing-encoding.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-changing-encoding.zh-hans.html -------------------------------------------------------------------------------- /questions/qa-chars-vs-markup.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-chars-vs-markup.de.html -------------------------------------------------------------------------------- /questions/qa-chars-vs-markup.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-chars-vs-markup.en.html -------------------------------------------------------------------------------- /questions/qa-chars-vs-markup.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-chars-vs-markup.es.html -------------------------------------------------------------------------------- /questions/qa-chars-vs-markup.pl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-chars-vs-markup.pl.html -------------------------------------------------------------------------------- /questions/qa-chars-vs-markup.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-chars-vs-markup.ru.html -------------------------------------------------------------------------------- /questions/qa-chars-vs-markup.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-chars-vs-markup.uk.html -------------------------------------------------------------------------------- /questions/qa-choosing-encodings.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-choosing-encodings.de.html -------------------------------------------------------------------------------- /questions/qa-choosing-encodings.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-choosing-encodings.en.html -------------------------------------------------------------------------------- /questions/qa-choosing-encodings.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-choosing-encodings.es.html -------------------------------------------------------------------------------- /questions/qa-choosing-encodings.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-choosing-encodings.fr.html -------------------------------------------------------------------------------- /questions/qa-choosing-encodings.pt-br.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-choosing-encodings.pt-br.html -------------------------------------------------------------------------------- /questions/qa-choosing-encodings.sv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-choosing-encodings.sv.html -------------------------------------------------------------------------------- /questions/qa-choosing-language-tags.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-choosing-language-tags.en.html -------------------------------------------------------------------------------- /questions/qa-choosing-language-tags.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-choosing-language-tags.es.html -------------------------------------------------------------------------------- /questions/qa-choosing-language-tags.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-choosing-language-tags.ru.html -------------------------------------------------------------------------------- /questions/qa-controls-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-controls-data/translations.js -------------------------------------------------------------------------------- /questions/qa-controls.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-controls.de.html -------------------------------------------------------------------------------- /questions/qa-controls.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-controls.en.html -------------------------------------------------------------------------------- /questions/qa-controls.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-controls.es.html -------------------------------------------------------------------------------- /questions/qa-controls.pl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-controls.pl.html -------------------------------------------------------------------------------- /questions/qa-controls.pt-br.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-controls.pt-br.html -------------------------------------------------------------------------------- /questions/qa-controls.ro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-controls.ro.html -------------------------------------------------------------------------------- /questions/qa-controls.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-controls.ru.html -------------------------------------------------------------------------------- /questions/qa-controls.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-controls.uk.html -------------------------------------------------------------------------------- /questions/qa-css-charset-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-css-charset-data/translations.js -------------------------------------------------------------------------------- /questions/qa-css-charset.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-css-charset.de.html -------------------------------------------------------------------------------- /questions/qa-css-charset.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-css-charset.en.html -------------------------------------------------------------------------------- /questions/qa-css-charset.sv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-css-charset.sv.html -------------------------------------------------------------------------------- /questions/qa-css-lang-data/css-lang-e1.de.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-css-lang-data/css-lang-e1.de.gif -------------------------------------------------------------------------------- /questions/qa-css-lang-data/css-lang-e1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-css-lang-data/css-lang-e1.gif -------------------------------------------------------------------------------- /questions/qa-css-lang-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-css-lang-data/translations.js -------------------------------------------------------------------------------- /questions/qa-css-lang.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-css-lang.de.html -------------------------------------------------------------------------------- /questions/qa-css-lang.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-css-lang.en.html -------------------------------------------------------------------------------- /questions/qa-css-lang.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-css-lang.zh-hans.html -------------------------------------------------------------------------------- /questions/qa-date-format-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-date-format-data/translations.js -------------------------------------------------------------------------------- /questions/qa-date-format.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-date-format.de.html -------------------------------------------------------------------------------- /questions/qa-date-format.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-date-format.en.html -------------------------------------------------------------------------------- /questions/qa-date-format.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-date-format.es.html -------------------------------------------------------------------------------- /questions/qa-date-format.hu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-date-format.hu.html -------------------------------------------------------------------------------- /questions/qa-date-format.ro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-date-format.ro.html -------------------------------------------------------------------------------- /questions/qa-date-format.sv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-date-format.sv.html -------------------------------------------------------------------------------- /questions/qa-date-format.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-date-format.uk.html -------------------------------------------------------------------------------- /questions/qa-direction-from-language.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-direction-from-language.html -------------------------------------------------------------------------------- /questions/qa-direction-native-data/local.css: -------------------------------------------------------------------------------- 1 | pre { 2 | margin-inline-start: 7.5% !important; 3 | } -------------------------------------------------------------------------------- /questions/qa-direction-native.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-direction-native.en.html -------------------------------------------------------------------------------- /questions/qa-display-capabilities.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-display-capabilities.de.html -------------------------------------------------------------------------------- /questions/qa-display-capabilities.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-display-capabilities.en.html -------------------------------------------------------------------------------- /questions/qa-display-capabilities.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-display-capabilities.es.html -------------------------------------------------------------------------------- /questions/qa-display-capabilities.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-display-capabilities.fr.html -------------------------------------------------------------------------------- /questions/qa-display-capabilities.hu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-display-capabilities.hu.html -------------------------------------------------------------------------------- /questions/qa-display-capabilities.ro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-display-capabilities.ro.html -------------------------------------------------------------------------------- /questions/qa-display-capabilities.sv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-display-capabilities.sv.html -------------------------------------------------------------------------------- /questions/qa-display-capabilities.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-display-capabilities.uk.html -------------------------------------------------------------------------------- /questions/qa-doc-charset-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-doc-charset-data/translations.js -------------------------------------------------------------------------------- /questions/qa-doc-charset.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-doc-charset.de.html -------------------------------------------------------------------------------- /questions/qa-doc-charset.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-doc-charset.en.html -------------------------------------------------------------------------------- /questions/qa-doc-charset.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-doc-charset.es.html -------------------------------------------------------------------------------- /questions/qa-doc-charset.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-doc-charset.fr.html -------------------------------------------------------------------------------- /questions/qa-doc-charset.hi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-doc-charset.hi.html -------------------------------------------------------------------------------- /questions/qa-doc-charset.hu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-doc-charset.hu.html -------------------------------------------------------------------------------- /questions/qa-doc-charset.it.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-doc-charset.it.html -------------------------------------------------------------------------------- /questions/qa-doc-charset.ja.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-doc-charset.ja.html -------------------------------------------------------------------------------- /questions/qa-doc-charset.pl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-doc-charset.pl.html -------------------------------------------------------------------------------- /questions/qa-doc-charset.pt-br.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-doc-charset.pt-br.html -------------------------------------------------------------------------------- /questions/qa-doc-charset.pt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-doc-charset.pt.html -------------------------------------------------------------------------------- /questions/qa-doc-charset.ro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-doc-charset.ro.html -------------------------------------------------------------------------------- /questions/qa-doc-charset.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-doc-charset.ru.html -------------------------------------------------------------------------------- /questions/qa-doc-charset.sv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-doc-charset.sv.html -------------------------------------------------------------------------------- /questions/qa-doc-charset.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-doc-charset.uk.html -------------------------------------------------------------------------------- /questions/qa-escapes-data/egyptian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-escapes-data/egyptian.png -------------------------------------------------------------------------------- /questions/qa-escapes-data/egyptian.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-escapes-data/egyptian.svg -------------------------------------------------------------------------------- /questions/qa-escapes-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-escapes-data/translations.js -------------------------------------------------------------------------------- /questions/qa-escapes.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-escapes.de.html -------------------------------------------------------------------------------- /questions/qa-escapes.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-escapes.en.html -------------------------------------------------------------------------------- /questions/qa-escapes.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-escapes.fr.html -------------------------------------------------------------------------------- /questions/qa-escapes.sv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-escapes.sv.html -------------------------------------------------------------------------------- /questions/qa-floating-times.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-floating-times.en.html -------------------------------------------------------------------------------- /questions/qa-forms-utf-8-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-forms-utf-8-data/translations.js -------------------------------------------------------------------------------- /questions/qa-forms-utf-8.ar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-forms-utf-8.ar.html -------------------------------------------------------------------------------- /questions/qa-forms-utf-8.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-forms-utf-8.de.html -------------------------------------------------------------------------------- /questions/qa-forms-utf-8.el.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-forms-utf-8.el.html -------------------------------------------------------------------------------- /questions/qa-forms-utf-8.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-forms-utf-8.en.html -------------------------------------------------------------------------------- /questions/qa-forms-utf-8.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-forms-utf-8.es.html -------------------------------------------------------------------------------- /questions/qa-forms-utf-8.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-forms-utf-8.fr.html -------------------------------------------------------------------------------- /questions/qa-forms-utf-8.hu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-forms-utf-8.hu.html -------------------------------------------------------------------------------- /questions/qa-forms-utf-8.it.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-forms-utf-8.it.html -------------------------------------------------------------------------------- /questions/qa-forms-utf-8.ja.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-forms-utf-8.ja.html -------------------------------------------------------------------------------- /questions/qa-forms-utf-8.ko.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-forms-utf-8.ko.html -------------------------------------------------------------------------------- /questions/qa-forms-utf-8.pl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-forms-utf-8.pl.html -------------------------------------------------------------------------------- /questions/qa-forms-utf-8.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-forms-utf-8.ru.html -------------------------------------------------------------------------------- /questions/qa-forms-utf-8.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-forms-utf-8.uk.html -------------------------------------------------------------------------------- /questions/qa-forms-utf-8.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-forms-utf-8.zh-hans.html -------------------------------------------------------------------------------- /questions/qa-headers-charset.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-headers-charset.de.html -------------------------------------------------------------------------------- /questions/qa-headers-charset.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-headers-charset.en.html -------------------------------------------------------------------------------- /questions/qa-headers-charset.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-headers-charset.es.html -------------------------------------------------------------------------------- /questions/qa-headers-charset.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-headers-charset.fr.html -------------------------------------------------------------------------------- /questions/qa-headers-charset.hu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-headers-charset.hu.html -------------------------------------------------------------------------------- /questions/qa-headers-charset.ko.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-headers-charset.ko.html -------------------------------------------------------------------------------- /questions/qa-headers-charset.pl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-headers-charset.pl.html -------------------------------------------------------------------------------- /questions/qa-headers-charset.pt-br.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-headers-charset.pt-br.html -------------------------------------------------------------------------------- /questions/qa-headers-charset.ro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-headers-charset.ro.html -------------------------------------------------------------------------------- /questions/qa-headers-charset.sv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-headers-charset.sv.html -------------------------------------------------------------------------------- /questions/qa-htaccess-charset.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-htaccess-charset.de.html -------------------------------------------------------------------------------- /questions/qa-htaccess-charset.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-htaccess-charset.en.html -------------------------------------------------------------------------------- /questions/qa-htaccess-charset.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-htaccess-charset.es.html -------------------------------------------------------------------------------- /questions/qa-htaccess-charset.hu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-htaccess-charset.hu.html -------------------------------------------------------------------------------- /questions/qa-htaccess-charset.pl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-htaccess-charset.pl.html -------------------------------------------------------------------------------- /questions/qa-htaccess-charset.pt-br.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-htaccess-charset.pt-br.html -------------------------------------------------------------------------------- /questions/qa-htaccess-charset.ro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-htaccess-charset.ro.html -------------------------------------------------------------------------------- /questions/qa-htaccess-charset.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-htaccess-charset.ru.html -------------------------------------------------------------------------------- /questions/qa-htaccess-charset.sv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-htaccess-charset.sv.html -------------------------------------------------------------------------------- /questions/qa-htaccess-charset.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-htaccess-charset.uk.html -------------------------------------------------------------------------------- /questions/qa-htaccess-charset.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-htaccess-charset.zh-hans.html -------------------------------------------------------------------------------- /questions/qa-html-css-normalization.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-html-css-normalization.de.html -------------------------------------------------------------------------------- /questions/qa-html-css-normalization.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-html-css-normalization.en.html -------------------------------------------------------------------------------- /questions/qa-html-css-normalization.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-html-css-normalization.es.html -------------------------------------------------------------------------------- /questions/qa-html-css-normalization.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-html-css-normalization.fr.html -------------------------------------------------------------------------------- /questions/qa-html-css-normalization.pl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-html-css-normalization.pl.html -------------------------------------------------------------------------------- /questions/qa-html-css-normalization.pt-br.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-html-css-normalization.pt-br.html -------------------------------------------------------------------------------- /questions/qa-html-css-normalization.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-html-css-normalization.ru.html -------------------------------------------------------------------------------- /questions/qa-html-css-normalization.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-html-css-normalization.uk.html -------------------------------------------------------------------------------- /questions/qa-html-dir-data/examples/auto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-html-dir-data/examples/auto.html -------------------------------------------------------------------------------- /questions/qa-html-dir-data/html-dir-in-ie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-html-dir-data/html-dir-in-ie.gif -------------------------------------------------------------------------------- /questions/qa-html-dir-data/im.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-html-dir-data/im.png -------------------------------------------------------------------------------- /questions/qa-html-dir-data/markupcrazy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-html-dir-data/markupcrazy.png -------------------------------------------------------------------------------- /questions/qa-html-dir-data/table-ltr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-html-dir-data/table-ltr.png -------------------------------------------------------------------------------- /questions/qa-html-dir-data/table-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-html-dir-data/table-rtl.png -------------------------------------------------------------------------------- /questions/qa-html-dir-data/textarea_auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-html-dir-data/textarea_auto.png -------------------------------------------------------------------------------- /questions/qa-html-dir-data/textarea_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-html-dir-data/textarea_rtl.png -------------------------------------------------------------------------------- /questions/qa-html-dir-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-html-dir-data/translations.js -------------------------------------------------------------------------------- /questions/qa-html-dir.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-html-dir.en.html -------------------------------------------------------------------------------- /questions/qa-html-dir.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-html-dir.zh-hans.html -------------------------------------------------------------------------------- /questions/qa-http-and-lang.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-http-and-lang.de.html -------------------------------------------------------------------------------- /questions/qa-http-and-lang.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-http-and-lang.en.html -------------------------------------------------------------------------------- /questions/qa-http-and-lang.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-http-and-lang.fr.html -------------------------------------------------------------------------------- /questions/qa-i18n-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-i18n-data/translations.js -------------------------------------------------------------------------------- /questions/qa-i18n.ar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-i18n.ar.html -------------------------------------------------------------------------------- /questions/qa-i18n.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-i18n.de.html -------------------------------------------------------------------------------- /questions/qa-i18n.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-i18n.en.html -------------------------------------------------------------------------------- /questions/qa-i18n.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-i18n.es.html -------------------------------------------------------------------------------- /questions/qa-i18n.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-i18n.fr.html -------------------------------------------------------------------------------- /questions/qa-i18n.hu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-i18n.hu.html -------------------------------------------------------------------------------- /questions/qa-i18n.it.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-i18n.it.html -------------------------------------------------------------------------------- /questions/qa-i18n.pl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-i18n.pl.html -------------------------------------------------------------------------------- /questions/qa-i18n.pt-br.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-i18n.pt-br.html -------------------------------------------------------------------------------- /questions/qa-i18n.pt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-i18n.pt.html -------------------------------------------------------------------------------- /questions/qa-i18n.ro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-i18n.ro.html -------------------------------------------------------------------------------- /questions/qa-i18n.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-i18n.ru.html -------------------------------------------------------------------------------- /questions/qa-i18n.sv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-i18n.sv.html -------------------------------------------------------------------------------- /questions/qa-i18n.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-i18n.uk.html -------------------------------------------------------------------------------- /questions/qa-i18n.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-i18n.zh-hans.html -------------------------------------------------------------------------------- /questions/qa-indic-graphemes-data/gujarati.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-indic-graphemes-data/gujarati.png -------------------------------------------------------------------------------- /questions/qa-indic-graphemes-data/hindi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-indic-graphemes-data/hindi.png -------------------------------------------------------------------------------- /questions/qa-indic-graphemes-data/jhilli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-indic-graphemes-data/jhilli.png -------------------------------------------------------------------------------- /questions/qa-indic-graphemes-data/local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-indic-graphemes-data/local.css -------------------------------------------------------------------------------- /questions/qa-indic-graphemes-data/pulli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-indic-graphemes-data/pulli.png -------------------------------------------------------------------------------- /questions/qa-indic-graphemes-data/ra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-indic-graphemes-data/ra.png -------------------------------------------------------------------------------- /questions/qa-indic-graphemes-data/shakti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-indic-graphemes-data/shakti.png -------------------------------------------------------------------------------- /questions/qa-indic-graphemes.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-indic-graphemes.en.html -------------------------------------------------------------------------------- /questions/qa-lang-2or3-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-lang-2or3-data/translations.js -------------------------------------------------------------------------------- /questions/qa-lang-2or3.bg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-lang-2or3.bg.html -------------------------------------------------------------------------------- /questions/qa-lang-2or3.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-lang-2or3.de.html -------------------------------------------------------------------------------- /questions/qa-lang-2or3.el.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-lang-2or3.el.html -------------------------------------------------------------------------------- /questions/qa-lang-2or3.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-lang-2or3.en.html -------------------------------------------------------------------------------- /questions/qa-lang-2or3.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-lang-2or3.es.html -------------------------------------------------------------------------------- /questions/qa-lang-2or3.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-lang-2or3.fr.html -------------------------------------------------------------------------------- /questions/qa-lang-2or3.it.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-lang-2or3.it.html -------------------------------------------------------------------------------- /questions/qa-lang-2or3.pl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-lang-2or3.pl.html -------------------------------------------------------------------------------- /questions/qa-lang-2or3.ro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-lang-2or3.ro.html -------------------------------------------------------------------------------- /questions/qa-lang-2or3.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-lang-2or3.ru.html -------------------------------------------------------------------------------- /questions/qa-lang-2or3.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-lang-2or3.uk.html -------------------------------------------------------------------------------- /questions/qa-lang-priorities.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-lang-priorities.en.html -------------------------------------------------------------------------------- /questions/qa-lang-priorities.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-lang-priorities.ru.html -------------------------------------------------------------------------------- /questions/qa-lang-why-data/hyphenation-de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-lang-why-data/hyphenation-de.png -------------------------------------------------------------------------------- /questions/qa-lang-why-data/ideographs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-lang-why-data/ideographs.png -------------------------------------------------------------------------------- /questions/qa-lang-why-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-lang-why-data/translations.js -------------------------------------------------------------------------------- /questions/qa-lang-why.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-lang-why.de.html -------------------------------------------------------------------------------- /questions/qa-lang-why.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-lang-why.en.html -------------------------------------------------------------------------------- /questions/qa-lang-why.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-lang-why.es.html -------------------------------------------------------------------------------- /questions/qa-lang-why.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-lang-why.fr.html -------------------------------------------------------------------------------- /questions/qa-lang-why.it.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-lang-why.it.html -------------------------------------------------------------------------------- /questions/qa-lang-why.pes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-lang-why.pes.html -------------------------------------------------------------------------------- /questions/qa-lang-why.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-lang-why.ru.html -------------------------------------------------------------------------------- /questions/qa-lang-why.sv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-lang-why.sv.html -------------------------------------------------------------------------------- /questions/qa-lang-why.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-lang-why.uk.html -------------------------------------------------------------------------------- /questions/qa-lang-why.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-lang-why.zh-hans.html -------------------------------------------------------------------------------- /questions/qa-link-lang-data/sv-de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-link-lang-data/sv-de.html -------------------------------------------------------------------------------- /questions/qa-link-lang-data/sv-pl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-link-lang-data/sv-pl.html -------------------------------------------------------------------------------- /questions/qa-link-lang-data/sv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-link-lang-data/sv.html -------------------------------------------------------------------------------- /questions/qa-link-lang-data/swedish-de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-link-lang-data/swedish-de.html -------------------------------------------------------------------------------- /questions/qa-link-lang-data/swedish-pl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-link-lang-data/swedish-pl.html -------------------------------------------------------------------------------- /questions/qa-link-lang-data/swedish.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-link-lang-data/swedish.html -------------------------------------------------------------------------------- /questions/qa-link-lang-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-link-lang-data/translations.js -------------------------------------------------------------------------------- /questions/qa-link-lang.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-link-lang.de.html -------------------------------------------------------------------------------- /questions/qa-link-lang.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-link-lang.en.html -------------------------------------------------------------------------------- /questions/qa-link-lang.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-link-lang.es.html -------------------------------------------------------------------------------- /questions/qa-link-lang.pl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-link-lang.pl.html -------------------------------------------------------------------------------- /questions/qa-ltr-scripts-in-rtl.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-ltr-scripts-in-rtl.en.html -------------------------------------------------------------------------------- /questions/qa-mono-multilingual.ar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-mono-multilingual.ar.html -------------------------------------------------------------------------------- /questions/qa-mono-multilingual.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-mono-multilingual.de.html -------------------------------------------------------------------------------- /questions/qa-mono-multilingual.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-mono-multilingual.en.html -------------------------------------------------------------------------------- /questions/qa-mono-multilingual.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-mono-multilingual.es.html -------------------------------------------------------------------------------- /questions/qa-mono-multilingual.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-mono-multilingual.fr.html -------------------------------------------------------------------------------- /questions/qa-mono-multilingual.hu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-mono-multilingual.hu.html -------------------------------------------------------------------------------- /questions/qa-mono-multilingual.it.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-mono-multilingual.it.html -------------------------------------------------------------------------------- /questions/qa-mono-multilingual.pl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-mono-multilingual.pl.html -------------------------------------------------------------------------------- /questions/qa-mono-multilingual.ro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-mono-multilingual.ro.html -------------------------------------------------------------------------------- /questions/qa-mono-multilingual.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-mono-multilingual.ru.html -------------------------------------------------------------------------------- /questions/qa-mono-multilingual.sv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-mono-multilingual.sv.html -------------------------------------------------------------------------------- /questions/qa-mono-multilingual.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-mono-multilingual.uk.html -------------------------------------------------------------------------------- /questions/qa-mono-multilingual.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-mono-multilingual.zh-hans.html -------------------------------------------------------------------------------- /questions/qa-navigation-select.ar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-navigation-select.ar.html -------------------------------------------------------------------------------- /questions/qa-navigation-select.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-navigation-select.de.html -------------------------------------------------------------------------------- /questions/qa-navigation-select.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-navigation-select.en.html -------------------------------------------------------------------------------- /questions/qa-navigation-select.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-navigation-select.es.html -------------------------------------------------------------------------------- /questions/qa-navigation-select.pl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-navigation-select.pl.html -------------------------------------------------------------------------------- /questions/qa-navigation-select.pt-br.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-navigation-select.pt-br.html -------------------------------------------------------------------------------- /questions/qa-navigation-select.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-navigation-select.ru.html -------------------------------------------------------------------------------- /questions/qa-navigation-select.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-navigation-select.uk.html -------------------------------------------------------------------------------- /questions/qa-navigation-select.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-navigation-select.zh-hans.html -------------------------------------------------------------------------------- /questions/qa-navigation-select.zh-hant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-navigation-select.zh-hant.html -------------------------------------------------------------------------------- /questions/qa-no-language.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-no-language.de.html -------------------------------------------------------------------------------- /questions/qa-no-language.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-no-language.en.html -------------------------------------------------------------------------------- /questions/qa-no-language.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-no-language.es.html -------------------------------------------------------------------------------- /questions/qa-no-language.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-no-language.fr.html -------------------------------------------------------------------------------- /questions/qa-no-language.it.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-no-language.it.html -------------------------------------------------------------------------------- /questions/qa-no-language.sv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-no-language.sv.html -------------------------------------------------------------------------------- /questions/qa-non-eng-tags.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-non-eng-tags.de.html -------------------------------------------------------------------------------- /questions/qa-non-eng-tags.el.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-non-eng-tags.el.html -------------------------------------------------------------------------------- /questions/qa-non-eng-tags.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-non-eng-tags.en.html -------------------------------------------------------------------------------- /questions/qa-non-eng-tags.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-non-eng-tags.es.html -------------------------------------------------------------------------------- /questions/qa-non-eng-tags.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-non-eng-tags.fr.html -------------------------------------------------------------------------------- /questions/qa-non-eng-tags.hu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-non-eng-tags.hu.html -------------------------------------------------------------------------------- /questions/qa-non-eng-tags.pl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-non-eng-tags.pl.html -------------------------------------------------------------------------------- /questions/qa-non-eng-tags.pt-br.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-non-eng-tags.pt-br.html -------------------------------------------------------------------------------- /questions/qa-non-eng-tags.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-non-eng-tags.ru.html -------------------------------------------------------------------------------- /questions/qa-non-eng-tags.tr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-non-eng-tags.tr.html -------------------------------------------------------------------------------- /questions/qa-non-eng-tags.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-non-eng-tags.uk.html -------------------------------------------------------------------------------- /questions/qa-number-format.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-number-format.en.html -------------------------------------------------------------------------------- /questions/qa-personal-names-data/local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-personal-names-data/local.css -------------------------------------------------------------------------------- /questions/qa-personal-names.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-personal-names.de.html -------------------------------------------------------------------------------- /questions/qa-personal-names.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-personal-names.en.html -------------------------------------------------------------------------------- /questions/qa-personal-names.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-personal-names.es.html -------------------------------------------------------------------------------- /questions/qa-personal-names.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-personal-names.fr.html -------------------------------------------------------------------------------- /questions/qa-personal-names.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-personal-names.uk.html -------------------------------------------------------------------------------- /questions/qa-personal-names.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-personal-names.zh-hans.html -------------------------------------------------------------------------------- /questions/qa-reference-links.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-reference-links.en.html -------------------------------------------------------------------------------- /questions/qa-resizing-backgrounds.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-resizing-backgrounds.de.html -------------------------------------------------------------------------------- /questions/qa-resizing-backgrounds.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-resizing-backgrounds.en.html -------------------------------------------------------------------------------- /questions/qa-ruby-data/bopomofo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-ruby-data/bopomofo.gif -------------------------------------------------------------------------------- /questions/qa-ruby-data/double-sided.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-ruby-data/double-sided.png -------------------------------------------------------------------------------- /questions/qa-ruby-data/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-ruby-data/group.png -------------------------------------------------------------------------------- /questions/qa-ruby-data/jukugo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-ruby-data/jukugo1.png -------------------------------------------------------------------------------- /questions/qa-ruby-data/jukugo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-ruby-data/jukugo2.png -------------------------------------------------------------------------------- /questions/qa-ruby-data/local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-ruby-data/local.css -------------------------------------------------------------------------------- /questions/qa-ruby-data/mixed-script1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-ruby-data/mixed-script1.gif -------------------------------------------------------------------------------- /questions/qa-ruby-data/mixed-script2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-ruby-data/mixed-script2.gif -------------------------------------------------------------------------------- /questions/qa-ruby-data/mixed-script3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-ruby-data/mixed-script3.gif -------------------------------------------------------------------------------- /questions/qa-ruby-data/mono.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-ruby-data/mono.png -------------------------------------------------------------------------------- /questions/qa-ruby-data/pinyin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-ruby-data/pinyin.png -------------------------------------------------------------------------------- /questions/qa-ruby-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-ruby-data/translations.js -------------------------------------------------------------------------------- /questions/qa-ruby-data/vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-ruby-data/vertical.png -------------------------------------------------------------------------------- /questions/qa-ruby.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-ruby.en.html -------------------------------------------------------------------------------- /questions/qa-ruby.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-ruby.zh-hans.html -------------------------------------------------------------------------------- /questions/qa-scripts-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-scripts-data/translations.js -------------------------------------------------------------------------------- /questions/qa-scripts.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-scripts.de.html -------------------------------------------------------------------------------- /questions/qa-scripts.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-scripts.en.html -------------------------------------------------------------------------------- /questions/qa-scripts.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-scripts.es.html -------------------------------------------------------------------------------- /questions/qa-scripts.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-scripts.fr.html -------------------------------------------------------------------------------- /questions/qa-scripts.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-scripts.ru.html -------------------------------------------------------------------------------- /questions/qa-scripts.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-scripts.uk.html -------------------------------------------------------------------------------- /questions/qa-select-sorting.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-select-sorting.de.html -------------------------------------------------------------------------------- /questions/qa-select-sorting.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-select-sorting.en.html -------------------------------------------------------------------------------- /questions/qa-select-sorting.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-select-sorting.fr.html -------------------------------------------------------------------------------- /questions/qa-select-sorting.pl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-select-sorting.pl.html -------------------------------------------------------------------------------- /questions/qa-select-sorting.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-select-sorting.ru.html -------------------------------------------------------------------------------- /questions/qa-select-sorting.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-select-sorting.uk.html -------------------------------------------------------------------------------- /questions/qa-select-sorting.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-select-sorting.zh-hans.html -------------------------------------------------------------------------------- /questions/qa-site-conneg.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-site-conneg.en.html -------------------------------------------------------------------------------- /questions/qa-site-conneg.sv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-site-conneg.sv.html -------------------------------------------------------------------------------- /questions/qa-the-q-element.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-the-q-element.en.html -------------------------------------------------------------------------------- /questions/qa-translate-flag.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-translate-flag.de.html -------------------------------------------------------------------------------- /questions/qa-translate-flag.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-translate-flag.en.html -------------------------------------------------------------------------------- /questions/qa-translate-flag.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-translate-flag.es.html -------------------------------------------------------------------------------- /questions/qa-translate-flag.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-translate-flag.fr.html -------------------------------------------------------------------------------- /questions/qa-translate-flag.it.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-translate-flag.it.html -------------------------------------------------------------------------------- /questions/qa-utf8-bom-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-utf8-bom-data/translations.js -------------------------------------------------------------------------------- /questions/qa-utf8-bom.bg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-utf8-bom.bg.html -------------------------------------------------------------------------------- /questions/qa-utf8-bom.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-utf8-bom.de.html -------------------------------------------------------------------------------- /questions/qa-utf8-bom.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-utf8-bom.en.html -------------------------------------------------------------------------------- /questions/qa-utf8-bom.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-utf8-bom.es.html -------------------------------------------------------------------------------- /questions/qa-utf8-bom.hu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-utf8-bom.hu.html -------------------------------------------------------------------------------- /questions/qa-utf8-bom.pl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-utf8-bom.pl.html -------------------------------------------------------------------------------- /questions/qa-visual-vs-logical.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-visual-vs-logical.de.html -------------------------------------------------------------------------------- /questions/qa-visual-vs-logical.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-visual-vs-logical.en.html -------------------------------------------------------------------------------- /questions/qa-visual-vs-logical.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-visual-vs-logical.es.html -------------------------------------------------------------------------------- /questions/qa-visual-vs-logical.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-visual-vs-logical.zh-hans.html -------------------------------------------------------------------------------- /questions/qa-what-is-encoding-data/1097.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-what-is-encoding-data/1097.png -------------------------------------------------------------------------------- /questions/qa-what-is-encoding-data/225.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-what-is-encoding-data/225.png -------------------------------------------------------------------------------- /questions/qa-what-is-encoding-data/2325.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-what-is-encoding-data/2325.png -------------------------------------------------------------------------------- /questions/qa-what-is-encoding-data/233.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-what-is-encoding-data/233.png -------------------------------------------------------------------------------- /questions/qa-what-is-encoding-data/2361.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-what-is-encoding-data/2361.png -------------------------------------------------------------------------------- /questions/qa-what-is-encoding.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-what-is-encoding.de.html -------------------------------------------------------------------------------- /questions/qa-what-is-encoding.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-what-is-encoding.en.html -------------------------------------------------------------------------------- /questions/qa-what-is-encoding.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-what-is-encoding.fr.html -------------------------------------------------------------------------------- /questions/qa-what-is-encoding.sv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-what-is-encoding.sv.html -------------------------------------------------------------------------------- /questions/qa-when-lang-neg.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-when-lang-neg.de.html -------------------------------------------------------------------------------- /questions/qa-when-lang-neg.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-when-lang-neg.en.html -------------------------------------------------------------------------------- /questions/qa-when-lang-neg.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-when-lang-neg.fr.html -------------------------------------------------------------------------------- /questions/qa-when-lang-neg.hu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-when-lang-neg.hu.html -------------------------------------------------------------------------------- /questions/qa-when-lang-neg.pl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-when-lang-neg.pl.html -------------------------------------------------------------------------------- /questions/qa-when-lang-neg.ro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-when-lang-neg.ro.html -------------------------------------------------------------------------------- /questions/qa-when-lang-neg.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-when-lang-neg.ru.html -------------------------------------------------------------------------------- /questions/qa-when-lang-neg.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-when-lang-neg.uk.html -------------------------------------------------------------------------------- /questions/qa-when-lang-neg.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-when-lang-neg.zh-hans.html -------------------------------------------------------------------------------- /questions/qa-when-xmllang.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-when-xmllang.de.html -------------------------------------------------------------------------------- /questions/qa-when-xmllang.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-when-xmllang.en.html -------------------------------------------------------------------------------- /questions/qa-when-xmllang.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-when-xmllang.es.html -------------------------------------------------------------------------------- /questions/qa-when-xmllang.pl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-when-xmllang.pl.html -------------------------------------------------------------------------------- /questions/qa-when-xmllang.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-when-xmllang.ru.html -------------------------------------------------------------------------------- /questions/qa-when-xmllang.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-when-xmllang.uk.html -------------------------------------------------------------------------------- /questions/qa-who-uses-unicode.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-who-uses-unicode.en.html -------------------------------------------------------------------------------- /questions/qa-who-uses-unicode.sv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-who-uses-unicode.sv.html -------------------------------------------------------------------------------- /questions/qa-who-uses-unicode.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/questions/qa-who-uses-unicode.zh-hans.html -------------------------------------------------------------------------------- /quicktips/index-data/local-bidi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/quicktips/index-data/local-bidi.css -------------------------------------------------------------------------------- /quicktips/index-data/local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/quicktips/index-data/local.css -------------------------------------------------------------------------------- /quicktips/index-data/translations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/quicktips/index-data/translations.js -------------------------------------------------------------------------------- /quicktips/index.ar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/quicktips/index.ar.html -------------------------------------------------------------------------------- /quicktips/index.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/quicktips/index.de.html -------------------------------------------------------------------------------- /quicktips/index.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/quicktips/index.en.html -------------------------------------------------------------------------------- /quicktips/index.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/quicktips/index.es.html -------------------------------------------------------------------------------- /quicktips/index.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/quicktips/index.fr.html -------------------------------------------------------------------------------- /quicktips/index.gl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/quicktips/index.gl.html -------------------------------------------------------------------------------- /quicktips/index.hu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/quicktips/index.hu.html -------------------------------------------------------------------------------- /quicktips/index.pl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/quicktips/index.pl.html -------------------------------------------------------------------------------- /quicktips/index.pt-br.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/quicktips/index.pt-br.html -------------------------------------------------------------------------------- /quicktips/index.pt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/quicktips/index.pt.html -------------------------------------------------------------------------------- /quicktips/index.ro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/quicktips/index.ro.html -------------------------------------------------------------------------------- /quicktips/index.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/quicktips/index.ru.html -------------------------------------------------------------------------------- /quicktips/index.sv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/quicktips/index.sv.html -------------------------------------------------------------------------------- /quicktips/index.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/quicktips/index.uk.html -------------------------------------------------------------------------------- /quicktips/index.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/quicktips/index.zh-hans.html -------------------------------------------------------------------------------- /quicktips/quicktips.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/quicktips/quicktips.pdf -------------------------------------------------------------------------------- /style/article-2016-bidi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/style/article-2016-bidi.css -------------------------------------------------------------------------------- /style/article-2016.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/style/article-2016.css -------------------------------------------------------------------------------- /style/article-2016_new.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/style/article-2016_new.css -------------------------------------------------------------------------------- /style/article-2018.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/style/article-2018.css -------------------------------------------------------------------------------- /style/article-2022.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/style/article-2022.css -------------------------------------------------------------------------------- /style/fonts/notosans-bold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/style/fonts/notosans-bold-webfont.woff2 -------------------------------------------------------------------------------- /style/fonts/notosans-italic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/style/fonts/notosans-italic-webfont.woff2 -------------------------------------------------------------------------------- /style/fonts/notosans-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/style/fonts/notosans-regular-webfont.woff2 -------------------------------------------------------------------------------- /style/fonts/raleway-bold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/style/fonts/raleway-bold-webfont.woff2 -------------------------------------------------------------------------------- /style/fonts/raleway-italic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/style/fonts/raleway-italic-webfont.woff2 -------------------------------------------------------------------------------- /style/fonts/raleway-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/style/fonts/raleway-regular-webfont.woff2 -------------------------------------------------------------------------------- /style/fonts/vazirmatn/Vazirmatn-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/style/fonts/vazirmatn/Vazirmatn-Black.woff2 -------------------------------------------------------------------------------- /style/fonts/vazirmatn/Vazirmatn-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/style/fonts/vazirmatn/Vazirmatn-Bold.woff2 -------------------------------------------------------------------------------- /style/fonts/vazirmatn/Vazirmatn-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/style/fonts/vazirmatn/Vazirmatn-Light.woff2 -------------------------------------------------------------------------------- /style/fonts/vazirmatn/Vazirmatn-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/style/fonts/vazirmatn/Vazirmatn-Thin.woff2 -------------------------------------------------------------------------------- /style/fonts/vazirmatn/Vazirmatn[wght].woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/style/fonts/vazirmatn/Vazirmatn[wght].woff2 -------------------------------------------------------------------------------- /style/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/style/menu.css -------------------------------------------------------------------------------- /style/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/style/prism.css -------------------------------------------------------------------------------- /style/respec_2022.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/style/respec_2022.css -------------------------------------------------------------------------------- /style/sitepage-2016.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/style/sitepage-2016.css -------------------------------------------------------------------------------- /style/sitepage-2022.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/style/sitepage-2022.css -------------------------------------------------------------------------------- /style/standards-corner-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/style/standards-corner-rtl.png -------------------------------------------------------------------------------- /style/standards-corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/style/standards-corner.png -------------------------------------------------------------------------------- /techniques/authoring-html.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/techniques/authoring-html.en.html -------------------------------------------------------------------------------- /techniques/common/expandcollapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/techniques/common/expandcollapse.js -------------------------------------------------------------------------------- /techniques/common/expandcollapsestyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/techniques/common/expandcollapsestyle.css -------------------------------------------------------------------------------- /techniques/common/techniques-2022.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/techniques/common/techniques-2022.css -------------------------------------------------------------------------------- /techniques/common/techniques.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/techniques/common/techniques.css -------------------------------------------------------------------------------- /techniques/common/techniques2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/techniques/common/techniques2.css -------------------------------------------------------------------------------- /techniques/developing-schemas.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/techniques/developing-schemas.en.html -------------------------------------------------------------------------------- /techniques/developing-specs.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/techniques/developing-specs.en.html -------------------------------------------------------------------------------- /techniques/expanding_toc_2021.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/techniques/expanding_toc_2021.js -------------------------------------------------------------------------------- /techniques/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/techniques/menu.css -------------------------------------------------------------------------------- /techniques/monetisation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/techniques/monetisation/index.html -------------------------------------------------------------------------------- /techniques/shortchecklist-data/local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/techniques/shortchecklist-data/local.css -------------------------------------------------------------------------------- /techniques/shortchecklist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/techniques/shortchecklist.html -------------------------------------------------------------------------------- /techniques/sitepage_2021.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/techniques/sitepage_2021.js -------------------------------------------------------------------------------- /temp/fonts/notosans-bold-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/temp/fonts/notosans-bold-webfont.woff2 -------------------------------------------------------------------------------- /temp/fonts/notosans-italic-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/temp/fonts/notosans-italic-webfont.woff2 -------------------------------------------------------------------------------- /temp/fonts/notosans-regular-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/temp/fonts/notosans-regular-webfont.woff2 -------------------------------------------------------------------------------- /tutorials/bidi-xhtml/index-data/local.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/tutorials/bidi-xhtml/index-data/local.css -------------------------------------------------------------------------------- /tutorials/bidi-xhtml/index.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/tutorials/bidi-xhtml/index.de.html -------------------------------------------------------------------------------- /tutorials/bidi-xhtml/index.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/tutorials/bidi-xhtml/index.en.html -------------------------------------------------------------------------------- /tutorials/bidi-xhtml/index.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/tutorials/bidi-xhtml/index.es.html -------------------------------------------------------------------------------- /tutorials/bidi-xhtml/index.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/tutorials/bidi-xhtml/index.fr.html -------------------------------------------------------------------------------- /tutorials/bidi-xhtml/index.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/tutorials/bidi-xhtml/index.zh-hans.html -------------------------------------------------------------------------------- /tutorials/language-decl/index.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/tutorials/language-decl/index.de.html -------------------------------------------------------------------------------- /tutorials/language-decl/index.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/tutorials/language-decl/index.en.html -------------------------------------------------------------------------------- /tutorials/language-decl/index.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/tutorials/language-decl/index.es.html -------------------------------------------------------------------------------- /tutorials/language-decl/index.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/tutorials/language-decl/index.fr.html -------------------------------------------------------------------------------- /tutorials/language-decl/index.ru.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/tutorials/language-decl/index.ru.html -------------------------------------------------------------------------------- /tutorials/language-decl/index.uk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/tutorials/language-decl/index.uk.html -------------------------------------------------------------------------------- /tutorials/language-decl/index.zh-hans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/tutorials/language-decl/index.zh-hans.html -------------------------------------------------------------------------------- /tutorials/tutorial-char-enc/index.de.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/tutorials/tutorial-char-enc/index.de.html -------------------------------------------------------------------------------- /tutorials/tutorial-char-enc/index.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/tutorials/tutorial-char-enc/index.en.html -------------------------------------------------------------------------------- /tutorials/tutorial-char-enc/index.fr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/tutorials/tutorial-char-enc/index.fr.html -------------------------------------------------------------------------------- /tutorials/tutorial-char-enc/index.ro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/tutorials/tutorial-char-enc/index.ro.html -------------------------------------------------------------------------------- /tutorials/tutorial-char-enc/index.sv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/tutorials/tutorial-char-enc/index.sv.html -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/i18n-drafts/HEAD/w3c.json --------------------------------------------------------------------------------