### Configure String and Caption Parameters Source: https://docs.digikam.org/en/_sources/post_processing/html_gallery.rst.txt Illustrates the setup for string parameters for single-line input and caption parameters for multi-line input with spell-checking. ```ini String parameter lets the user enter a single string to set configuration rules for example. A caption parameter lets the user enter a multi-string with spell-checking support to set a Description or a Title. ``` -------------------------------- ### Example Folder Structure Source: https://docs.digikam.org/en/_sources/asset_management/organize_find.rst.txt This text-based example illustrates a hierarchical folder structure for organizing photos by year, events, and locations. It's useful for managing a growing photo archive. ```text 2006 2007 2008 01 02 Paris photos 02 Marie's wedding Holidays Location A Location B Location C Export Fun stuff ``` -------------------------------- ### Internationalized Desktop File Example Source: https://docs.digikam.org/en/post_processing/html_gallery.html This INI file demonstrates internationalization for theme names in the HTML Gallery. It shows how to provide translations for different languages using language codes. ```ini [Desktop Entry] Name=Simple Name[br]=Eeun Name[cs]=JednoduchĂ˝ Name[cy]=Syml Name[da]=Simpel ... ``` -------------------------------- ### Configure Integer Parameter with Range Source: https://docs.digikam.org/en/_sources/post_processing/html_gallery.rst.txt Sets up an integer parameter for 'Size' with a default value, minimum, and maximum limits, controlled via a spin-box. ```ini [X-HTMLGallery Parameter size] Name=Size Type=int Default=12 Min=4 Max=28 ``` -------------------------------- ### Desktop File for Translations Source: https://docs.digikam.org/en/post_processing/print_creator.html A standard ini-style file used for providing translations for template names. This example shows translations for a 9x13cm photo template. ```ini [Desktop Entry] Type=Theme Name=9x13 cm (1 photo) Name[da]=9x13 cm (1 foto) Name[de]=9x13 cm (1 Foto) Name[en_GB]=9x13 cm (1 photo) Name[et]=9x13 cm (1 foto) Name[gl]=9x13 cm (1 foto) Name[it]=9Ă—13 cm (1 foto) Name[nb]=9x13 cm (1 bilde) Name[nl]=9x13 cm (1 foto) Name[pt]=9x13 cm (1 fotografia) Name[pt_BR]=9x13 cm (1 foto) Name[sv]=9 x 13 cm (1 foto) Name[x-test]=xx9x13 cm (1 photo)xx ```