PseudoLocalizer

PseudoLocalize an HTML web page.

Apa itu PseudoLocalizer?

PseudoLocalizer adalah ekstensi Chrome yang dikembangkan oleh Eirik Rude, dan fitur utamanya adalah "PseudoLocalize an HTML web page.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi PseudoLocalizer

Unduh file ekstensi PseudoLocalizer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        Update includes many bug fixes as well as improved padding now suing Japanese numerals.  

Source code now available in github (https://github.com/eirikRude/pseudolocalizer)

Pseudolocalization is an important tool for the localization and internationalization engineer.  The goal of pseudolocalization is to provide an interface that is still usable while highlighting some of the common issues that appear when an application is localized.

Some of the areas pseudolocalization attempts to test are:
●Text expansion
●●A common rule of thumb is that English text can be expected to grow around 30% when translated.  This is of course a general rule.  To test this a Pseudolocalization utility will pad text with expansion characters on each side.  For example: “test” -> “[1[Test]1]”

●High value characters
●●The first 256 characters are the same in both many ASCII and Unicode.  An incorrectly encoded page will not show an error when the text is only English, however after the content has been localized issues can show up.  A Pseudolocalization library will convert low value characters to high value accented characters that are still recognizable.  For example: “Z” -> “Ƶ” and “Pseudo Localization Rocks!” becomes “Ƥᶊëữďѻ Ĺѻčąľἳȥąțἳѻņ ȑѻčķᶊ!”

●Bi-Directional text
●●Some of the biggest challenges in right to left languages like Arabic or Hebrew arise because of the bi-directional nature of these scripts.  There are 3 types of Unicode characters, weak, strong, and neutral.  Strong characters have an inherent directionality.  An example of this is English “A” that contains a left-to-right directionality and Hebrew “א” contains a right-to-left directionality.  Neutral characters are direction neutral.  An example is “=” or “+.”  The third class are the most problematic.  Weak characters inherit their directionality from their neighbors.  Characters like “(“ or “)” are examples of this class.  When weak characters occur in the border between right-to-left and –left-to-right text they often display incorrectly.    Addressing this issue usually requires additional markup on the page to give these elements the correct directionality.

----
Limitations:
Pseudolocalization is usually performed as a part of the localization process on extracted resource files.  These are then incorporated into the application at build time or through a mechanism at run time.  The goal of this extension is to provide a quick and easy way to test basic pseudolocalization on a page earlier in the process with fewer requirements.  It is not designed to replace pseudolocalization of resource files.  It should be considered another tool to broaden coverage.

A common localizability bug uncovered by pseudolocalization of resource files is concatenation of text.  This extension will not assist in detect concatenation as the pseudolocalization occurs on the rendered text post concatenation.

The extension works on HTML pages only.  The directionality setting changes the body dir attribute only.  It will not modify directionality specified in CSS or on HTML tags besides .  This may be enhanced in a future version.                    

Informasi Dasar Ekstensi

Nama PseudoLocalizer PseudoLocalizer
ID cemecdhgfjmgndjdnlofnenhiekppnep
URL Resmi https://chromewebstore.google.com/detail/pseudolocalizer/cemecdhgfjmgndjdnlofnenhiekppnep
Deskripsi PseudoLocalize an HTML web page.
Ukuran File 12.02 KB
Jumlah Instalasi 188
Versi Saat Ini 2.0
Terakhir Diperbarui 2017-05-24
Tanggal Publikasi 2017-05-23
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Eirik Rude
Tipe Pembayaran free
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PseudoLocalizer",
    "description": "PseudoLocalize an HTML web page.",
    "version": "2.0",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "pseudo.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "pseudo.png",
        "default_title": "PseudoLocalize"
    },
    "manifest_version": 2
}