Skip to content

Commit 9d0631e

Browse files
Languages add-onweblate
authored andcommitted
Added translation using Weblate (Lithuanian)
Added translation using Weblate (Lithuanian) Co-authored-by: Languages add-on <[email protected]>
1 parent beef557 commit 9d0631e

File tree

2 files changed

+172
-0
lines changed

2 files changed

+172
-0
lines changed
Lines changed: 128 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) This documentation is licensed under CC0 1.0.
3+
# This file is distributed under the same license as the MusicBrainz Picard package.
4+
# Languages add-on <[email protected]>, 2025.
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: MusicBrainz Picard v2.11.0rc1\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"POT-Creation-Date: 2024-01-11 23:26+0100\n"
10+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
11+
"Last-Translator: Automatically generated\n"
12+
"Language-Team: none\n"
13+
"Language: lt\n"
14+
"MIME-Version: 1.0\n"
15+
"Content-Type: text/plain; charset=UTF-8\n"
16+
"Content-Transfer-Encoding: 8bit\n"
17+
18+
#: ../../extending/processing.rst:4
19+
msgid ":index:`Processing Order <processing order>`"
20+
msgstr ""
21+
22+
#: ../../extending/processing.rst:6
23+
msgid "In order to make effective use of plugins and scripts, it is important to understand when each is processed in relation to the others. As a general statement, plugins are always processed before scripts. Plugins of the same type will be executed in order based upon the priority specified when the plugin was registered."
24+
msgstr ""
25+
26+
#: ../../extending/processing.rst:12
27+
msgid "Startup"
28+
msgstr ""
29+
30+
#: ../../extending/processing.rst:14
31+
msgid "During program startup, plugins with the following hooks are processed, and any additional functionality that they provide will be available immediately:"
32+
msgstr ""
33+
34+
#: ../../extending/processing.rst:17
35+
msgid "File Formats"
36+
msgstr ""
37+
38+
#: ../../extending/processing.rst:18
39+
msgid "Cover Art Providers"
40+
msgstr ""
41+
42+
#: ../../extending/processing.rst:19
43+
msgid "Tagger Script Functions"
44+
msgstr ""
45+
46+
#: ../../extending/processing.rst:20
47+
msgid "Context Menu Actions"
48+
msgstr ""
49+
50+
#: ../../extending/processing.rst:21
51+
msgid "Option Pages"
52+
msgstr ""
53+
54+
#: ../../extending/processing.rst:24
55+
msgid "Loading a Release"
56+
msgstr ""
57+
58+
#: ../../extending/processing.rst:26
59+
msgid "When data gets loaded from MusicBrainz (while the album shows the \"loading\" status in the right-hand pane), the following are processed:"
60+
msgstr ""
61+
62+
#: ../../extending/processing.rst:29
63+
msgid "Metadata Processor Plugins"
64+
msgstr ""
65+
66+
#: ../../extending/processing.rst:30
67+
msgid "Tagging Scripts"
68+
msgstr ""
69+
70+
#: ../../extending/processing.rst:32
71+
msgid "Plugins have access to the raw data loaded from MusicBrainz and are processed before scripts, in the order of priority set when the plugin was registered."
72+
msgstr ""
73+
74+
#: ../../extending/processing.rst:35
75+
msgid "Scripts are processed in the order set in the Options menu."
76+
msgstr ""
77+
78+
#: ../../extending/processing.rst:39
79+
msgid "Tagging scripts are always run against metadata loaded from MusicBrainz, and exactly after the data gets loaded and before files get matched. They are one of the last steps in the loading process. Tagging scripts do not have access to metadata stored in existing files."
80+
msgstr ""
81+
82+
#: ../../extending/processing.rst:44
83+
msgid "Loading Music Files"
84+
msgstr ""
85+
86+
#: ../../extending/processing.rst:46
87+
msgid "After a file has been loaded into Picard, plugins registered with ``file_post_load_processor()`` are executed. This could, for example, be used to load additional data for a file."
88+
msgstr ""
89+
90+
#: ../../extending/processing.rst:50
91+
msgid "Adding / Removing Files"
92+
msgstr ""
93+
94+
#: ../../extending/processing.rst:52
95+
msgid "After a file has been added to a track (on the right-hand pane of Picard), plugins registered with ``file_post_addition_to_track_processor()`` are executed."
96+
msgstr ""
97+
98+
#: ../../extending/processing.rst:55
99+
msgid "After a file has been removed from a track (on the right-hand pane of Picard), plugins registered with ``file_post_removal_from_track_processor()`` are executed."
100+
msgstr ""
101+
102+
#: ../../extending/processing.rst:59
103+
msgid "Saving Files"
104+
msgstr ""
105+
106+
#: ../../extending/processing.rst:61
107+
msgid "When files are saved, for each file the File Naming Script is first executed to determine the destination path and file name. Note that this script has no effect on the tag values written to the output file."
108+
msgstr ""
109+
110+
#: ../../extending/processing.rst:65
111+
msgid "After a file has been saved, plugins registered with ``file_post_save_processor()`` are executed. This can, for example, be used to run additional post-processing on the file or write extra data. Note that the file's metadata is already the newly saved metadata."
112+
msgstr ""
113+
114+
#: ../../extending/processing.rst:70
115+
msgid "Removing Albums"
116+
msgstr ""
117+
118+
#: ../../extending/processing.rst:72
119+
msgid "After an album has been removed from Picard, plugins registered with ``album_post_removal_processor()`` are executed."
120+
msgstr ""
121+
122+
#: ../../extending/processing.rst:76
123+
msgid "Context Menus"
124+
msgstr ""
125+
126+
#: ../../extending/processing.rst:78
127+
msgid "Individual tagging scripts can be executed on-demand from the context menu displayed when right-clicking on a file, album, track, cluster or cluster list."
128+
msgstr ""
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) This documentation is licensed under CC0 1.0.
3+
# This file is distributed under the same license as the MusicBrainz Picard package.
4+
# Languages add-on <[email protected]>, 2025.
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: MusicBrainz Picard v2.11.0rc1\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"POT-Creation-Date: 2024-01-11 23:26+0100\n"
10+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
11+
"Last-Translator: Automatically generated\n"
12+
"Language-Team: none\n"
13+
"Language: lt\n"
14+
"MIME-Version: 1.0\n"
15+
"Content-Type: text/plain; charset=UTF-8\n"
16+
"Content-Transfer-Encoding: 8bit\n"
17+
18+
#: ../../functions/func_reverse.rst:6
19+
msgid "$reverse"
20+
msgstr ""
21+
22+
#: ../../functions/func_reverse.rst:8
23+
msgid "Usage: **$reverse(text)**"
24+
msgstr ""
25+
26+
#: ../../functions/func_reverse.rst:9
27+
msgid "Category: text"
28+
msgstr ""
29+
30+
#: ../../functions/func_reverse.rst:11
31+
msgid "**Description:**"
32+
msgstr ""
33+
34+
#: ../../functions/func_reverse.rst:13
35+
msgid "Returns ``text`` in reverse order."
36+
msgstr ""
37+
38+
#: ../../functions/func_reverse.rst:16
39+
msgid "**Example:**"
40+
msgstr ""
41+
42+
#: ../../functions/func_reverse.rst:18
43+
msgid "The following statements will return the values indicated:"
44+
msgstr ""

0 commit comments

Comments
 (0)