Skip to content

Commit

Permalink
Merge branch 'release/1.4.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
Sommerregen committed Dec 6, 2015
2 parents c99bf3f + 8e1b4be commit 722cfb5
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v1.4.2
## 12/06/2015

1. [](#new)
* Added French translations [#8](https://github.com/Sommerregen/grav-plugin-external-links/pull/8/files) (Thanks to @MATsxm)

# v1.4.1
## 11/18/2015

Expand All @@ -15,7 +21,7 @@
* Improved code
* Updated docs
3. [](#bugfix)
* Fixed[#7](https://github.com/Sommerregen/grav-plugin-external-links/issues/7) (Possible issue with malformed URLs)
* Fixed [#7](https://github.com/Sommerregen/grav-plugin-external-links/issues/7) (Possible issue with malformed URLs)
* Fixes `external_links` filter function

# v1.3.1
Expand Down
2 changes: 1 addition & 1 deletion blueprints.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: External Links
version: 1.4.1
version: 1.4.2
description: "This plugin adds small icons to external and mailto links, informing users the link will take them to a new site or open their email client."
icon: external-link
author:
Expand Down
4 changes: 2 additions & 2 deletions external_links.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* External Links v1.4.1
* External Links v1.4.2
*
* This plugin adds small icons to external and mailto links, informing
* users the link will take them to a new site or open their email client.
Expand All @@ -9,7 +9,7 @@
* http://benjamin-regler.de/license/
*
* @package External Links
* @version 1.4.1
* @version 1.4.2
* @link <https://github.com/sommerregen/grav-plugin-external-links>
* @author Benjamin Regler <[email protected]>
* @copyright 2015, Benjamin Regler
Expand Down
51 changes: 51 additions & 0 deletions languages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,54 @@ en:
MODE_HELP: "active = process and parse all links; passive = parse links, but don't set CSS classes"
MODE_ACTIVE: "Active - Process and parse all links"
MODE_PASSIVE: "Passive - Parse links, but don't set CSS classes"

# French
fr:
PLUGINS:
EXTERNAL_LINKS:
GLOBAL_CONFIG: "Configuration globale du plugin"
DEFAULT_CONFIG: "Configuration des valeurs par défaut pour les liens externes"
SPECIFIC_CONFIG: "Configuration globale et de pages spécifiques"
PLUGIN_STATUS: "Statut du plugin"
BUILTIN_CSS: "Utiliser les CSS intégrés"

WEIGHT: "Ordre d'exécution"
EXTERNAL_LINKS: "Liens externes"

EXCLUDE:
SECTION: "Exclusion"
SECTION_HELP: "Exclure les liens avec des classes spécifiques ou des domaines comme étant reconnus comme liens externes."

CLASSES: "Exclure tous les liens avec cette classe"
CLASSES_HELP: "Liste des classes séparées par des virgules."

DOMAINS: "Une liste des domaines à exclure"
DOMAINS_HELP: "Liste des domaines séparés par des virgules ex : _localhost/*_ (les expressions régulières peuvent être utilisées)"

LINKS:
SECTION: "Liens"
SECTION_HELP: "Définir les liens commençant par <code>www.</code> et ceux de la liste des schémas définis comme étant des liens externes."

WWW: "Liens WWW"
WWW_HELP: "Reconnaître automatiquement tout lien commencant par 'www.' comme étant un lien externe."

SCHEMES: "Schémas autorisés"
SCHEMES_HELP: "Liste des schémas autorisés"

PROCESS: "Filtrer les liens externes de la page"

TITLE: "Afficher le titre par défaut pour les liens externes"
TITLE_MESSAGE: "Ce lien va vous diriger vers un site externe. Nous ne sommes pas responsables de son contenu."
NO_FOLLOW: 'Ajouter <code>rel="nofollow"</code> à tous les liens externes'

TARGET: "Spécifier la cible dans laquelle le contenu du lien doit s'afficher."
TARGET_BLANK: "_blank | Afficher dans une nouvelle fenêtre"
TARGET_SELF: "_self | Afficher dans la même fenêtre"
TARGET_PARENT: "_parent | Afficher dans le cadre parent (frame)"
TARGET_TOP: "_top | Afficher dans le cadre racine"

MODE: "Mode"
MODE_HELP: "actif = analyser et procéder pour tous les liens; passif = analyser les liens mais ne pas appliquer les classes CSS"
MODE_ACTIVE: "Actif - Analyser et procéder pour tous les liens"
MODE_PASSIVE: "Passif - Analyser les liens mais ne pas appliquer les classes CSS"

0 comments on commit 722cfb5

Please sign in to comment.