Skip to content

Commit 45e22e3

Browse files
authored
Initial commit
0 parents  commit 45e22e3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+983
-0
lines changed

.github/FUNDING.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
github: alxndr-w
2+
ko_fi: alxndr-w
3+
custom: ['https://www.alexplus.de']

.github/workflows/code-style.yml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: PHP-CS-Fixer
2+
3+
on:
4+
push:
5+
branches: [ master, main ]
6+
pull_request:
7+
branches: [ master, main ]
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
code-style:
14+
15+
runs-on: ubuntu-latest
16+
permissions:
17+
contents: write # for Git to git apply
18+
19+
steps:
20+
- uses: actions/checkout@v3
21+
22+
- name: Setup PHP
23+
uses: shivammathur/setup-php@v2
24+
with:
25+
php-version: '8.1'
26+
extensions: gd, intl, pdo_mysql
27+
coverage: none # disable xdebug, pcov
28+
29+
# install dependencies from composer.json
30+
- name: Install test dependencies
31+
env:
32+
COMPOSER: composer.json
33+
run: composer install --prefer-dist --no-progress
34+
35+
# run php-cs-fixer, fix code styles
36+
- name: Run PHP CS Fixer
37+
run: composer cs-fix
38+
39+
# commit and push fixed files
40+
- uses: stefanzweifel/git-auto-commit-action@v4
41+
with:
42+
commit_message: Apply php-cs-fixer changes
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Instructions: https://github.com/FriendsOfREDAXO/installer-action/
2+
3+
name: Publish to REDAXO.org
4+
on:
5+
release:
6+
types:
7+
- published
8+
9+
jobs:
10+
redaxo_publish:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
- if: hashFiles('composer.json') != ''
15+
uses: shivammathur/setup-php@v2
16+
with:
17+
php-version: "8.2"
18+
- if: hashFiles('composer.json') != ''
19+
20+
uses: ramsey/composer-install@v2
21+
with:
22+
composer-options: "--no-dev"
23+
- uses: FriendsOfREDAXO/installer-action@v1
24+
with:
25+
myredaxo-username: ${{ secrets.MYREDAXO_USERNAME }}
26+
myredaxo-api-key: ${{ secrets.MYREDAXO_API_KEY }}
27+
description: ${{ github.event.release.body }}
28+
version: ${{ github.event.release.tag_name }}

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/composer.lock
2+
/.php-cs-fixer.cache
3+
/vendor

.php-cs-fixer.dist.php

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
$finder = (new PhpCsFixer\Finder())
6+
->in(__DIR__)
7+
;
8+
9+
return (new Redaxo\PhpCsFixerConfig\Config())
10+
->setFinder($finder)
11+
;

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 alex+ Informationsdesign
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
# Blaupause - Dieses Repository kopieren, anpassen, AddOn-Entwicklung für REDAXO starten
2+
3+
Vorlage für REDAXO-Addons für einen schnelleren Start bei der Addon-Entwicklung.
4+
5+
1. <https://github.com/alexplusde/blaupause/archive/refs/heads/main.zip> ZIP der aktuellen Vorlage herunterladen oder direkt in GitHub ein Repo auf Basis von `alexplusde/blaupause` erstellen: <https://github.com/new/import> und dort `https://github.com/alexplusde/blaupause.git` angeben.
6+
2. Mit "Suchen und Ersetzen" alles, was `blaupause` heißt, durch den Namen deines Addons ersetzen, z.B. `supi-dupi-kalender`, und speichern. Sowohl Dateinamen, als auch Dateiinhalte.
7+
3. Alles löschen, was du aktuell nicht brauchst (oder für später auskommentiert lassen)
8+
9+
## Features
10+
11+
### `package.yml`
12+
13+
Bei Bedarf Abhängigkeiten von REDAXO-AddOns (sog. packages) eintragen, Backend-Seiten aus oder einblenden, vordefinierte Konfigurationswerte setzen.
14+
15+
### `boot.php`
16+
17+
Gängige Code-Beispiele wie der Syntax zum Überprüfen einer Addon-Installation, der Unterscheidung zwischen Front- und Backend, dem Registrieren eigener YForm-Dataset-Klasen.
18+
19+
### `install.php`
20+
21+
Gängige Code-Beispiele zum Installieren von YForm-Tablesets, Meta-Infofeldern und dem Verwenden von Extension Points, Cronjobs u.a.
22+
23+
### `rex_blaupause.tableset.json` und `pages/blaupause.table.php` für YForm im Addon
24+
25+
Dein Addon nutzt YForm als Ausgangsbasis? Importiere bei der Installation dein Tableset und nutze YForm-Tabellen innerhalb deiner Addon-Seiten.
26+
27+
### `update.php`
28+
29+
Gängige Code-Beispiele, die in Abhängigkeit der Vorgänger-Version deines Addons ausgeführt werden.
30+
31+
### `uninstall.php`
32+
33+
Alle Code-Beispiele, die du in der `install.php` nutzt, können hier wieder rückkgängig gemacht werden.
34+
35+
### `lib/blaupause.php`
36+
37+
Liefere passende YOrm Dataset-Methoden mit deinem Addon. Diese kannst du dir ganz einfach mithilfe von <https://github.com/alexplusde/ymca> erstellen lassen, wenn dein Tableset soweit fertig ist.
38+
39+
### `lang/`
40+
41+
Blaupause für deine eigenen Sprachdateien. Beginne die Addon-Entwicklung direkt so, dass weitere Sprachen ohne Anpassungen ergänzt werden können. Dazu kannst du in REDAXO an verschiedenen Stellen `rex_i18n::msg('blaupause_key')` nutzen oder `translate:blaupause_key` in YForm-Tabellen und Modulnamen.
42+
43+
### `pages/blaupause.settings.php`
44+
45+
Blaupause für die Einstellungsseite deines Addons. Passe die Einstellungsseite an deine Bedürfnisse an und nutze die REDAXO-Formularklassen `rex_config_form` und `rex_form`.
46+
47+
### `fragments/`
48+
49+
Blaupause für die Nutzung eigener Fragmente.
50+
51+
### `wildcard/`
52+
53+
In Arbeit: Definiere eigene Sprachkeys für das Addon [Wildcard](https://github.com/alexplusde/wildcard) oder Sprog und lasse diese automatisch installieren und updaten.
54+
55+
### Docs-Seite
56+
57+
Passe diese README.md-Datei an und spiele sie als Hilfe-Seite zu deinem Addon aus. Halte dich an die Struktur dieser README.md-Datei für deine eigenen Addons, indem du die wichtigsten Funktionen, Klassen und Methoden sowie den Installationsprozess und die Funktionsweise erklärst. Mit Verweis auf die Autoren, Projekt-Lead und Credits.
58+
59+
### Einstellungs-Seite
60+
61+
Beginne mit einem Konfigurations-Formular, das bereits best practice in REDAXO umsetzt - mit Links zu den wichtigsten API-Docs.
62+
63+
## Lizenz
64+
65+
MIT Lizenz, siehe [LICENSE.md](https://github.com/alexplusde/blaupause/blob/master/LICENSE.md)
66+
67+
## Autoren
68+
69+
**Alexander Walther**
70+
<http://www.alexplus.de>
71+
<https://github.com/alexplusde>
72+
73+
**Projekt-Lead**
74+
[Alexander Walther](https://github.com/alexplusde)
75+
76+
## Credits

boot.php

+93
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
<?php
2+
3+
namespace Bauthor\Blaupause;
4+
5+
use rex;
6+
use rex_addon;
7+
use rex_config;
8+
use rex_cronjob_manager;
9+
use rex_csrf_token;
10+
use rex_extension;
11+
use rex_extension_point;
12+
use rex_url;
13+
use rex_view;
14+
use rex_yform_manager_dataset;
15+
use rex_yform_manager_table;
16+
17+
// Die boot.php wird bei jedem Seitenaufruf im Frontend und Backend aufgeführt, je nach Reihenfolge von Abhängigkeiten in der package.yml vor oder nach anderen Addons.
18+
19+
// Beispiel YOrm Model-Klasse registrieren, wenn das Addon mit einer eigenen YForm Tabelle kommt.
20+
/*
21+
if (rex_addon::get('yform')->isAvailable() && !rex::isSafeMode()) {
22+
rex_yform_manager_dataset::setModelClass(
23+
'rex_blaupause',
24+
Blaupause::class
25+
);
26+
}
27+
*/
28+
29+
/* Nutzt du T-Racks? <https://github.com/alexplusde/tracks> Module und Addons bei der Entwicklung synchroinsieren */
30+
/*
31+
if (rex::isBackend() && rex::isDebugMode() && rex_config::get('blaupause', 'dev')) {
32+
\Tracks\🦖::writeModule('blaupause', 'blaupause.%');
33+
\Tracks\🦖::writeTemplate('blaupause', 'blaupause.%');
34+
}
35+
*/
36+
37+
// Prüfen, ob ein anderes Addon installiert ist, bspw. Cronjob-Addon
38+
/*
39+
if (rex_addon::get('cronjob')->isAvailable() && !rex::isSafeMode()) {
40+
rex_cronjob_manager::registerType(Cronjob\Blaupause::class);
41+
}
42+
*/
43+
44+
// API-Route registrieren, wenn das Addon mit einer eigenen API kommt.
45+
/*
46+
if (rex_plugin::get('yform', 'rest')->isAvailable() && !rex::isSafeMode()) {
47+
Api\Restful::init();
48+
}
49+
*/
50+
51+
// Beim Extension Point REX_YFORM_SAVED etwas ausführen
52+
/*
53+
rex_extension::register('REX_YFORM_SAVED', function (rex_extension_point $ep) {
54+
// Mein Code, oder meine Funktion / statische Methode aufrufen
55+
});
56+
*/
57+
58+
// CSS und JS im Backend laden, wenn eingeloggt.
59+
/*
60+
if (rex::isBackend() && rex::getUser()) {
61+
rex_view::addCssFile($this->getAssetsUrl('backend.css'));
62+
rex_view::addJsFile($this->getAssetsUrl('backend.js'));
63+
}
64+
*/
65+
66+
// YForm-Tabelle? `+`-Button im Hauptmenü hinzufügen
67+
/*
68+
69+
if (rex::isBackend() && \rex_addon::get('blaupause') && \rex_addon::get('blaupause')->isAvailable() && !rex::isSafeMode()) {
70+
$addon = rex_addon::get('blaupause');
71+
$pages = $addon->getProperty('pages');
72+
// oder $page = $addon->getProperty('page');
73+
74+
if (rex::isBackend() && !empty($_REQUEST)) {
75+
$_csrf_key = rex_yform_manager_table::get('rex_blaupause')->getCSRFKey();
76+
77+
$token = rex_csrf_token::factory($_csrf_key)->getUrlParams();
78+
79+
$params = [];
80+
$params['table_name'] = 'rex_blaupause'; // Tabellenname anpassen
81+
$params['rex_yform_manager_popup'] = '0';
82+
$params['_csrf_token'] = $token['_csrf_token'];
83+
$params['func'] = 'add';
84+
85+
$href = rex_url::backendPage('blaupause/entry', $params);
86+
87+
$pages['blaupause']['title'] .= ' <a class="label label-primary tex-primary" style="position: absolute; right: 18px; top: 10px; padding: 0.2em 0.6em 0.3em; border-radius: 3px; color: white; display: inline; width: auto;" href="' . $href . '">+</a>';
88+
$addon->setProperty('pages', $pages);
89+
// oder $page['title'] .= ' <a class="label label-primary tex-primary" style="position: absolute; right: 18px; top: 10px; padding: 0.2em 0.6em 0.3em; border-radius: 3px; color: white; display: inline; width: auto;" href="' . $href . '">+</a>';
90+
// oder $addon->setProperty('page', $page);
91+
}
92+
}
93+
*/

composer.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"require-dev": {
3+
"redaxo/php-cs-fixer-config": "^2.0",
4+
"friendsofphp/php-cs-fixer": "^3.14"
5+
},
6+
"scripts": {
7+
"cs-dry": "php-cs-fixer fix -v --ansi --dry-run --config=.php-cs-fixer.dist.php",
8+
"cs-fix": "php-cs-fixer fix -v --ansi --config=.php-cs-fixer.dist.php"
9+
}
10+
}

docs/01_intro.md

Whitespace-only changes.

fragments/blaupause.php

Whitespace-only changes.

install.php

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<?php
2+
3+
use rex_addon;
4+
use rex_article;
5+
use rex_config;
6+
use rex_file;
7+
use rex_sql;
8+
use rex_yform_manager_table;
9+
use rex_yform_manager_table_api;
10+
use Tracks\🦖;
11+
12+
/* Tablesets aktualisieren */
13+
$addon = rex_addon::get('blaupause');
14+
15+
if (rex_addon::get('yform')->isAvailable() && !rex::isSafeMode()) {
16+
rex_yform_manager_table_api::importTablesets(rex_file::get(__DIR__ . '/install/rex_blaupause.tableset.json'));
17+
rex_yform_manager_table::deleteCache();
18+
}
19+
20+
/* URL-Profile installieren */
21+
if (rex_addon::get('url') && rex_addon::get('url')->isAvailable()) {
22+
if (false === rex_config::get('blaupause', 'url_profile', false)) {
23+
$rex_blaupause_category = array_filter(rex_sql::factory()->getArray("SELECT * FROM rex_url_generator_profile WHERE `table_name` = '1_xxx_rex_blaupause_category'"));
24+
if (!$rex_blaupause_category) {
25+
$query = str_replace('999999', rex_article::getSiteStartArticleId(), rex_file::get(__DIR__ . '/install/rex_url_profile_blaupause_category.sql'));
26+
rex_sql::factory()->setQuery($query);
27+
}
28+
$rex_blaupause_entry = array_filter(rex_sql::factory()->getArray("SELECT * FROM rex_url_generator_profile WHERE `table_name` = '1_xxx_rex_blaupause_entry'"));
29+
if (!$rex_blaupause_entry) {
30+
$query = str_replace('999999', rex_article::getSiteStartArticleId(), rex_file::get(__DIR__ . '/install/rex_url_profile_blaupause_entry.sql'));
31+
rex_sql::factory()->setQuery($query);
32+
}
33+
/* URL-Profile wurden bereits einmal installiert, daher nicht nochmals installieren und Entwickler-Einstellungen respektieren */
34+
rex_config::set('blaupause', 'url_profile', true);
35+
}
36+
}
37+
38+
/* Todo: Wildcard aktualisieren */
39+
40+
/* Nutzt du T-Racks? <https://github.com/alexplusde/tracks> Module und Addons mit installieren */
41+
42+
if (rex_addon::exists('tracks')) {
43+
🦖::forceBackup('school'); // Sichert standardmäßig Module und Templates
44+
🦖::updateModule('school'); // Synchronisiert Module
45+
🦖::updateTemplate('school'); // Synchronisiert Templates
46+
}
47+
48+
rex_delete_cache();

install/rex_blaupause.tableset.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"rex_blaupause":{"table":{"status":1,"table_name":"rex_blaupause","name":"translate:blaupause_table","description":"","list_amount":50,"list_sortfield":"createdate","list_sortorder":"DESC","search":0,"hidden":1,"export":1,"import":1,"mass_deletion":0,"mass_edit":1,"schema_overwrite":1,"history":0,"createdate":"0000-00-00 00:00:00","updatedate":"0000-00-00 00:00:00","createuser":"","updateuser":""},"fields":[{"table_name":"rex_blaupause","prio":1,"type_id":"value","type_name":"text","db_type":"varchar(191)","list_hidden":0,"search":0,"name":"name","label":"translate:blaupause_name","not_required":"","attributes":"","default":"","no_db":"0","notice":"","append":"","prepend":""},{"table_name":"rex_blaupause","prio":2,"type_id":"value","type_name":"choice","db_type":"int","list_hidden":0,"search":1,"name":"status","label":"translate:blaupause_status","not_required":"","multiple":"0","expanded":"0","choices":"translate:blaupause_status-1=translate:blaupause_status0=0,translate:blaupause_status1=1","choice_attributes":"","attributes":"","default":"","no_db":"0","notice":"","preferred_choices":"","group_by":"","placeholder":"","group_attributes":"","choice_label":""},{"table_name":"rex_blaupause","prio":3,"type_id":"value","type_name":"datestamp","db_type":"datetime","list_hidden":0,"search":0,"name":"createdate","label":"translate:blaupause_createdate","not_required":"","no_db":"0","only_empty":"1","format":"Y-m-d H:i:s"},{"table_name":"rex_blaupause","prio":4,"type_id":"value","type_name":"be_user","db_type":"varchar(191)","list_hidden":0,"search":0,"name":"createuser","label":"translate:blaupause_createuser","not_required":"","only_empty":"1","show_value":"0"},{"table_name":"rex_blaupause","prio":5,"type_id":"value","type_name":"datestamp","db_type":"datetime","list_hidden":0,"search":0,"name":"updatedate","label":"translate:blaupause_updatedate","not_required":"","no_db":"0","only_empty":"0","format":"Y-m-d H:i:s"},{"table_name":"rex_blaupause","prio":6,"type_id":"value","type_name":"be_user","db_type":"varchar(191)","list_hidden":0,"search":0,"name":"updateuser","label":"translate:blaupause_updateuser","not_required":"","only_empty":"0","show_value":"0"}]}}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
SET NAMES utf8mb4;
2+
3+
INSERT INTO `rex_url_generator_profile` (`namespace`, `article_id`, `clang_id`, `ep_pre_save_called`, `table_name`, `table_parameters`, `relation_1_table_name`, `relation_1_table_parameters`, `relation_2_table_name`, `relation_2_table_parameters`, `relation_3_table_name`, `relation_3_table_parameters`, `createdate`, `createuser`, `updatedate`, `updateuser`) VALUES
4+
('blaupause-category-id', 999999, 1, 0, '1_xxx_rex_blaupause_category', '{\"column_id\":\"id\",\"column_clang_id\":\"\",\"restriction_1_column\":\"status\",\"restriction_1_comparison_operator\":\">\",\"restriction_1_value\":\"0\",\"restriction_2_logical_operator\":\"\",\"restriction_2_column\":\"\",\"restriction_2_comparison_operator\":\"=\",\"restriction_2_value\":\"\",\"restriction_3_logical_operator\":\"\",\"restriction_3_column\":\"\",\"restriction_3_comparison_operator\":\"=\",\"restriction_3_value\":\"\",\"column_segment_part_1\":\"name\",\"column_segment_part_2_separator\":\"\\/\",\"column_segment_part_2\":\"\",\"column_segment_part_3_separator\":\"\\/\",\"column_segment_part_3\":\"\",\"relation_1_column\":\"\",\"relation_1_position\":\"BEFORE\",\"relation_2_column\":\"\",\"relation_2_position\":\"BEFORE\",\"relation_3_column\":\"\",\"relation_3_position\":\"BEFORE\",\"append_user_paths\":\"\",\"append_structure_categories\":\"0\",\"column_seo_title\":\"name\",\"column_seo_description\":\"\",\"column_seo_image\":\"\",\"sitemap_add\":\"1\",\"sitemap_frequency\":\"weekly\",\"sitemap_priority\":\"0.5\",\"column_sitemap_lastmod\":\"\"}', '', '[]', '', '[]', '', '[]', NOW(), 'blaupause', NOW(), 'blaupause');
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
SET NAMES utf8mb4;
2+
3+
INSERT INTO `rex_url_generator_profile` (`namespace`, `article_id`, `clang_id`, `ep_pre_save_called`, `table_name`, `table_parameters`, `relation_1_table_name`, `relation_1_table_parameters`, `relation_2_table_name`, `relation_2_table_parameters`, `relation_3_table_name`, `relation_3_table_parameters`, `createdate`, `createuser`, `updatedate`, `updateuser`) VALUES
4+
('blaupause-entry-id', 999999, 1, 0, '1_xxx_rex_blaupause_entry', '{\"column_id\":\"id\",\"column_clang_id\":\"\",\"restriction_1_column\":\"status\",\"restriction_1_comparison_operator\":\">\",\"restriction_1_value\":\"0\",\"restriction_2_logical_operator\":\"\",\"restriction_2_column\":\"\",\"restriction_2_comparison_operator\":\"=\",\"restriction_2_value\":\"\",\"restriction_3_logical_operator\":\"\",\"restriction_3_column\":\"\",\"restriction_3_comparison_operator\":\"=\",\"restriction_3_value\":\"\",\"column_segment_part_1\":\"name\",\"column_segment_part_2_separator\":\"\\/\",\"column_segment_part_2\":\"\",\"column_segment_part_3_separator\":\"\\/\",\"column_segment_part_3\":\"\",\"relation_1_column\":\"\",\"relation_1_position\":\"BEFORE\",\"relation_2_column\":\"\",\"relation_2_position\":\"BEFORE\",\"relation_3_column\":\"\",\"relation_3_position\":\"BEFORE\",\"append_user_paths\":\"\",\"append_structure_categories\":\"0\",\"column_seo_title\":\"name\",\"column_seo_description\":\"teaser\",\"column_seo_image\":\"image\",\"sitemap_add\":\"1\",\"sitemap_frequency\":\"daily\",\"sitemap_priority\":\"0.7\",\"column_sitemap_lastmod\":\"updatedate\"}', '', '[]', '', '[]', '', '[]', NOW(), 'blaupause', NOW(), 'blaupause')

lang/da_dk.lang

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
blaupause_title = Blueprint # Addon title
2+
3+
# Menu items
4+
5+
blaupause_table = Blueprint
6+
blaupause_settings = Settings
7+
blaupause_docs = Help
8+
9+
# Tip: FriendsOfREDAXO addons can be submitted to YTraduco for translation.
10+
# Complete translations with Copilot or professional translation tools.
11+
12+
# Configuration forms
13+
14+
blaupause_config = Settings
15+
blaupause_config_mytextfield_label = Test field
16+
blaupause_config_mytextfield_notice = Note explaining something and possibly mentioning a default value. Here: <code>Test</code>
17+
18+
# YForm table translation
19+
20+
blaupause_table_name_label = Name
21+
blaupause_table_name_notice = Note explaining something and possibly mentioning an example value, e.g.: <code>My Name</code>

0 commit comments

Comments
 (0)