Skip to content

Commit

Permalink
Refactor the links in language files
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Friedman <[email protected]>
  • Loading branch information
iMattPro committed Nov 8, 2024
1 parent d0703b6 commit 1928252
Show file tree
Hide file tree
Showing 29 changed files with 76 additions and 61 deletions.
25 changes: 20 additions & 5 deletions adm/style/acp_abbc3_settings.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,26 @@
{% include 'overall_header.html' %}
{% INCLUDECSS '@vse_abbc3/acp_abbc3.css' %}

{% set links = {
'faq': {
'url': 'https://www.phpbb.com/customise/db/extension/advanced_bbcode_box/faq/1551',
'text': lang('FAQ')
},
'media_embed': {
'url': 'https://www.phpbb.com/customise/db/extension/mediaembed/',
'text': lang('DOWNLOAD')
}
} %}

{% macro external_link(url, text) -%}
<a href="{{ url }}" target="_blank">
<i class="icon fa-external-link fa-fw" aria-hidden="true"></i>
{{ text -}}
</a>
{%- endmacro %}

<img src="{{ ROOT_PATH }}ext/vse/abbc3/adm/images/abbc3logo.png" alt="{{ lang('ACP_ABBC3_MODULE') }}">
{% set LINK_FAQ = '<a href="https://www.phpbb.com/customise/db/extension/advanced_bbcode_box/faq/1551" target="_blank">' %}
{% set LINK_ME_EXT = '<a href="https://www.phpbb.com/customise/db/extension/mediaembed/" target="_blank">' %}
{% set LINK_ICON = '<i class="icon fa-external-link fa-fw" aria-hidden="true"></i></a>' %}
<p>{{ lang('ABBC3_SETTINGS_EXPLAIN', LINK_FAQ, LINK_ICON) }}</p>
<p>{{ lang('ABBC3_SETTINGS_EXPLAIN', _self.external_link(links.faq.url, links.faq.text)) }}</p>

<form id="abbc3_settings" method="post" action="{{ U_ACTION }}" data-ajax="true">
<fieldset>
Expand Down Expand Up @@ -48,7 +63,7 @@
</dl>
<dl>
<dt><label>{{ lang('ABBC3_BBVIDEO') ~ lang('COLON') }}</label><br><span>{{ lang('ABBC3_BBVIDEO_EXPLAIN') }}</span></dt>
<dd><span class="{{ S_ABBC3_MEDIA_EMBED ? 'success' : 'error' }}">{{ lang('ABBC3_MEDIA_EMBED_INSTALL', S_ABBC3_MEDIA_EMBED, LINK_ME_EXT, LINK_ICON) }}</span></dd>
<dd><span class="{{ S_ABBC3_MEDIA_EMBED ? 'success' : 'error' }}">{{ lang('ABBC3_MEDIA_EMBED_INSTALL', S_ABBC3_MEDIA_EMBED, _self.external_link(links.media_embed.url, links.media_embed.text)) }}</span></dd>
</dl>
<dl>
<dt><label for="abbc3_google_fonts">{{ lang('ABBC3_GOOGLE_FONTS') ~ lang('COLON') }}</label><br><span>{{ lang('ABBC3_GOOGLE_FONTS_INFO') }}{% if not S_ALLOW_CDN %}<br><br>{{ lang('ABBC3_GOOGLE_FONTS_NOTE') }}{% endif %}</span></dt>
Expand Down
4 changes: 2 additions & 2 deletions language/ar/acp_abbc3.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
}

$lang = array_merge($lang, array(
'ABBC3_SETTINGS_EXPLAIN' => 'Here you can configure settings for Advanced BBCode Box. For information about customizing the icon bar, visit the %1$s ABBC3 FAQ %2$s.',
'ABBC3_SETTINGS_EXPLAIN' => 'Here you can configure settings for Advanced BBCode Box. For information about customizing the icon bar, visit the %s.',
'ABBC3_GOOGLE_FONTS_INFO' => 'Add <strong><a href="https://fonts.google.com" target="_blank">Google Fonts</a></strong> to the <samp class="error">[font]</samp> BBCode. Use exact spelling and case sensitivity. Place each font name on a separate line.',
'ABBC3_GOOGLE_FONTS_NOTE' => '“Allow usage of third party content delivery networks” must be enabled under “Load settings” to use this feature.',
'ABBC3_INVALID_FONT' => 'Invalid font name for “%s”',
Expand All @@ -42,7 +42,7 @@
'ABBC3_BBVIDEO' => 'BBVideo',
'ABBC3_BBVIDEO_EXPLAIN' => 'Install the optional phpBB Media Embed extension to access settings and management options for embedded rich media content.',
'ABBC3_MEDIA_EMBED_INSTALL' => [
0 => 'phpBB Media Embed extension is not installed. %2$s Download %3$s.',
0 => 'phpBB Media Embed extension is not installed. %2$s.',
1 => 'phpBB Media Embed extension is installed. Settings are accessible under the Posting tab.'
],
'PNG' => 'PNG',
Expand Down
4 changes: 2 additions & 2 deletions language/bg/acp_abbc3.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
}

$lang = array_merge($lang, array(
'ABBC3_SETTINGS_EXPLAIN' => 'Here you can configure settings for Advanced BBCode Box. For information about customizing the icon bar, visit the %1$s ABBC3 FAQ %2$s.',
'ABBC3_SETTINGS_EXPLAIN' => 'Here you can configure settings for Advanced BBCode Box. For information about customizing the icon bar, visit the %s.',
'ABBC3_GOOGLE_FONTS_INFO' => 'Add <strong><a href="https://fonts.google.com" target="_blank">Google Fonts</a></strong> to the <samp class="error">[font]</samp> BBCode. Use exact spelling and case sensitivity. Place each font name on a separate line.',
'ABBC3_GOOGLE_FONTS_NOTE' => '“Allow usage of third party content delivery networks” must be enabled under “Load settings” to use this feature.',
'ABBC3_INVALID_FONT' => 'Invalid font name for “%s”',
Expand All @@ -41,7 +41,7 @@
'ABBC3_BBVIDEO' => 'BBVideo',
'ABBC3_BBVIDEO_EXPLAIN' => 'Install the optional phpBB Media Embed extension to access settings and management options for embedded rich media content.',
'ABBC3_MEDIA_EMBED_INSTALL' => [
0 => 'phpBB Media Embed extension is not installed. %2$s Download %3$s.',
0 => 'phpBB Media Embed extension is not installed. %2$s.',
1 => 'phpBB Media Embed extension is installed. Settings are accessible under the Posting tab.'
],
'PNG' => 'PNG',
Expand Down
4 changes: 2 additions & 2 deletions language/cs/acp_abbc3.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
}

$lang = array_merge($lang, array(
'ABBC3_SETTINGS_EXPLAIN' => 'Here you can configure settings for Advanced BBCode Box. For information about customizing the icon bar, visit the %1$s ABBC3 FAQ %2$s.',
'ABBC3_SETTINGS_EXPLAIN' => 'Here you can configure settings for Advanced BBCode Box. For information about customizing the icon bar, visit the %s.',
'ABBC3_GOOGLE_FONTS_INFO' => 'Add <strong><a href="https://fonts.google.com" target="_blank">Google Fonts</a></strong> to the <samp class="error">[font]</samp> BBCode. Use exact spelling and case sensitivity. Place each font name on a separate line.',
'ABBC3_GOOGLE_FONTS_NOTE' => '“Allow usage of third party content delivery networks” must be enabled under “Load settings” to use this feature.',
'ABBC3_INVALID_FONT' => 'Invalid font name for “%s”',
Expand All @@ -41,7 +41,7 @@
'ABBC3_BBVIDEO' => 'BBVideo',
'ABBC3_BBVIDEO_EXPLAIN' => 'Install the optional phpBB Media Embed extension to access settings and management options for embedded rich media content.',
'ABBC3_MEDIA_EMBED_INSTALL' => [
0 => 'phpBB Media Embed extension is not installed. %2$s Download %3$s.',
0 => 'phpBB Media Embed extension is not installed. %2$s.',
1 => 'phpBB Media Embed extension is installed. Settings are accessible under the Posting tab.'
],
'PNG' => 'PNG',
Expand Down
4 changes: 2 additions & 2 deletions language/de/acp_abbc3.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
}

$lang = array_merge($lang, array(
'ABBC3_SETTINGS_EXPLAIN' => 'Hier kannst du die Einstellungen für die Advanced BBCode Box verändern. Für weitere Informationen, wie du die Menüleiste verändern kannst, rufe bitte die %1$s ABBC3 FAQ %2$s auf.',
'ABBC3_SETTINGS_EXPLAIN' => 'Hier kannst du die Einstellungen für die Advanced BBCode Box verändern. Für weitere Informationen, wie du die Menüleiste verändern kannst, rufe bitte die %s auf.',
'ABBC3_GOOGLE_FONTS_INFO' => 'Füge <strong><a href="https://fonts.google.com" target="_blank">Google Fonts</a></strong> zum <samp class="error">[font]</samp> BBCode hinzu. Achte auf genaue Schreibweise und Groß-/Kleinschreibung. Setze jeden Schriftartnamen in eine eigene Zeile.',
'ABBC3_GOOGLE_FONTS_NOTE' => '„Nutzung von Drittanbieter-Servern zulassen“ muss aktiviert sein unter den “Serverlast”-Einstellungen, um diese Funktion zu nutzen.',
'ABBC3_INVALID_FONT' => 'Ungültiger Schriftname „%s“',
Expand All @@ -42,7 +42,7 @@
'ABBC3_BBVIDEO' => 'BBVideo',
'ABBC3_BBVIDEO_EXPLAIN' => 'Installiere die optionale Erweiterung „phpBB Media Embed“, um auf Einstellungen und Verwaltungsoptionen für eingebettete Rich Media-Inhalte zuzugreifen.',
'ABBC3_MEDIA_EMBED_INSTALL' => [
0 => 'phpBB Media Embed-Erweiterung ist nicht installiert. %2$s Download %3$s.',
0 => 'phpBB Media Embed-Erweiterung ist nicht installiert. %2$s.',
1 => 'phpBB Media Embed-Erweiterung ist installiert. Auf die Einstellungen kann über den Tab „Beiträge“ zugegriffen werden.'
],
'PNG' => 'PNG',
Expand Down
4 changes: 2 additions & 2 deletions language/en/acp_abbc3.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
}

$lang = array_merge($lang, array(
'ABBC3_SETTINGS_EXPLAIN' => 'Here you can configure settings for Advanced BBCode Box. For information about customizing the icon bar, visit the %1$s ABBC3 FAQ %2$s.',
'ABBC3_SETTINGS_EXPLAIN' => 'Here you can configure settings for Advanced BBCode Box. For information about customizing the icon bar, visit the %s.',
'ABBC3_GOOGLE_FONTS_INFO' => 'Add <strong><a href="https://fonts.google.com" target="_blank">Google Fonts</a></strong> to the <samp class="error">[font]</samp> BBCode. Use exact spelling and case sensitivity. Place each font name on a separate line.',
'ABBC3_GOOGLE_FONTS_NOTE' => '“Allow usage of third party content delivery networks” must be enabled under “Load settings” to use this feature.',
'ABBC3_INVALID_FONT' => 'Invalid font name for “%s”',
Expand All @@ -41,7 +41,7 @@
'ABBC3_BBVIDEO' => 'BBVideo',
'ABBC3_BBVIDEO_EXPLAIN' => 'Install the optional phpBB Media Embed extension to access settings and management options for embedded rich media content.',
'ABBC3_MEDIA_EMBED_INSTALL' => [
0 => 'phpBB Media Embed extension is not installed. %2$s Download %3$s.',
0 => 'phpBB Media Embed extension is not installed. %2$s.',
1 => 'phpBB Media Embed extension is installed. Settings are accessible under the Posting tab.'
],
'PNG' => 'PNG',
Expand Down
4 changes: 2 additions & 2 deletions language/es/acp_abbc3.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
}

$lang = array_merge($lang, array(
'ABBC3_SETTINGS_EXPLAIN' => 'Aquí puede configurar los ajustes para Advanced BBCode Box. Para obtener información sobre cómo personalizar la barra de iconos, visite el %1$s ABBC3 FAQ %2$s.',
'ABBC3_SETTINGS_EXPLAIN' => 'Aquí puede configurar los ajustes para Advanced BBCode Box. Para obtener información sobre cómo personalizar la barra de iconos, visite el %s.',
'ABBC3_GOOGLE_FONTS_INFO' => 'Añada fuentes de <a href="https://fonts.google.com" target="_blank">Google Fonts</a> al BBCode <samp>font</samp>. Utilice la ortografía exacta y la distinción entre mayúsculas y minúsculas. Coloque cada nombre de fuente en una línea separada. Por ejemplo: <samp>Droid Sans</samp>',
'ABBC3_GOOGLE_FONTS_NOTE' => 'Tenga en cuenta que “Permitir el uso de las redes de distribución de contenidos de terceros” debe estar habilitado en "Configuración de carga" para usar esta función.',
'ABBC3_INVALID_FONT' => 'Invalid font name for “%s”',
Expand All @@ -41,7 +41,7 @@
'ABBC3_BBVIDEO' => 'BBVideo',
'ABBC3_BBVIDEO_EXPLAIN' => 'Install the optional phpBB Media Embed extension to access settings and management options for embedded rich media content.',
'ABBC3_MEDIA_EMBED_INSTALL' => [
0 => 'phpBB Media Embed extension is not installed. %2$s Download %3$s.',
0 => 'phpBB Media Embed extension is not installed. %2$s.',
1 => 'phpBB Media Embed extension is installed. Settings are accessible under the Posting tab.'
],
'PNG' => 'PNG',
Expand Down
4 changes: 2 additions & 2 deletions language/es_x_tu/acp_abbc3.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
}

$lang = array_merge($lang, array(
'ABBC3_SETTINGS_EXPLAIN' => 'Aquí puedes configurar los ajustes para Advanced BBCode Box. Para obtener información sobre cómo personalizar la barra de iconos, visita el %1$s ABBC3 FAQ %2$s.',
'ABBC3_SETTINGS_EXPLAIN' => 'Aquí puedes configurar los ajustes para Advanced BBCode Box. Para obtener información sobre cómo personalizar la barra de iconos, visita el %s.',
'ABBC3_GOOGLE_FONTS_INFO' => 'Añade fuentes de <a href="https://fonts.google.com" target="_blank">Google Fonts</a> al BBCode <samp>font</samp>. Utiliza la ortografía exacta y la distinción entre mayúsculas y minúsculas. Coloca cada nombre de fuente en una línea separada. Por ejemplo: <samp>Droid Sans</samp>',
'ABBC3_GOOGLE_FONTS_NOTE' => 'Tenga en cuenta que “Permitir el uso de las redes de distribución de contenidos de terceros” debe estar habilitado en "Configuración de carga" para usar esta función.',
'ABBC3_INVALID_FONT' => 'Invalid font name for “%s”',
Expand All @@ -41,7 +41,7 @@
'ABBC3_BBVIDEO' => 'BBVideo',
'ABBC3_BBVIDEO_EXPLAIN' => 'Install the optional phpBB Media Embed extension to access settings and management options for embedded rich media content.',
'ABBC3_MEDIA_EMBED_INSTALL' => [
0 => 'phpBB Media Embed extension is not installed. %2$s Download %3$s.',
0 => 'phpBB Media Embed extension is not installed. %2$s.',
1 => 'phpBB Media Embed extension is installed. Settings are accessible under the Posting tab.'
],
'PNG' => 'PNG',
Expand Down
4 changes: 2 additions & 2 deletions language/et/acp_abbc3.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
}

$lang = array_merge($lang, array(
'ABBC3_SETTINGS_EXPLAIN' => 'Here you can configure settings for Advanced BBCode Box. For information about customizing the icon bar, visit the %1$s ABBC3 FAQ %2$s.',
'ABBC3_SETTINGS_EXPLAIN' => 'Here you can configure settings for Advanced BBCode Box. For information about customizing the icon bar, visit the %s.',
'ABBC3_GOOGLE_FONTS_INFO' => 'Add <strong><a href="https://fonts.google.com" target="_blank">Google Fonts</a></strong> to the <samp class="error">[font]</samp> BBCode. Use exact spelling and case sensitivity. Place each font name on a separate line.',
'ABBC3_GOOGLE_FONTS_NOTE' => '“Allow usage of third party content delivery networks” must be enabled under “Load settings” to use this feature.',
'ABBC3_INVALID_FONT' => 'Invalid font name for “%s”',
Expand All @@ -42,7 +42,7 @@
'ABBC3_BBVIDEO' => 'BBVideo',
'ABBC3_BBVIDEO_EXPLAIN' => 'Install the optional phpBB Media Embed extension to access settings and management options for embedded rich media content.',
'ABBC3_MEDIA_EMBED_INSTALL' => [
0 => 'phpBB Media Embed extension is not installed. %2$s Download %3$s.',
0 => 'phpBB Media Embed extension is not installed. %2$s.',
1 => 'phpBB Media Embed extension is installed. Settings are accessible under the Posting tab.'
],
'PNG' => 'PNG',
Expand Down
4 changes: 2 additions & 2 deletions language/fa/acp_abbc3.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
}

$lang = array_merge($lang, array(
'ABBC3_SETTINGS_EXPLAIN' => 'Here you can configure settings for Advanced BBCode Box. For information about customizing the icon bar, visit the %1$s ABBC3 FAQ %2$s.',
'ABBC3_SETTINGS_EXPLAIN' => 'Here you can configure settings for Advanced BBCode Box. For information about customizing the icon bar, visit the %s.',
'ABBC3_GOOGLE_FONTS_INFO' => 'Add <strong><a href="https://fonts.google.com" target="_blank">Google Fonts</a></strong> to the <samp class="error">[font]</samp> BBCode. Use exact spelling and case sensitivity. Place each font name on a separate line.',
'ABBC3_GOOGLE_FONTS_NOTE' => '“Allow usage of third party content delivery networks” must be enabled under “Load settings” to use this feature.',
'ABBC3_INVALID_FONT' => 'Invalid font name for “%s”',
Expand All @@ -42,7 +42,7 @@
'ABBC3_BBVIDEO' => 'BBVideo',
'ABBC3_BBVIDEO_EXPLAIN' => 'Install the optional phpBB Media Embed extension to access settings and management options for embedded rich media content.',
'ABBC3_MEDIA_EMBED_INSTALL' => [
0 => 'phpBB Media Embed extension is not installed. %2$s Download %3$s.',
0 => 'phpBB Media Embed extension is not installed. %2$s.',
1 => 'phpBB Media Embed extension is installed. Settings are accessible under the Posting tab.'
],
'PNG' => 'PNG',
Expand Down
4 changes: 2 additions & 2 deletions language/fi/acp_abbc3.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
}

$lang = array_merge($lang, array(
'ABBC3_SETTINGS_EXPLAIN' => 'Here you can configure settings for Advanced BBCode Box. For information about customizing the icon bar, visit the %1$s ABBC3 FAQ %2$s.',
'ABBC3_SETTINGS_EXPLAIN' => 'Here you can configure settings for Advanced BBCode Box. For information about customizing the icon bar, visit the %s.',
'ABBC3_GOOGLE_FONTS_INFO' => 'Add <strong><a href="https://fonts.google.com" target="_blank">Google Fonts</a></strong> to the <samp class="error">[font]</samp> BBCode. Use exact spelling and case sensitivity. Place each font name on a separate line.',
'ABBC3_GOOGLE_FONTS_NOTE' => '“Allow usage of third party content delivery networks” must be enabled under “Load settings” to use this feature.',
'ABBC3_INVALID_FONT' => 'Invalid font name for “%s”',
Expand All @@ -41,7 +41,7 @@
'ABBC3_BBVIDEO' => 'BBVideo',
'ABBC3_BBVIDEO_EXPLAIN' => 'Install the optional phpBB Media Embed extension to access settings and management options for embedded rich media content.',
'ABBC3_MEDIA_EMBED_INSTALL' => [
0 => 'phpBB Media Embed extension is not installed. %2$s Download %3$s.',
0 => 'phpBB Media Embed extension is not installed. %2$s.',
1 => 'phpBB Media Embed extension is installed. Settings are accessible under the Posting tab.'
],
'PNG' => 'PNG',
Expand Down
4 changes: 2 additions & 2 deletions language/fr/acp_abbc3.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
}

$lang = array_merge($lang, array(
'ABBC3_SETTINGS_EXPLAIN' => 'Ici, vous pouvez configurer les paramètres de Advanced BBCode Box. Pour plus d’informations sur la personnalisation de la barre d’icônes, visitez le site %1$s ABBC3 FAQ %2$s.',
'ABBC3_SETTINGS_EXPLAIN' => 'Ici, vous pouvez configurer les paramètres de Advanced BBCode Box. Pour plus d’informations sur la personnalisation de la barre d’icônes, visitez le site %s.',
'ABBC3_GOOGLE_FONTS_INFO' => 'Ajoutez <strong><a href="https://fonts.google.com" target="_blank">Google Fonts</a></strong> à la <samp class="error">[font]</samp> BBCode. Utilisez une orthographe exacte et respectez la casse. Placez chaque nom de police sur une ligne distincte.',
'ABBC3_GOOGLE_FONTS_NOTE' => '“Autoriser l‘utilisation de réseaux de diffusion de contenu tiers" doit être activé sous "Charger les paramètres" pour utiliser cette fonctionnalité.',
'ABBC3_INVALID_FONT' => 'Nom de police invalide pour “%s”',
Expand All @@ -42,7 +42,7 @@
'ABBC3_BBVIDEO' => 'BBVideo',
'ABBC3_BBVIDEO_EXPLAIN' => 'Installez l‘extension facultative phpBB Media Embed pour accéder aux paramètres et aux options de gestion du contenu multimédia intégré.',
'ABBC3_MEDIA_EMBED_INSTALL' => [
0 => 'L‘extension phpBB Media Embed n‘est pas installée. %2$s Téléchargement %3$s.',
0 => 'L‘extension phpBB Media Embed n‘est pas installée. %2$s.',
1 => 'L‘extension phpBB Media Embed est installée. Les paramètres sont accessibles sous l‘onglet Publication.'
],
'PNG' => 'PNG',
Expand Down
4 changes: 2 additions & 2 deletions language/gr/acp_abbc3.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
}

$lang = array_merge($lang, array(
'ABBC3_SETTINGS_EXPLAIN' => 'Here you can configure settings for Advanced BBCode Box. For information about customizing the icon bar, visit the %1$s ABBC3 FAQ %2$s.',
'ABBC3_SETTINGS_EXPLAIN' => 'Here you can configure settings for Advanced BBCode Box. For information about customizing the icon bar, visit the %s.',
'ABBC3_GOOGLE_FONTS_INFO' => 'Add <strong><a href="https://fonts.google.com" target="_blank">Google Fonts</a></strong> to the <samp class="error">[font]</samp> BBCode. Use exact spelling and case sensitivity. Place each font name on a separate line.',
'ABBC3_GOOGLE_FONTS_NOTE' => '“Allow usage of third party content delivery networks” must be enabled under “Load settings” to use this feature.',
'ABBC3_INVALID_FONT' => 'Invalid font name for “%s”',
Expand All @@ -43,7 +43,7 @@
'ABBC3_BBVIDEO' => 'BBVideo',
'ABBC3_BBVIDEO_EXPLAIN' => 'Install the optional phpBB Media Embed extension to access settings and management options for embedded rich media content.',
'ABBC3_MEDIA_EMBED_INSTALL' => [
0 => 'phpBB Media Embed extension is not installed. %2$s Download %3$s.',
0 => 'phpBB Media Embed extension is not installed. %2$s.',
1 => 'phpBB Media Embed extension is installed. Settings are accessible under the Posting tab.'
],
'PNG' => 'PNG',
Expand Down
Loading

0 comments on commit 1928252

Please sign in to comment.