Strings Words Characters | |||
---|---|---|---|
36 513 3,804 |
|
All strings | Browse Translate Zen |
36 513 3,804 |
|
Read-only strings | Browse Translate Zen |
1 319 2,715 |
|
Strings with any failing checks | Browse Translate Zen |
1 319 2,715 |
|
Failing check: Ellipsis | 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 | Not available | |
Last change | Sept. 12, 2021, 9:39 p.m. | |
Last change made by | None | |
Language | English (United Kingdom) (en_gb) | |
Language code | en_gb | |
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 | |||
Translated | 100% | 36 | 100% | 513 | 100% | 3,804 |
Needs editing | 0% | 0 | 0% | 0 | 0% | 0 |
Read-only | 100% | 36 | 100% | 513 | 100% | 3,804 |
Failing checks | 2% | 1 | 62% | 319 | 71% | 2,715 |
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
—
None
Source string added |
|
None
Source string added |
|
None
Source string added |
|
None
Source string added |
|
None
Source string added |
|
None
Source string added |
|
None
Source string added |
|
None
Source string added |
|
None
Source string added |
|
None
Source string added |
|
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]