Strings Words Characters | |||
---|---|---|---|
36 513 3,804 |
|
All strings | Browse Translate Zen |
36 513 3,804 |
|
Approved strings | Browse Translate Zen |
36 513 3,804 |
|
Translated strings | Browse Translate Zen |
Overview
Project website | kodi.tv/addons/omega/category/screensavers | |
---|---|---|
Instructions for translators | ||
Translation license | GNU General Public License v2.0 or later | |
Translation process |
|
|
Source code repository |
https://github.com/xbmc/visualization.shadertoy.git
|
|
Repository branch | Nexus | |
Last remote commit |
Merge pull request #117 from weblate/weblate-kodi-add-ons-look-and-feel-visualization-shadertoy
94e1ee2
gade authored 9 months ago |
|
Last commit in Weblate |
Translated using Weblate (Spanish (Spain) (es_es))
52c9bb4
Hosted Weblate authored 3 months ago |
|
Weblate repository |
https://kodi.weblate.cloud/git/kodi-add-ons-look-and-feel/visualization-shadertoy/
|
|
File mask | visualization.shadertoy/resources/language/resource.language.*/strings.po |
|
Translation file |
Download
visualization.shadertoy/resources/language/resource.language.da_dk/strings.po
|
|
Last change | Dec. 3, 2021, 11:21 a.m. | |
Last change made by | Christian Gade | |
Language | Danish (da_dk) | |
Language code | da_dk | |
Text direction | Left to right | |
Number of plurals | 2 | |
Plural type | One/other | |
Plurals | Singular | 1 | Plural | 0, 2, 3, 4, 5, 6, 7, 8, 9, 10, … |
Plural formula | n != 1 |
10 days ago
String statistics
Strings percent | Hosted strings | Words percent | Hosted words | Characters percent | Hosted characters | |
---|---|---|---|---|---|---|
Total | 36 | 513 | 3,804 | |||
Approved | 100% | 36 | 100% | 513 | 100% | 3,804 |
Waiting for review | 0% | 0 | 0% | 0 | 0% | 0 |
Translated | 100% | 36 | 100% | 513 | 100% | 3,804 |
Needs editing | 0% | 0 | 0% | 0 | 0% | 0 |
Read-only | 0% | 0 | 0% | 0 | 0% | 0 |
Failing checks | 0% | 0 | 0% | 0 | 0% | 0 |
Strings with suggestions | 0% | 0 | 0% | 0 | 0% | 0 |
Untranslated strings | 0% | 0 | 0% | 0 | 0% | 0 |
Quick numbers
and previous 30 days
Trends of last 30 days
—
Hosted words
+100%
—
Hosted strings
+100%
—
Translated
+100%
—
Contributors
—
gade
Translation approved |
|
gade
Translation approved |
|
gade
Translation approved |
|
gade
Translation approved |
|
gade
Translation approved |
|
gade
Translation approved |
|
gade
Translation approved |
|
gade
Translation approved |
|
gade
Translation approved |
|
gade
Translation approved |
|
36 | File in original format as translated in the repository | gettext PO file | |||||||
---|---|---|---|---|---|---|---|---|---|
36 | All strings, converted files enriched with comments; suitable for offline translation | CSV | gettext MO | gettext PO | TBX | TMX | XLIFF 1.1 with gettext extensions | XLIFF 1.1 | XLSX |
The file [B]presets.json[/B] is used to define custom shaders.
A custom path to the shader files (GLSL) can be declared in the add-on settings.
Contents of [B]presets.json[/B] should be:
[I] 1.[/I] Name of preset. Either hardcoded string or defined in [I]resources/language/.../strings.po[/I]
[I] 2.[/I] GLSL shader to use. If no custom path was declared, the default [B]resources/[/B] will be used. Set custom path to './' to use shaders from the same path as your [B]presets.json[/B] file.
[I] 3.[/I] Channel value 0. Defines the texture to use (e.g. PNG file). Can also be set to "audio" to pass related stream data within texture. The PNG and GLSL files should be located in the same directory.
[I] 4.[/I] Channel value 1 definition.
[I] 5.[/I] Channel value 2 definition.
[I] 6.[/I] Channel value 3 definition.
[I] 7.[/I] [I][Optional][/I] append string [B]"gl_only"[/B] to make this preset only available to OpenGL.
[B]Example:[/B]
[COLOR white][COLOR green]{[/COLOR] [COLOR blue]"presets"[/COLOR]:[
[COLOR gray]/* Default way used by the addon itself */[/COLOR]
[ [COLOR red]"The Disco Tunnel by poljere"[/COLOR], [COLOR red]"discotunnel.frag.glsl"[/COLOR], [COLOR red]"tex02.png"[/COLOR], [COLOR red]"tex15.png"[/COLOR], [COLOR red]"audio"[/COLOR], [COLOR red]""[/COLOR] ],
[COLOR gray]/* Description defined in strings.po */[/COLOR]
[ 30100, [COLOR red]"audioeclipse.frag.glsl"[/COLOR], [COLOR red]"audio"[/COLOR], [COLOR red]""[/COLOR], [COLOR red]""[/COLOR], [COLOR red]""[/COLOR] ],
[COLOR gray]/* Define custom file paths */[/COLOR]
[ [COLOR red]"My own one"[/COLOR], [COLOR red]"/path/to/glsl/my.frag.glsl"[/COLOR], [COLOR red]"audio"[/COLOR], [COLOR red]"/path/to/pngs/my_image.png"[/COLOR], [COLOR red]""[/COLOR], [COLOR red]""[/COLOR] ],
[COLOR gray]/* Preset only available to OpenGL (see 7) */[/COLOR]
[ [COLOR red]"Polar Beats by sauj123"[/COLOR], [COLOR red]"polarbeats.frag.glsl"[/COLOR], [COLOR red]"audio"[/COLOR], [COLOR red]""[/COLOR], [COLOR red]""[/COLOR], [COLOR red]""[/COLOR], [COLOR red]"gl_only"[/COLOR] ],
[COLOR gray]/* GLSL and PNG files are in the same folder as presets.json */[/COLOR]
[ [COLOR red]"Another one"[/COLOR], [COLOR red]"./another.frag.glsl"[/COLOR], [COLOR red]"./my_01.png"[/COLOR], [COLOR red]"./my_02.png"[/COLOR], [COLOR red]"audio"[/COLOR], [COLOR red]""[/COLOR] ],
[COLOR gray]/* Select texture image by file name, use default "resources/" dir */[/COLOR]
[ [COLOR red]"Fractal Land by Kali"[/COLOR], [COLOR red]"fractalland.frag.glsl"[/COLOR], [COLOR red]"tex02.png"[/COLOR], [COLOR red]"tex15.png"[/COLOR], [COLOR red]"audio"[/COLOR], [COLOR red]""[/COLOR] ]
][COLOR green]}[/COLOR][/COLOR]
Filen [B]presets.json[/B] bruges til at præcisere brugerdefinerede shadere.
En brugerdefineret sti til shaderfilerne (GLSL) kan indtastes i indstillinger for dette add-on.
Indholdet i [B]presets.json[/B] skal være:
[I] 1.[/I] Navn på forudindstilling. Enten direkte indtastet navn eller defineret i [I]resources/language/.../strings.po[/I]
[I] 2.[/I] GLSL shader der bruges. Hvis ingen brugerdefineret sti er indtastet, bruges standarden [B]resources/[/B]. Indstil brugerdefineret sti til './' for at bruge shaders fra samme stil som din [B]presets.json[/B]-fil.
[I] 3.[/I] Kanalværdi value 0. Definerer den brugte tekstur (f.eks.. PNG-fil). Det kan også indstilles til "audio" for at sende relateret streamdata til teksturen. PNG- og GLSL-filerne skal placeres i samme mappe.
[I] 4.[/I] Defin
eringation af kanalværdi 1.[I] 5.[/I] Defin
eringation af kanalværdi 2.[I] 6.[/I] Defin
eringation af kanalværdi 3.[I] 7.[/I] [I][Valgfri][/I] tilføj teksten [B]"gl_only"[/B] for kun at gøre denne forudindstilling tilgængelig for OpenGL.
[B]Eksempel:[/B]
[COLOR white][COLOR green]{[/COLOR] [COLOR blue]"forudindstillinger"[/COLOR]:[
[COLOR gray]/* Standard metode brugt af selve add-on'et */[/COLOR]
[ [COLOR red]"The Disco Tunnel af poljere"[/COLOR], [COLOR red]"discotunnel.frag.glsl"[/COLOR], [COLOR red]"tex02.png"[/COLOR], [COLOR red]"tex15.png"[/COLOR], [COLOR red]"audio"[/COLOR], [COLOR red]""[/COLOR] ],
[COLOR gray]/* Beskrivelse defineret i strings.po */[/COLOR]
[ 30100, [COLOR red]"audioeclipse.frag.glsl"[/COLOR], [COLOR red]"audio"[/COLOR], [COLOR red]""[/COLOR], [COLOR red]""[/COLOR], [COLOR red]""[/COLOR] ],
[COLOR gray]/* Præciser brugerdefinerede filstier */[/COLOR]
[ [COLOR red]"Min egen"[/COLOR], [COLOR red]"/sti/til/glsl/min.frag.glsl"[/COLOR], [COLOR red]"audio"[/COLOR], [COLOR red]"/sti/til/png-filer/mit_billede.png"[/COLOR], [COLOR red]""[/COLOR], [COLOR red]""[/COLOR] ],
[COLOR gray]/* >Forudindstilling kun tilgængelig for OpenGL (se 7) */[/COLOR]
[ [COLOR red]"Polar Beats af sauj123"[/COLOR], [COLOR red]"polarbeats.frag.glsl"[/COLOR], [COLOR red]"audio"[/COLOR], [COLOR red]""[/COLOR], [COLOR red]""[/COLOR], [COLOR red]""[/COLOR], [COLOR red]"gl_only"[/COLOR] ],
[COLOR gray]/* GLSL- og PNG-filer er i samme mappe som presets.json */[/COLOR]
[ [COLOR red]"En mere"[/COLOR], [COLOR red]"./another.frag.glsl"[/COLOR], [COLOR red]"./min_01.png"[/COLOR], [COLOR red]"./min_02.png"[/COLOR], [COLOR red]"audio"[/COLOR], [COLOR red]""[/COLOR] ],
[COLOR gray]/* Vælg teksturbillede efter filnavn, brug standard "resources/"-mappe */[/COLOR]
[ [COLOR red]"Fractal Land af Kali"[/COLOR], [COLOR red]"fractalland.frag.glsl"[/COLOR], [COLOR red]"tex02.png"[/COLOR], [COLOR red]"tex15.png"[/COLOR], [COLOR red]"audio"[/COLOR], [COLOR red]""[/COLOR] ]
][COLOR green]}[/COLOR][/COLOR]