[Bf-docboard-svn] bf-manual-translations: [5474] trunk/blender_docs/locale/de/LC_MESSAGES/advanced/app_templates.po: Update r7323

Aaron Carlisle noreply at blender.org
Fri Oct 30 17:32:46 CET 2020


Revision: 5474
          https://developer.blender.org/rBMT5474
Author:   Blendify
Date:     2020-10-30 17:32:45 +0100 (Fri, 30 Oct 2020)
Log Message:
-----------
Update r7323

Revision Links:
--------------
    https://developer.blender.org/rBMT7323

Modified Paths:
--------------
    trunk/blender_docs/locale/de/LC_MESSAGES/advanced/app_templates.po

Modified: trunk/blender_docs/locale/de/LC_MESSAGES/advanced/app_templates.po
===================================================================
--- trunk/blender_docs/locale/de/LC_MESSAGES/advanced/app_templates.po	2020-10-30 16:28:23 UTC (rev 5473)
+++ trunk/blender_docs/locale/de/LC_MESSAGES/advanced/app_templates.po	2020-10-30 16:32:45 UTC (rev 5474)
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: Blender 2.78 Manual 2.78\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2020-10-30 00:00-0400\n"
+"POT-Creation-Date: 2020-10-30 12:31-0400\n"
 "PO-Revision-Date: 1971-01-02 00:00+0000\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -265,33 +265,33 @@
 msgid "*(As noted previously, this is only used for a subset of preferences).*"
 msgstr ""
 
-#: ../../manual/advanced/app_templates.rst:122
-msgid "``splash.png``, ``splash_2x.png``"
+#: ../../manual/advanced/app_templates.rst:123
+msgid "``splash.png``"
 msgstr ""
 
 #: ../../manual/advanced/app_templates.rst:122
 msgid ""
 "Splash screen to override Blender's default artwork (not including header"
-" text). Must be ``501x250`` and ``1002x500`` (used for HiDPI monitors)."
+" text). Note, this image must be a ``1000x500`` image."
 msgstr ""
 
-#: ../../manual/advanced/app_templates.rst:125
+#: ../../manual/advanced/app_templates.rst:126
 msgid "``__init__.py``"
 msgstr ""
 
-#: ../../manual/advanced/app_templates.rst:125
+#: ../../manual/advanced/app_templates.rst:126
 msgid ""
 "A Python script which must contain ``register`` and ``unregister`` "
 "functions."
 msgstr ""
 
-#: ../../manual/advanced/app_templates.rst:129
+#: ../../manual/advanced/app_templates.rst:130
 msgid ""
 "Bundled blend-files ``startup.blend`` and ``userpref.blend`` are "
 "considered *Factory Settings* and are never overwritten."
 msgstr ""
 
-#: ../../manual/advanced/app_templates.rst:132
+#: ../../manual/advanced/app_templates.rst:133
 msgid ""
 "The user may save their own startup/preferences while using this template"
 " which will be stored in their user configuration, but only when the "
@@ -298,7 +298,7 @@
 "template includes its own ``userpref.blend`` file."
 msgstr ""
 
-#: ../../manual/advanced/app_templates.rst:135
+#: ../../manual/advanced/app_templates.rst:136
 msgid ""
 "The original template settings can be loaded using: *Load Template "
 "Factory Settings* from the file menu in much the same way *Load Factory "
@@ -305,69 +305,69 @@
 "Settings* works."
 msgstr ""
 
-#: ../../manual/advanced/app_templates.rst:140
+#: ../../manual/advanced/app_templates.rst:141
 msgid "Template Scripts"
 msgstr ""
 
-#: ../../manual/advanced/app_templates.rst:142
+#: ../../manual/advanced/app_templates.rst:143
 msgid ""
 "While app templates can use Python scripts, they simply have access to "
 "the same API's available for add-ons and any other scripts."
 msgstr ""
 
-#: ../../manual/advanced/app_templates.rst:145
+#: ../../manual/advanced/app_templates.rst:146
 msgid ""
 "As noted above, you may optionally have an ``__init__.py`` in your app "
 "template. This has the following advantages:"
 msgstr ""
 
-#: ../../manual/advanced/app_templates.rst:148
+#: ../../manual/advanced/app_templates.rst:149
 msgid ""
 "Changes can be made to the startup or preferences, without having to "
 "distribute a blend-file."
 msgstr ""
 
-#: ../../manual/advanced/app_templates.rst:149
+#: ../../manual/advanced/app_templates.rst:150
 msgid "Changes can be made dynamically."
 msgstr ""
 
-#: ../../manual/advanced/app_templates.rst:151
+#: ../../manual/advanced/app_templates.rst:152
 msgid ""
 "You could for example -- configure the template to check the number of "
 "processors, operating system and memory, then set values based on this."
 msgstr ""
 
-#: ../../manual/advanced/app_templates.rst:154
+#: ../../manual/advanced/app_templates.rst:155
 msgid "You may enable add-ons associated with your template."
 msgstr ""
 
-#: ../../manual/advanced/app_templates.rst:156
+#: ../../manual/advanced/app_templates.rst:157
 msgid ""
 "On activation a ``register`` function is called, ``unregister`` is called"
 " when another template is selected."
 msgstr ""
 
-#: ../../manual/advanced/app_templates.rst:158
+#: ../../manual/advanced/app_templates.rst:159
 msgid ""
 "As these only run once, any changes to defaults must be made via handler."
 " Two handlers you're likely to use are:"
 msgstr ""
 
-#: ../../manual/advanced/app_templates.rst:161
+#: ../../manual/advanced/app_templates.rst:162
 msgid "``bpy.app.handlers.load_factory_preferences_post``"
 msgstr ""
 
-#: ../../manual/advanced/app_templates.rst:162
+#: ../../manual/advanced/app_templates.rst:163
 msgid "``bpy.app.handlers.load_factory_startup_post``"
 msgstr ""
 
-#: ../../manual/advanced/app_templates.rst:164
+#: ../../manual/advanced/app_templates.rst:165
 msgid ""
 "These allow you to define your own \"factory settings\", which the user "
 "may change, just as Blender has it's own defaults when first launched."
 msgstr ""
 
-#: ../../manual/advanced/app_templates.rst:167
+#: ../../manual/advanced/app_templates.rst:168
 msgid ""
 "This is an example ``__init__.py`` file which defines defaults for an app"
 " template to use."
@@ -670,3 +670,13 @@
 #~ " name of your own template):"
 #~ msgstr ""
 
+#~ msgid "``splash.png``, ``splash_2x.png``"
+#~ msgstr ""
+
+#~ msgid ""
+#~ "Splash screen to override Blender's "
+#~ "default artwork (not including header "
+#~ "text). Must be ``501x250`` and "
+#~ "``1002x500`` (used for HiDPI monitors)."
+#~ msgstr ""
+



More information about the Bf-docboard-svn mailing list