Skip to content

Commit

Permalink
Merge branch 'release/v3.3.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
iMattPro committed Jan 4, 2021
2 parents 5e2dd80 + 344a25d commit 1ef3dba
Show file tree
Hide file tree
Showing 47 changed files with 397 additions and 236 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 3.3.1 - 2020-11-07

- Joe Biden wins the US Presidential election.
- Fixed missing IMG, URL and FLASH BBCode buttons from Quick Reply.
- Fixed issues with duplication of BBCode button bars in Quick Reply when using Quick Reply Reloaded and other Quick Reply extensions.
- Fixed the names of example sites in the BBVideo/Media Embed Wizard.
- Added European Portuguese translation

## 3.3.0 - 2020-09-11

- Replaced the antiquated, pixelated GIF BBCode icons with two new SVG and PNG icon sets.
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type": "phpbb-extension",
"description": "Replace phpBB3's default BBCode buttons with icons in a customizable toolbar. This extension also adds many new and useful custom BBCodes giving users more ways to customize their posts, including BBvideo (embed videos from dozens of media sites). Custom BBCodes can be arranged and sorted in any order and assigned to specific usergroups (such as Moderators and Admins only).",
"homepage": "https://github.com/iMattPro/abbc3",
"version": "3.3.0",
"version": "3.3.1",
"keywords": ["phpbb", "extension", "bbcodes", "bbvideo"],
"license": "GPL-2.0-only",
"authors": [
Expand Down
1 change: 1 addition & 0 deletions config/services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ services:
vse.abbc3.bbcodes_display:
class: vse\abbc3\core\bbcodes_display
arguments:
- '@auth'
- '@config'
- '@dbal.conn'
- '@ext.manager'
Expand Down
10 changes: 6 additions & 4 deletions controller/wizard.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,18 +102,20 @@ protected function generate_bbvideo_wizard()
// check that siteID is not already a custom bbcode and that it exists in MediaEmbed
if (!isset($configurator->BBCodes[$siteId]) && $configurator->tags->exists($siteId))
{
$bbvideo_sites[$siteId] = isset($siteConfig['example']) ? current((array) $siteConfig['example']) : '';
$bbvideo_sites[$siteId] = [
'name' => $siteConfig['name'],
'example' => isset($siteConfig['example']) ? current((array) $siteConfig['example']) : '',
];
}
}

ksort($bbvideo_sites);

$this->cache->put('_bbvideo_sites', $bbvideo_sites);
}

ksort($bbvideo_sites);

$this->template->assign_vars([
'ABBC3_BBVIDEO_SITES' => $bbvideo_sites,
'ABBC3_BBVIDEO_LINK_EX' => isset($bbvideo_sites[self::BBVIDEO_DEFAULT]) ? $bbvideo_sites[self::BBVIDEO_DEFAULT] : '',
'ABBC3_BBVIDEO_DEFAULT' => self::BBVIDEO_DEFAULT,
]);
}
Expand Down
38 changes: 37 additions & 1 deletion core/bbcodes_display.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

namespace vse\abbc3\core;

use phpbb\auth\auth;
use phpbb\config\config;
use phpbb\db\driver\driver_interface;
use phpbb\extension\manager;
Expand All @@ -21,6 +22,9 @@
*/
class bbcodes_display
{
/** @var auth */
protected $auth;

/** @var config */
protected $config;

Expand All @@ -42,15 +46,17 @@ class bbcodes_display
/**
* Constructor
*
* @param auth $auth Auth object
* @param config $config Config object
* @param driver_interface $db Database connection
* @param manager $extension_manager Extension manager object
* @param user $user User object
* @param string $root_path Path to phpBB root
* @access public
*/
public function __construct(config $config, driver_interface $db, manager $extension_manager, user $user, $root_path)
public function __construct(auth $auth, config $config, driver_interface $db, manager $extension_manager, user $user, $root_path)
{
$this->auth = $auth;
$this->config = $config;
$this->db = $db;
$this->extension_manager = $extension_manager;
Expand Down Expand Up @@ -183,4 +189,34 @@ protected function load_memberships()
}
$this->db->sql_freeresult($result);
}

/**
* Set BBCode statuses for posting IMG, URL, FLASH and QUOTE in a forum.
*
* @param int $forum_id The forum identifier
* @return array An array containing booleans for each BBCode status
*/
public function bbcode_statuses($forum_id)
{
$bbcode_status = $this->config['allow_bbcode'] && $this->auth->acl_get('f_bbcode', $forum_id);
$url_status = $this->config['allow_post_links'];
$img_status = $flash_status = false;
$quote_status = true;

if ($bbcode_status)
{
$img_status = $this->auth->acl_get('f_img', $forum_id);
$flash_status = $this->auth->acl_get('f_flash', $forum_id) && $this->config['allow_post_flash'];

display_custom_bbcodes();
}

return [
'S_BBCODE_ALLOWED' => $bbcode_status,
'S_BBCODE_IMG' => $img_status,
'S_BBCODE_FLASH' => $flash_status,
'S_BBCODE_QUOTE' => $quote_status,
'S_LINKS_ALLOWED' => $url_status,
];
}
}
2 changes: 1 addition & 1 deletion core/bbcodes_help.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public function faq()
'ABBC3_MARQUEE_HELPLINE' => "[marq=left]{$example_text}[/marq]",
'ABBC3_SPOILER_HELPLINE' => "[spoil]{$example_text}[/spoil]",
'ABBC3_HIDDEN_HELPLINE' => "[hidden]{$example_text}[/hidden]",
'ABBC3_MOD_HELPLINE' => "[mod=\"{$this->language->lang('USERNAME')}\"]{$example_text}[/mod]",
'ABBC3_MOD_HELPLINE' => "[mod={$this->language->lang('USERNAME')}]{$example_text}[/mod]",
'ABBC3_OFFTOPIC_HELPLINE' => "[offtopic]{$example_text}[/offtopic]",
'ABBC3_NFO_HELPLINE' => '[nfo]༼ つ ◕_◕ ༽つ ʕ•ᴥ•ʔ ¯\_(ツ)_/¯[/nfo]',
'ABBC3_BBVIDEO_HELPLINE' => '[bbvideo]http://www.youtube.com/watch?v=sP4NMoJcFd4[/bbvideo]',
Expand Down
10 changes: 6 additions & 4 deletions event/listener.php
Original file line number Diff line number Diff line change
Expand Up @@ -209,26 +209,28 @@ public function add_bbcode_faq($event)

/**
* If Quick Reply allowed, set our quick_reply property.
* Added compatibility check for Quick Reply Reloaded (qr_bbcode).
*
* @access public
*/
public function set_quick_reply()
{
$this->quick_reply = $this->config['abbc3_qr_bbcodes'];
$this->quick_reply = $this->config['abbc3_qr_bbcodes'] && !$this->config['qr_bbcode'];
}

/**
* Add BBCodes to Quick Reply.
*
* @param \phpbb\event\data $event The event object
* @access public
*/
public function add_to_quickreply()
public function add_to_quickreply($event)
{
if ($this->quick_reply)
{
$this->user->add_lang('posting');
$this->template->assign_var('S_BBCODE_ALLOWED', true);
display_custom_bbcodes();
$this->template->assign_var('S_ABBC3_QUICKREPLY', true);
$this->template->assign_vars($this->bbcodes_display->bbcode_statuses($event['forum_id']));
}
}
}
5 changes: 0 additions & 5 deletions language/ar/abbc3.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,7 @@
// BBCode Wizards
'ABBC3_BBCODE_WIZ_SUBMIT' => 'إدخال إلى الرسالة',
'ABBC3_BBCODE_WIZ_EXAMPLE' => 'مثال',

// BBvideo Wizard
'ABBC3_BBVIDEO_SITES' => 'مواقع الفيديوهات المُتاحة',
'ABBC3_BBVIDEO_LINK' => 'رابط الفيديو',

// URL Wizard
'ABBC3_URL_LINK' => 'إدخال رابط الموقع',
'ABBC3_URL_DESCRIPTION' => 'وصف إختياري',
'ABBC3_URL_EXAMPLE' => 'http://www.alhitary.net',
Expand Down
5 changes: 0 additions & 5 deletions language/bg/abbc3.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,7 @@
// BBCode Wizards
'ABBC3_BBCODE_WIZ_SUBMIT' => 'Вмъкни в съобщението',
'ABBC3_BBCODE_WIZ_EXAMPLE' => 'Пример',

// BBvideo Wizard
'ABBC3_BBVIDEO_SITES' => 'Сайтове с позволено',
'ABBC3_BBVIDEO_LINK' => 'Видео URL',

// URL Wizard
'ABBC3_URL_LINK' => 'Вмъкни URL',
'ABBC3_URL_DESCRIPTION' => 'Допълнително обяснение',
'ABBC3_URL_EXAMPLE' => 'http://www.phpbb.com',
Expand Down
5 changes: 0 additions & 5 deletions language/cs/abbc3.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,7 @@
// BBCode Wizards
'ABBC3_BBCODE_WIZ_SUBMIT' => 'Vložit do zprávy',
'ABBC3_BBCODE_WIZ_EXAMPLE' => 'Například',

// BBvideo Wizard
'ABBC3_BBVIDEO_SITES' => 'Povolené stránky',
'ABBC3_BBVIDEO_LINK' => 'UR videa',

// URL Wizard
'ABBC3_URL_LINK' => 'Zadat URl adresu',
'ABBC3_URL_DESCRIPTION' => 'Volitelný popis',
'ABBC3_URL_EXAMPLE' => 'https://forums.volgeop.eu/',
Expand Down
89 changes: 42 additions & 47 deletions language/de/abbc3.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@
$lang = array_merge($lang, array(
// Hidden BBCode
'ABBC3_HIDDEN_ON' => 'Verstecken ist aktiviert',
'ABBC3_HIDDEN_OFF' => 'Verstecken ist deaktiviert (nur für Mitglieder)',
'ABBC3_HIDDEN_EXPLAIN' => 'Um diesen versteckten Text lesen zu können, mußt du registriert und angemeldet sein.',
'ABBC3_HIDDEN_OFF' => 'Verstecken ist deaktiviert (nur für Mitglieder sichtbar)',
'ABBC3_HIDDEN_EXPLAIN' => 'Um diesen versteckten Text lesen zu können, musst du registriert und angemeldet sein.',

// Spoiler BBCode
'ABBC3_SPOILER_SHOW' => '► Text zeigen',
'ABBC3_SPOILER_SHOW' => '► Text anzeigen',
'ABBC3_SPOILER_HIDE' => '▼ Text verstecken',

// Off Topic BBCode
'ABBC3_OFFTOPIC' => 'Off Topic',
'ABBC3_OFFTOPIC' => 'Off-topic',

// Font BBCode
'ABBC3_FONT_BBCODE' => 'Schriftarten',
Expand All @@ -42,8 +42,8 @@
'ABBC3_FONT_WIN' => 'Windows Schriftarten',

// BBCode help lines
'ABBC3_ALIGN_HELPLINE' => 'Ausrichten von Text: [align=Zentrierter|Linksbündiger|Rechtsbündiger|Block]Text[/align]',
'ABBC3_BBVIDEO_HELPLINE' => 'Füge ein Web Video hinzu: [bbvideo]http://Video URL[/bbvideo]',
'ABBC3_ALIGN_HELPLINE' => 'Ausrichten von Text: [align=center|left|right|justify]Text[/align] (zentriert, linksbündig, rechtsbündig und blocksatz)',
'ABBC3_BBVIDEO_HELPLINE' => 'Webvideo hinzufügen: [bbvideo]http://Video URL[/bbvideo]',
'ABBC3_BLUR_HELPLINE' => 'Unscharfer Text: [blur=color]Text[/blur]',
'ABBC3_DIR_HELPLINE' => 'Text Richtung (links nach rechts/rechts nach links): [dir=ltr|rtl]Text[/dir]',
'ABBC3_DROPSHADOW_HELPLINE' => 'Text mit Schattenfall: [dropshadow=color]Text[/dropshadow]',
Expand All @@ -55,70 +55,65 @@
'ABBC3_HIGHLIGHT_HELPLINE' => 'Text hervorheben (Gelb): [highlight=yellow]text[/highlight] Tipp: Du kannst auch color=#FF0000 benutzen',
'ABBC3_MARQUEE_HELPLINE' => 'Lauftext (nach unten|oben|links|rechts): [marq=up|down|left|right]text[/marq]',
'ABBC3_MOD_HELPLINE' => 'Moderator Nachricht: [mod=username]text[/mod]',
'ABBC3_NFO_HELPLINE' => 'NFO ASCII-Art Text: [nfo]Text[/nfo]',
'ABBC3_OFFTOPIC_HELPLINE' => 'Off Topic Nachricht: [offtopic]Text[/offtopic]',
'ABBC3_NFO_HELPLINE' => 'NFO-ASCII-Art-Text: [nfo]Text[/nfo]',
'ABBC3_OFFTOPIC_HELPLINE' => 'Off-topic Nachricht: [offtopic]Text[/offtopic]',
'ABBC3_PREFORMAT_HELPLINE' => 'Vorformatierter Text: [pre]Text[/pre]',
'ABBC3_SHADOW_HELPLINE' => 'Text mit Schatten: [shadow=color]Text[/shadow]',
'ABBC3_SOUNDCLOUD_HELPLINE' => 'SoundCloud Link: [soundcloud]http://soundcloud.com/Benutzername/Lied-Titel[/soundcloud]',
'ABBC3_SOUNDCLOUD_HELPLINE' => 'SoundCloud-Link: [soundcloud]http://soundcloud.com/Benutzername/Lied-Titel[/soundcloud]',
'ABBC3_SPOILER_HELPLINE' => 'Spoiler Nachricht: [spoil]Text[/spoil]',
'ABBC3_STRIKE_HELPLINE' => 'Text durchgestrichen: [s]Text[/s]',
'ABBC3_SUB_HELPLINE' => 'Tiefgestellter Text: [sub]Text[/sub]',
'ABBC3_SUP_HELPLINE' => 'Hochgestellter Text: [sup]Text[/sup]',
'ABBC3_YOUTUBE_HELPLINE' => 'YouTube Video: [youtube]http://Youtube Url[/youtube]',
'ABBC3_STRIKE_HELPLINE' => 'Durchgestrichen: [s]Text[/s]',
'ABBC3_SUB_HELPLINE' => 'Tiefgestellt: [sub]Text[/sub]',
'ABBC3_SUP_HELPLINE' => 'Hochgestellt: [sup]Text[/sup]',
'ABBC3_YOUTUBE_HELPLINE' => 'YouTube-Video: [youtube]http://Youtube Url[/youtube]',

// Utility BBCodes
'ABBC3_COPY_BBCODE' => 'Den markierten Text kopieren',
'ABBC3_PASTE_BBCODE' => 'Den kopierten Text einfügen',
'ABBC3_PASTE_ERROR' => 'Du mußt erst einen Text kopieren, bevor du ihn einfügen kannst',
'ABBC3_PLAIN_BBCODE' => 'Entferne alle BBCodes aus dem markierten Text',
'ABBC3_NOSELECT_ERROR' => 'Du mußt erst einen Text markieren',
'ABBC3_COPY_BBCODE' => 'Markierten Text kopieren',
'ABBC3_PASTE_BBCODE' => 'Kopierten Text einfügen',
'ABBC3_PASTE_ERROR' => 'Du musst erst einen Text kopieren, bevor du ihn einfügen kannst',
'ABBC3_PLAIN_BBCODE' => 'Alle BBCodes aus dem markierten Text entfernen',
'ABBC3_NOSELECT_ERROR' => 'Es wurde kein Text markiert',

// BBCode Wizards
'ABBC3_BBCODE_WIZ_SUBMIT' => 'In die Nachricht einfügen',
'ABBC3_BBCODE_WIZ_EXAMPLE' => 'Beispiel',

// BBvideo Wizard
'ABBC3_BBVIDEO_SITES' => 'Zugelassene Sites',
'ABBC3_BBVIDEO_LINK' => 'Video URL',

// URL Wizard
'ABBC3_URL_LINK' => 'Fügen Sie eine URL',
'ABBC3_BBVIDEO_SITES' => 'Zugelassene Websites',
'ABBC3_URL_LINK' => 'Website-URL einfügen',
'ABBC3_URL_DESCRIPTION' => 'Optionale Beschreibung',
'ABBC3_URL_EXAMPLE' => 'http://www.phpbb.com',

// Pipe tables
'ABBC3_PIPE_TABLES' => 'Create tables',
'ABBC3_PIPE_TABLES_EXPLAIN' => 'Create tables using any of these ASCII-style formats.',
'ABBC3_PIPE_DOCUMENTATION' => 'User Guide',
'ABBC3_PIPE_SIMPLE' => 'Simple table',
'ABBC3_PIPE_COMPACT' => 'Compact table',
'ABBC3_PIPE_COMPACT_EXPLAIN'=> 'The outer pipes and spaces around pipes are optional.',
'ABBC3_PIPE_ALIGNMENT' => 'Text alignment',
'ABBC3_PIPE_TABLES' => 'Tabellen erstellen',
'ABBC3_PIPE_TABLES_EXPLAIN' => 'Erstelle Tabellen indem du die folgenden ASCII-Formate verwendest.',
'ABBC3_PIPE_DOCUMENTATION' => 'Benutzerhandbuch',
'ABBC3_PIPE_SIMPLE' => 'Einfache Tabelle',
'ABBC3_PIPE_COMPACT' => 'Kompakte Tabelle',
'ABBC3_PIPE_COMPACT_EXPLAIN'=> 'Die äußeren senkrechten Striche und die Leerzeichen um die senkrechten Striche sind optional.',
'ABBC3_PIPE_ALIGNMENT' => 'Textausrichtung',
// Pipe Table Example Code: DO NOT NEED TO TRANSLATE THESE EXAMPLES
'ABBC3_PIPE_SIMPLE_EX' => "| Header 1 | Header 2 |\n|----------|----------|\n| Cell 1 | Cell 2 |",
'ABBC3_PIPE_COMPACT_EX' => "Header 1|Header 2\n-|-\nCell 1|Cell 2",
'ABBC3_PIPE_ALIGNMENT_EX' => "| Left | Center | Right |\n|:-----|:------:|------:|\n| x | x | x |",

// ACP
'ABBC3_BBCODE_ORDERED' => 'Der BBCode Auftrag wurde neu synchronisiert.',
'ABBC3_BBCODE_GROUP' => 'Gruppen verwalten, die diese BBCode verwenden können.',
'ABBC3_BBCODE_GROUP_INFO' => 'Wenn keine Gruppen ausgewählt sind, können alle Benutzer diese BBCode verwenden. Verwende CTRL+CLICK (oderr CMD+CLICK auf Mac) mehr als eine Gruppe zu aktivieren/deaktivieren.',
'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' => 'Gruppen verwalten, die diesen BBCode verwenden können.',
'ABBC3_BBCODE_GROUP_INFO' => 'Wenn keine Gruppen ausgewählt sind, können alle Benutzer diesen BBCode verwenden. Verwende STRG+CLICK (oder CMD+CLICK auf Mac) mehr als eine Gruppe zu aktivieren/deaktivieren.',
'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 <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> auf.',
'ABBC3_PIPES' => 'Aktiviere das „Pipe Table“-Plug-in.',
'ABBC3_PIPES_EXPLAIN' => 'Mit dem „Pipe Table“-Plug-in können Benutzer Tabellen in ihren Beiträgen und Privaten Nachrichten mit Hilfe der Markdown-Syntax erstellen.',
'ABBC3_BBCODE_BAR' => 'Aktiviere die BBCode-Menüleiste',
'ABBC3_BBCODE_BAR_EXPLAIN' => 'Falls aktiviert, wird die ABBC3s iconbasierte BBCode-Menüleiste angezeigt. Sofern deaktiviert, wird die Standard phpBB BBCode-Menüleiste verwendet.',
'ABBC3_QR_BBCODES' => 'Aktiviere BBCodes bei der Schnellantwort',
'ABBC3_QR_BBCODES_EXPLAIN' => 'Falls aktiviert, wird bei der Schnellantwort die BBCode-Menüleiste angezeigt.',
'ABBC3_ICONS_TYPE' => 'Iconformat der Menüleiste',
'ABBC3_ICONS_TYPE_EXPLAIN' => 'Wähle das Iconformat, das für die ABBC3s Icons verwendet wird. Bitte beachte, dass nur ein Format für alle Icons gewählt werden kann.',
'ABBC3_LEGEND_ICON_BAR' => 'BBCode-Menüleiste',
'ABBC3_LEGEND_ADD_ONS' => 'Add-Ons',
'PNG' => 'PNG',
'SVG' => 'SVG',

// BBCode FAQ
'ABBC3_FAQ_TITLE' => 'Advanced BBCode Box BBCodes',
'ABBC3_FAQ_SAMPLE_TEXT' => 'The quick brown fox jumps over the lazy dog',
'ABBC3_FAQ_ANSWER' => '%1$s<br /><br /><strong>Example:</strong><br />%2$s<br /><br /><strong>Result:</strong><br />%3$s<hr />',
'ABBC3_FAQ_SAMPLE_TEXT' => 'Der schnelle braune Fuchs springt über den faulen Hund',
'ABBC3_FAQ_ANSWER' => '%1$s<br /><br /><strong>Beispiel:</strong><br />%2$s<br /><br /><strong>Ergebnis:</strong><br />%3$s<hr />',
));
6 changes: 3 additions & 3 deletions language/de/info_acp_abbc3.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
*
* Advanced BBCode Box
* Advanced BBCode Box [German]
*
* @copyright (c) 2020 Matt Friedman
* @license GNU General Public License, version 2 (GPL-2.0)
Expand All @@ -20,6 +20,6 @@

$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',
'ACP_ABBC3_SETTINGS' => 'Einstellungen',
'LOG_ABBC3_ENABLE_FAIL' => '<strong>Advanced BBCode Box konnte das folgende Verzeichnis nicht erstellen:</strong><br>%s',
]);
5 changes: 0 additions & 5 deletions language/en/abbc3.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,7 @@
// BBCode Wizards
'ABBC3_BBCODE_WIZ_SUBMIT' => 'Insert into message',
'ABBC3_BBCODE_WIZ_EXAMPLE' => 'Example',

// BBvideo Wizard
'ABBC3_BBVIDEO_SITES' => 'Allowed sites',
'ABBC3_BBVIDEO_LINK' => 'Video URL',

// URL Wizard
'ABBC3_URL_LINK' => 'Enter a site URL',
'ABBC3_URL_DESCRIPTION' => 'Optional description',
'ABBC3_URL_EXAMPLE' => 'http://www.phpbb.com',
Expand Down
5 changes: 0 additions & 5 deletions language/es/abbc3.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,7 @@
// BBCode Wizards
'ABBC3_BBCODE_WIZ_SUBMIT' => 'Insertar en el mensaje',
'ABBC3_BBCODE_WIZ_EXAMPLE' => 'Ejemplo',

// BBvideo Wizard
'ABBC3_BBVIDEO_SITES' => 'Sitios permitidos',
'ABBC3_BBVIDEO_LINK' => 'URL del video',

// URL Wizard
'ABBC3_URL_LINK' => 'Añadir una URL',
'ABBC3_URL_DESCRIPTION' => 'Descripción opcional',
'ABBC3_URL_EXAMPLE' => 'http://www.phpbb.com',
Expand Down
Loading

0 comments on commit 1ef3dba

Please sign in to comment.