Skip to content

Commit

Permalink
Merge branch 'develop' into release/3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
iMattPro committed Sep 17, 2020
2 parents efa4f17 + 1c99341 commit 632f6c3
Show file tree
Hide file tree
Showing 37 changed files with 720 additions and 80 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
tests/ export-ignore
travis/ export-ignore
develop/ export-ignore
.travis.yml export-ignore
.gitignore export-ignore
.gitattributes export-ignore
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ Backup/

/node_modules/
/build/
/develop/
/vendor/
29 changes: 15 additions & 14 deletions adm/style/acp_abbc3_settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<p>{{ lang('ABBC3_SETTINGS_EXPLAIN') }}</p>

<form id="abbc3_settings" method="post" action="{{ U_ACTION }}">
<form id="abbc3_settings" method="post" action="{{ U_ACTION }}" data-ajax="true">
<fieldset>
<legend>{{ lang('ABBC3_LEGEND_ICON_BAR') }}</legend>
<dl>
Expand All @@ -17,19 +17,20 @@
<dt><label for="abbc3_icons_type">{{ lang('ABBC3_ICONS_TYPE') ~ lang('COLON') }}</label><br><span>{{ lang('ABBC3_ICONS_TYPE_EXPLAIN') }}</span></dt>
<dd>
<select name="abbc3_icons_type" id="abbc3_icons_type">{{ S_ABBC3_ICONS_TYPE }}</select>
{% for img in ['png', 'svg'] %}
<div class="abbc3-bar abbc3-icons-{{ img }} hidden">
<span style="background-image:url('{{ ROOT_PATH }}ext/vse/abbc3/images/icons/bold.{{ img }}')"></span>
<span style="background-image:url('{{ ROOT_PATH }}ext/vse/abbc3/images/icons/italic.{{ img }}')"></span>
<span style="background-image:url('{{ ROOT_PATH }}ext/vse/abbc3/images/icons/underline.{{ img }}')"></span>
<span style="background-image:url('{{ ROOT_PATH }}ext/vse/abbc3/images/icons/quote.{{ img }}')"></span>
<span style="background-image:url('{{ ROOT_PATH }}ext/vse/abbc3/images/icons/code.{{ img }}')"></span>
<span style="background-image:url('{{ ROOT_PATH }}ext/vse/abbc3/images/icons/listb.{{ img }}')"></span>
<span style="background-image:url('{{ ROOT_PATH }}ext/vse/abbc3/images/icons/listo.{{ img }}')"></span>
<span style="background-image:url('{{ ROOT_PATH }}ext/vse/abbc3/images/icons/listitem.{{ img }}')"></span>
<span style="background-image:url('{{ ROOT_PATH }}ext/vse/abbc3/images/icons/img.{{ img }}')"></span>
<span style="background-image:url('{{ ROOT_PATH }}ext/vse/abbc3/images/icons/url.{{ img }}')"></span>
<span style="background-image:url('{{ ROOT_PATH }}ext/vse/abbc3/images/icons/fontcolor.{{ img }}')"></span>
{% set ABBC3_ICON_PATH = ROOT_PATH ~ 'ext/vse/abbc3/images/icons/' %}
{% for ext in ['png', 'svg'] %}
<div class="abbc3-bar abbc3-icons-{{ ext }} hidden">
<span style="background-image:url('{{ ABBC3_ICON_PATH }}bold.{{ ext }}')"></span>
<span style="background-image:url('{{ ABBC3_ICON_PATH }}italic.{{ ext }}')"></span>
<span style="background-image:url('{{ ABBC3_ICON_PATH }}underline.{{ ext }}')"></span>
<span style="background-image:url('{{ ABBC3_ICON_PATH }}quote.{{ ext }}')"></span>
<span style="background-image:url('{{ ABBC3_ICON_PATH }}code.{{ ext }}')"></span>
<span style="background-image:url('{{ ABBC3_ICON_PATH }}listb.{{ ext }}')"></span>
<span style="background-image:url('{{ ABBC3_ICON_PATH }}listo.{{ ext }}')"></span>
<span style="background-image:url('{{ ABBC3_ICON_PATH }}listitem.{{ ext }}')"></span>
<span style="background-image:url('{{ ABBC3_ICON_PATH }}img.{{ ext }}')"></span>
<span style="background-image:url('{{ ABBC3_ICON_PATH }}url.{{ ext }}')"></span>
<span style="background-image:url('{{ ABBC3_ICON_PATH }}fontcolor.{{ ext }}')"></span>
</div>
{% endfor %}
</dd>
Expand Down
1 change: 1 addition & 0 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<delete dir="${dir}/travis" />
<delete dir="${dir}/vendor" />
<delete dir="${dir}/node_modules" />
<delete dir="${dir}/develop" />

<delete file="${dir}/.gitignore" />
<delete file="${dir}/.gitattributes" />
Expand Down
15 changes: 12 additions & 3 deletions ext.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

namespace vse\abbc3;

use phpbb\filesystem\exception\filesystem_exception;

class ext extends \phpbb\extension\base
{
const MOVE_UP = 'move_up';
Expand Down Expand Up @@ -38,10 +40,17 @@ public function enable_step($old_state)
$filesystem = $this->container->get('filesystem');
$root_path = $this->container->getParameter('core.root_path');

// Make an ABBC3 icon dir in phpBB's images dir
if (!$filesystem->exists($root_path . 'images/abbc3/icons'))
try // Make an ABBC3 icon dir in phpBB's images dir
{
if (!$filesystem->exists($root_path . 'images/abbc3/icons'))
{
$filesystem->mkdir($root_path . 'images/abbc3/icons');
}
}
catch (filesystem_exception $e)
{
$filesystem->mkdir($root_path . 'images/abbc3/icons');
$user = $this->container->get('user');
$this->container->get('log')->add('critical', $user->data['user_id'], $user->ip, 'LOG_ABBC3_ENABLE_FAIL', false, [$e->get_filename()]);
}

return 'abbc3-step';
Expand Down
25 changes: 25 additions & 0 deletions language/ar/info_acp_abbc3.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php
/**
*
* Advanced BBCode Box
*
* @copyright (c) 2020 Matt Friedman
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/

if (!defined('IN_PHPBB'))
{
exit;
}

if (empty($lang) || !is_array($lang))
{
$lang = [];
}

$lang = array_merge($lang, [
'ACP_ABBC3_MODULE' => 'Advanced BBCode Box',
'ACP_ABBC3_SETTINGS' => 'Settings',
'LOG_ABBC3_ENABLE_FAIL' => '<strong>Advanced BBCode Box was unable to create the directory:</strong><br>%s',
]);
25 changes: 25 additions & 0 deletions language/bg/info_acp_abbc3.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php
/**
*
* Advanced BBCode Box
*
* @copyright (c) 2020 Matt Friedman
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/

if (!defined('IN_PHPBB'))
{
exit;
}

if (empty($lang) || !is_array($lang))
{
$lang = [];
}

$lang = array_merge($lang, [
'ACP_ABBC3_MODULE' => 'Advanced BBCode Box',
'ACP_ABBC3_SETTINGS' => 'Settings',
'LOG_ABBC3_ENABLE_FAIL' => '<strong>Advanced BBCode Box was unable to create the directory:</strong><br>%s',
]);
25 changes: 25 additions & 0 deletions language/cs/info_acp_abbc3.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php
/**
*
* Advanced BBCode Box
*
* @copyright (c) 2020 Matt Friedman
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/

if (!defined('IN_PHPBB'))
{
exit;
}

if (empty($lang) || !is_array($lang))
{
$lang = [];
}

$lang = array_merge($lang, [
'ACP_ABBC3_MODULE' => 'Advanced BBCode Box',
'ACP_ABBC3_SETTINGS' => 'Settings',
'LOG_ABBC3_ENABLE_FAIL' => '<strong>Advanced BBCode Box was unable to create the directory:</strong><br>%s',
]);
25 changes: 25 additions & 0 deletions language/de/info_acp_abbc3.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php
/**
*
* Advanced BBCode Box
*
* @copyright (c) 2020 Matt Friedman
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/

if (!defined('IN_PHPBB'))
{
exit;
}

if (empty($lang) || !is_array($lang))
{
$lang = [];
}

$lang = array_merge($lang, [
'ACP_ABBC3_MODULE' => 'Advanced BBCode Box',
'ACP_ABBC3_SETTINGS' => 'Settings',
'LOG_ABBC3_ENABLE_FAIL' => '<strong>Advanced BBCode Box was unable to create the directory:</strong><br>%s',
]);
1 change: 1 addition & 0 deletions language/en/info_acp_abbc3.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@
$lang = array_merge($lang, [
'ACP_ABBC3_MODULE' => 'Advanced BBCode Box',
'ACP_ABBC3_SETTINGS' => 'Settings',
'LOG_ABBC3_ENABLE_FAIL' => '<strong>Advanced BBCode Box was unable to create the directory:</strong><br>%s',
]);
26 changes: 13 additions & 13 deletions language/es/abbc3.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
'ABBC3_FONT_HELPLINE' => 'Tipo de fuente: [font=Comic Sans MS]texto[/font]',
'ABBC3_GLOW_HELPLINE' => 'Texto con resplandor: [glow=color]texto[/glow]',
'ABBC3_HIDDEN_HELPLINE' => 'Ocultar texto para invitados: [hidden]texto[/hidden]',
'ABBC3_HIGHLIGHT_HELPLINE' => 'Texto resaltado: [highlight=yellow]texto[/highlight] Tip: puede usar código de color=#FF0000',
'ABBC3_HIGHLIGHT_HELPLINE' => 'Texto resaltado: [highlight=yellow]texto[/highlight] Tip: Puede usar código de color=#FF0000',
'ABBC3_MARQUEE_HELPLINE' => 'Texto marquesina: [marq=up|down|left|right]texto[/marq]',
'ABBC3_MOD_HELPLINE' => 'Texto de alerta: [mod=username]texto[/mod]',
'ABBC3_NFO_HELPLINE' => 'Texto NFO ASCII: [nfo]NFO texto[/nfo]',
Expand Down Expand Up @@ -102,22 +102,22 @@
'ABBC3_BBCODE_ORDERED' => 'El orden de los BBCodes ha sido resincronizado.',
'ABBC3_BBCODE_GROUP' => 'Gestionar grupos que pueden utilizar este BBCode',
'ABBC3_BBCODE_GROUP_INFO' => 'Si ningún grupo es selecionado todos los usuarios podrán utilizar este BBCode.<br />Para selecionar (o eliminar la seleción) de multiples grupos simultaneamente, pulse CTRL+CLICK (o CMD-CLICK en Mac) sobre los grupos deseados. Si usted olvida mantener pulsada la tecla CTRL/CMD cuando hace clic en un grupo de usuarios, toda seleción previa sera eliminada.',
'ABBC3_SETTINGS_EXPLAIN' => 'Here you can configure settings for Advanced BBCode Box. For information about customizing the icon bar, visit the <a href="https://www.phpbb.com/customise/db/extension/advanced_bbcode_box/faq/1551" target="_blank">ABBC3 FAQ <i class="icon fa-external-link fa-fw" aria-hidden="true"></i></a>.',
'ABBC3_PIPES' => 'Enable the Pipe Table PlugIn',
'ABBC3_PIPES_EXPLAIN' => 'The Pipes Table PlugIn allows users to create tables in their posts and private messages using markdown syntax.',
'ABBC3_BBCODE_BAR' => 'Enable BBCode icon bar',
'ABBC3_BBCODE_BAR_EXPLAIN' => 'This will display ABBC3’s icon-based BBCode toolbar. Disable this to display phpBB’s default BBCode buttons.',
'ABBC3_QR_BBCODES' => 'Enable BBCodes in Quick Reply',
'ABBC3_QR_BBCODES_EXPLAIN' => 'This will add BBCode buttons to Quick Reply.',
'ABBC3_ICONS_TYPE' => 'Icon bar image format',
'ABBC3_ICONS_TYPE_EXPLAIN' => 'Choose the image format to use for ABBC3’s icons. Note that you can only choose one format for all your icons.',
'ABBC3_LEGEND_ICON_BAR' => 'BBCode Icon Bar',
'ABBC3_LEGEND_ADD_ONS' => 'Add Ons',
'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 <a href="https://www.phpbb.com/customise/db/extension/advanced_bbcode_box/faq/1551" target="_blank">ABBC3 FAQ <i class="icon fa-external-link fa-fw" aria-hidden="true"></i></a>.',
'ABBC3_PIPES' => 'Habilitar el complemento de tablas de Pipe (tubo)',
'ABBC3_PIPES_EXPLAIN' => 'El complemento de tabla de tubo permite a los usuarios crear tablas en sus mensajes y mensajes privados utilizando la sintaxis markdown.',
'ABBC3_BBCODE_BAR' => 'Habilitar la barra de iconos de BBCode',
'ABBC3_BBCODE_BAR_EXPLAIN' => 'Esto mostrará la barra de herramientas BBCode basada en iconos de ABBC3. Desactive esto para mostrar los botones BBCode predeterminados de phpBB.',
'ABBC3_QR_BBCODES' => 'Habilitar BBCodes en Respuesta rápida',
'ABBC3_QR_BBCODES_EXPLAIN' => 'Esto añade los botones BBCode a Respuesta rápida.',
'ABBC3_ICONS_TYPE' => 'Formato de imagen de la barra de iconos',
'ABBC3_ICONS_TYPE_EXPLAIN' => 'Seleccione el formato de imagen que se utilizará para los iconos de ABBC3. Tenga en cuenta que solo puede elegir un formato para todos sus iconos.',
'ABBC3_LEGEND_ICON_BAR' => 'Barra de iconos de BBCode',
'ABBC3_LEGEND_ADD_ONS' => 'Añadidos',
'PNG' => 'PNG',
'SVG' => 'SVG',

// BBCode FAQ
'ABBC3_FAQ_TITLE' => 'Advanced BBCode Box BBCodes',
'ABBC3_FAQ_TITLE' => 'BBCodes de la Caja Avanzada de BBCode',
'ABBC3_FAQ_SAMPLE_TEXT' => 'El zorro marrón rápido salta sobre el perro perezoso',
'ABBC3_FAQ_ANSWER' => '%1$s<br /><br /><strong>Ejemplo:</strong><br />%2$s<br /><br /><strong>Resultado:</strong><br />%3$s<hr />',
));
24 changes: 24 additions & 0 deletions language/es/info_acp_abbc3.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php
/**
*
* Advanced BBCode Box [Spanish - Formal Honorifics]
*
* @copyright (c) 2020 Matt Friedman
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/

if (!defined('IN_PHPBB'))
{
exit;
}

if (empty($lang) || !is_array($lang))
{
$lang = [];
}

$lang = array_merge($lang, [
'ACP_ABBC3_MODULE' => 'Caja de BBCode Avanzado',
'ACP_ABBC3_SETTINGS' => 'Ajustes',
]);
28 changes: 14 additions & 14 deletions language/es_x_tu/abbc3.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
'ABBC3_FONT_HELPLINE' => 'Tipo de fuente: [font=Comic Sans MS]texto[/font]',
'ABBC3_GLOW_HELPLINE' => 'Texto con resplandor: [glow=color]texto[/glow]',
'ABBC3_HIDDEN_HELPLINE' => 'Ocultar texto para invitados: [hidden]texto[/hidden]',
'ABBC3_HIGHLIGHT_HELPLINE' => 'Texto resaltado: [highlight=yellow]texto[/highlight] Tip: puede usar código de color=#FF0000',
'ABBC3_HIGHLIGHT_HELPLINE' => 'Texto resaltado: [highlight=yellow]texto[/highlight] Tip: Puedes usar código de color=#FF0000',
'ABBC3_MARQUEE_HELPLINE' => 'Texto marquesina: [marq=up|down|left|right]texto[/marq]',
'ABBC3_MOD_HELPLINE' => 'Texto de alerta: [mod=username]texto[/mod]',
'ABBC3_NFO_HELPLINE' => 'Texto NFO ASCII: [nfo]NFO texto[/nfo]',
Expand Down Expand Up @@ -101,23 +101,23 @@
// ACP
'ABBC3_BBCODE_ORDERED' => 'El orden de los BBCodes ha sido resincronizado.',
'ABBC3_BBCODE_GROUP' => 'Gestionar grupos que pueden utilizar este BBCode',
'ABBC3_BBCODE_GROUP_INFO' => 'Si ningún grupo es selecionado todos los usuarios podrán utilizar este BBCode.<br />Para selecionar (o eliminar la seleción) de multiples grupos simultaneamente, pulsa CTRL+CLICK (o CMD-CLICK en Mac) sobre los grupos deseados. Si olvidas mantener pulsada la tecla CTRL/CMD cuando haces clic en un grupo de usuarios, toda seleción previa sera eliminada.',
'ABBC3_SETTINGS_EXPLAIN' => 'Here you can configure settings for Advanced BBCode Box. For information about customizing the icon bar, visit the <a href="https://www.phpbb.com/customise/db/extension/advanced_bbcode_box/faq/1551" target="_blank">ABBC3 FAQ <i class="icon fa-external-link fa-fw" aria-hidden="true"></i></a>.',
'ABBC3_PIPES' => 'Enable the Pipe Table PlugIn',
'ABBC3_PIPES_EXPLAIN' => 'The Pipes Table PlugIn allows users to create tables in their posts and private messages using markdown syntax.',
'ABBC3_BBCODE_BAR' => 'Enable BBCode icon bar',
'ABBC3_BBCODE_BAR_EXPLAIN' => 'This will display ABBC3’s icon-based BBCode toolbar. Disable this to display phpBB’s default BBCode buttons.',
'ABBC3_QR_BBCODES' => 'Enable BBCodes in Quick Reply',
'ABBC3_QR_BBCODES_EXPLAIN' => 'This will add BBCode buttons to Quick Reply.',
'ABBC3_ICONS_TYPE' => 'Icon bar image format',
'ABBC3_ICONS_TYPE_EXPLAIN' => 'Choose the image format to use for ABBC3’s icons. Note that you can only choose one format for all your icons.',
'ABBC3_LEGEND_ICON_BAR' => 'BBCode Icon Bar',
'ABBC3_LEGEND_ADD_ONS' => 'Add Ons',
'ABBC3_BBCODE_GROUP_INFO' => 'Si ningún grupo es selecionado todos los usuarios podrán utilizar este BBCode.<br />Para selecionar (o eliminar la seleción) de multiples grupos simultaneamente, pulse CTRL+CLICK (o CMD-CLICK en Mac) sobre los grupos deseados. Si usted olvida mantener pulsada la tecla CTRL/CMD cuando hace clic en un grupo de usuarios, toda seleción previa sera eliminada.',
'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 <a href="https://www.phpbb.com/customise/db/extension/advanced_bbcode_box/faq/1551" target="_blank">ABBC3 FAQ <i class="icon fa-external-link fa-fw" aria-hidden="true"></i></a>.',
'ABBC3_PIPES' => 'Habilitar el complemento de tablas de Pipe (tubo)',
'ABBC3_PIPES_EXPLAIN' => 'El complemento de tabla de tubo permite a los usuarios crear tablas en sus mensajes y mensajes privados utilizando la sintaxis markdown.',
'ABBC3_BBCODE_BAR' => 'Habilitar la barra de iconos de BBCode',
'ABBC3_BBCODE_BAR_EXPLAIN' => 'Esto mostrará la barra de herramientas BBCode basada en iconos de ABBC3. Desactiva esto para mostrar los botones BBCode predeterminados de phpBB.',
'ABBC3_QR_BBCODES' => 'Habilitar BBCodes en Respuesta rápida',
'ABBC3_QR_BBCODES_EXPLAIN' => 'Esto añade los botones BBCode a Respuesta rápida.',
'ABBC3_ICONS_TYPE' => 'Formato de imagen de la barra de iconos',
'ABBC3_ICONS_TYPE_EXPLAIN' => 'Selecciona el formato de imagen que se utilizará para los iconos de ABBC3. Ten en cuenta que solo puedes elegir un formato para todos tus iconos.',
'ABBC3_LEGEND_ICON_BAR' => 'Barra de iconos de BBCode',
'ABBC3_LEGEND_ADD_ONS' => 'Añadidos',
'PNG' => 'PNG',
'SVG' => 'SVG',

// BBCode FAQ
'ABBC3_FAQ_TITLE' => 'Advanced BBCode Box BBCodes',
'ABBC3_FAQ_TITLE' => 'BBCodes de la Caja Avanzada de BBCode',
'ABBC3_FAQ_SAMPLE_TEXT' => 'El zorro marrón rápido salta sobre el perro perezoso',
'ABBC3_FAQ_ANSWER' => '%1$s<br /><br /><strong>Ejemplo:</strong><br />%2$s<br /><br /><strong>Resultado:</strong><br />%3$s<hr />',
));
24 changes: 24 additions & 0 deletions language/es_x_tu/info_acp_abbc3.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php
/**
*
* Advanced BBCode Box [Spanish - Casual Honorifics]
*
* @copyright (c) 2020 Matt Friedman
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/

if (!defined('IN_PHPBB'))
{
exit;
}

if (empty($lang) || !is_array($lang))
{
$lang = [];
}

$lang = array_merge($lang, [
'ACP_ABBC3_MODULE' => 'Caja de BBCode Avanzado',
'ACP_ABBC3_SETTINGS' => 'Ajustes',
]);
25 changes: 25 additions & 0 deletions language/et/info_acp_abbc3.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php
/**
*
* Advanced BBCode Box
*
* @copyright (c) 2020 Matt Friedman
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/

if (!defined('IN_PHPBB'))
{
exit;
}

if (empty($lang) || !is_array($lang))
{
$lang = [];
}

$lang = array_merge($lang, [
'ACP_ABBC3_MODULE' => 'Advanced BBCode Box',
'ACP_ABBC3_SETTINGS' => 'Settings',
'LOG_ABBC3_ENABLE_FAIL' => '<strong>Advanced BBCode Box was unable to create the directory:</strong><br>%s',
]);
25 changes: 25 additions & 0 deletions language/fa/info_acp_abbc3.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php
/**
*
* Advanced BBCode Box
*
* @copyright (c) 2020 Matt Friedman
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/

if (!defined('IN_PHPBB'))
{
exit;
}

if (empty($lang) || !is_array($lang))
{
$lang = [];
}

$lang = array_merge($lang, [
'ACP_ABBC3_MODULE' => 'Advanced BBCode Box',
'ACP_ABBC3_SETTINGS' => 'Settings',
'LOG_ABBC3_ENABLE_FAIL' => '<strong>Advanced BBCode Box was unable to create the directory:</strong><br>%s',
]);
Loading

0 comments on commit 632f6c3

Please sign in to comment.