Version Description
- Update plugin and BFAL to all fire on
init
hook instead of mix ofplugins_loaded
andafter_theme_setup
. This should fix issues in which icons don't show up when BFAL is used in other plugins. - Update iconpicker JS to avoid conflict that arose from preventing subsequent
mouseup
event listeners from firing. - Change appearance of iconpicker button to match default buttons.
Download this release
Release Info
Developer | McGuive7 |
Plugin | Better Font Awesome |
Version | 1.3.3 |
Comparing to | |
See all releases |
Code changes from version 1.3.2 to 1.3.3
- README.md +53 -0
- better-font-awesome.php +5 -5
- languages/better-font-awesome.pot +1046 -70
- lib/better-font-awesome-library/README.md +2 -4
- lib/better-font-awesome-library/better-font-awesome-library.php +15 -12
- lib/better-font-awesome-library/css/admin-styles.css +6 -0
- lib/better-font-awesome-library/lib/fallback-font-awesome/css/font-awesome.css.map +0 -0
- lib/better-font-awesome-library/lib/fallback-font-awesome/fonts/fontawesome-webfont.eot +0 -0
- lib/better-font-awesome-library/lib/fallback-font-awesome/fonts/fontawesome-webfont.svg +0 -0
- lib/better-font-awesome-library/lib/fallback-font-awesome/fonts/fontawesome-webfont.ttf +0 -0
- lib/better-font-awesome-library/lib/fallback-font-awesome/fonts/fontawesome-webfont.woff +0 -0
- lib/better-font-awesome-library/lib/fallback-font-awesome/fonts/fontawesome-webfont.woff2 +0 -0
- lib/better-font-awesome-library/lib/fontawesome-iconpicker/css/fontawesome-iconpicker.css +0 -0
- lib/better-font-awesome-library/lib/fontawesome-iconpicker/css/fontawesome-iconpicker.min.css +0 -0
- lib/better-font-awesome-library/lib/fontawesome-iconpicker/js/fontawesome-iconpicker.js +0 -3
- lib/better-font-awesome-library/lib/fontawesome-iconpicker/js/fontawesome-iconpicker.min.js +1 -1
- license.txt +339 -0
- readme.txt +13 -1
README.md
ADDED
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Better Font Awesome #
|
2 |
+
|
3 |
+
The better Font Awesome plugin for WordPress.
|
4 |
+
|
5 |
+
__WordPress Plugin Page:__ [http://wordpress.org/plugins/better-font-awesome/](http://wordpress.org/plugins/better-font-awesome/)
|
6 |
+
__Contributors:__ [Mickey Kay](http://profiles.wordpress.org/mcguive7/), [MIGHTYminnow](http://profiles.wordpress.org/mightyminnow/)
|
7 |
+
__License:__ [GPL-2.0+](http://www.gnu.org/licenses/gpl-2.0.html)
|
8 |
+
|
9 |
+
## Introduction ##
|
10 |
+
Better Font Awesome allows you to automatically integrate the latest available version of [Font Awesome](http://fontawesome.io/) into your WordPress project, along with accompanying CSS, shortcode, and TinyMCE icon shortcode generator. Furthermore, it generates all the data you need to create new functionality of your own.
|
11 |
+
|
12 |
+
## Screenshots ##
|
13 |
+
![The Better Font Awesome settings page](https://raw.githubusercontent.com/MickeyKay/better-font-awesome/master/assets/screenshot-1.gif?raw=true)
|
14 |
+
_The icon shortcode dropdown selector_
|
15 |
+
|
16 |
+
---
|
17 |
+
|
18 |
+
![The icon shortcode dropdown selector](https://raw.githubusercontent.com/MickeyKay/better-font-awesome/master/assets/screenshot-2.png?raw=true)
|
19 |
+
_The Better Font Awesome settings page_
|
20 |
+
|
21 |
+
## Installation ##
|
22 |
+
The Better Font Awesome plugin contains some [Git submodules](http://git-scm.com/book/en/Git-Tools-Submodules) that will require you to recursively clone this repo:
|
23 |
+
```
|
24 |
+
git clone --recursive https://github.com/MickeyKay/better-font-awesome.git
|
25 |
+
```
|
26 |
+
|
27 |
+
Alternately, if you've already cloned the repo and need to add the submodules, you can run the following command:
|
28 |
+
```
|
29 |
+
// Initialize all submodules.
|
30 |
+
git submodule update --init --recursive
|
31 |
+
```
|
32 |
+
|
33 |
+
## The Better Font Awesome Library ##
|
34 |
+
Better Font Awesome is built around the Better Font Awesome Library, which is available for standalone use in plugins and themes: [https://github.com/MickeyKay/better-font-awesome-library](https://github.com/MickeyKay/better-font-awesome-library)
|
35 |
+
|
36 |
+
## Updates ##
|
37 |
+
|
38 |
+
This plugin supports the [GitHub Updater](https://github.com/afragen/github-updater) plugin, so if you install that, this plugin becomes automatically updateable direct from GitHub.
|
39 |
+
|
40 |
+
## Credits ##
|
41 |
+
Special thanks to the following folks and their plugins for inspiration and support:
|
42 |
+
* [Font Awesome Icons](http://wordpress.org/plugins/font-awesome/ "Font Awesome Icons") by [Rachel Baker](http://rachelbaker.me/ "Rachel Baker")
|
43 |
+
* [Font Awesome More Icons](https://wordpress.org/plugins/font-awesome-more-icons/ "Font Awesome More Icons") by [Web Guys](http://webguysaz.com/ "Web Guys")
|
44 |
+
* [Font Awesome Shortcodes](https://wordpress.org/plugins/font-awesome-shortcodes/) by [FoolsRun](https://profiles.wordpress.org/foolsrun/ "FoolsRun")
|
45 |
+
* Dmitriy Akulov and the awesome folks at [jsDelivr](http://www.jsdelivr.com/)
|
46 |
+
|
47 |
+
And many thanks to the following folks who helped with testing and QA:
|
48 |
+
* [Jeffrey Dubinksy](http://vanishingforests.org/)
|
49 |
+
* [Neil Gee](https://twitter.com/_neilgee)
|
50 |
+
* [Michael Beil](https://twitter.com/MichaelBeil)
|
51 |
+
* [Rob Neue](https://twitter.com/rob_neu)
|
52 |
+
* [Gary Jones](https://twitter.com/GaryJ)
|
53 |
+
* [Jan Hoek](https://twitter.com/JanHoekdotCom)
|
better-font-awesome.php
CHANGED
@@ -12,7 +12,7 @@
|
|
12 |
* Plugin Name: Better Font Awesome
|
13 |
* Plugin URI: http://wordpress.org/plugins/better-font-awesome
|
14 |
* Description: The ultimate Font Awesome icon plugin for WordPress.
|
15 |
-
* Version: 1.3.
|
16 |
* Author: MIGHTYminnow & Mickey Kay
|
17 |
* Author URI: mickey@mickeykaycreative.com
|
18 |
* License: GPLv2+
|
@@ -21,11 +21,11 @@
|
|
21 |
* GitHub Plugin URI: https://github.com/MickeyKay/better-font-awesome
|
22 |
*/
|
23 |
|
24 |
-
add_action( '
|
25 |
/**
|
26 |
* Initialize the Better Font Awesome plugin.
|
27 |
*
|
28 |
-
* Start up Better Font Awesome early on the
|
29 |
* order to load it before any other plugins that might also use the Better Font
|
30 |
* Awesome Library.
|
31 |
*
|
@@ -163,7 +163,7 @@ class Better_Font_Awesome_Plugin {
|
|
163 |
$this->initialize_better_font_awesome_library( $this->options );
|
164 |
|
165 |
// Load the plugin text domain.
|
166 |
-
|
167 |
|
168 |
// Set up the admin settings page.
|
169 |
add_action( 'admin_menu', array( $this, 'add_settings_page' ) );
|
@@ -288,7 +288,7 @@ class Better_Font_Awesome_Plugin {
|
|
288 |
'load_shortcode' => true,
|
289 |
'load_tinymce_plugin' => true,
|
290 |
);
|
291 |
-
|
292 |
$this->bfa_lib = Better_Font_Awesome_Library::get_instance( $args );
|
293 |
|
294 |
}
|
12 |
* Plugin Name: Better Font Awesome
|
13 |
* Plugin URI: http://wordpress.org/plugins/better-font-awesome
|
14 |
* Description: The ultimate Font Awesome icon plugin for WordPress.
|
15 |
+
* Version: 1.3.3
|
16 |
* Author: MIGHTYminnow & Mickey Kay
|
17 |
* Author URI: mickey@mickeykaycreative.com
|
18 |
* License: GPLv2+
|
21 |
* GitHub Plugin URI: https://github.com/MickeyKay/better-font-awesome
|
22 |
*/
|
23 |
|
24 |
+
add_action( 'init', 'bfa_start', 5 );
|
25 |
/**
|
26 |
* Initialize the Better Font Awesome plugin.
|
27 |
*
|
28 |
+
* Start up Better Font Awesome early on the init hook, priority 5, in
|
29 |
* order to load it before any other plugins that might also use the Better Font
|
30 |
* Awesome Library.
|
31 |
*
|
163 |
$this->initialize_better_font_awesome_library( $this->options );
|
164 |
|
165 |
// Load the plugin text domain.
|
166 |
+
$this->load_text_domain();
|
167 |
|
168 |
// Set up the admin settings page.
|
169 |
add_action( 'admin_menu', array( $this, 'add_settings_page' ) );
|
288 |
'load_shortcode' => true,
|
289 |
'load_tinymce_plugin' => true,
|
290 |
);
|
291 |
+
|
292 |
$this->bfa_lib = Better_Font_Awesome_Library::get_instance( $args );
|
293 |
|
294 |
}
|
languages/better-font-awesome.pot
CHANGED
@@ -1,156 +1,1132 @@
|
|
1 |
-
# Copyright (C)
|
2 |
-
# This file is distributed under the
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Better Font Awesome 1.
|
6 |
-
"Report-Msgid-Bugs-To:
|
7 |
-
"
|
|
|
8 |
"MIME-Version: 1.0\n"
|
9 |
-
"Content-Type: text/plain; charset=
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"PO-Revision-Date:
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
|
14 |
|
15 |
-
#. #-#-#-#-# plugin.pot (Better Font Awesome 1.0.2) #-#-#-#-#
|
16 |
#. Plugin Name of the plugin/theme
|
17 |
-
#: better-font-awesome.php:179 better-font-awesome.php:216
|
18 |
-
#: lib/better-font-awesome-library/better-font-awesome-library.php:1016
|
19 |
msgid "Better Font Awesome"
|
20 |
msgstr ""
|
21 |
|
22 |
-
#: better-font-awesome.php:217
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
msgid ""
|
24 |
-
"It appears that Better Font Awesome is missing it's <a
|
25 |
-
"com/MickeyKay/better-font-awesome-library\"
|
26 |
-
"a>, which typically occurs when cloning the
|
27 |
-
"all submodules. Please refer to the
|
28 |
-
"MickeyKay/better-font-awesome\"
|
29 |
-
"a> for details on how to
|
30 |
-
"
|
31 |
-
"
|
32 |
-
"
|
33 |
-
"
|
34 |
-
"
|
35 |
-
"
|
|
|
|
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: better-font-awesome.php:218
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
msgid "Back to the plugins page →"
|
40 |
msgstr ""
|
41 |
|
42 |
-
#: better-font-awesome.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
msgid "Version"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: better-font-awesome.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
msgid "Use minified CSS"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: better-font-awesome.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
msgid ""
|
52 |
"Whether to include the minified version of the CSS (checked), or the "
|
53 |
"unminified version (unchecked)."
|
54 |
msgstr ""
|
55 |
|
56 |
-
#: better-font-awesome.php:373
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
msgid "Remove existing Font Awesome"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: better-font-awesome.php:379
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
msgid ""
|
62 |
-
"
|
63 |
-
"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: better-font-awesome.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
msgid "Always Latest"
|
68 |
msgstr ""
|
69 |
|
70 |
-
#: better-font-awesome.php:456
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
msgid ""
|
72 |
"Version selection is currently unavailable. The attempt to reach the "
|
73 |
"jsDelivr API server failed with the following error: %s"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: better-font-awesome.php:463
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
msgid "Font Awesome will still render using version: %s"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: better-font-awesome.php:
|
81 |
-
#: lib/better-font-awesome-library/better-font-awesome-library.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
msgid ""
|
83 |
"This may be the result of a temporary server or connectivity issue which "
|
84 |
"will resolve shortly. However if the problem persists please file a support "
|
85 |
"ticket on the %splugin forum%s, citing the errors listed above. "
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: better-font-awesome.php:
|
|
|
|
|
|
|
|
|
89 |
msgid ""
|
90 |
"<h3>Usage</h3>\n"
|
91 |
-
" <b>Font Awesome version 4.x
|
92 |
-
"
|
|
|
93 |
"»</a></small><br /><br />\n"
|
94 |
" <i class=\"icon-coffee fa fa-coffee\"></i> <code>[icon "
|
95 |
-
"name=\"coffee\"]</code> or <code><i
|
96 |
-
"code><br /><br />\n"
|
97 |
-
" <i class=\"icon-coffee fa fa-coffee icon-2x
|
98 |
-
"i> <code>[icon name=\"coffee\" class=\"fa-2x\"]</code> or
|
99 |
-
"
|
100 |
-
" <i class=\"icon-coffee fa fa-coffee icon-2x fa-2x
|
101 |
-
"rotate-90 fa-rotate-90\"></i> <code>[icon name=\"coffee\"
|
102 |
-
"rotate-90\"]</code> or <code><i class=\"fa-coffee fa-2x
|
103 |
-
"</i></code><br /><br /><br />\n"
|
104 |
-
" <b>Font Awesome version
|
105 |
-
"
|
106 |
-
"
|
|
|
107 |
" <i class=\"icon-coffee fa fa-coffee\"></i> <code>[icon "
|
108 |
-
"name=\"coffee\"]</code> or <code><i class=\"icon
|
109 |
-
"code><br /><br />\n"
|
110 |
-
" <i class=\"icon-coffee fa fa-coffee icon-2x
|
111 |
-
"i> <code>[icon name=\"coffee\" class=\"icon-2x\"]</code> or
|
112 |
-
"class=\"icon-coffee icon-2x\"></i></code><br
|
113 |
-
"
|
114 |
-
"
|
115 |
-
"icon-rotate-90\"
|
116 |
-
"rotate-90\"
|
117 |
-
|
118 |
-
|
119 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
120 |
msgid "The jsDelivr API servers appear to be temporarily unavailable."
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: lib/better-font-awesome-library/better-font-awesome-library.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
msgid "API Error"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: lib/better-font-awesome-library/better-font-awesome-library.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
msgid ""
|
129 |
"The attempt to reach the jsDelivr API server failed with the following "
|
130 |
"error: %s"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: lib/better-font-awesome-library/better-font-awesome-library.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
msgid "Remote CSS Error"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: lib/better-font-awesome-library/better-font-awesome-library.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
msgid ""
|
139 |
"The attempt to fetch the remote Font Awesome stylesheet failed with the "
|
140 |
"following error: %s %s The embedded fallback Font Awesome will be used "
|
141 |
"instead (version: %s)."
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: lib/better-font-awesome-library/better-font-awesome-library.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
145 |
msgid ""
|
146 |
"<b>Don't worry! Better Font Awesome will still render using the included "
|
147 |
"fallback version:</b> "
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: lib/better-font-awesome-library/better-font-awesome-library.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
151 |
msgid "Solution"
|
152 |
msgstr ""
|
153 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
154 |
#. Plugin URI of the plugin/theme
|
155 |
msgid "http://wordpress.org/plugins/better-font-awesome"
|
156 |
msgstr ""
|
@@ -165,4 +1141,4 @@ msgstr ""
|
|
165 |
|
166 |
#. Author URI of the plugin/theme
|
167 |
msgid "mickey@mickeykaycreative.com"
|
168 |
-
msgstr ""
|
1 |
+
# Copyright (C) 2015 MIGHTYminnow & Mickey Kay
|
2 |
+
# This file is distributed under the GPLv2+.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Better Font Awesome 1.3.3\n"
|
6 |
+
"Report-Msgid-Bugs-To: "
|
7 |
+
"http://wordpress.org/support/plugin/better-font-awesome\n"
|
8 |
+
"POT-Creation-Date: 2015-06-20 23:09:00+00:00\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=utf-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"PO-Revision-Date: 2015-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
15 |
+
"X-Generator: grunt-wp-i18n 0.5.2\n"
|
16 |
|
|
|
17 |
#. Plugin Name of the plugin/theme
|
|
|
|
|
18 |
msgid "Better Font Awesome"
|
19 |
msgstr ""
|
20 |
|
21 |
+
#: better-font-awesome.php:224 svn/tags/1.0.0/better-font-awesome.php:217
|
22 |
+
#: svn/tags/1.0.1/better-font-awesome.php:217
|
23 |
+
#: svn/tags/1.0.10/better-font-awesome.php:218
|
24 |
+
#: svn/tags/1.0.2/better-font-awesome.php:217
|
25 |
+
#: svn/tags/1.0.3/better-font-awesome.php:217
|
26 |
+
#: svn/tags/1.0.4/better-font-awesome.php:217
|
27 |
+
#: svn/tags/1.0.5/better-font-awesome.php:217
|
28 |
+
#: svn/tags/1.0.6/better-font-awesome.php:217
|
29 |
+
#: svn/tags/1.0.7/better-font-awesome.php:217
|
30 |
+
#: svn/tags/1.0.8/better-font-awesome.php:218
|
31 |
+
#: svn/tags/1.0.9/better-font-awesome.php:218
|
32 |
+
#: svn/tags/1.1.0/better-font-awesome.php:222
|
33 |
+
#: svn/tags/1.2.0/better-font-awesome.php:222
|
34 |
+
#: svn/tags/1.2.1/better-font-awesome.php:224
|
35 |
+
#: svn/tags/1.3.0/better-font-awesome.php:224
|
36 |
+
#: svn/tags/1.3.1/better-font-awesome.php:224
|
37 |
+
#: svn/tags/1.3.2/better-font-awesome.php:224
|
38 |
+
#: svn/tags/1.3.3/better-font-awesome.php:224
|
39 |
+
#: svn/trunk/better-font-awesome.php:224
|
40 |
msgid ""
|
41 |
+
"It appears that Better Font Awesome is missing it's <a "
|
42 |
+
"href=\"https://github.com/MickeyKay/better-font-awesome-library\" "
|
43 |
+
"target=\"_blank\">core library</a>, which typically occurs when cloning the "
|
44 |
+
"Git repository and not updating all submodules. Please refer to the "
|
45 |
+
"plugin's <a href=\"https://github.com/MickeyKay/better-font-awesome\" "
|
46 |
+
"target=\"_blank\">installation instructions</a> for details on how to "
|
47 |
+
"properly install Better Font Awesome via Git. If you installed from within "
|
48 |
+
"WordPress, or via the wordpress.org repo, then chances are the install "
|
49 |
+
"failed and you can try again. If the issue persists, please create a new "
|
50 |
+
"topic on the plugin's <a "
|
51 |
+
"href=\"http://wordpress.org/support/plugin/better-font-awesome\" "
|
52 |
+
"target=\"_blank\">support forum</a> or file an issue on the <a "
|
53 |
+
"href=\"https://github.com/MickeyKay/better-font-awesome/issues\" "
|
54 |
+
"target=\"_blank\">Github repo</a>."
|
55 |
msgstr ""
|
56 |
|
57 |
+
#: better-font-awesome.php:225 svn/tags/1.0.0/better-font-awesome.php:218
|
58 |
+
#: svn/tags/1.0.1/better-font-awesome.php:218
|
59 |
+
#: svn/tags/1.0.10/better-font-awesome.php:219
|
60 |
+
#: svn/tags/1.0.2/better-font-awesome.php:218
|
61 |
+
#: svn/tags/1.0.3/better-font-awesome.php:218
|
62 |
+
#: svn/tags/1.0.4/better-font-awesome.php:218
|
63 |
+
#: svn/tags/1.0.5/better-font-awesome.php:218
|
64 |
+
#: svn/tags/1.0.6/better-font-awesome.php:218
|
65 |
+
#: svn/tags/1.0.7/better-font-awesome.php:218
|
66 |
+
#: svn/tags/1.0.8/better-font-awesome.php:219
|
67 |
+
#: svn/tags/1.0.9/better-font-awesome.php:219
|
68 |
+
#: svn/tags/1.1.0/better-font-awesome.php:223
|
69 |
+
#: svn/tags/1.2.0/better-font-awesome.php:223
|
70 |
+
#: svn/tags/1.2.1/better-font-awesome.php:225
|
71 |
+
#: svn/tags/1.3.0/better-font-awesome.php:225
|
72 |
+
#: svn/tags/1.3.1/better-font-awesome.php:225
|
73 |
+
#: svn/tags/1.3.2/better-font-awesome.php:225
|
74 |
+
#: svn/tags/1.3.3/better-font-awesome.php:225
|
75 |
+
#: svn/trunk/better-font-awesome.php:225
|
76 |
msgid "Back to the plugins page →"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: better-font-awesome.php:337 svn/tags/1.1.0/better-font-awesome.php:335
|
80 |
+
#: svn/tags/1.2.0/better-font-awesome.php:335
|
81 |
+
#: svn/tags/1.2.1/better-font-awesome.php:337
|
82 |
+
#: svn/tags/1.3.0/better-font-awesome.php:337
|
83 |
+
#: svn/tags/1.3.1/better-font-awesome.php:337
|
84 |
+
#: svn/tags/1.3.2/better-font-awesome.php:337
|
85 |
+
#: svn/tags/1.3.3/better-font-awesome.php:337
|
86 |
+
#: svn/trunk/better-font-awesome.php:337
|
87 |
+
msgid "Save Settings"
|
88 |
+
msgstr ""
|
89 |
+
|
90 |
+
#: better-font-awesome.php:368 svn/tags/1.0.0/better-font-awesome.php:352
|
91 |
+
#: svn/tags/1.0.1/better-font-awesome.php:352
|
92 |
+
#: svn/tags/1.0.10/better-font-awesome.php:359
|
93 |
+
#: svn/tags/1.0.2/better-font-awesome.php:352
|
94 |
+
#: svn/tags/1.0.3/better-font-awesome.php:352
|
95 |
+
#: svn/tags/1.0.4/better-font-awesome.php:352
|
96 |
+
#: svn/tags/1.0.5/better-font-awesome.php:352
|
97 |
+
#: svn/tags/1.0.6/better-font-awesome.php:352
|
98 |
+
#: svn/tags/1.0.7/better-font-awesome.php:352
|
99 |
+
#: svn/tags/1.0.8/better-font-awesome.php:359
|
100 |
+
#: svn/tags/1.0.9/better-font-awesome.php:359
|
101 |
+
#: svn/tags/1.1.0/better-font-awesome.php:366
|
102 |
+
#: svn/tags/1.2.0/better-font-awesome.php:366
|
103 |
+
#: svn/tags/1.2.1/better-font-awesome.php:368
|
104 |
+
#: svn/tags/1.3.0/better-font-awesome.php:368
|
105 |
+
#: svn/tags/1.3.1/better-font-awesome.php:368
|
106 |
+
#: svn/tags/1.3.2/better-font-awesome.php:368
|
107 |
+
#: svn/tags/1.3.3/better-font-awesome.php:368
|
108 |
+
#: svn/trunk/better-font-awesome.php:368
|
109 |
msgid "Version"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: better-font-awesome.php:377 svn/tags/0.9.0/better-font-awesome.php:208
|
113 |
+
#: svn/tags/0.9.1/better-font-awesome.php:201
|
114 |
+
#: svn/tags/0.9.2/better-font-awesome.php:213
|
115 |
+
#: svn/tags/0.9.3/better-font-awesome.php:251
|
116 |
+
#: svn/tags/0.9.3/trunk/better-font-awesome.php:251
|
117 |
+
#: svn/tags/0.9.4/better-font-awesome.php:255
|
118 |
+
#: svn/tags/0.9.5/better-font-awesome.php:255
|
119 |
+
#: svn/tags/0.9.6/better-font-awesome.php:252
|
120 |
+
#: svn/tags/0.9.7/better-font-awesome.php:256
|
121 |
+
#: svn/tags/1.0.0/better-font-awesome.php:361
|
122 |
+
#: svn/tags/1.0.1/better-font-awesome.php:361
|
123 |
+
#: svn/tags/1.0.10/better-font-awesome.php:368
|
124 |
+
#: svn/tags/1.0.2/better-font-awesome.php:361
|
125 |
+
#: svn/tags/1.0.3/better-font-awesome.php:361
|
126 |
+
#: svn/tags/1.0.4/better-font-awesome.php:361
|
127 |
+
#: svn/tags/1.0.5/better-font-awesome.php:361
|
128 |
+
#: svn/tags/1.0.6/better-font-awesome.php:361
|
129 |
+
#: svn/tags/1.0.7/better-font-awesome.php:361
|
130 |
+
#: svn/tags/1.0.8/better-font-awesome.php:368
|
131 |
+
#: svn/tags/1.0.9/better-font-awesome.php:368
|
132 |
+
#: svn/tags/1.1.0/better-font-awesome.php:375
|
133 |
+
#: svn/tags/1.2.0/better-font-awesome.php:375
|
134 |
+
#: svn/tags/1.2.1/better-font-awesome.php:377
|
135 |
+
#: svn/tags/1.3.0/better-font-awesome.php:377
|
136 |
+
#: svn/tags/1.3.1/better-font-awesome.php:377
|
137 |
+
#: svn/tags/1.3.2/better-font-awesome.php:377
|
138 |
+
#: svn/tags/1.3.3/better-font-awesome.php:377
|
139 |
+
#: svn/trunk/better-font-awesome.php:377
|
140 |
msgid "Use minified CSS"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: better-font-awesome.php:383 svn/tags/0.9.0/better-font-awesome.php:211
|
144 |
+
#: svn/tags/0.9.1/better-font-awesome.php:204
|
145 |
+
#: svn/tags/0.9.2/better-font-awesome.php:216
|
146 |
+
#: svn/tags/0.9.3/better-font-awesome.php:254
|
147 |
+
#: svn/tags/0.9.3/trunk/better-font-awesome.php:254
|
148 |
+
#: svn/tags/0.9.4/better-font-awesome.php:258
|
149 |
+
#: svn/tags/0.9.5/better-font-awesome.php:258
|
150 |
+
#: svn/tags/0.9.6/better-font-awesome.php:255
|
151 |
+
#: svn/tags/0.9.7/better-font-awesome.php:259
|
152 |
+
#: svn/tags/1.0.0/better-font-awesome.php:367
|
153 |
+
#: svn/tags/1.0.1/better-font-awesome.php:367
|
154 |
+
#: svn/tags/1.0.10/better-font-awesome.php:374
|
155 |
+
#: svn/tags/1.0.2/better-font-awesome.php:367
|
156 |
+
#: svn/tags/1.0.3/better-font-awesome.php:367
|
157 |
+
#: svn/tags/1.0.4/better-font-awesome.php:367
|
158 |
+
#: svn/tags/1.0.5/better-font-awesome.php:367
|
159 |
+
#: svn/tags/1.0.6/better-font-awesome.php:367
|
160 |
+
#: svn/tags/1.0.7/better-font-awesome.php:367
|
161 |
+
#: svn/tags/1.0.8/better-font-awesome.php:374
|
162 |
+
#: svn/tags/1.0.9/better-font-awesome.php:374
|
163 |
+
#: svn/tags/1.1.0/better-font-awesome.php:381
|
164 |
+
#: svn/tags/1.2.0/better-font-awesome.php:381
|
165 |
+
#: svn/tags/1.2.1/better-font-awesome.php:383
|
166 |
+
#: svn/tags/1.3.0/better-font-awesome.php:383
|
167 |
+
#: svn/tags/1.3.1/better-font-awesome.php:383
|
168 |
+
#: svn/tags/1.3.2/better-font-awesome.php:383
|
169 |
+
#: svn/tags/1.3.3/better-font-awesome.php:383
|
170 |
+
#: svn/trunk/better-font-awesome.php:383
|
171 |
msgid ""
|
172 |
"Whether to include the minified version of the CSS (checked), or the "
|
173 |
"unminified version (unchecked)."
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: better-font-awesome.php:389 svn/tags/1.0.0/better-font-awesome.php:373
|
177 |
+
#: svn/tags/1.0.1/better-font-awesome.php:373
|
178 |
+
#: svn/tags/1.0.10/better-font-awesome.php:380
|
179 |
+
#: svn/tags/1.0.2/better-font-awesome.php:373
|
180 |
+
#: svn/tags/1.0.3/better-font-awesome.php:373
|
181 |
+
#: svn/tags/1.0.4/better-font-awesome.php:373
|
182 |
+
#: svn/tags/1.0.5/better-font-awesome.php:373
|
183 |
+
#: svn/tags/1.0.6/better-font-awesome.php:373
|
184 |
+
#: svn/tags/1.0.7/better-font-awesome.php:373
|
185 |
+
#: svn/tags/1.0.8/better-font-awesome.php:380
|
186 |
+
#: svn/tags/1.0.9/better-font-awesome.php:380
|
187 |
+
#: svn/tags/1.1.0/better-font-awesome.php:387
|
188 |
+
#: svn/tags/1.2.0/better-font-awesome.php:387
|
189 |
+
#: svn/tags/1.2.1/better-font-awesome.php:389
|
190 |
+
#: svn/tags/1.3.0/better-font-awesome.php:389
|
191 |
+
#: svn/tags/1.3.1/better-font-awesome.php:389
|
192 |
+
#: svn/tags/1.3.2/better-font-awesome.php:389
|
193 |
+
#: svn/tags/1.3.3/better-font-awesome.php:389
|
194 |
+
#: svn/trunk/better-font-awesome.php:389
|
195 |
msgid "Remove existing Font Awesome"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: better-font-awesome.php:395 svn/tags/1.0.0/better-font-awesome.php:379
|
199 |
+
#: svn/tags/1.0.1/better-font-awesome.php:379
|
200 |
+
#: svn/tags/1.0.10/better-font-awesome.php:386
|
201 |
+
#: svn/tags/1.0.2/better-font-awesome.php:379
|
202 |
+
#: svn/tags/1.0.3/better-font-awesome.php:379
|
203 |
+
#: svn/tags/1.0.4/better-font-awesome.php:379
|
204 |
+
#: svn/tags/1.0.5/better-font-awesome.php:379
|
205 |
+
#: svn/tags/1.0.6/better-font-awesome.php:379
|
206 |
+
#: svn/tags/1.0.7/better-font-awesome.php:379
|
207 |
+
#: svn/tags/1.0.8/better-font-awesome.php:386
|
208 |
+
#: svn/tags/1.0.9/better-font-awesome.php:386
|
209 |
+
#: svn/tags/1.1.0/better-font-awesome.php:393
|
210 |
+
#: svn/tags/1.2.0/better-font-awesome.php:393
|
211 |
+
#: svn/tags/1.2.1/better-font-awesome.php:395
|
212 |
+
#: svn/tags/1.3.0/better-font-awesome.php:395
|
213 |
+
#: svn/tags/1.3.1/better-font-awesome.php:395
|
214 |
+
#: svn/tags/1.3.2/better-font-awesome.php:395
|
215 |
+
#: svn/tags/1.3.3/better-font-awesome.php:395
|
216 |
+
#: svn/trunk/better-font-awesome.php:395
|
217 |
+
msgid ""
|
218 |
+
"Attempt to remove Font Awesome CSS and shortcodes added by other plugins "
|
219 |
+
"and themes."
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: better-font-awesome.php:401 svn/tags/1.0.10/better-font-awesome.php:392
|
223 |
+
#: svn/tags/1.0.8/better-font-awesome.php:392
|
224 |
+
#: svn/tags/1.0.9/better-font-awesome.php:392
|
225 |
+
#: svn/tags/1.1.0/better-font-awesome.php:399
|
226 |
+
#: svn/tags/1.2.0/better-font-awesome.php:399
|
227 |
+
#: svn/tags/1.2.1/better-font-awesome.php:401
|
228 |
+
#: svn/tags/1.3.0/better-font-awesome.php:401
|
229 |
+
#: svn/tags/1.3.1/better-font-awesome.php:401
|
230 |
+
#: svn/tags/1.3.2/better-font-awesome.php:401
|
231 |
+
#: svn/tags/1.3.3/better-font-awesome.php:401
|
232 |
+
#: svn/trunk/better-font-awesome.php:401
|
233 |
+
msgid "Hide admin notices"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
#: better-font-awesome.php:407 svn/tags/1.0.10/better-font-awesome.php:398
|
237 |
+
#: svn/tags/1.0.8/better-font-awesome.php:398
|
238 |
+
#: svn/tags/1.0.9/better-font-awesome.php:398
|
239 |
+
#: svn/tags/1.1.0/better-font-awesome.php:405
|
240 |
+
#: svn/tags/1.2.0/better-font-awesome.php:405
|
241 |
+
#: svn/tags/1.2.1/better-font-awesome.php:407
|
242 |
+
#: svn/tags/1.3.0/better-font-awesome.php:407
|
243 |
+
#: svn/tags/1.3.1/better-font-awesome.php:407
|
244 |
+
#: svn/tags/1.3.2/better-font-awesome.php:407
|
245 |
+
#: svn/tags/1.3.3/better-font-awesome.php:407
|
246 |
+
#: svn/trunk/better-font-awesome.php:407
|
247 |
msgid ""
|
248 |
+
"Hide the default admin warnings that are shown when API and CDN errors "
|
249 |
+
"occur."
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: better-font-awesome.php:480 better-font-awesome.php:506
|
253 |
+
#: svn/tags/0.9.2/better-font-awesome.php:190
|
254 |
+
#: svn/tags/0.9.3/better-font-awesome.php:228
|
255 |
+
#: svn/tags/0.9.3/trunk/better-font-awesome.php:228
|
256 |
+
#: svn/tags/0.9.4/better-font-awesome.php:220
|
257 |
+
#: svn/tags/0.9.5/better-font-awesome.php:220
|
258 |
+
#: svn/tags/0.9.6/better-font-awesome.php:217
|
259 |
+
#: svn/tags/0.9.7/better-font-awesome.php:221
|
260 |
+
#: svn/tags/1.0.0/better-font-awesome.php:396
|
261 |
+
#: svn/tags/1.0.0/better-font-awesome.php:422
|
262 |
+
#: svn/tags/1.0.1/better-font-awesome.php:396
|
263 |
+
#: svn/tags/1.0.1/better-font-awesome.php:422
|
264 |
+
#: svn/tags/1.0.10/better-font-awesome.php:415
|
265 |
+
#: svn/tags/1.0.10/better-font-awesome.php:441
|
266 |
+
#: svn/tags/1.0.2/better-font-awesome.php:396
|
267 |
+
#: svn/tags/1.0.2/better-font-awesome.php:422
|
268 |
+
#: svn/tags/1.0.3/better-font-awesome.php:396
|
269 |
+
#: svn/tags/1.0.3/better-font-awesome.php:422
|
270 |
+
#: svn/tags/1.0.4/better-font-awesome.php:396
|
271 |
+
#: svn/tags/1.0.4/better-font-awesome.php:422
|
272 |
+
#: svn/tags/1.0.5/better-font-awesome.php:396
|
273 |
+
#: svn/tags/1.0.5/better-font-awesome.php:422
|
274 |
+
#: svn/tags/1.0.6/better-font-awesome.php:396
|
275 |
+
#: svn/tags/1.0.6/better-font-awesome.php:422
|
276 |
+
#: svn/tags/1.0.7/better-font-awesome.php:396
|
277 |
+
#: svn/tags/1.0.7/better-font-awesome.php:422
|
278 |
+
#: svn/tags/1.0.8/better-font-awesome.php:415
|
279 |
+
#: svn/tags/1.0.8/better-font-awesome.php:441
|
280 |
+
#: svn/tags/1.0.9/better-font-awesome.php:415
|
281 |
+
#: svn/tags/1.0.9/better-font-awesome.php:441
|
282 |
+
#: svn/tags/1.1.0/better-font-awesome.php:478
|
283 |
+
#: svn/tags/1.1.0/better-font-awesome.php:504
|
284 |
+
#: svn/tags/1.2.0/better-font-awesome.php:478
|
285 |
+
#: svn/tags/1.2.0/better-font-awesome.php:504
|
286 |
+
#: svn/tags/1.2.1/better-font-awesome.php:480
|
287 |
+
#: svn/tags/1.2.1/better-font-awesome.php:506
|
288 |
+
#: svn/tags/1.3.0/better-font-awesome.php:480
|
289 |
+
#: svn/tags/1.3.0/better-font-awesome.php:506
|
290 |
+
#: svn/tags/1.3.1/better-font-awesome.php:480
|
291 |
+
#: svn/tags/1.3.1/better-font-awesome.php:506
|
292 |
+
#: svn/tags/1.3.2/better-font-awesome.php:480
|
293 |
+
#: svn/tags/1.3.2/better-font-awesome.php:506
|
294 |
+
#: svn/tags/1.3.3/better-font-awesome.php:480
|
295 |
+
#: svn/tags/1.3.3/better-font-awesome.php:506
|
296 |
+
#: svn/trunk/better-font-awesome.php:480 svn/trunk/better-font-awesome.php:506
|
297 |
msgid "Always Latest"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: better-font-awesome.php:540 svn/tags/1.0.0/better-font-awesome.php:456
|
301 |
+
#: svn/tags/1.0.1/better-font-awesome.php:456
|
302 |
+
#: svn/tags/1.0.10/better-font-awesome.php:475
|
303 |
+
#: svn/tags/1.0.2/better-font-awesome.php:456
|
304 |
+
#: svn/tags/1.0.3/better-font-awesome.php:456
|
305 |
+
#: svn/tags/1.0.4/better-font-awesome.php:456
|
306 |
+
#: svn/tags/1.0.5/better-font-awesome.php:456
|
307 |
+
#: svn/tags/1.0.6/better-font-awesome.php:456
|
308 |
+
#: svn/tags/1.0.7/better-font-awesome.php:456
|
309 |
+
#: svn/tags/1.0.8/better-font-awesome.php:475
|
310 |
+
#: svn/tags/1.0.9/better-font-awesome.php:475
|
311 |
+
#: svn/tags/1.1.0/better-font-awesome.php:538
|
312 |
+
#: svn/tags/1.2.0/better-font-awesome.php:538
|
313 |
+
#: svn/tags/1.2.1/better-font-awesome.php:540
|
314 |
+
#: svn/tags/1.3.0/better-font-awesome.php:540
|
315 |
+
#: svn/tags/1.3.1/better-font-awesome.php:540
|
316 |
+
#: svn/tags/1.3.2/better-font-awesome.php:540
|
317 |
+
#: svn/tags/1.3.3/better-font-awesome.php:540
|
318 |
+
#: svn/trunk/better-font-awesome.php:540
|
319 |
msgid ""
|
320 |
"Version selection is currently unavailable. The attempt to reach the "
|
321 |
"jsDelivr API server failed with the following error: %s"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: better-font-awesome.php:547 svn/tags/1.0.0/better-font-awesome.php:463
|
325 |
+
#: svn/tags/1.0.1/better-font-awesome.php:463
|
326 |
+
#: svn/tags/1.0.10/better-font-awesome.php:482
|
327 |
+
#: svn/tags/1.0.2/better-font-awesome.php:463
|
328 |
+
#: svn/tags/1.0.3/better-font-awesome.php:463
|
329 |
+
#: svn/tags/1.0.4/better-font-awesome.php:463
|
330 |
+
#: svn/tags/1.0.5/better-font-awesome.php:463
|
331 |
+
#: svn/tags/1.0.6/better-font-awesome.php:463
|
332 |
+
#: svn/tags/1.0.7/better-font-awesome.php:463
|
333 |
+
#: svn/tags/1.0.8/better-font-awesome.php:482
|
334 |
+
#: svn/tags/1.0.9/better-font-awesome.php:482
|
335 |
+
#: svn/tags/1.1.0/better-font-awesome.php:545
|
336 |
+
#: svn/tags/1.2.0/better-font-awesome.php:545
|
337 |
+
#: svn/tags/1.2.1/better-font-awesome.php:547
|
338 |
+
#: svn/tags/1.3.0/better-font-awesome.php:547
|
339 |
+
#: svn/tags/1.3.1/better-font-awesome.php:547
|
340 |
+
#: svn/tags/1.3.2/better-font-awesome.php:547
|
341 |
+
#: svn/tags/1.3.3/better-font-awesome.php:547
|
342 |
+
#: svn/trunk/better-font-awesome.php:547
|
343 |
msgid "Font Awesome will still render using version: %s"
|
344 |
msgstr ""
|
345 |
|
346 |
+
#: better-font-awesome.php:554
|
347 |
+
#: lib/better-font-awesome-library/better-font-awesome-library.php:1098
|
348 |
+
#: svn/tags/1.0.0/better-font-awesome.php:470
|
349 |
+
#: svn/tags/1.0.0/lib/better-font-awesome-library/better-font-awesome-library.php:1044
|
350 |
+
#: svn/tags/1.0.1/better-font-awesome.php:470
|
351 |
+
#: svn/tags/1.0.1/lib/better-font-awesome-library/better-font-awesome-library.php:1052
|
352 |
+
#: svn/tags/1.0.10/better-font-awesome.php:489
|
353 |
+
#: svn/tags/1.0.10/lib/better-font-awesome-library/better-font-awesome-library.php:1118
|
354 |
+
#: svn/tags/1.0.2/better-font-awesome.php:470
|
355 |
+
#: svn/tags/1.0.2/lib/better-font-awesome-library/better-font-awesome-library.php:1057
|
356 |
+
#: svn/tags/1.0.3/better-font-awesome.php:470
|
357 |
+
#: svn/tags/1.0.3/lib/better-font-awesome-library/better-font-awesome-library.php:1057
|
358 |
+
#: svn/tags/1.0.4/better-font-awesome.php:470
|
359 |
+
#: svn/tags/1.0.4/lib/better-font-awesome-library/better-font-awesome-library.php:1057
|
360 |
+
#: svn/tags/1.0.5/better-font-awesome.php:470
|
361 |
+
#: svn/tags/1.0.5/lib/better-font-awesome-library/better-font-awesome-library.php:1066
|
362 |
+
#: svn/tags/1.0.6/better-font-awesome.php:470
|
363 |
+
#: svn/tags/1.0.6/lib/better-font-awesome-library/better-font-awesome-library.php:1066
|
364 |
+
#: svn/tags/1.0.7/better-font-awesome.php:470
|
365 |
+
#: svn/tags/1.0.7/lib/better-font-awesome-library/better-font-awesome-library.php:1066
|
366 |
+
#: svn/tags/1.0.8/better-font-awesome.php:489
|
367 |
+
#: svn/tags/1.0.8/lib/better-font-awesome-library/better-font-awesome-library.php:1117
|
368 |
+
#: svn/tags/1.0.9/better-font-awesome.php:489
|
369 |
+
#: svn/tags/1.0.9/lib/better-font-awesome-library/better-font-awesome-library.php:1117
|
370 |
+
#: svn/tags/1.1.0/better-font-awesome.php:552
|
371 |
+
#: svn/tags/1.1.0/lib/better-font-awesome-library/better-font-awesome-library.php:1118
|
372 |
+
#: svn/tags/1.2.0/better-font-awesome.php:552
|
373 |
+
#: svn/tags/1.2.0/lib/better-font-awesome-library/better-font-awesome-library.php:1118
|
374 |
+
#: svn/tags/1.2.1/better-font-awesome.php:554
|
375 |
+
#: svn/tags/1.2.1/lib/better-font-awesome-library/better-font-awesome-library.php:1118
|
376 |
+
#: svn/tags/1.3.0/better-font-awesome.php:554
|
377 |
+
#: svn/tags/1.3.0/lib/better-font-awesome-library/better-font-awesome-library.php:1087
|
378 |
+
#: svn/tags/1.3.1/better-font-awesome.php:554
|
379 |
+
#: svn/tags/1.3.1/lib/better-font-awesome-library/better-font-awesome-library.php:1095
|
380 |
+
#: svn/tags/1.3.2/better-font-awesome.php:554
|
381 |
+
#: svn/tags/1.3.2/lib/better-font-awesome-library/better-font-awesome-library.php:1095
|
382 |
+
#: svn/tags/1.3.3/better-font-awesome.php:554
|
383 |
+
#: svn/tags/1.3.3/lib/better-font-awesome-library/better-font-awesome-library.php:1098
|
384 |
+
#: svn/trunk/better-font-awesome.php:554
|
385 |
+
#: svn/trunk/lib/better-font-awesome-library/better-font-awesome-library.php:1098
|
386 |
msgid ""
|
387 |
"This may be the result of a temporary server or connectivity issue which "
|
388 |
"will resolve shortly. However if the problem persists please file a support "
|
389 |
"ticket on the %splugin forum%s, citing the errors listed above. "
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: better-font-awesome.php:601 svn/tags/1.3.0/better-font-awesome.php:601
|
393 |
+
#: svn/tags/1.3.1/better-font-awesome.php:601
|
394 |
+
#: svn/tags/1.3.2/better-font-awesome.php:601
|
395 |
+
#: svn/tags/1.3.3/better-font-awesome.php:601
|
396 |
+
#: svn/trunk/better-font-awesome.php:601
|
397 |
msgid ""
|
398 |
"<h3>Usage</h3>\n"
|
399 |
+
" <b>Font Awesome version 4.x "
|
400 |
+
"+</b> <small><a "
|
401 |
+
"href=\"http://fontawesome.io/examples/\">See all available options "
|
402 |
"»</a></small><br /><br />\n"
|
403 |
" <i class=\"icon-coffee fa fa-coffee\"></i> <code>[icon "
|
404 |
+
"name=\"coffee\"]</code> or <code><i "
|
405 |
+
"class=\"fa-coffee\"></i></code><br /><br />\n"
|
406 |
+
" <i class=\"icon-coffee fa fa-coffee icon-2x "
|
407 |
+
"fa-2x\"></i> <code>[icon name=\"coffee\" class=\"fa-2x\"]</code> or "
|
408 |
+
"<code><i class=\"fa-coffee fa-2x\"></i></code><br /><br />\n"
|
409 |
+
" <i class=\"icon-coffee fa fa-coffee icon-2x fa-2x "
|
410 |
+
"icon-rotate-90 fa-rotate-90\"></i> <code>[icon name=\"coffee\" "
|
411 |
+
"class=\"fa-2x fa-rotate-90\"]</code> or <code><i class=\"fa-coffee fa-2x "
|
412 |
+
"fa-rotate-90\"></i></code><br /><br /><br />\n"
|
413 |
+
" <b>Font Awesome version "
|
414 |
+
"3.x</b> <small><a "
|
415 |
+
"href=\"http://fontawesome.io/3.2.1/examples/\">See all available options "
|
416 |
+
"»</a></small><br /><br />\n"
|
417 |
" <i class=\"icon-coffee fa fa-coffee\"></i> <code>[icon "
|
418 |
+
"name=\"coffee\"]</code> or <code><i class=\"icon "
|
419 |
+
"icon-coffee\"></i></code><br /><br />\n"
|
420 |
+
" <i class=\"icon-coffee fa fa-coffee icon-2x "
|
421 |
+
"fa-2x\"></i> <code>[icon name=\"coffee\" class=\"icon-2x\"]</code> or "
|
422 |
+
"<code><i class=\"icon icon-coffee icon-2x\"></i></code><br "
|
423 |
+
"/><br />\n"
|
424 |
+
" <i class=\"icon-coffee fa fa-coffee icon-2x fa-2x "
|
425 |
+
"icon-rotate-90 fa-rotate-90\"></i> <code>[icon name=\"coffee\" "
|
426 |
+
"class=\"icon-2x icon-rotate-90\"]</code> or <code><i class=\"icon "
|
427 |
+
"icon-coffee icon-2x icon-rotate-90\"></i></code>"
|
428 |
+
msgstr ""
|
429 |
+
|
430 |
+
#: lib/better-font-awesome-library/better-font-awesome-library.php:493
|
431 |
+
#: svn/tags/1.0.1/lib/better-font-awesome-library/better-font-awesome-library.php:430
|
432 |
+
#: svn/tags/1.0.10/lib/better-font-awesome-library/better-font-awesome-library.php:492
|
433 |
+
#: svn/tags/1.0.2/lib/better-font-awesome-library/better-font-awesome-library.php:440
|
434 |
+
#: svn/tags/1.0.3/lib/better-font-awesome-library/better-font-awesome-library.php:440
|
435 |
+
#: svn/tags/1.0.4/lib/better-font-awesome-library/better-font-awesome-library.php:440
|
436 |
+
#: svn/tags/1.0.5/lib/better-font-awesome-library/better-font-awesome-library.php:440
|
437 |
+
#: svn/tags/1.0.6/lib/better-font-awesome-library/better-font-awesome-library.php:440
|
438 |
+
#: svn/tags/1.0.7/lib/better-font-awesome-library/better-font-awesome-library.php:440
|
439 |
+
#: svn/tags/1.0.8/lib/better-font-awesome-library/better-font-awesome-library.php:491
|
440 |
+
#: svn/tags/1.0.9/lib/better-font-awesome-library/better-font-awesome-library.php:491
|
441 |
+
#: svn/tags/1.1.0/lib/better-font-awesome-library/better-font-awesome-library.php:492
|
442 |
+
#: svn/tags/1.2.0/lib/better-font-awesome-library/better-font-awesome-library.php:492
|
443 |
+
#: svn/tags/1.2.1/lib/better-font-awesome-library/better-font-awesome-library.php:492
|
444 |
+
#: svn/tags/1.3.0/lib/better-font-awesome-library/better-font-awesome-library.php:493
|
445 |
+
#: svn/tags/1.3.1/lib/better-font-awesome-library/better-font-awesome-library.php:493
|
446 |
+
#: svn/tags/1.3.2/lib/better-font-awesome-library/better-font-awesome-library.php:493
|
447 |
+
#: svn/tags/1.3.3/lib/better-font-awesome-library/better-font-awesome-library.php:493
|
448 |
+
#: svn/trunk/lib/better-font-awesome-library/better-font-awesome-library.php:493
|
449 |
msgid "The jsDelivr API servers appear to be temporarily unavailable."
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: lib/better-font-awesome-library/better-font-awesome-library.php:1042
|
453 |
+
#: svn/tags/1.3.0/lib/better-font-awesome-library/better-font-awesome-library.php:1031
|
454 |
+
#: svn/tags/1.3.1/lib/better-font-awesome-library/better-font-awesome-library.php:1039
|
455 |
+
#: svn/tags/1.3.2/lib/better-font-awesome-library/better-font-awesome-library.php:1039
|
456 |
+
#: svn/tags/1.3.3/lib/better-font-awesome-library/better-font-awesome-library.php:1042
|
457 |
+
#: svn/trunk/lib/better-font-awesome-library/better-font-awesome-library.php:1042
|
458 |
+
msgid "Insert Icon"
|
459 |
+
msgstr ""
|
460 |
+
|
461 |
+
#: lib/better-font-awesome-library/better-font-awesome-library.php:1068
|
462 |
+
#: svn/tags/1.0.0/lib/better-font-awesome-library/better-font-awesome-library.php:1017
|
463 |
+
#: svn/tags/1.0.1/lib/better-font-awesome-library/better-font-awesome-library.php:1022
|
464 |
+
#: svn/tags/1.0.10/lib/better-font-awesome-library/better-font-awesome-library.php:1088
|
465 |
+
#: svn/tags/1.0.2/lib/better-font-awesome-library/better-font-awesome-library.php:1027
|
466 |
+
#: svn/tags/1.0.3/lib/better-font-awesome-library/better-font-awesome-library.php:1027
|
467 |
+
#: svn/tags/1.0.4/lib/better-font-awesome-library/better-font-awesome-library.php:1027
|
468 |
+
#: svn/tags/1.0.5/lib/better-font-awesome-library/better-font-awesome-library.php:1036
|
469 |
+
#: svn/tags/1.0.6/lib/better-font-awesome-library/better-font-awesome-library.php:1036
|
470 |
+
#: svn/tags/1.0.7/lib/better-font-awesome-library/better-font-awesome-library.php:1036
|
471 |
+
#: svn/tags/1.0.8/lib/better-font-awesome-library/better-font-awesome-library.php:1087
|
472 |
+
#: svn/tags/1.0.9/lib/better-font-awesome-library/better-font-awesome-library.php:1087
|
473 |
+
#: svn/tags/1.1.0/lib/better-font-awesome-library/better-font-awesome-library.php:1088
|
474 |
+
#: svn/tags/1.2.0/lib/better-font-awesome-library/better-font-awesome-library.php:1088
|
475 |
+
#: svn/tags/1.2.1/lib/better-font-awesome-library/better-font-awesome-library.php:1088
|
476 |
+
#: svn/tags/1.3.0/lib/better-font-awesome-library/better-font-awesome-library.php:1057
|
477 |
+
#: svn/tags/1.3.1/lib/better-font-awesome-library/better-font-awesome-library.php:1065
|
478 |
+
#: svn/tags/1.3.2/lib/better-font-awesome-library/better-font-awesome-library.php:1065
|
479 |
+
#: svn/tags/1.3.3/lib/better-font-awesome-library/better-font-awesome-library.php:1068
|
480 |
+
#: svn/trunk/lib/better-font-awesome-library/better-font-awesome-library.php:1068
|
481 |
msgid "API Error"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: lib/better-font-awesome-library/better-font-awesome-library.php:1070
|
485 |
+
#: svn/tags/1.0.0/lib/better-font-awesome-library/better-font-awesome-library.php:1019
|
486 |
+
#: svn/tags/1.0.1/lib/better-font-awesome-library/better-font-awesome-library.php:1024
|
487 |
+
#: svn/tags/1.0.10/lib/better-font-awesome-library/better-font-awesome-library.php:1090
|
488 |
+
#: svn/tags/1.0.2/lib/better-font-awesome-library/better-font-awesome-library.php:1029
|
489 |
+
#: svn/tags/1.0.3/lib/better-font-awesome-library/better-font-awesome-library.php:1029
|
490 |
+
#: svn/tags/1.0.4/lib/better-font-awesome-library/better-font-awesome-library.php:1029
|
491 |
+
#: svn/tags/1.0.5/lib/better-font-awesome-library/better-font-awesome-library.php:1038
|
492 |
+
#: svn/tags/1.0.6/lib/better-font-awesome-library/better-font-awesome-library.php:1038
|
493 |
+
#: svn/tags/1.0.7/lib/better-font-awesome-library/better-font-awesome-library.php:1038
|
494 |
+
#: svn/tags/1.0.8/lib/better-font-awesome-library/better-font-awesome-library.php:1089
|
495 |
+
#: svn/tags/1.0.9/lib/better-font-awesome-library/better-font-awesome-library.php:1089
|
496 |
+
#: svn/tags/1.1.0/lib/better-font-awesome-library/better-font-awesome-library.php:1090
|
497 |
+
#: svn/tags/1.2.0/lib/better-font-awesome-library/better-font-awesome-library.php:1090
|
498 |
+
#: svn/tags/1.2.1/lib/better-font-awesome-library/better-font-awesome-library.php:1090
|
499 |
+
#: svn/tags/1.3.0/lib/better-font-awesome-library/better-font-awesome-library.php:1059
|
500 |
+
#: svn/tags/1.3.1/lib/better-font-awesome-library/better-font-awesome-library.php:1067
|
501 |
+
#: svn/tags/1.3.2/lib/better-font-awesome-library/better-font-awesome-library.php:1067
|
502 |
+
#: svn/tags/1.3.3/lib/better-font-awesome-library/better-font-awesome-library.php:1070
|
503 |
+
#: svn/trunk/lib/better-font-awesome-library/better-font-awesome-library.php:1070
|
504 |
msgid ""
|
505 |
"The attempt to reach the jsDelivr API server failed with the following "
|
506 |
"error: %s"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: lib/better-font-awesome-library/better-font-awesome-library.php:1080
|
510 |
+
#: svn/tags/1.0.0/lib/better-font-awesome-library/better-font-awesome-library.php:1029
|
511 |
+
#: svn/tags/1.0.1/lib/better-font-awesome-library/better-font-awesome-library.php:1034
|
512 |
+
#: svn/tags/1.0.10/lib/better-font-awesome-library/better-font-awesome-library.php:1100
|
513 |
+
#: svn/tags/1.0.2/lib/better-font-awesome-library/better-font-awesome-library.php:1039
|
514 |
+
#: svn/tags/1.0.3/lib/better-font-awesome-library/better-font-awesome-library.php:1039
|
515 |
+
#: svn/tags/1.0.4/lib/better-font-awesome-library/better-font-awesome-library.php:1039
|
516 |
+
#: svn/tags/1.0.5/lib/better-font-awesome-library/better-font-awesome-library.php:1048
|
517 |
+
#: svn/tags/1.0.6/lib/better-font-awesome-library/better-font-awesome-library.php:1048
|
518 |
+
#: svn/tags/1.0.7/lib/better-font-awesome-library/better-font-awesome-library.php:1048
|
519 |
+
#: svn/tags/1.0.8/lib/better-font-awesome-library/better-font-awesome-library.php:1099
|
520 |
+
#: svn/tags/1.0.9/lib/better-font-awesome-library/better-font-awesome-library.php:1099
|
521 |
+
#: svn/tags/1.1.0/lib/better-font-awesome-library/better-font-awesome-library.php:1100
|
522 |
+
#: svn/tags/1.2.0/lib/better-font-awesome-library/better-font-awesome-library.php:1100
|
523 |
+
#: svn/tags/1.2.1/lib/better-font-awesome-library/better-font-awesome-library.php:1100
|
524 |
+
#: svn/tags/1.3.0/lib/better-font-awesome-library/better-font-awesome-library.php:1069
|
525 |
+
#: svn/tags/1.3.1/lib/better-font-awesome-library/better-font-awesome-library.php:1077
|
526 |
+
#: svn/tags/1.3.2/lib/better-font-awesome-library/better-font-awesome-library.php:1077
|
527 |
+
#: svn/tags/1.3.3/lib/better-font-awesome-library/better-font-awesome-library.php:1080
|
528 |
+
#: svn/trunk/lib/better-font-awesome-library/better-font-awesome-library.php:1080
|
529 |
msgid "Remote CSS Error"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: lib/better-font-awesome-library/better-font-awesome-library.php:1082
|
533 |
+
#: svn/tags/1.0.0/lib/better-font-awesome-library/better-font-awesome-library.php:1031
|
534 |
+
#: svn/tags/1.0.1/lib/better-font-awesome-library/better-font-awesome-library.php:1036
|
535 |
+
#: svn/tags/1.0.10/lib/better-font-awesome-library/better-font-awesome-library.php:1102
|
536 |
+
#: svn/tags/1.0.2/lib/better-font-awesome-library/better-font-awesome-library.php:1041
|
537 |
+
#: svn/tags/1.0.3/lib/better-font-awesome-library/better-font-awesome-library.php:1041
|
538 |
+
#: svn/tags/1.0.4/lib/better-font-awesome-library/better-font-awesome-library.php:1041
|
539 |
+
#: svn/tags/1.0.5/lib/better-font-awesome-library/better-font-awesome-library.php:1050
|
540 |
+
#: svn/tags/1.0.6/lib/better-font-awesome-library/better-font-awesome-library.php:1050
|
541 |
+
#: svn/tags/1.0.7/lib/better-font-awesome-library/better-font-awesome-library.php:1050
|
542 |
+
#: svn/tags/1.0.8/lib/better-font-awesome-library/better-font-awesome-library.php:1101
|
543 |
+
#: svn/tags/1.0.9/lib/better-font-awesome-library/better-font-awesome-library.php:1101
|
544 |
+
#: svn/tags/1.1.0/lib/better-font-awesome-library/better-font-awesome-library.php:1102
|
545 |
+
#: svn/tags/1.2.0/lib/better-font-awesome-library/better-font-awesome-library.php:1102
|
546 |
+
#: svn/tags/1.2.1/lib/better-font-awesome-library/better-font-awesome-library.php:1102
|
547 |
+
#: svn/tags/1.3.0/lib/better-font-awesome-library/better-font-awesome-library.php:1071
|
548 |
+
#: svn/tags/1.3.1/lib/better-font-awesome-library/better-font-awesome-library.php:1079
|
549 |
+
#: svn/tags/1.3.2/lib/better-font-awesome-library/better-font-awesome-library.php:1079
|
550 |
+
#: svn/tags/1.3.3/lib/better-font-awesome-library/better-font-awesome-library.php:1082
|
551 |
+
#: svn/trunk/lib/better-font-awesome-library/better-font-awesome-library.php:1082
|
552 |
msgid ""
|
553 |
"The attempt to fetch the remote Font Awesome stylesheet failed with the "
|
554 |
"following error: %s %s The embedded fallback Font Awesome will be used "
|
555 |
"instead (version: %s)."
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: lib/better-font-awesome-library/better-font-awesome-library.php:1092
|
559 |
+
#: svn/tags/1.0.1/lib/better-font-awesome-library/better-font-awesome-library.php:1046
|
560 |
+
#: svn/tags/1.0.10/lib/better-font-awesome-library/better-font-awesome-library.php:1112
|
561 |
+
#: svn/tags/1.0.2/lib/better-font-awesome-library/better-font-awesome-library.php:1051
|
562 |
+
#: svn/tags/1.0.3/lib/better-font-awesome-library/better-font-awesome-library.php:1051
|
563 |
+
#: svn/tags/1.0.4/lib/better-font-awesome-library/better-font-awesome-library.php:1051
|
564 |
+
#: svn/tags/1.0.5/lib/better-font-awesome-library/better-font-awesome-library.php:1060
|
565 |
+
#: svn/tags/1.0.6/lib/better-font-awesome-library/better-font-awesome-library.php:1060
|
566 |
+
#: svn/tags/1.0.7/lib/better-font-awesome-library/better-font-awesome-library.php:1060
|
567 |
+
#: svn/tags/1.0.8/lib/better-font-awesome-library/better-font-awesome-library.php:1111
|
568 |
+
#: svn/tags/1.0.9/lib/better-font-awesome-library/better-font-awesome-library.php:1111
|
569 |
+
#: svn/tags/1.1.0/lib/better-font-awesome-library/better-font-awesome-library.php:1112
|
570 |
+
#: svn/tags/1.2.0/lib/better-font-awesome-library/better-font-awesome-library.php:1112
|
571 |
+
#: svn/tags/1.2.1/lib/better-font-awesome-library/better-font-awesome-library.php:1112
|
572 |
+
#: svn/tags/1.3.0/lib/better-font-awesome-library/better-font-awesome-library.php:1081
|
573 |
+
#: svn/tags/1.3.1/lib/better-font-awesome-library/better-font-awesome-library.php:1089
|
574 |
+
#: svn/tags/1.3.2/lib/better-font-awesome-library/better-font-awesome-library.php:1089
|
575 |
+
#: svn/tags/1.3.3/lib/better-font-awesome-library/better-font-awesome-library.php:1092
|
576 |
+
#: svn/trunk/lib/better-font-awesome-library/better-font-awesome-library.php:1092
|
577 |
msgid ""
|
578 |
"<b>Don't worry! Better Font Awesome will still render using the included "
|
579 |
"fallback version:</b> "
|
580 |
msgstr ""
|
581 |
|
582 |
+
#: lib/better-font-awesome-library/better-font-awesome-library.php:1096
|
583 |
+
#: svn/tags/1.0.0/lib/better-font-awesome-library/better-font-awesome-library.php:1042
|
584 |
+
#: svn/tags/1.0.1/lib/better-font-awesome-library/better-font-awesome-library.php:1050
|
585 |
+
#: svn/tags/1.0.10/lib/better-font-awesome-library/better-font-awesome-library.php:1116
|
586 |
+
#: svn/tags/1.0.2/lib/better-font-awesome-library/better-font-awesome-library.php:1055
|
587 |
+
#: svn/tags/1.0.3/lib/better-font-awesome-library/better-font-awesome-library.php:1055
|
588 |
+
#: svn/tags/1.0.4/lib/better-font-awesome-library/better-font-awesome-library.php:1055
|
589 |
+
#: svn/tags/1.0.5/lib/better-font-awesome-library/better-font-awesome-library.php:1064
|
590 |
+
#: svn/tags/1.0.6/lib/better-font-awesome-library/better-font-awesome-library.php:1064
|
591 |
+
#: svn/tags/1.0.7/lib/better-font-awesome-library/better-font-awesome-library.php:1064
|
592 |
+
#: svn/tags/1.0.8/lib/better-font-awesome-library/better-font-awesome-library.php:1115
|
593 |
+
#: svn/tags/1.0.9/lib/better-font-awesome-library/better-font-awesome-library.php:1115
|
594 |
+
#: svn/tags/1.1.0/lib/better-font-awesome-library/better-font-awesome-library.php:1116
|
595 |
+
#: svn/tags/1.2.0/lib/better-font-awesome-library/better-font-awesome-library.php:1116
|
596 |
+
#: svn/tags/1.2.1/lib/better-font-awesome-library/better-font-awesome-library.php:1116
|
597 |
+
#: svn/tags/1.3.0/lib/better-font-awesome-library/better-font-awesome-library.php:1085
|
598 |
+
#: svn/tags/1.3.1/lib/better-font-awesome-library/better-font-awesome-library.php:1093
|
599 |
+
#: svn/tags/1.3.2/lib/better-font-awesome-library/better-font-awesome-library.php:1093
|
600 |
+
#: svn/tags/1.3.3/lib/better-font-awesome-library/better-font-awesome-library.php:1096
|
601 |
+
#: svn/trunk/lib/better-font-awesome-library/better-font-awesome-library.php:1096
|
602 |
msgid "Solution"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: svn/tags/0.9.0/Titan-Framework/class-admin-panel.php:290
|
606 |
+
#: svn/tags/0.9.1/Titan-Framework/class-admin-panel.php:290
|
607 |
+
#: svn/tags/0.9.2/Titan-Framework/class-admin-panel.php:290
|
608 |
+
#: svn/tags/0.9.3/Titan-Framework/class-admin-panel.php:290
|
609 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/class-admin-panel.php:290
|
610 |
+
#: svn/tags/0.9.4/Titan-Framework/class-admin-panel.php:290
|
611 |
+
#: svn/tags/0.9.5/Titan-Framework/class-admin-panel.php:287
|
612 |
+
#: svn/tags/0.9.6/Titan-Framework/class-admin-panel.php:287
|
613 |
+
#: svn/tags/0.9.7/Titan-Framework/class-admin-panel.php:287
|
614 |
+
msgid "Settings saved."
|
615 |
+
msgstr ""
|
616 |
+
|
617 |
+
#: svn/tags/0.9.0/Titan-Framework/class-admin-panel.php:292
|
618 |
+
#: svn/tags/0.9.1/Titan-Framework/class-admin-panel.php:292
|
619 |
+
#: svn/tags/0.9.2/Titan-Framework/class-admin-panel.php:292
|
620 |
+
#: svn/tags/0.9.3/Titan-Framework/class-admin-panel.php:292
|
621 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/class-admin-panel.php:292
|
622 |
+
#: svn/tags/0.9.4/Titan-Framework/class-admin-panel.php:292
|
623 |
+
#: svn/tags/0.9.5/Titan-Framework/class-admin-panel.php:289
|
624 |
+
#: svn/tags/0.9.6/Titan-Framework/class-admin-panel.php:289
|
625 |
+
#: svn/tags/0.9.7/Titan-Framework/class-admin-panel.php:289
|
626 |
+
msgid "Settings reset to default."
|
627 |
+
msgstr ""
|
628 |
+
|
629 |
+
#: svn/tags/0.9.0/Titan-Framework/class-meta-box.php:35
|
630 |
+
#: svn/tags/0.9.0/Titan-Framework/class-theme-customizer-section.php:30
|
631 |
+
#: svn/tags/0.9.1/Titan-Framework/class-meta-box.php:35
|
632 |
+
#: svn/tags/0.9.1/Titan-Framework/class-theme-customizer-section.php:30
|
633 |
+
#: svn/tags/0.9.2/Titan-Framework/class-meta-box.php:35
|
634 |
+
#: svn/tags/0.9.2/Titan-Framework/class-theme-customizer-section.php:30
|
635 |
+
#: svn/tags/0.9.3/Titan-Framework/class-meta-box.php:35
|
636 |
+
#: svn/tags/0.9.3/Titan-Framework/class-theme-customizer-section.php:30
|
637 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/class-meta-box.php:35
|
638 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/class-theme-customizer-section.php:30
|
639 |
+
#: svn/tags/0.9.4/Titan-Framework/class-meta-box.php:35
|
640 |
+
#: svn/tags/0.9.4/Titan-Framework/class-theme-customizer-section.php:30
|
641 |
+
#: svn/tags/0.9.5/Titan-Framework/class-meta-box.php:35
|
642 |
+
#: svn/tags/0.9.5/Titan-Framework/class-theme-customizer-section.php:30
|
643 |
+
#: svn/tags/0.9.6/Titan-Framework/class-meta-box.php:35
|
644 |
+
#: svn/tags/0.9.6/Titan-Framework/class-theme-customizer-section.php:30
|
645 |
+
#: svn/tags/0.9.7/Titan-Framework/class-meta-box.php:35
|
646 |
+
#: svn/tags/0.9.7/Titan-Framework/class-theme-customizer-section.php:30
|
647 |
+
msgid "More Options"
|
648 |
+
msgstr ""
|
649 |
+
|
650 |
+
#: svn/tags/0.9.0/Titan-Framework/class-option-save.php:20
|
651 |
+
#: svn/tags/0.9.1/Titan-Framework/class-option-save.php:20
|
652 |
+
#: svn/tags/0.9.2/Titan-Framework/class-option-save.php:20
|
653 |
+
#: svn/tags/0.9.3/Titan-Framework/class-option-save.php:20
|
654 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/class-option-save.php:20
|
655 |
+
#: svn/tags/0.9.4/Titan-Framework/class-option-save.php:20
|
656 |
+
#: svn/tags/0.9.5/Titan-Framework/class-option-save.php:20
|
657 |
+
#: svn/tags/0.9.6/Titan-Framework/class-option-save.php:20
|
658 |
+
#: svn/tags/0.9.7/Titan-Framework/class-option-save.php:20
|
659 |
+
msgid "Save Changes"
|
660 |
+
msgstr ""
|
661 |
+
|
662 |
+
#: svn/tags/0.9.0/Titan-Framework/class-option-save.php:23
|
663 |
+
#: svn/tags/0.9.1/Titan-Framework/class-option-save.php:23
|
664 |
+
#: svn/tags/0.9.2/Titan-Framework/class-option-save.php:23
|
665 |
+
#: svn/tags/0.9.3/Titan-Framework/class-option-save.php:23
|
666 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/class-option-save.php:23
|
667 |
+
#: svn/tags/0.9.4/Titan-Framework/class-option-save.php:23
|
668 |
+
#: svn/tags/0.9.5/Titan-Framework/class-option-save.php:23
|
669 |
+
#: svn/tags/0.9.6/Titan-Framework/class-option-save.php:23
|
670 |
+
#: svn/tags/0.9.7/Titan-Framework/class-option-save.php:23
|
671 |
+
msgid "Reset to Default"
|
672 |
+
msgstr ""
|
673 |
+
|
674 |
+
#: svn/tags/0.9.0/Titan-Framework/class-option-select-categories.php:37
|
675 |
+
#: svn/tags/0.9.0/Titan-Framework/class-option-select-categories.php:104
|
676 |
+
#: svn/tags/0.9.0/Titan-Framework/class-option-select-pages.php:30
|
677 |
+
#: svn/tags/0.9.0/Titan-Framework/class-option-select-posts.php:38
|
678 |
+
#: svn/tags/0.9.0/Titan-Framework/class-option-select-posts.php:106
|
679 |
+
#: svn/tags/0.9.1/Titan-Framework/class-option-select-categories.php:37
|
680 |
+
#: svn/tags/0.9.1/Titan-Framework/class-option-select-categories.php:104
|
681 |
+
#: svn/tags/0.9.1/Titan-Framework/class-option-select-pages.php:30
|
682 |
+
#: svn/tags/0.9.1/Titan-Framework/class-option-select-posts.php:38
|
683 |
+
#: svn/tags/0.9.1/Titan-Framework/class-option-select-posts.php:106
|
684 |
+
#: svn/tags/0.9.2/Titan-Framework/class-option-select-categories.php:37
|
685 |
+
#: svn/tags/0.9.2/Titan-Framework/class-option-select-categories.php:104
|
686 |
+
#: svn/tags/0.9.2/Titan-Framework/class-option-select-pages.php:30
|
687 |
+
#: svn/tags/0.9.2/Titan-Framework/class-option-select-posts.php:38
|
688 |
+
#: svn/tags/0.9.2/Titan-Framework/class-option-select-posts.php:106
|
689 |
+
#: svn/tags/0.9.3/Titan-Framework/class-option-select-categories.php:37
|
690 |
+
#: svn/tags/0.9.3/Titan-Framework/class-option-select-categories.php:104
|
691 |
+
#: svn/tags/0.9.3/Titan-Framework/class-option-select-pages.php:30
|
692 |
+
#: svn/tags/0.9.3/Titan-Framework/class-option-select-posts.php:38
|
693 |
+
#: svn/tags/0.9.3/Titan-Framework/class-option-select-posts.php:106
|
694 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/class-option-select-categories.php:37
|
695 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/class-option-select-categories.php:104
|
696 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/class-option-select-pages.php:30
|
697 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/class-option-select-posts.php:38
|
698 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/class-option-select-posts.php:106
|
699 |
+
#: svn/tags/0.9.4/Titan-Framework/class-option-select-categories.php:37
|
700 |
+
#: svn/tags/0.9.4/Titan-Framework/class-option-select-categories.php:104
|
701 |
+
#: svn/tags/0.9.4/Titan-Framework/class-option-select-pages.php:30
|
702 |
+
#: svn/tags/0.9.4/Titan-Framework/class-option-select-posts.php:38
|
703 |
+
#: svn/tags/0.9.4/Titan-Framework/class-option-select-posts.php:106
|
704 |
+
#: svn/tags/0.9.5/Titan-Framework/class-option-select-categories.php:37
|
705 |
+
#: svn/tags/0.9.5/Titan-Framework/class-option-select-categories.php:104
|
706 |
+
#: svn/tags/0.9.5/Titan-Framework/class-option-select-pages.php:30
|
707 |
+
#: svn/tags/0.9.5/Titan-Framework/class-option-select-posts.php:38
|
708 |
+
#: svn/tags/0.9.5/Titan-Framework/class-option-select-posts.php:106
|
709 |
+
#: svn/tags/0.9.6/Titan-Framework/class-option-select-categories.php:37
|
710 |
+
#: svn/tags/0.9.6/Titan-Framework/class-option-select-categories.php:104
|
711 |
+
#: svn/tags/0.9.6/Titan-Framework/class-option-select-pages.php:30
|
712 |
+
#: svn/tags/0.9.6/Titan-Framework/class-option-select-posts.php:38
|
713 |
+
#: svn/tags/0.9.6/Titan-Framework/class-option-select-posts.php:106
|
714 |
+
#: svn/tags/0.9.7/Titan-Framework/class-option-select-categories.php:37
|
715 |
+
#: svn/tags/0.9.7/Titan-Framework/class-option-select-categories.php:104
|
716 |
+
#: svn/tags/0.9.7/Titan-Framework/class-option-select-pages.php:30
|
717 |
+
#: svn/tags/0.9.7/Titan-Framework/class-option-select-posts.php:38
|
718 |
+
#: svn/tags/0.9.7/Titan-Framework/class-option-select-posts.php:106
|
719 |
+
msgid "Select"
|
720 |
+
msgstr ""
|
721 |
+
|
722 |
+
#: svn/tags/0.9.0/Titan-Framework/class-option-select-googlefont.php:29
|
723 |
+
#: svn/tags/0.9.1/Titan-Framework/class-option-select-googlefont.php:29
|
724 |
+
#: svn/tags/0.9.2/Titan-Framework/class-option-select-googlefont.php:29
|
725 |
+
#: svn/tags/0.9.3/Titan-Framework/class-option-select-googlefont.php:29
|
726 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/class-option-select-googlefont.php:29
|
727 |
+
#: svn/tags/0.9.4/Titan-Framework/class-option-select-googlefont.php:29
|
728 |
+
#: svn/tags/0.9.5/Titan-Framework/class-option-select-googlefont.php:29
|
729 |
+
#: svn/tags/0.9.6/Titan-Framework/class-option-select-googlefont.php:29
|
730 |
+
#: svn/tags/0.9.7/Titan-Framework/class-option-select-googlefont.php:29
|
731 |
+
msgid ""
|
732 |
+
"%s has been deprecated and will be removed in version %s! Please use %s "
|
733 |
+
"instead to avoid errors in the future."
|
734 |
+
msgstr ""
|
735 |
+
|
736 |
+
#: svn/tags/0.9.0/Titan-Framework/class-option-select-googlefont.php:108
|
737 |
+
#: svn/tags/0.9.1/Titan-Framework/class-option-select-googlefont.php:108
|
738 |
+
#: svn/tags/0.9.2/Titan-Framework/class-option-select-googlefont.php:108
|
739 |
+
#: svn/tags/0.9.3/Titan-Framework/class-option-select-googlefont.php:108
|
740 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/class-option-select-googlefont.php:108
|
741 |
+
#: svn/tags/0.9.4/Titan-Framework/class-option-select-googlefont.php:108
|
742 |
+
#: svn/tags/0.9.5/Titan-Framework/class-option-select-googlefont.php:108
|
743 |
+
#: svn/tags/0.9.6/Titan-Framework/class-option-select-googlefont.php:108
|
744 |
+
#: svn/tags/0.9.7/Titan-Framework/class-option-select-googlefont.php:108
|
745 |
+
msgid "Ultra-light"
|
746 |
+
msgstr ""
|
747 |
+
|
748 |
+
#: svn/tags/0.9.0/Titan-Framework/class-option-select-googlefont.php:111
|
749 |
+
#: svn/tags/0.9.1/Titan-Framework/class-option-select-googlefont.php:111
|
750 |
+
#: svn/tags/0.9.2/Titan-Framework/class-option-select-googlefont.php:111
|
751 |
+
#: svn/tags/0.9.3/Titan-Framework/class-option-select-googlefont.php:111
|
752 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/class-option-select-googlefont.php:111
|
753 |
+
#: svn/tags/0.9.4/Titan-Framework/class-option-select-googlefont.php:111
|
754 |
+
#: svn/tags/0.9.5/Titan-Framework/class-option-select-googlefont.php:111
|
755 |
+
#: svn/tags/0.9.6/Titan-Framework/class-option-select-googlefont.php:111
|
756 |
+
#: svn/tags/0.9.7/Titan-Framework/class-option-select-googlefont.php:111
|
757 |
+
msgid "Light"
|
758 |
+
msgstr ""
|
759 |
+
|
760 |
+
#: svn/tags/0.9.0/Titan-Framework/class-option-select-googlefont.php:114
|
761 |
+
#: svn/tags/0.9.1/Titan-Framework/class-option-select-googlefont.php:114
|
762 |
+
#: svn/tags/0.9.2/Titan-Framework/class-option-select-googlefont.php:114
|
763 |
+
#: svn/tags/0.9.3/Titan-Framework/class-option-select-googlefont.php:114
|
764 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/class-option-select-googlefont.php:114
|
765 |
+
#: svn/tags/0.9.4/Titan-Framework/class-option-select-googlefont.php:114
|
766 |
+
#: svn/tags/0.9.5/Titan-Framework/class-option-select-googlefont.php:114
|
767 |
+
#: svn/tags/0.9.6/Titan-Framework/class-option-select-googlefont.php:114
|
768 |
+
#: svn/tags/0.9.7/Titan-Framework/class-option-select-googlefont.php:114
|
769 |
+
msgid "Book"
|
770 |
+
msgstr ""
|
771 |
+
|
772 |
+
#: svn/tags/0.9.0/Titan-Framework/class-option-select-googlefont.php:117
|
773 |
+
#: svn/tags/0.9.1/Titan-Framework/class-option-select-googlefont.php:117
|
774 |
+
#: svn/tags/0.9.2/Titan-Framework/class-option-select-googlefont.php:117
|
775 |
+
#: svn/tags/0.9.3/Titan-Framework/class-option-select-googlefont.php:117
|
776 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/class-option-select-googlefont.php:117
|
777 |
+
#: svn/tags/0.9.4/Titan-Framework/class-option-select-googlefont.php:117
|
778 |
+
#: svn/tags/0.9.5/Titan-Framework/class-option-select-googlefont.php:117
|
779 |
+
#: svn/tags/0.9.6/Titan-Framework/class-option-select-googlefont.php:117
|
780 |
+
#: svn/tags/0.9.7/Titan-Framework/class-option-select-googlefont.php:117
|
781 |
+
msgid "Medium"
|
782 |
+
msgstr ""
|
783 |
+
|
784 |
+
#: svn/tags/0.9.0/Titan-Framework/class-option-select-googlefont.php:120
|
785 |
+
#: svn/tags/0.9.1/Titan-Framework/class-option-select-googlefont.php:120
|
786 |
+
#: svn/tags/0.9.2/Titan-Framework/class-option-select-googlefont.php:120
|
787 |
+
#: svn/tags/0.9.3/Titan-Framework/class-option-select-googlefont.php:120
|
788 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/class-option-select-googlefont.php:120
|
789 |
+
#: svn/tags/0.9.4/Titan-Framework/class-option-select-googlefont.php:120
|
790 |
+
#: svn/tags/0.9.5/Titan-Framework/class-option-select-googlefont.php:120
|
791 |
+
#: svn/tags/0.9.6/Titan-Framework/class-option-select-googlefont.php:120
|
792 |
+
#: svn/tags/0.9.7/Titan-Framework/class-option-select-googlefont.php:120
|
793 |
+
msgid "Semi-Bold"
|
794 |
+
msgstr ""
|
795 |
+
|
796 |
+
#: svn/tags/0.9.0/Titan-Framework/class-option-select-googlefont.php:123
|
797 |
+
#: svn/tags/0.9.1/Titan-Framework/class-option-select-googlefont.php:123
|
798 |
+
#: svn/tags/0.9.2/Titan-Framework/class-option-select-googlefont.php:123
|
799 |
+
#: svn/tags/0.9.3/Titan-Framework/class-option-select-googlefont.php:123
|
800 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/class-option-select-googlefont.php:123
|
801 |
+
#: svn/tags/0.9.4/Titan-Framework/class-option-select-googlefont.php:123
|
802 |
+
#: svn/tags/0.9.5/Titan-Framework/class-option-select-googlefont.php:123
|
803 |
+
#: svn/tags/0.9.6/Titan-Framework/class-option-select-googlefont.php:123
|
804 |
+
#: svn/tags/0.9.7/Titan-Framework/class-option-select-googlefont.php:123
|
805 |
+
msgid "Bold"
|
806 |
+
msgstr ""
|
807 |
+
|
808 |
+
#: svn/tags/0.9.0/Titan-Framework/class-option-select-googlefont.php:126
|
809 |
+
#: svn/tags/0.9.1/Titan-Framework/class-option-select-googlefont.php:126
|
810 |
+
#: svn/tags/0.9.2/Titan-Framework/class-option-select-googlefont.php:126
|
811 |
+
#: svn/tags/0.9.3/Titan-Framework/class-option-select-googlefont.php:126
|
812 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/class-option-select-googlefont.php:126
|
813 |
+
#: svn/tags/0.9.4/Titan-Framework/class-option-select-googlefont.php:126
|
814 |
+
#: svn/tags/0.9.5/Titan-Framework/class-option-select-googlefont.php:126
|
815 |
+
#: svn/tags/0.9.6/Titan-Framework/class-option-select-googlefont.php:126
|
816 |
+
#: svn/tags/0.9.7/Titan-Framework/class-option-select-googlefont.php:126
|
817 |
+
msgid "Extra-Bold"
|
818 |
+
msgstr ""
|
819 |
+
|
820 |
+
#: svn/tags/0.9.0/Titan-Framework/class-option-select-googlefont.php:129
|
821 |
+
#: svn/tags/0.9.1/Titan-Framework/class-option-select-googlefont.php:129
|
822 |
+
#: svn/tags/0.9.2/Titan-Framework/class-option-select-googlefont.php:129
|
823 |
+
#: svn/tags/0.9.3/Titan-Framework/class-option-select-googlefont.php:129
|
824 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/class-option-select-googlefont.php:129
|
825 |
+
#: svn/tags/0.9.4/Titan-Framework/class-option-select-googlefont.php:129
|
826 |
+
#: svn/tags/0.9.5/Titan-Framework/class-option-select-googlefont.php:129
|
827 |
+
#: svn/tags/0.9.6/Titan-Framework/class-option-select-googlefont.php:129
|
828 |
+
#: svn/tags/0.9.7/Titan-Framework/class-option-select-googlefont.php:129
|
829 |
+
msgid "Ultra-Bold"
|
830 |
+
msgstr ""
|
831 |
+
|
832 |
+
#: svn/tags/0.9.0/Titan-Framework/class-option-select-googlefont.php:132
|
833 |
+
#: svn/tags/0.9.1/Titan-Framework/class-option-select-googlefont.php:132
|
834 |
+
#: svn/tags/0.9.2/Titan-Framework/class-option-select-googlefont.php:132
|
835 |
+
#: svn/tags/0.9.3/Titan-Framework/class-option-select-googlefont.php:132
|
836 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/class-option-select-googlefont.php:132
|
837 |
+
#: svn/tags/0.9.4/Titan-Framework/class-option-select-googlefont.php:132
|
838 |
+
#: svn/tags/0.9.5/Titan-Framework/class-option-select-googlefont.php:132
|
839 |
+
#: svn/tags/0.9.6/Titan-Framework/class-option-select-googlefont.php:132
|
840 |
+
#: svn/tags/0.9.7/Titan-Framework/class-option-select-googlefont.php:132
|
841 |
+
msgid "Regular"
|
842 |
+
msgstr ""
|
843 |
+
|
844 |
+
#: svn/tags/0.9.0/Titan-Framework/class-option-upload.php:196
|
845 |
+
#: svn/tags/0.9.1/Titan-Framework/class-option-upload.php:196
|
846 |
+
#: svn/tags/0.9.2/Titan-Framework/class-option-upload.php:196
|
847 |
+
#: svn/tags/0.9.3/Titan-Framework/class-option-upload.php:196
|
848 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/class-option-upload.php:196
|
849 |
+
#: svn/tags/0.9.4/Titan-Framework/class-option-upload.php:196
|
850 |
+
#: svn/tags/0.9.5/Titan-Framework/class-option-upload.php:196
|
851 |
+
#: svn/tags/0.9.6/Titan-Framework/class-option-upload.php:196
|
852 |
+
#: svn/tags/0.9.7/Titan-Framework/class-option-upload.php:196
|
853 |
+
msgid "Select Image"
|
854 |
+
msgstr ""
|
855 |
+
|
856 |
+
#: svn/tags/0.9.0/Titan-Framework/class-option-upload.php:199
|
857 |
+
#: svn/tags/0.9.1/Titan-Framework/class-option-upload.php:199
|
858 |
+
#: svn/tags/0.9.2/Titan-Framework/class-option-upload.php:199
|
859 |
+
#: svn/tags/0.9.3/Titan-Framework/class-option-upload.php:199
|
860 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/class-option-upload.php:199
|
861 |
+
#: svn/tags/0.9.4/Titan-Framework/class-option-upload.php:199
|
862 |
+
#: svn/tags/0.9.5/Titan-Framework/class-option-upload.php:199
|
863 |
+
#: svn/tags/0.9.6/Titan-Framework/class-option-upload.php:199
|
864 |
+
#: svn/tags/0.9.7/Titan-Framework/class-option-upload.php:199
|
865 |
+
msgid "Use image"
|
866 |
+
msgstr ""
|
867 |
+
|
868 |
+
#: svn/tags/0.9.0/Titan-Framework/class-option.php:40
|
869 |
+
#: svn/tags/0.9.1/Titan-Framework/class-option.php:40
|
870 |
+
#: svn/tags/0.9.2/Titan-Framework/class-option.php:40
|
871 |
+
#: svn/tags/0.9.3/Titan-Framework/class-option.php:40
|
872 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/class-option.php:40
|
873 |
+
#: svn/tags/0.9.4/Titan-Framework/class-option.php:40
|
874 |
+
#: svn/tags/0.9.5/Titan-Framework/class-option.php:40
|
875 |
+
#: svn/tags/0.9.6/Titan-Framework/class-option.php:40
|
876 |
+
#: svn/tags/0.9.7/Titan-Framework/class-option.php:40
|
877 |
+
msgid "Option type or extended class %s does not exist."
|
878 |
+
msgstr ""
|
879 |
+
|
880 |
+
#: svn/tags/0.9.0/Titan-Framework/class-titan-framework.php:85
|
881 |
+
#: svn/tags/0.9.1/Titan-Framework/class-titan-framework.php:85
|
882 |
+
#: svn/tags/0.9.2/Titan-Framework/class-titan-framework.php:85
|
883 |
+
#: svn/tags/0.9.3/Titan-Framework/class-titan-framework.php:85
|
884 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/class-titan-framework.php:85
|
885 |
+
#: svn/tags/0.9.4/Titan-Framework/class-titan-framework.php:85
|
886 |
+
#: svn/tags/0.9.5/Titan-Framework/class-titan-framework.php:85
|
887 |
+
#: svn/tags/0.9.6/Titan-Framework/class-titan-framework.php:85
|
888 |
+
#: svn/tags/0.9.7/Titan-Framework/class-titan-framework.php:85
|
889 |
+
msgid "All option IDs must be unique. The id %s has been used multiple times."
|
890 |
+
msgstr ""
|
891 |
+
|
892 |
+
#: svn/tags/0.9.0/Titan-Framework/class-titan-framework.php:346
|
893 |
+
#: svn/tags/0.9.0/Titan-Framework/class-titan-framework.php:393
|
894 |
+
#: svn/tags/0.9.1/Titan-Framework/class-titan-framework.php:346
|
895 |
+
#: svn/tags/0.9.1/Titan-Framework/class-titan-framework.php:393
|
896 |
+
#: svn/tags/0.9.2/Titan-Framework/class-titan-framework.php:346
|
897 |
+
#: svn/tags/0.9.2/Titan-Framework/class-titan-framework.php:393
|
898 |
+
#: svn/tags/0.9.3/Titan-Framework/class-titan-framework.php:346
|
899 |
+
#: svn/tags/0.9.3/Titan-Framework/class-titan-framework.php:393
|
900 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/class-titan-framework.php:346
|
901 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/class-titan-framework.php:393
|
902 |
+
#: svn/tags/0.9.4/Titan-Framework/class-titan-framework.php:346
|
903 |
+
#: svn/tags/0.9.4/Titan-Framework/class-titan-framework.php:393
|
904 |
+
#: svn/tags/0.9.5/Titan-Framework/class-titan-framework.php:346
|
905 |
+
#: svn/tags/0.9.5/Titan-Framework/class-titan-framework.php:393
|
906 |
+
#: svn/tags/0.9.6/Titan-Framework/class-titan-framework.php:346
|
907 |
+
#: svn/tags/0.9.6/Titan-Framework/class-titan-framework.php:393
|
908 |
+
#: svn/tags/0.9.7/Titan-Framework/class-titan-framework.php:346
|
909 |
+
#: svn/tags/0.9.7/Titan-Framework/class-titan-framework.php:393
|
910 |
+
msgid ""
|
911 |
+
"Wrong usage of %s, this should be called inside a hook or from within a "
|
912 |
+
"theme file."
|
913 |
+
msgstr ""
|
914 |
+
|
915 |
+
#: svn/tags/0.9.0/Titan-Framework/titan-framework.php:126
|
916 |
+
#: svn/tags/0.9.1/Titan-Framework/titan-framework.php:126
|
917 |
+
#: svn/tags/0.9.2/Titan-Framework/titan-framework.php:126
|
918 |
+
#: svn/tags/0.9.3/Titan-Framework/titan-framework.php:126
|
919 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/titan-framework.php:126
|
920 |
+
#: svn/tags/0.9.4/Titan-Framework/titan-framework.php:126
|
921 |
+
#: svn/tags/0.9.5/Titan-Framework/titan-framework.php:126
|
922 |
+
#: svn/tags/0.9.6/Titan-Framework/titan-framework.php:126
|
923 |
+
#: svn/tags/0.9.7/Titan-Framework/titan-framework.php:126
|
924 |
+
msgid "Documentation"
|
925 |
+
msgstr ""
|
926 |
+
|
927 |
+
#: svn/tags/0.9.0/Titan-Framework/titan-framework.php:130
|
928 |
+
#: svn/tags/0.9.1/Titan-Framework/titan-framework.php:130
|
929 |
+
#: svn/tags/0.9.2/Titan-Framework/titan-framework.php:130
|
930 |
+
#: svn/tags/0.9.3/Titan-Framework/titan-framework.php:130
|
931 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/titan-framework.php:130
|
932 |
+
#: svn/tags/0.9.4/Titan-Framework/titan-framework.php:130
|
933 |
+
#: svn/tags/0.9.5/Titan-Framework/titan-framework.php:130
|
934 |
+
#: svn/tags/0.9.6/Titan-Framework/titan-framework.php:130
|
935 |
+
#: svn/tags/0.9.7/Titan-Framework/titan-framework.php:130
|
936 |
+
msgid "GitHub Repo"
|
937 |
+
msgstr ""
|
938 |
+
|
939 |
+
#: svn/tags/0.9.0/Titan-Framework/titan-framework.php:134
|
940 |
+
#: svn/tags/0.9.1/Titan-Framework/titan-framework.php:134
|
941 |
+
#: svn/tags/0.9.2/Titan-Framework/titan-framework.php:134
|
942 |
+
#: svn/tags/0.9.3/Titan-Framework/titan-framework.php:134
|
943 |
+
#: svn/tags/0.9.3/trunk/Titan-Framework/titan-framework.php:134
|
944 |
+
#: svn/tags/0.9.4/Titan-Framework/titan-framework.php:134
|
945 |
+
#: svn/tags/0.9.5/Titan-Framework/titan-framework.php:134
|
946 |
+
#: svn/tags/0.9.6/Titan-Framework/titan-framework.php:134
|
947 |
+
#: svn/tags/0.9.7/Titan-Framework/titan-framework.php:134
|
948 |
+
msgid "Issue Tracker"
|
949 |
+
msgstr ""
|
950 |
+
|
951 |
+
#: svn/tags/0.9.0/better-font-awesome.php:185
|
952 |
+
#: svn/tags/0.9.1/better-font-awesome.php:178
|
953 |
+
msgid "Latest"
|
954 |
+
msgstr ""
|
955 |
+
|
956 |
+
#: svn/tags/0.9.0/better-font-awesome.php:199
|
957 |
+
#: svn/tags/0.9.1/better-font-awesome.php:192
|
958 |
+
#: svn/tags/0.9.2/better-font-awesome.php:204
|
959 |
+
#: svn/tags/0.9.3/better-font-awesome.php:242
|
960 |
+
#: svn/tags/0.9.3/trunk/better-font-awesome.php:242
|
961 |
+
#: svn/tags/0.9.4/better-font-awesome.php:234
|
962 |
+
#: svn/tags/0.9.5/better-font-awesome.php:234
|
963 |
+
#: svn/tags/0.9.6/better-font-awesome.php:231
|
964 |
+
#: svn/tags/0.9.7/better-font-awesome.php:235
|
965 |
+
msgid "Font Awesome version"
|
966 |
+
msgstr ""
|
967 |
+
|
968 |
+
#: svn/tags/0.9.0/better-font-awesome.php:202
|
969 |
+
#: svn/tags/0.9.1/better-font-awesome.php:195
|
970 |
+
#: svn/tags/0.9.2/better-font-awesome.php:207
|
971 |
+
#: svn/tags/0.9.3/better-font-awesome.php:245
|
972 |
+
#: svn/tags/0.9.3/trunk/better-font-awesome.php:245
|
973 |
+
#: svn/tags/0.9.4/better-font-awesome.php:237
|
974 |
+
#: svn/tags/0.9.5/better-font-awesome.php:237
|
975 |
+
#: svn/tags/0.9.6/better-font-awesome.php:234
|
976 |
+
#: svn/tags/0.9.7/better-font-awesome.php:238
|
977 |
+
msgid ""
|
978 |
+
"Select the version of Font Awesome you would like to use. Visit the <a "
|
979 |
+
"href=\"http://fontawesome.io/\" target=\"_blank\">Font Awesome website</a> "
|
980 |
+
"for more information."
|
981 |
+
msgstr ""
|
982 |
+
|
983 |
+
#: svn/tags/0.9.0/better-font-awesome.php:216
|
984 |
+
#: svn/tags/0.9.1/better-font-awesome.php:209
|
985 |
+
msgid "Remove existing Font Awesome styles"
|
986 |
+
msgstr ""
|
987 |
+
|
988 |
+
#: svn/tags/0.9.0/better-font-awesome.php:219
|
989 |
+
#: svn/tags/0.9.1/better-font-awesome.php:212
|
990 |
+
msgid ""
|
991 |
+
"Remove Font Awesome CSS included by other plugins and themes. This may help "
|
992 |
+
"if icons are not rendering as expected."
|
993 |
+
msgstr ""
|
994 |
+
|
995 |
+
#: svn/tags/0.9.0/better-font-awesome.php:224
|
996 |
+
#: svn/tags/0.9.1/better-font-awesome.php:217
|
997 |
+
#: svn/tags/0.9.2/better-font-awesome.php:229
|
998 |
+
#: svn/tags/0.9.3/better-font-awesome.php:267
|
999 |
+
#: svn/tags/0.9.3/trunk/better-font-awesome.php:267
|
1000 |
+
#: svn/tags/0.9.4/better-font-awesome.php:271
|
1001 |
+
#: svn/tags/0.9.5/better-font-awesome.php:271
|
1002 |
+
#: svn/tags/0.9.6/better-font-awesome.php:268
|
1003 |
+
#: svn/tags/0.9.7/better-font-awesome.php:272
|
1004 |
+
msgid "Usage"
|
1005 |
+
msgstr ""
|
1006 |
+
|
1007 |
+
#: svn/tags/0.9.0/better-font-awesome.php:226
|
1008 |
+
#: svn/tags/0.9.1/better-font-awesome.php:219
|
1009 |
+
#: svn/tags/0.9.2/better-font-awesome.php:231
|
1010 |
+
#: svn/tags/0.9.3/better-font-awesome.php:269
|
1011 |
+
#: svn/tags/0.9.3/trunk/better-font-awesome.php:269
|
1012 |
+
#: svn/tags/0.9.4/better-font-awesome.php:273
|
1013 |
+
#: svn/tags/0.9.5/better-font-awesome.php:273
|
1014 |
+
#: svn/tags/0.9.6/better-font-awesome.php:270
|
1015 |
+
#: svn/tags/0.9.7/better-font-awesome.php:274
|
1016 |
+
msgid ""
|
1017 |
+
"\n"
|
1018 |
+
"\t\t \t\t<b>Version 4</b> <small><a "
|
1019 |
+
"href=\"http://fontawesome.io/examples/\">See all available classes "
|
1020 |
+
"»</a></small><br /><br />\n"
|
1021 |
+
"\t\t \t\t<i class=\"icon-star fa fa-star\"></i> <code>[icon "
|
1022 |
+
"name=\"star\"]</code> or <code><i "
|
1023 |
+
"class=\"fa-star\"></i></code><br /><br />\n"
|
1024 |
+
"\t\t \t\t<i class=\"icon-star fa fa-star icon-2x fa-2x\"></i> "
|
1025 |
+
"<code>[icon name=\"star\" class=\"fa-2x\"]</code> or <code><i "
|
1026 |
+
"class=\"fa-star fa-2x\"></i></code><br /><br />\n"
|
1027 |
+
"\t\t \t\t<i class=\"icon-star fa fa-star icon-2x fa-2x icon-border "
|
1028 |
+
"fa-border\"></i> <code>[icon name=\"star\" class=\"fa-2x "
|
1029 |
+
"fa-border\"]</code> or <code><i class=\"fa-star fa-2x "
|
1030 |
+
"fa-border\"></i></code><br /><br /><br />\n"
|
1031 |
+
"\t\t \t\t<b>Version 3</b> <small><a "
|
1032 |
+
"href=\"http://fontawesome.io/3.2.1/examples/\">See all available classes "
|
1033 |
+
"»</a></small><br /><br />\n"
|
1034 |
+
"\t\t \t\t<i class=\"icon-star fa fa-star\"></i> <code>[icon "
|
1035 |
+
"name=\"star\"]</code> or <code><i "
|
1036 |
+
"class=\"icon-star\"></i></code><br /><br />\n"
|
1037 |
+
"\t\t \t\t<i class=\"icon-star fa fa-star icon-2x fa-2x\"></i> "
|
1038 |
+
"<code>[icon name=\"star\" class=\"icon-2x\"]</code> or <code><i "
|
1039 |
+
"class=\"icon-star icon-2x\"></i></code><br /><br />\n"
|
1040 |
+
"\t\t \t\t<i class=\"icon-star fa fa-star icon-2x fa-2x icon-border "
|
1041 |
+
"fa-border\"></i> <code>[icon name=\"star\" class=\"icon-2x "
|
1042 |
+
"icon-border\"]</code> or <code><i class=\"icon-star icon-2x "
|
1043 |
+
"icon-border\"></i></code>\n"
|
1044 |
+
"\n"
|
1045 |
+
"\t\t \t\t"
|
1046 |
+
msgstr ""
|
1047 |
+
|
1048 |
+
#: svn/tags/0.9.2/better-font-awesome.php:221
|
1049 |
+
#: svn/tags/0.9.3/better-font-awesome.php:259
|
1050 |
+
#: svn/tags/0.9.3/trunk/better-font-awesome.php:259
|
1051 |
+
#: svn/tags/0.9.4/better-font-awesome.php:263
|
1052 |
+
#: svn/tags/0.9.5/better-font-awesome.php:263
|
1053 |
+
#: svn/tags/0.9.6/better-font-awesome.php:260
|
1054 |
+
#: svn/tags/0.9.7/better-font-awesome.php:264
|
1055 |
+
msgid "Remove existing FA"
|
1056 |
+
msgstr ""
|
1057 |
+
|
1058 |
+
#: svn/tags/0.9.2/better-font-awesome.php:224
|
1059 |
+
#: svn/tags/0.9.3/better-font-awesome.php:262
|
1060 |
+
#: svn/tags/0.9.3/trunk/better-font-awesome.php:262
|
1061 |
+
#: svn/tags/0.9.4/better-font-awesome.php:266
|
1062 |
+
#: svn/tags/0.9.5/better-font-awesome.php:266
|
1063 |
+
#: svn/tags/0.9.6/better-font-awesome.php:263
|
1064 |
+
#: svn/tags/0.9.7/better-font-awesome.php:267
|
1065 |
+
msgid ""
|
1066 |
+
"Remove Font Awesome CSS and shortcodes added by other plugins and themes. "
|
1067 |
+
"This may help if icons are not rendering properly."
|
1068 |
+
msgstr ""
|
1069 |
+
|
1070 |
+
#: svn/tags/0.9.4/better-font-awesome.php:243
|
1071 |
+
#: svn/tags/0.9.5/better-font-awesome.php:243
|
1072 |
+
#: svn/tags/0.9.6/better-font-awesome.php:240
|
1073 |
+
#: svn/tags/0.9.7/better-font-awesome.php:244
|
1074 |
+
msgid "CDN"
|
1075 |
+
msgstr ""
|
1076 |
+
|
1077 |
+
#: svn/tags/0.9.4/better-font-awesome.php:246
|
1078 |
+
#: svn/tags/0.9.5/better-font-awesome.php:246
|
1079 |
+
#: svn/tags/0.9.6/better-font-awesome.php:243
|
1080 |
+
#: svn/tags/0.9.7/better-font-awesome.php:247
|
1081 |
+
msgid "Select the CDN from which to load Font Awesome."
|
1082 |
+
msgstr ""
|
1083 |
+
|
1084 |
+
#: svn/tags/1.0.0/better-font-awesome.php:517
|
1085 |
+
#: svn/tags/1.0.1/better-font-awesome.php:517
|
1086 |
+
#: svn/tags/1.0.10/better-font-awesome.php:536
|
1087 |
+
#: svn/tags/1.0.2/better-font-awesome.php:517
|
1088 |
+
#: svn/tags/1.0.3/better-font-awesome.php:517
|
1089 |
+
#: svn/tags/1.0.4/better-font-awesome.php:517
|
1090 |
+
#: svn/tags/1.0.5/better-font-awesome.php:517
|
1091 |
+
#: svn/tags/1.0.6/better-font-awesome.php:517
|
1092 |
+
#: svn/tags/1.0.7/better-font-awesome.php:517
|
1093 |
+
#: svn/tags/1.0.8/better-font-awesome.php:536
|
1094 |
+
#: svn/tags/1.0.9/better-font-awesome.php:536
|
1095 |
+
#: svn/tags/1.1.0/better-font-awesome.php:599
|
1096 |
+
#: svn/tags/1.2.0/better-font-awesome.php:599
|
1097 |
+
#: svn/tags/1.2.1/better-font-awesome.php:601
|
1098 |
+
msgid ""
|
1099 |
+
"<h3>Usage</h3>\n"
|
1100 |
+
" <b>Font Awesome version 4.x "
|
1101 |
+
"+</b> <small><a "
|
1102 |
+
"href=\"http://fontawesome.io/examples/\">See all available options "
|
1103 |
+
"»</a></small><br /><br />\n"
|
1104 |
+
" <i class=\"icon-coffee fa fa-coffee\"></i> <code>[icon "
|
1105 |
+
"name=\"coffee\"]</code> or <code><i "
|
1106 |
+
"class=\"fa-coffee\"></i></code><br /><br />\n"
|
1107 |
+
" <i class=\"icon-coffee fa fa-coffee icon-2x "
|
1108 |
+
"fa-2x\"></i> <code>[icon name=\"coffee\" class=\"fa-2x\"]</code> or "
|
1109 |
+
"<code><i class=\"fa-coffee fa-2x\"></i></code><br /><br />\n"
|
1110 |
+
" <i class=\"icon-coffee fa fa-coffee icon-2x fa-2x "
|
1111 |
+
"icon-rotate-90 fa-rotate-90\"></i> <code>[icon name=\"coffee\" "
|
1112 |
+
"class=\"fa-2x fa-rotate-90\"]</code> or <code><i class=\"fa-coffee fa-2x "
|
1113 |
+
"fa-rotate-90\"></i></code><br /><br /><br />\n"
|
1114 |
+
" <b>Font Awesome version "
|
1115 |
+
"3.x</b> <small><a "
|
1116 |
+
"href=\"http://fontawesome.io/3.2.1/examples/\">See all available options "
|
1117 |
+
"»</a></small><br /><br />\n"
|
1118 |
+
" <i class=\"icon-coffee fa fa-coffee\"></i> <code>[icon "
|
1119 |
+
"name=\"coffee\"]</code> or <code><i "
|
1120 |
+
"class=\"icon-coffee\"></i></code><br /><br />\n"
|
1121 |
+
" <i class=\"icon-coffee fa fa-coffee icon-2x "
|
1122 |
+
"fa-2x\"></i> <code>[icon name=\"coffee\" class=\"icon-2x\"]</code> or "
|
1123 |
+
"<code><i class=\"icon-coffee icon-2x\"></i></code><br /><br />\n"
|
1124 |
+
" <i class=\"icon-coffee fa fa-coffee icon-2x fa-2x "
|
1125 |
+
"icon-rotate-90 fa-rotate-90\"></i> <code>[icon name=\"coffee\" "
|
1126 |
+
"class=\"icon-2x icon-rotate-90\"]</code> or <code><i class=\"icon-coffee "
|
1127 |
+
"icon-2x icon-rotate-90\"></i></code>"
|
1128 |
+
msgstr ""
|
1129 |
+
|
1130 |
#. Plugin URI of the plugin/theme
|
1131 |
msgid "http://wordpress.org/plugins/better-font-awesome"
|
1132 |
msgstr ""
|
1141 |
|
1142 |
#. Author URI of the plugin/theme
|
1143 |
msgid "mickey@mickeykaycreative.com"
|
1144 |
+
msgstr ""
|
lib/better-font-awesome-library/README.md
CHANGED
@@ -74,13 +74,11 @@ git submodule update --init --recursive
|
|
74 |
3. If desired, use the [Better Font Awesome Library object](#the-better-font-awesome-library-object) to manually include Font Awesome CSS, output lists of available icons, create your own shortcodes, and much more.
|
75 |
|
76 |
#### Usage Notes ####
|
77 |
-
The Better Font Awesome Library is designed to work in conjunction with the [Better Font Awesome](https://wordpress.org/plugins/better-font-awesome/) WordPress plugin. The plugin initializes this library (with its initialization args) on the `
|
78 |
|
79 |
-
1. Initialize later, to ensure that any Better Font Awesome plugin settings override yours (this is the default behavior, shown above by initializing the library on the `init` hook
|
80 |
1. Initialize earlier, to "take over" and prevent Better Font Awesome settings from having an effect.
|
81 |
|
82 |
-
**Note:** if you're using the library in a theme, the `plugins_loaded` hook has already fired and is unavailable to you. This behavior is intended - if your theme utilizes the library, and the Better Font Awesome plugin is also installed, users should be able to override all Font Awesome behavior/settings via the admin options provided via the plugin.
|
83 |
-
|
84 |
## Initialization Parameters ($args) ##
|
85 |
The following arguments can be used to initialize the library using `Better_Font_Awesome_Library::get_instance( $args )`:
|
86 |
|
74 |
3. If desired, use the [Better Font Awesome Library object](#the-better-font-awesome-library-object) to manually include Font Awesome CSS, output lists of available icons, create your own shortcodes, and much more.
|
75 |
|
76 |
#### Usage Notes ####
|
77 |
+
The Better Font Awesome Library is designed to work in conjunction with the [Better Font Awesome](https://wordpress.org/plugins/better-font-awesome/) WordPress plugin. The plugin initializes this library (with its initialization args) on the `init` hook, priority `5`. When using the Better Font Awesome Library in your project, you have two options:
|
78 |
|
79 |
+
1. Initialize later, to ensure that any Better Font Awesome plugin settings override yours (this is the default behavior, shown above by initializing the library on the `init` hook with default priority `10`.
|
80 |
1. Initialize earlier, to "take over" and prevent Better Font Awesome settings from having an effect.
|
81 |
|
|
|
|
|
82 |
## Initialization Parameters ($args) ##
|
83 |
The following arguments can be used to initialize the library using `Better_Font_Awesome_Library::get_instance( $args )`:
|
84 |
|
lib/better-font-awesome-library/better-font-awesome-library.php
CHANGED
@@ -222,7 +222,7 @@ class Better_Font_Awesome_Library {
|
|
222 |
$this->args = $args;
|
223 |
|
224 |
// Load the library functionality.
|
225 |
-
|
226 |
|
227 |
}
|
228 |
|
@@ -248,6 +248,12 @@ class Better_Font_Awesome_Library {
|
|
248 |
// Get stylesheet and generate list of available icons in Font Awesome stylesheet.
|
249 |
$this->setup_stylesheet_data();
|
250 |
|
|
|
|
|
|
|
|
|
|
|
|
|
251 |
/**
|
252 |
* Remove existing Font Awesome CSS and shortcodes if needed.
|
253 |
*
|
@@ -259,7 +265,7 @@ class Better_Font_Awesome_Library {
|
|
259 |
if ( $this->args['remove_existing_fa'] ) {
|
260 |
|
261 |
add_action( 'wp_enqueue_scripts', array( $this, 'remove_font_awesome_css' ), 15 );
|
262 |
-
add_action( 'init', array( $this, 'remove_icon_shortcode' ),
|
263 |
|
264 |
}
|
265 |
|
@@ -288,12 +294,9 @@ class Better_Font_Awesome_Library {
|
|
288 |
* Awesome CSS and shortcodes.
|
289 |
*/
|
290 |
if ( $this->args['load_shortcode'] || $this->args['load_tinymce_plugin'] ) {
|
291 |
-
add_action( 'init', array( $this, 'add_icon_shortcode' ),
|
292 |
}
|
293 |
|
294 |
-
// Add Font Awesome and/or custom CSS to the editor.
|
295 |
-
add_action( 'init', array( $this, 'add_editor_styles' ) );
|
296 |
-
|
297 |
// Load TinyMCE functionality.
|
298 |
if ( $this->args['load_tinymce_plugin'] ) {
|
299 |
|
@@ -304,9 +307,6 @@ class Better_Font_Awesome_Library {
|
|
304 |
|
305 |
}
|
306 |
|
307 |
-
// Output any necessary admin notices.
|
308 |
-
add_action( 'admin_notices', array( $this, 'do_admin_notice' ) );
|
309 |
-
|
310 |
}
|
311 |
|
312 |
/**
|
@@ -1005,6 +1005,9 @@ class Better_Font_Awesome_Library {
|
|
1005 |
*/
|
1006 |
public function enqueue_admin_scripts() {
|
1007 |
|
|
|
|
|
|
|
1008 |
// Custom admin CSS.
|
1009 |
wp_enqueue_style( self::SLUG . '-admin', $this->root_url . 'css/admin-styles.css' );
|
1010 |
|
@@ -1012,8 +1015,8 @@ class Better_Font_Awesome_Library {
|
|
1012 |
wp_enqueue_script( self::SLUG . '-admin', $this->root_url . 'js/admin.js' );
|
1013 |
|
1014 |
// Icon picker JS and CSS.
|
1015 |
-
wp_enqueue_style( 'fontawesome-iconpicker', $this->root_url . 'lib/fontawesome-iconpicker/css/fontawesome-iconpicker.
|
1016 |
-
wp_enqueue_script( 'fontawesome-iconpicker', $this->root_url . 'lib/fontawesome-iconpicker/js/fontawesome-iconpicker.
|
1017 |
|
1018 |
// Output PHP variables to JS.
|
1019 |
$bfa_vars = array(
|
@@ -1034,7 +1037,7 @@ class Better_Font_Awesome_Library {
|
|
1034 |
ob_start();
|
1035 |
?>
|
1036 |
<span class="bfa-iconpicker fontawesome-iconpicker" data-selected="fa-flag">
|
1037 |
-
<a href="#" class="button-
|
1038 |
<span class="fa icon fa-flag icon-flag"></span>
|
1039 |
<?php esc_html_e( 'Insert Icon', 'better-font-awesome' ); ?>
|
1040 |
<i class="change-icon-placeholder"></i>
|
222 |
$this->args = $args;
|
223 |
|
224 |
// Load the library functionality.
|
225 |
+
$this->load();
|
226 |
|
227 |
}
|
228 |
|
248 |
// Get stylesheet and generate list of available icons in Font Awesome stylesheet.
|
249 |
$this->setup_stylesheet_data();
|
250 |
|
251 |
+
// Add Font Awesome and/or custom CSS to the editor.
|
252 |
+
$this->add_editor_styles();
|
253 |
+
|
254 |
+
// Output any necessary admin notices.
|
255 |
+
add_action( 'admin_notices', array( $this, 'do_admin_notice' ) );
|
256 |
+
|
257 |
/**
|
258 |
* Remove existing Font Awesome CSS and shortcodes if needed.
|
259 |
*
|
265 |
if ( $this->args['remove_existing_fa'] ) {
|
266 |
|
267 |
add_action( 'wp_enqueue_scripts', array( $this, 'remove_font_awesome_css' ), 15 );
|
268 |
+
add_action( 'init', array( $this, 'remove_icon_shortcode' ), 20 );
|
269 |
|
270 |
}
|
271 |
|
294 |
* Awesome CSS and shortcodes.
|
295 |
*/
|
296 |
if ( $this->args['load_shortcode'] || $this->args['load_tinymce_plugin'] ) {
|
297 |
+
add_action( 'init', array( $this, 'add_icon_shortcode' ), 20 );
|
298 |
}
|
299 |
|
|
|
|
|
|
|
300 |
// Load TinyMCE functionality.
|
301 |
if ( $this->args['load_tinymce_plugin'] ) {
|
302 |
|
307 |
|
308 |
}
|
309 |
|
|
|
|
|
|
|
310 |
}
|
311 |
|
312 |
/**
|
1005 |
*/
|
1006 |
public function enqueue_admin_scripts() {
|
1007 |
|
1008 |
+
// Check whether to get minified or non-minified files.
|
1009 |
+
$suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
|
1010 |
+
|
1011 |
// Custom admin CSS.
|
1012 |
wp_enqueue_style( self::SLUG . '-admin', $this->root_url . 'css/admin-styles.css' );
|
1013 |
|
1015 |
wp_enqueue_script( self::SLUG . '-admin', $this->root_url . 'js/admin.js' );
|
1016 |
|
1017 |
// Icon picker JS and CSS.
|
1018 |
+
wp_enqueue_style( 'fontawesome-iconpicker', $this->root_url . 'lib/fontawesome-iconpicker/css/fontawesome-iconpicker' . $suffix . '.css' );
|
1019 |
+
wp_enqueue_script( 'fontawesome-iconpicker', $this->root_url . 'lib/fontawesome-iconpicker/js/fontawesome-iconpicker' . $suffix . '.js' );
|
1020 |
|
1021 |
// Output PHP variables to JS.
|
1022 |
$bfa_vars = array(
|
1037 |
ob_start();
|
1038 |
?>
|
1039 |
<span class="bfa-iconpicker fontawesome-iconpicker" data-selected="fa-flag">
|
1040 |
+
<a href="#" class="button button-secondary iconpicker-component">
|
1041 |
<span class="fa icon fa-flag icon-flag"></span>
|
1042 |
<?php esc_html_e( 'Insert Icon', 'better-font-awesome' ); ?>
|
1043 |
<i class="change-icon-placeholder"></i>
|
lib/better-font-awesome-library/css/admin-styles.css
CHANGED
@@ -38,6 +38,12 @@
|
|
38 |
}
|
39 |
|
40 |
.bfa-iconpicker .iconpicker-item {
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
box-shadow: 0 0 0 1px #ddd !important;
|
42 |
}
|
43 |
|
38 |
}
|
39 |
|
40 |
.bfa-iconpicker .iconpicker-item {
|
41 |
+
/* Override some unfortunate WP default admin mobile styles */
|
42 |
+
width: 14px !important;
|
43 |
+
height: 14px !important;
|
44 |
+
padding: 14px !important;
|
45 |
+
font-size: 14px !important;
|
46 |
+
line-height: 1 !important;
|
47 |
box-shadow: 0 0 0 1px #ddd !important;
|
48 |
}
|
49 |
|
lib/better-font-awesome-library/lib/fallback-font-awesome/css/font-awesome.css.map
CHANGED
File without changes
|
lib/better-font-awesome-library/lib/fallback-font-awesome/fonts/fontawesome-webfont.eot
CHANGED
File without changes
|
lib/better-font-awesome-library/lib/fallback-font-awesome/fonts/fontawesome-webfont.svg
CHANGED
File without changes
|
lib/better-font-awesome-library/lib/fallback-font-awesome/fonts/fontawesome-webfont.ttf
CHANGED
File without changes
|
lib/better-font-awesome-library/lib/fallback-font-awesome/fonts/fontawesome-webfont.woff
CHANGED
File without changes
|
lib/better-font-awesome-library/lib/fallback-font-awesome/fonts/fontawesome-webfont.woff2
CHANGED
File without changes
|
lib/better-font-awesome-library/lib/fontawesome-iconpicker/css/fontawesome-iconpicker.css
CHANGED
File without changes
|
lib/better-font-awesome-library/lib/fontawesome-iconpicker/css/fontawesome-iconpicker.min.css
CHANGED
File without changes
|
lib/better-font-awesome-library/lib/fontawesome-iconpicker/js/fontawesome-iconpicker.js
CHANGED
@@ -606,9 +606,6 @@
|
|
606 |
if (!c._isEventInsideIconpicker(a) && !c.isInline()) {
|
607 |
c.hide();
|
608 |
}
|
609 |
-
a.stopPropagation();
|
610 |
-
a.preventDefault();
|
611 |
-
return false;
|
612 |
});
|
613 |
}
|
614 |
return false;
|
606 |
if (!c._isEventInsideIconpicker(a) && !c.isInline()) {
|
607 |
c.hide();
|
608 |
}
|
|
|
|
|
|
|
609 |
});
|
610 |
}
|
611 |
return false;
|
lib/better-font-awesome-library/lib/fontawesome-iconpicker/js/fontawesome-iconpicker.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(a,b){function c(a,b,c){return[parseFloat(a[0])*(n.test(a[0])?b/100:1),parseFloat(a[1])*(n.test(a[1])?c/100:1)]}function d(b,c){return parseInt(a.css(b,c),10)||0}function e(b){var c=b[0];return 9===c.nodeType?{width:b.width(),height:b.height(),offset:{top:0,left:0}}:a.isWindow(c)?{width:b.width(),height:b.height(),offset:{top:b.scrollTop(),left:b.scrollLeft()}}:c.preventDefault?{width:0,height:0,offset:{top:c.pageY,left:c.pageX}}:{width:b.outerWidth(),height:b.outerHeight(),offset:b.offset()}}a.ui=a.ui||{};var f,g=Math.max,h=Math.abs,i=Math.round,j=/left|center|right/,k=/top|center|bottom/,l=/[\+\-]\d+(\.[\d]+)?%?/,m=/^\w+/,n=/%$/,o=a.fn.pos;a.pos={scrollbarWidth:function(){if(f!==b)return f;var c,d,e=a("<div style='display:block;position:absolute;width:50px;height:50px;overflow:hidden;'><div style='height:100px;width:auto;'></div></div>"),g=e.children()[0];return a("body").append(e),c=g.offsetWidth,e.css("overflow","scroll"),d=g.offsetWidth,c===d&&(d=e[0].clientWidth),e.remove(),f=c-d},getScrollInfo:function(b){var c=b.isWindow||b.isDocument?"":b.element.css("overflow-x"),d=b.isWindow||b.isDocument?"":b.element.css("overflow-y"),e="scroll"===c||"auto"===c&&b.width<b.element[0].scrollWidth,f="scroll"===d||"auto"===d&&b.height<b.element[0].scrollHeight;return{width:f?a.pos.scrollbarWidth():0,height:e?a.pos.scrollbarWidth():0}},getWithinInfo:function(b){var c=a(b||window),d=a.isWindow(c[0]),e=!!c[0]&&9===c[0].nodeType;return{element:c,isWindow:d,isDocument:e,offset:c.offset()||{left:0,top:0},scrollLeft:c.scrollLeft(),scrollTop:c.scrollTop(),width:d?c.width():c.outerWidth(),height:d?c.height():c.outerHeight()}}},a.fn.pos=function(b){if(!b||!b.of)return o.apply(this,arguments);b=a.extend({},b);var f,n,p,q,r,s,t=a(b.of),u=a.pos.getWithinInfo(b.within),v=a.pos.getScrollInfo(u),w=(b.collision||"flip").split(" "),x={};return s=e(t),t[0].preventDefault&&(b.at="left top"),n=s.width,p=s.height,q=s.offset,r=a.extend({},q),a.each(["my","at"],function(){var a,c,d=(b[this]||"").split(" ");1===d.length&&(d=j.test(d[0])?d.concat(["center"]):k.test(d[0])?["center"].concat(d):["center","center"]),d[0]=j.test(d[0])?d[0]:"center",d[1]=k.test(d[1])?d[1]:"center",a=l.exec(d[0]),c=l.exec(d[1]),x[this]=[a?a[0]:0,c?c[0]:0],b[this]=[m.exec(d[0])[0],m.exec(d[1])[0]]}),1===w.length&&(w[1]=w[0]),"right"===b.at[0]?r.left+=n:"center"===b.at[0]&&(r.left+=n/2),"bottom"===b.at[1]?r.top+=p:"center"===b.at[1]&&(r.top+=p/2),f=c(x.at,n,p),r.left+=f[0],r.top+=f[1],this.each(function(){var e,j,k=a(this),l=k.outerWidth(),m=k.outerHeight(),o=d(this,"marginLeft"),s=d(this,"marginTop"),y=l+o+d(this,"marginRight")+v.width,z=m+s+d(this,"marginBottom")+v.height,A=a.extend({},r),B=c(x.my,k.outerWidth(),k.outerHeight());"right"===b.my[0]?A.left-=l:"center"===b.my[0]&&(A.left-=l/2),"bottom"===b.my[1]?A.top-=m:"center"===b.my[1]&&(A.top-=m/2),A.left+=B[0],A.top+=B[1],a.support.offsetFractions||(A.left=i(A.left),A.top=i(A.top)),e={marginLeft:o,marginTop:s},a.each(["left","top"],function(c,d){a.ui.pos[w[c]]&&a.ui.pos[w[c]][d](A,{targetWidth:n,targetHeight:p,elemWidth:l,elemHeight:m,collisionPosition:e,collisionWidth:y,collisionHeight:z,offset:[f[0]+B[0],f[1]+B[1]],my:b.my,at:b.at,within:u,elem:k})}),b.using&&(j=function(a){var c=q.left-A.left,d=c+n-l,e=q.top-A.top,f=e+p-m,i={target:{element:t,left:q.left,top:q.top,width:n,height:p},element:{element:k,left:A.left,top:A.top,width:l,height:m},horizontal:0>d?"left":c>0?"right":"center",vertical:0>f?"top":e>0?"bottom":"middle"};l>n&&h(c+d)<n&&(i.horizontal="center"),m>p&&h(e+f)<p&&(i.vertical="middle"),g(h(c),h(d))>g(h(e),h(f))?i.important="horizontal":i.important="vertical",b.using.call(this,a,i)}),k.offset(a.extend(A,{using:j}))})},a.ui.pos={_trigger:function(a,b,c,d){b.elem&&b.elem.trigger({type:c,position:a,positionData:b,triggered:d})},fit:{left:function(b,c){a.ui.pos._trigger(b,c,"posCollide","fitLeft");var d,e=c.within,f=e.isWindow?e.scrollLeft:e.offset.left,h=e.width,i=b.left-c.collisionPosition.marginLeft,j=f-i,k=i+c.collisionWidth-h-f;c.collisionWidth>h?j>0&&0>=k?(d=b.left+j+c.collisionWidth-h-f,b.left+=j-d):k>0&&0>=j?b.left=f:j>k?b.left=f+h-c.collisionWidth:b.left=f:j>0?b.left+=j:k>0?b.left-=k:b.left=g(b.left-i,b.left),a.ui.pos._trigger(b,c,"posCollided","fitLeft")},top:function(b,c){a.ui.pos._trigger(b,c,"posCollide","fitTop");var d,e=c.within,f=e.isWindow?e.scrollTop:e.offset.top,h=c.within.height,i=b.top-c.collisionPosition.marginTop,j=f-i,k=i+c.collisionHeight-h-f;c.collisionHeight>h?j>0&&0>=k?(d=b.top+j+c.collisionHeight-h-f,b.top+=j-d):k>0&&0>=j?b.top=f:j>k?b.top=f+h-c.collisionHeight:b.top=f:j>0?b.top+=j:k>0?b.top-=k:b.top=g(b.top-i,b.top),a.ui.pos._trigger(b,c,"posCollided","fitTop")}},flip:{left:function(b,c){a.ui.pos._trigger(b,c,"posCollide","flipLeft");var d,e,f=c.within,g=f.offset.left+f.scrollLeft,i=f.width,j=f.isWindow?f.scrollLeft:f.offset.left,k=b.left-c.collisionPosition.marginLeft,l=k-j,m=k+c.collisionWidth-i-j,n="left"===c.my[0]?-c.elemWidth:"right"===c.my[0]?c.elemWidth:0,o="left"===c.at[0]?c.targetWidth:"right"===c.at[0]?-c.targetWidth:0,p=-2*c.offset[0];0>l?(d=b.left+n+o+p+c.collisionWidth-i-g,(0>d||d<h(l))&&(b.left+=n+o+p)):m>0&&(e=b.left-c.collisionPosition.marginLeft+n+o+p-j,(e>0||h(e)<m)&&(b.left+=n+o+p)),a.ui.pos._trigger(b,c,"posCollided","flipLeft")},top:function(b,c){a.ui.pos._trigger(b,c,"posCollide","flipTop");var d,e,f=c.within,g=f.offset.top+f.scrollTop,i=f.height,j=f.isWindow?f.scrollTop:f.offset.top,k=b.top-c.collisionPosition.marginTop,l=k-j,m=k+c.collisionHeight-i-j,n="top"===c.my[1],o=n?-c.elemHeight:"bottom"===c.my[1]?c.elemHeight:0,p="top"===c.at[1]?c.targetHeight:"bottom"===c.at[1]?-c.targetHeight:0,q=-2*c.offset[1];0>l?(e=b.top+o+p+q+c.collisionHeight-i-g,b.top+o+p+q>l&&(0>e||e<h(l))&&(b.top+=o+p+q)):m>0&&(d=b.top-c.collisionPosition.marginTop+o+p+q-j,b.top+o+p+q>m&&(d>0||h(d)<m)&&(b.top+=o+p+q)),a.ui.pos._trigger(b,c,"posCollided","flipTop")}},flipfit:{left:function(){a.ui.pos.flip.left.apply(this,arguments),a.ui.pos.fit.left.apply(this,arguments)},top:function(){a.ui.pos.flip.top.apply(this,arguments),a.ui.pos.fit.top.apply(this,arguments)}}},function(){var b,c,d,e,f,g=document.getElementsByTagName("body")[0],h=document.createElement("div");b=document.createElement(g?"div":"body"),d={visibility:"hidden",width:0,height:0,border:0,margin:0,background:"none"},g&&a.extend(d,{position:"absolute",left:"-1000px",top:"-1000px"});for(f in d)b.style[f]=d[f];b.appendChild(h),c=g||document.documentElement,c.insertBefore(b,c.firstChild),h.style.cssText="position: absolute; left: 10.7432222px;",e=a(h).offset().left,a.support.offsetFractions=e>10&&11>e,b.innerHTML="",c.removeChild(b)}()}(jQuery),function(a){"use strict";"function"==typeof define&&define.amd?define(["jquery"],a):window.jQuery&&!window.jQuery.fn.iconpicker&&a(window.jQuery)}(function(a){"use strict";var b={isEmpty:function(a){return a===!1||""===a||null===a||void 0===a},isEmptyObject:function(a){return this.isEmpty(a)===!0||0===a.length},isElement:function(b){return a(b).length>0},isString:function(a){return"string"==typeof a||a instanceof String},isArray:function(b){return a.isArray(b)},inArray:function(b,c){return-1!==a.inArray(b,c)},throwError:function(a){throw"Font Awesome Icon Picker Exception: "+a}},c=function(d,e){this._id=c._idCounter++,this.element=a(d).addClass("iconpicker-element"),this._trigger("iconpickerCreate"),this.options=a.extend({},c.defaultOptions,this.element.data(),e),this.options.templates=a.extend({},c.defaultOptions.templates,this.options.templates),this.options.originalPlacement=this.options.placement,this.container=b.isElement(this.options.container)?a(this.options.container):!1,this.container===!1&&(this.element.is(".dropdown-toggle")?this.container=a("~ .dropdown-menu:first",this.element):this.container=this.element.is("input,textarea,button,.btn")?this.element.parent():this.element),this.container.addClass("iconpicker-container"),this.isDropdownMenu()&&(this.options.templates.search=!1,this.options.templates.buttons=!1,this.options.placement="inline"),this.input=this.element.is("input,textarea")?this.element.addClass("iconpicker-input"):!1,this.input===!1&&(this.input=this.container.find(this.options.input),this.input.is("input,textarea")||(this.input=!1)),this.component=this.isDropdownMenu()?this.container.parent().find(this.options.component):this.container.find(this.options.component),0===this.component.length?this.component=!1:this.component.find("i").addClass("iconpicker-component"),this._createPopover(),this._createIconpicker(),0===this.getAcceptButton().length&&(this.options.mustAccept=!1),this.isInputGroup()?this.container.parent().append(this.popover):this.container.append(this.popover),this._bindElementEvents(),this._bindWindowEvents(),this.update(this.options.selected),this.isInline()&&this.show(),this._trigger("iconpickerCreated")};c._idCounter=0,c.defaultOptions={title:!1,selected:!1,defaultValue:!1,placement:"bottom",collision:"none",animation:!0,hideOnSelect:!1,showFooter:!1,searchInFooter:!1,mustAccept:!1,selectedCustomClass:"bg-primary",icons:[],fullClassFormatter:function(a){return"fa "+a},input:"input,.iconpicker-input",inputSearch:!1,container:!1,component:".input-group-addon,.iconpicker-component",templates:{popover:'<div class="iconpicker-popover popover"><div class="arrow"></div><div class="popover-title"></div><div class="popover-content"></div></div>',footer:'<div class="popover-footer"></div>',buttons:'<button class="iconpicker-btn iconpicker-btn-cancel btn btn-default btn-sm">Cancel</button> <button class="iconpicker-btn iconpicker-btn-accept btn btn-primary btn-sm">Accept</button>',search:'<input type="search" class="form-control iconpicker-search" placeholder="Type to filter" />',iconpicker:'<div class="iconpicker"><div class="iconpicker-items"></div></div>',iconpickerItem:'<a role="button" href="#" class="iconpicker-item"><i></i></a>'}},c.batch=function(b,c){var d=Array.prototype.slice.call(arguments,2);return a(b).each(function(){var b=a(this).data("iconpicker");b&&b[c].apply(b,d)})},c.prototype={constructor:c,options:{},_id:0,_trigger:function(b,c){c=c||{},this.element.trigger(a.extend({type:b,iconpickerInstance:this},c))},_createPopover:function(){this.popover=a(this.options.templates.popover);var c=this.popover.find(".popover-title");if(this.options.title&&c.append(a('<div class="popover-title-text">'+this.options.title+"</div>")),this.hasSeparatedSearchInput()&&!this.options.searchInFooter?c.append(this.options.templates.search):this.options.title||c.remove(),this.options.showFooter&&!b.isEmpty(this.options.templates.footer)){var d=a(this.options.templates.footer);this.hasSeparatedSearchInput()&&this.options.searchInFooter&&d.append(a(this.options.templates.search)),b.isEmpty(this.options.templates.buttons)||d.append(a(this.options.templates.buttons)),this.popover.append(d)}return this.options.animation===!0&&this.popover.addClass("fade"),this.popover},_createIconpicker:function(){var b=this;this.iconpicker=a(this.options.templates.iconpicker);var c=function(c){var d=a(this);return d.is("i")&&(d=d.parent()),b._trigger("iconpickerSelect",{iconpickerItem:d,iconpickerValue:b.iconpickerValue}),b.options.mustAccept===!1?(b.update(d.data("iconpickerValue")),b._trigger("iconpickerSelected",{iconpickerItem:this,iconpickerValue:b.iconpickerValue})):b.update(d.data("iconpickerValue"),!0),b.options.hideOnSelect&&b.options.mustAccept===!1&&b.hide(),c.preventDefault(),!1};for(var d in this.options.icons){var e=a(this.options.templates.iconpickerItem);e.find("i").addClass(this.options.fullClassFormatter(this.options.icons[d])),e.data("iconpickerValue",this.options.icons[d]).on("click.iconpicker",c),this.iconpicker.find(".iconpicker-items").append(e.attr("title","."+this.options.icons[d]))}return this.popover.find(".popover-content").append(this.iconpicker),this.iconpicker},_isEventInsideIconpicker:function(b){var c=a(b.target);return c.hasClass("iconpicker-element")&&(!c.hasClass("iconpicker-element")||c.is(this.element))||0!==c.parents(".iconpicker-popover").length?!0:!1},_bindElementEvents:function(){var c=this;this.getSearchInput().on("keyup.iconpicker",function(){c.filter(a(this).val().toLowerCase())}),this.getAcceptButton().on("click.iconpicker",function(){var a=c.iconpicker.find(".iconpicker-selected").get(0);c.update(c.iconpickerValue),c._trigger("iconpickerSelected",{iconpickerItem:a,iconpickerValue:c.iconpickerValue}),c.isInline()||c.hide()}),this.getCancelButton().on("click.iconpicker",function(){c.isInline()||c.hide()}),this.element.on("focus.iconpicker",function(a){c.show(),a.stopPropagation()}),this.hasComponent()&&this.component.on("click.iconpicker",function(){c.toggle()}),this.hasInput()&&this.input.on("keyup.iconpicker",function(d){b.inArray(d.keyCode,[38,40,37,39,16,17,18,9,8,91,93,20,46,186,190,46,78,188,44,86])?c._updateFormGroupStatus(c.getValid(this.value)!==!1):c.update(),c.options.inputSearch===!0&&c.filter(a(this).val().toLowerCase())})},_bindWindowEvents:function(){var b=a(window.document),c=this,d=".iconpicker.inst"+this._id;return a(window).on("resize.iconpicker"+d+" orientationchange.iconpicker"+d,function(a){c.popover.hasClass("in")&&c.updatePlacement()}),c.isInline()||b.on("mouseup"+d,function(a){return c._isEventInsideIconpicker(a)||c.isInline()||c.hide(),a.stopPropagation(),a.preventDefault(),!1}),!1},_unbindElementEvents:function(){this.popover.off(".iconpicker"),this.element.off(".iconpicker"),this.hasInput()&&this.input.off(".iconpicker"),this.hasComponent()&&this.component.off(".iconpicker"),this.hasContainer()&&this.container.off(".iconpicker")},_unbindWindowEvents:function(){a(window).off(".iconpicker.inst"+this._id),a(window.document).off(".iconpicker.inst"+this._id)},updatePlacement:function(b,c){b=b||this.options.placement,this.options.placement=b,c=c||this.options.collision,c=c===!0?"flip":c;var d={at:"right bottom",my:"right top",of:this.hasInput()&&!this.isInputGroup()?this.input:this.container,collision:c===!0?"flip":c,within:window};if(this.popover.removeClass("inline topLeftCorner topLeft top topRight topRightCorner rightTop right rightBottom bottomRight bottomRightCorner bottom bottomLeft bottomLeftCorner leftBottom left leftTop"),"object"==typeof b)return this.popover.pos(a.extend({},d,b));switch(b){case"inline":d=!1;break;case"topLeftCorner":d.my="right bottom",d.at="left top";break;case"topLeft":d.my="left bottom",d.at="left top";break;case"top":d.my="center bottom",d.at="center top";break;case"topRight":d.my="right bottom",d.at="right top";break;case"topRightCorner":d.my="left bottom",d.at="right top";break;case"rightTop":d.my="left bottom",d.at="right center";break;case"right":d.my="left center",d.at="right center";break;case"rightBottom":d.my="left top",d.at="right center";break;case"bottomRightCorner":d.my="left top",d.at="right bottom";break;case"bottomRight":d.my="right top",d.at="right bottom";break;case"bottom":d.my="center top",d.at="center bottom";break;case"bottomLeft":d.my="left top",d.at="left bottom";break;case"bottomLeftCorner":d.my="right top",d.at="left bottom";break;case"leftBottom":d.my="right top",d.at="left center";break;case"left":d.my="right center",d.at="left center";break;case"leftTop":d.my="right bottom",d.at="left center";break;default:return!1}return this.popover.css({display:"inline"===this.options.placement?"":"block"}),d!==!1?this.popover.pos(d).css("maxWidth",a(window).width()-this.container.offset().left-5):this.popover.css({top:"auto",right:"auto",bottom:"auto",left:"auto",maxWidth:"none"}),this.popover.addClass(this.options.placement),!0},_updateComponents:function(){if(this.iconpicker.find(".iconpicker-item.iconpicker-selected").removeClass("iconpicker-selected "+this.options.selectedCustomClass),this.iconpickerValue&&this.iconpicker.find("."+this.options.fullClassFormatter(this.iconpickerValue).replace(/ /g,".")).parent().addClass("iconpicker-selected "+this.options.selectedCustomClass),this.hasComponent()){var a=this.component.find("i");a.length>0?a.attr("class",this.options.fullClassFormatter(this.iconpickerValue)):this.component.html(this.getHtml())}},_updateFormGroupStatus:function(a){return this.hasInput()?(a!==!1?this.input.parents(".form-group:first").removeClass("has-error"):this.input.parents(".form-group:first").addClass("has-error"),!0):!1},getValid:function(c){b.isString(c)||(c="");var d=""===c;return c=a.trim(c),b.inArray(c,this.options.icons)||d?c:!1},setValue:function(a){var b=this.getValid(a);return b!==!1?(this.iconpickerValue=b,this._trigger("iconpickerSetValue",{iconpickerValue:b}),this.iconpickerValue):(this._trigger("iconpickerInvalid",{iconpickerValue:a}),!1)},getHtml:function(){return'<i class="'+this.options.fullClassFormatter(this.iconpickerValue)+'"></i>'},setSourceValue:function(a){return a=this.setValue(a),a!==!1&&""!==a&&(this.hasInput()?this.input.val(this.iconpickerValue):this.element.data("iconpickerValue",this.iconpickerValue),this._trigger("iconpickerSetSourceValue",{iconpickerValue:a})),a},getSourceValue:function(a){a=a||this.options.defaultValue;var b=a;return b=this.hasInput()?this.input.val():this.element.data("iconpickerValue"),(void 0===b||""===b||null===b||b===!1)&&(b=a),b},hasInput:function(){return this.input!==!1},isInputSearch:function(){return this.hasInput()&&this.options.inputSearch===!0},isInputGroup:function(){return this.container.is(".input-group")},isDropdownMenu:function(){return this.container.is(".dropdown-menu")},hasSeparatedSearchInput:function(){return this.options.templates.search!==!1&&!this.isInputSearch()},hasComponent:function(){return this.component!==!1},hasContainer:function(){return this.container!==!1},getAcceptButton:function(){return this.popover.find(".iconpicker-btn-accept")},getCancelButton:function(){return this.popover.find(".iconpicker-btn-cancel")},getSearchInput:function(){return this.popover.find(".iconpicker-search")},filter:function(c){if(b.isEmpty(c))return this.iconpicker.find(".iconpicker-item").show(),a(!1);var d=[];return this.iconpicker.find(".iconpicker-item").each(function(){var b=a(this),e=b.attr("title").toLowerCase(),f=!1;try{f=new RegExp(c,"g")}catch(g){f=!1}f!==!1&&e.match(f)?(d.push(b),b.show()):b.hide()}),d},show:function(){return this.popover.hasClass("in")?!1:(a.iconpicker.batch(a(".iconpicker-popover.in:not(.inline)").not(this.popover),"hide"),this._trigger("iconpickerShow"),this.updatePlacement(),this.popover.addClass("in"),void setTimeout(a.proxy(function(){this.popover.css("display",this.isInline()?"":"block"),this._trigger("iconpickerShown")},this),this.options.animation?300:1))},hide:function(){return this.popover.hasClass("in")?(this._trigger("iconpickerHide"),this.popover.removeClass("in"),void setTimeout(a.proxy(function(){this.popover.css("display","none"),this.getSearchInput().val(""),this.filter(""),this._trigger("iconpickerHidden")},this),this.options.animation?300:1)):!1},toggle:function(){this.popover.is(":visible")?this.hide():this.show(!0)},update:function(a,b){return a=a?a:this.getSourceValue(this.iconpickerValue),this._trigger("iconpickerUpdate"),b===!0?a=this.setValue(a):(a=this.setSourceValue(a),this._updateFormGroupStatus(a!==!1)),a!==!1&&this._updateComponents(),this._trigger("iconpickerUpdated"),a},destroy:function(){this._trigger("iconpickerDestroy"),this.element.removeData("iconpicker").removeData("iconpickerValue").removeClass("iconpicker-element"),this._unbindElementEvents(),this._unbindWindowEvents(),a(this.popover).remove(),this._trigger("iconpickerDestroyed")},disable:function(){return this.hasInput()?(this.input.prop("disabled",!0),!0):!1},enable:function(){return this.hasInput()?(this.input.prop("disabled",!1),!0):!1},isDisabled:function(){return this.hasInput()?this.input.prop("disabled")===!0:!1},isInline:function(){return"inline"===this.options.placement||this.popover.hasClass("inline")}},a.iconpicker=c,a.fn.iconpicker=function(b){return this.each(function(){var d=a(this);d.data("iconpicker")||d.data("iconpicker",new c(this,"object"==typeof b?b:{}))})},c.defaultOptions.icons=["fa-adjust","fa-adn","fa-align-center","fa-align-justify","fa-align-left","fa-align-right","fa-ambulance","fa-anchor","fa-android","fa-angle-double-down","fa-angle-double-left","fa-angle-double-right","fa-angle-double-up","fa-angle-down","fa-angle-left","fa-angle-right","fa-angle-up","fa-apple","fa-archive","fa-arrow-circle-down","fa-arrow-circle-left","fa-arrow-circle-o-down","fa-arrow-circle-o-left","fa-arrow-circle-o-right","fa-arrow-circle-o-up","fa-arrow-circle-right","fa-arrow-circle-up","fa-arrow-down","fa-arrow-left","fa-arrow-right","fa-arrow-up","fa-arrows","fa-arrows-alt","fa-arrows-h","fa-arrows-v","fa-asterisk","fa-automobile","fa-backward","fa-ban","fa-bank","fa-bar-chart-o","fa-barcode","fa-bars","fa-beer","fa-behance","fa-behance-square","fa-bell","fa-bell-o","fa-bitbucket","fa-bitbucket-square","fa-bitcoin","fa-bold","fa-bolt","fa-bomb","fa-book","fa-bookmark","fa-bookmark-o","fa-briefcase","fa-btc","fa-bug","fa-building","fa-building-o","fa-bullhorn","fa-bullseye","fa-cab","fa-calendar","fa-calendar-o","fa-camera","fa-camera-retro","fa-car","fa-caret-down","fa-caret-left","fa-caret-right","fa-caret-square-o-down","fa-caret-square-o-left","fa-caret-square-o-right","fa-caret-square-o-up","fa-caret-up","fa-certificate","fa-chain","fa-chain-broken","fa-check","fa-check-circle","fa-check-circle-o","fa-check-square","fa-check-square-o","fa-chevron-circle-down","fa-chevron-circle-left","fa-chevron-circle-right","fa-chevron-circle-up","fa-chevron-down","fa-chevron-left","fa-chevron-right","fa-chevron-up","fa-child","fa-circle","fa-circle-o","fa-circle-o-notch","fa-circle-thin","fa-clipboard","fa-clock-o","fa-cloud","fa-cloud-download","fa-cloud-upload","fa-cny","fa-code","fa-code-fork","fa-codepen","fa-coffee","fa-cog","fa-cogs","fa-columns","fa-comment","fa-comment-o","fa-comments","fa-comments-o","fa-compass","fa-compress","fa-copy","fa-credit-card","fa-crop","fa-crosshairs","fa-css3","fa-cube","fa-cubes","fa-cut","fa-cutlery","fa-dashboard","fa-database","fa-dedent","fa-delicious","fa-desktop","fa-deviantart","fa-digg","fa-dollar","fa-dot-circle-o","fa-download","fa-dribbble","fa-dropbox","fa-drupal","fa-edit","fa-eject","fa-ellipsis-h","fa-ellipsis-v","fa-empire","fa-envelope","fa-envelope-o","fa-envelope-square","fa-eraser","fa-eur","fa-euro","fa-exchange","fa-exclamation","fa-exclamation-circle","fa-exclamation-triangle","fa-expand","fa-external-link","fa-external-link-square","fa-eye","fa-eye-slash","fa-facebook","fa-facebook-square","fa-fast-backward","fa-fast-forward","fa-fax","fa-female","fa-fighter-jet","fa-file","fa-file-archive-o","fa-file-audio-o","fa-file-code-o","fa-file-excel-o","fa-file-image-o","fa-file-movie-o","fa-file-o","fa-file-pdf-o","fa-file-photo-o","fa-file-picture-o","fa-file-powerpoint-o","fa-file-sound-o","fa-file-text","fa-file-text-o","fa-file-video-o","fa-file-word-o","fa-file-zip-o","fa-files-o","fa-film","fa-filter","fa-fire","fa-fire-extinguisher","fa-flag","fa-flag-checkered","fa-flag-o","fa-flash","fa-flask","fa-flickr","fa-floppy-o","fa-folder","fa-folder-o","fa-folder-open","fa-folder-open-o","fa-font","fa-forward","fa-foursquare","fa-frown-o","fa-gamepad","fa-gavel","fa-gbp","fa-ge","fa-gear","fa-gears","fa-gift","fa-git","fa-git-square","fa-github","fa-github-alt","fa-github-square","fa-gittip","fa-glass","fa-globe","fa-google","fa-google-plus","fa-google-plus-square","fa-graduation-cap","fa-group","fa-h-square","fa-hacker-news","fa-hand-o-down","fa-hand-o-left","fa-hand-o-right","fa-hand-o-up","fa-hdd-o","fa-header","fa-headphones","fa-heart","fa-heart-o","fa-history","fa-home","fa-hospital-o","fa-html5","fa-image","fa-inbox","fa-indent","fa-info","fa-info-circle","fa-inr","fa-instagram","fa-institution","fa-italic","fa-joomla","fa-jpy","fa-jsfiddle","fa-key","fa-keyboard-o","fa-krw","fa-language","fa-laptop","fa-leaf","fa-legal","fa-lemon-o","fa-level-down","fa-level-up","fa-life-bouy","fa-life-ring","fa-life-saver","fa-lightbulb-o","fa-link","fa-linkedin","fa-linkedin-square","fa-linux","fa-list","fa-list-alt","fa-list-ol","fa-list-ul","fa-location-arrow","fa-lock","fa-long-arrow-down","fa-long-arrow-left","fa-long-arrow-right","fa-long-arrow-up","fa-magic","fa-magnet","fa-mail-forward","fa-mail-reply","fa-mail-reply-all","fa-male","fa-map-marker","fa-maxcdn","fa-medkit","fa-meh-o","fa-microphone","fa-microphone-slash","fa-minus","fa-minus-circle","fa-minus-square","fa-minus-square-o","fa-mobile","fa-mobile-phone","fa-money","fa-moon-o","fa-mortar-board","fa-music","fa-navicon","fa-openid","fa-outdent","fa-pagelines","fa-paper-plane","fa-paper-plane-o","fa-paperclip","fa-paragraph","fa-paste","fa-pause","fa-paw","fa-pencil","fa-pencil-square","fa-pencil-square-o","fa-phone","fa-phone-square","fa-photo","fa-picture-o","fa-pied-piper","fa-pied-piper-alt","fa-pied-piper-square","fa-pinterest","fa-pinterest-square","fa-plane","fa-play","fa-play-circle","fa-play-circle-o","fa-plus","fa-plus-circle","fa-plus-square","fa-plus-square-o","fa-power-off","fa-print","fa-puzzle-piece","fa-qq","fa-qrcode","fa-question","fa-question-circle","fa-quote-left","fa-quote-right","fa-ra","fa-random","fa-rebel","fa-recycle","fa-reddit","fa-reddit-square","fa-refresh","fa-renren","fa-reorder","fa-repeat","fa-reply","fa-reply-all","fa-retweet","fa-rmb","fa-road","fa-rocket","fa-rotate-left","fa-rotate-right","fa-rouble","fa-rss","fa-rss-square","fa-rub","fa-ruble","fa-rupee","fa-save","fa-scissors","fa-search","fa-search-minus","fa-search-plus","fa-send","fa-send-o","fa-share","fa-share-alt","fa-share-alt-square","fa-share-square","fa-share-square-o","fa-shield","fa-shopping-cart","fa-sign-in","fa-sign-out","fa-signal","fa-sitemap","fa-skype","fa-slack","fa-sliders","fa-smile-o","fa-sort","fa-sort-alpha-asc","fa-sort-alpha-desc","fa-sort-amount-asc","fa-sort-amount-desc","fa-sort-asc","fa-sort-desc","fa-sort-down","fa-sort-numeric-asc","fa-sort-numeric-desc","fa-sort-up","fa-soundcloud","fa-space-shuttle","fa-spinner","fa-spoon","fa-spotify","fa-square","fa-square-o","fa-stack-exchange","fa-stack-overflow","fa-star","fa-star-half","fa-star-half-empty","fa-star-half-full","fa-star-half-o","fa-star-o","fa-steam","fa-steam-square","fa-step-backward","fa-step-forward","fa-stethoscope","fa-stop","fa-strikethrough","fa-stumbleupon","fa-stumbleupon-circle","fa-subscript","fa-suitcase","fa-sun-o","fa-superscript","fa-support","fa-table","fa-tablet","fa-tachometer","fa-tag","fa-tags","fa-tasks","fa-taxi","fa-tencent-weibo","fa-terminal","fa-text-height","fa-text-width","fa-th","fa-th-large","fa-th-list","fa-thumb-tack","fa-thumbs-down","fa-thumbs-o-down","fa-thumbs-o-up","fa-thumbs-up","fa-ticket","fa-times","fa-times-circle","fa-times-circle-o","fa-tint","fa-toggle-down","fa-toggle-left","fa-toggle-right","fa-toggle-up","fa-trash-o","fa-tree","fa-trello","fa-trophy","fa-truck","fa-try","fa-tumblr","fa-tumblr-square","fa-turkish-lira","fa-twitter","fa-twitter-square","fa-umbrella","fa-underline","fa-undo","fa-university","fa-unlink","fa-unlock","fa-unlock-alt","fa-unsorted","fa-upload","fa-usd","fa-user","fa-user-md","fa-users","fa-video-camera","fa-vimeo-square","fa-vine","fa-vk","fa-volume-down","fa-volume-off","fa-volume-up","fa-warning","fa-wechat","fa-weibo","fa-weixin","fa-wheelchair","fa-windows","fa-won","fa-wordpress","fa-wrench","fa-xing","fa-xing-square","fa-yahoo","fa-yen","fa-youtube","fa-youtube-play","fa-youtube-square"]});
|
1 |
+
!function(a,b){function c(a,b,c){return[parseFloat(a[0])*(n.test(a[0])?b/100:1),parseFloat(a[1])*(n.test(a[1])?c/100:1)]}function d(b,c){return parseInt(a.css(b,c),10)||0}function e(b){var c=b[0];return 9===c.nodeType?{width:b.width(),height:b.height(),offset:{top:0,left:0}}:a.isWindow(c)?{width:b.width(),height:b.height(),offset:{top:b.scrollTop(),left:b.scrollLeft()}}:c.preventDefault?{width:0,height:0,offset:{top:c.pageY,left:c.pageX}}:{width:b.outerWidth(),height:b.outerHeight(),offset:b.offset()}}a.ui=a.ui||{};var f,g=Math.max,h=Math.abs,i=Math.round,j=/left|center|right/,k=/top|center|bottom/,l=/[\+\-]\d+(\.[\d]+)?%?/,m=/^\w+/,n=/%$/,o=a.fn.pos;a.pos={scrollbarWidth:function(){if(f!==b)return f;var c,d,e=a("<div style='display:block;position:absolute;width:50px;height:50px;overflow:hidden;'><div style='height:100px;width:auto;'></div></div>"),g=e.children()[0];return a("body").append(e),c=g.offsetWidth,e.css("overflow","scroll"),d=g.offsetWidth,c===d&&(d=e[0].clientWidth),e.remove(),f=c-d},getScrollInfo:function(b){var c=b.isWindow||b.isDocument?"":b.element.css("overflow-x"),d=b.isWindow||b.isDocument?"":b.element.css("overflow-y"),e="scroll"===c||"auto"===c&&b.width<b.element[0].scrollWidth,f="scroll"===d||"auto"===d&&b.height<b.element[0].scrollHeight;return{width:f?a.pos.scrollbarWidth():0,height:e?a.pos.scrollbarWidth():0}},getWithinInfo:function(b){var c=a(b||window),d=a.isWindow(c[0]),e=!!c[0]&&9===c[0].nodeType;return{element:c,isWindow:d,isDocument:e,offset:c.offset()||{left:0,top:0},scrollLeft:c.scrollLeft(),scrollTop:c.scrollTop(),width:d?c.width():c.outerWidth(),height:d?c.height():c.outerHeight()}}},a.fn.pos=function(b){if(!b||!b.of)return o.apply(this,arguments);b=a.extend({},b);var f,n,p,q,r,s,t=a(b.of),u=a.pos.getWithinInfo(b.within),v=a.pos.getScrollInfo(u),w=(b.collision||"flip").split(" "),x={};return s=e(t),t[0].preventDefault&&(b.at="left top"),n=s.width,p=s.height,q=s.offset,r=a.extend({},q),a.each(["my","at"],function(){var a,c,d=(b[this]||"").split(" ");1===d.length&&(d=j.test(d[0])?d.concat(["center"]):k.test(d[0])?["center"].concat(d):["center","center"]),d[0]=j.test(d[0])?d[0]:"center",d[1]=k.test(d[1])?d[1]:"center",a=l.exec(d[0]),c=l.exec(d[1]),x[this]=[a?a[0]:0,c?c[0]:0],b[this]=[m.exec(d[0])[0],m.exec(d[1])[0]]}),1===w.length&&(w[1]=w[0]),"right"===b.at[0]?r.left+=n:"center"===b.at[0]&&(r.left+=n/2),"bottom"===b.at[1]?r.top+=p:"center"===b.at[1]&&(r.top+=p/2),f=c(x.at,n,p),r.left+=f[0],r.top+=f[1],this.each(function(){var e,j,k=a(this),l=k.outerWidth(),m=k.outerHeight(),o=d(this,"marginLeft"),s=d(this,"marginTop"),y=l+o+d(this,"marginRight")+v.width,z=m+s+d(this,"marginBottom")+v.height,A=a.extend({},r),B=c(x.my,k.outerWidth(),k.outerHeight());"right"===b.my[0]?A.left-=l:"center"===b.my[0]&&(A.left-=l/2),"bottom"===b.my[1]?A.top-=m:"center"===b.my[1]&&(A.top-=m/2),A.left+=B[0],A.top+=B[1],a.support.offsetFractions||(A.left=i(A.left),A.top=i(A.top)),e={marginLeft:o,marginTop:s},a.each(["left","top"],function(c,d){a.ui.pos[w[c]]&&a.ui.pos[w[c]][d](A,{targetWidth:n,targetHeight:p,elemWidth:l,elemHeight:m,collisionPosition:e,collisionWidth:y,collisionHeight:z,offset:[f[0]+B[0],f[1]+B[1]],my:b.my,at:b.at,within:u,elem:k})}),b.using&&(j=function(a){var c=q.left-A.left,d=c+n-l,e=q.top-A.top,f=e+p-m,i={target:{element:t,left:q.left,top:q.top,width:n,height:p},element:{element:k,left:A.left,top:A.top,width:l,height:m},horizontal:0>d?"left":c>0?"right":"center",vertical:0>f?"top":e>0?"bottom":"middle"};l>n&&h(c+d)<n&&(i.horizontal="center"),m>p&&h(e+f)<p&&(i.vertical="middle"),g(h(c),h(d))>g(h(e),h(f))?i.important="horizontal":i.important="vertical",b.using.call(this,a,i)}),k.offset(a.extend(A,{using:j}))})},a.ui.pos={_trigger:function(a,b,c,d){b.elem&&b.elem.trigger({type:c,position:a,positionData:b,triggered:d})},fit:{left:function(b,c){a.ui.pos._trigger(b,c,"posCollide","fitLeft");var d,e=c.within,f=e.isWindow?e.scrollLeft:e.offset.left,h=e.width,i=b.left-c.collisionPosition.marginLeft,j=f-i,k=i+c.collisionWidth-h-f;c.collisionWidth>h?j>0&&0>=k?(d=b.left+j+c.collisionWidth-h-f,b.left+=j-d):k>0&&0>=j?b.left=f:j>k?b.left=f+h-c.collisionWidth:b.left=f:j>0?b.left+=j:k>0?b.left-=k:b.left=g(b.left-i,b.left),a.ui.pos._trigger(b,c,"posCollided","fitLeft")},top:function(b,c){a.ui.pos._trigger(b,c,"posCollide","fitTop");var d,e=c.within,f=e.isWindow?e.scrollTop:e.offset.top,h=c.within.height,i=b.top-c.collisionPosition.marginTop,j=f-i,k=i+c.collisionHeight-h-f;c.collisionHeight>h?j>0&&0>=k?(d=b.top+j+c.collisionHeight-h-f,b.top+=j-d):k>0&&0>=j?b.top=f:j>k?b.top=f+h-c.collisionHeight:b.top=f:j>0?b.top+=j:k>0?b.top-=k:b.top=g(b.top-i,b.top),a.ui.pos._trigger(b,c,"posCollided","fitTop")}},flip:{left:function(b,c){a.ui.pos._trigger(b,c,"posCollide","flipLeft");var d,e,f=c.within,g=f.offset.left+f.scrollLeft,i=f.width,j=f.isWindow?f.scrollLeft:f.offset.left,k=b.left-c.collisionPosition.marginLeft,l=k-j,m=k+c.collisionWidth-i-j,n="left"===c.my[0]?-c.elemWidth:"right"===c.my[0]?c.elemWidth:0,o="left"===c.at[0]?c.targetWidth:"right"===c.at[0]?-c.targetWidth:0,p=-2*c.offset[0];0>l?(d=b.left+n+o+p+c.collisionWidth-i-g,(0>d||d<h(l))&&(b.left+=n+o+p)):m>0&&(e=b.left-c.collisionPosition.marginLeft+n+o+p-j,(e>0||h(e)<m)&&(b.left+=n+o+p)),a.ui.pos._trigger(b,c,"posCollided","flipLeft")},top:function(b,c){a.ui.pos._trigger(b,c,"posCollide","flipTop");var d,e,f=c.within,g=f.offset.top+f.scrollTop,i=f.height,j=f.isWindow?f.scrollTop:f.offset.top,k=b.top-c.collisionPosition.marginTop,l=k-j,m=k+c.collisionHeight-i-j,n="top"===c.my[1],o=n?-c.elemHeight:"bottom"===c.my[1]?c.elemHeight:0,p="top"===c.at[1]?c.targetHeight:"bottom"===c.at[1]?-c.targetHeight:0,q=-2*c.offset[1];0>l?(e=b.top+o+p+q+c.collisionHeight-i-g,b.top+o+p+q>l&&(0>e||e<h(l))&&(b.top+=o+p+q)):m>0&&(d=b.top-c.collisionPosition.marginTop+o+p+q-j,b.top+o+p+q>m&&(d>0||h(d)<m)&&(b.top+=o+p+q)),a.ui.pos._trigger(b,c,"posCollided","flipTop")}},flipfit:{left:function(){a.ui.pos.flip.left.apply(this,arguments),a.ui.pos.fit.left.apply(this,arguments)},top:function(){a.ui.pos.flip.top.apply(this,arguments),a.ui.pos.fit.top.apply(this,arguments)}}},function(){var b,c,d,e,f,g=document.getElementsByTagName("body")[0],h=document.createElement("div");b=document.createElement(g?"div":"body"),d={visibility:"hidden",width:0,height:0,border:0,margin:0,background:"none"},g&&a.extend(d,{position:"absolute",left:"-1000px",top:"-1000px"});for(f in d)b.style[f]=d[f];b.appendChild(h),c=g||document.documentElement,c.insertBefore(b,c.firstChild),h.style.cssText="position: absolute; left: 10.7432222px;",e=a(h).offset().left,a.support.offsetFractions=e>10&&11>e,b.innerHTML="",c.removeChild(b)}()}(jQuery),function(a){"use strict";"function"==typeof define&&define.amd?define(["jquery"],a):window.jQuery&&!window.jQuery.fn.iconpicker&&a(window.jQuery)}(function(a){"use strict";var b={isEmpty:function(a){return a===!1||""===a||null===a||void 0===a},isEmptyObject:function(a){return this.isEmpty(a)===!0||0===a.length},isElement:function(b){return a(b).length>0},isString:function(a){return"string"==typeof a||a instanceof String},isArray:function(b){return a.isArray(b)},inArray:function(b,c){return-1!==a.inArray(b,c)},throwError:function(a){throw"Font Awesome Icon Picker Exception: "+a}},c=function(d,e){this._id=c._idCounter++,this.element=a(d).addClass("iconpicker-element"),this._trigger("iconpickerCreate"),this.options=a.extend({},c.defaultOptions,this.element.data(),e),this.options.templates=a.extend({},c.defaultOptions.templates,this.options.templates),this.options.originalPlacement=this.options.placement,this.container=b.isElement(this.options.container)?a(this.options.container):!1,this.container===!1&&(this.element.is(".dropdown-toggle")?this.container=a("~ .dropdown-menu:first",this.element):this.container=this.element.is("input,textarea,button,.btn")?this.element.parent():this.element),this.container.addClass("iconpicker-container"),this.isDropdownMenu()&&(this.options.templates.search=!1,this.options.templates.buttons=!1,this.options.placement="inline"),this.input=this.element.is("input,textarea")?this.element.addClass("iconpicker-input"):!1,this.input===!1&&(this.input=this.container.find(this.options.input),this.input.is("input,textarea")||(this.input=!1)),this.component=this.isDropdownMenu()?this.container.parent().find(this.options.component):this.container.find(this.options.component),0===this.component.length?this.component=!1:this.component.find("i").addClass("iconpicker-component"),this._createPopover(),this._createIconpicker(),0===this.getAcceptButton().length&&(this.options.mustAccept=!1),this.isInputGroup()?this.container.parent().append(this.popover):this.container.append(this.popover),this._bindElementEvents(),this._bindWindowEvents(),this.update(this.options.selected),this.isInline()&&this.show(),this._trigger("iconpickerCreated")};c._idCounter=0,c.defaultOptions={title:!1,selected:!1,defaultValue:!1,placement:"bottom",collision:"none",animation:!0,hideOnSelect:!1,showFooter:!1,searchInFooter:!1,mustAccept:!1,selectedCustomClass:"bg-primary",icons:[],fullClassFormatter:function(a){return"fa "+a},input:"input,.iconpicker-input",inputSearch:!1,container:!1,component:".input-group-addon,.iconpicker-component",templates:{popover:'<div class="iconpicker-popover popover"><div class="arrow"></div><div class="popover-title"></div><div class="popover-content"></div></div>',footer:'<div class="popover-footer"></div>',buttons:'<button class="iconpicker-btn iconpicker-btn-cancel btn btn-default btn-sm">Cancel</button> <button class="iconpicker-btn iconpicker-btn-accept btn btn-primary btn-sm">Accept</button>',search:'<input type="search" class="form-control iconpicker-search" placeholder="Type to filter" />',iconpicker:'<div class="iconpicker"><div class="iconpicker-items"></div></div>',iconpickerItem:'<a role="button" href="#" class="iconpicker-item"><i></i></a>'}},c.batch=function(b,c){var d=Array.prototype.slice.call(arguments,2);return a(b).each(function(){var b=a(this).data("iconpicker");b&&b[c].apply(b,d)})},c.prototype={constructor:c,options:{},_id:0,_trigger:function(b,c){c=c||{},this.element.trigger(a.extend({type:b,iconpickerInstance:this},c))},_createPopover:function(){this.popover=a(this.options.templates.popover);var c=this.popover.find(".popover-title");if(this.options.title&&c.append(a('<div class="popover-title-text">'+this.options.title+"</div>")),this.hasSeparatedSearchInput()&&!this.options.searchInFooter?c.append(this.options.templates.search):this.options.title||c.remove(),this.options.showFooter&&!b.isEmpty(this.options.templates.footer)){var d=a(this.options.templates.footer);this.hasSeparatedSearchInput()&&this.options.searchInFooter&&d.append(a(this.options.templates.search)),b.isEmpty(this.options.templates.buttons)||d.append(a(this.options.templates.buttons)),this.popover.append(d)}return this.options.animation===!0&&this.popover.addClass("fade"),this.popover},_createIconpicker:function(){var b=this;this.iconpicker=a(this.options.templates.iconpicker);var c=function(c){var d=a(this);return d.is("i")&&(d=d.parent()),b._trigger("iconpickerSelect",{iconpickerItem:d,iconpickerValue:b.iconpickerValue}),b.options.mustAccept===!1?(b.update(d.data("iconpickerValue")),b._trigger("iconpickerSelected",{iconpickerItem:this,iconpickerValue:b.iconpickerValue})):b.update(d.data("iconpickerValue"),!0),b.options.hideOnSelect&&b.options.mustAccept===!1&&b.hide(),c.preventDefault(),!1};for(var d in this.options.icons){var e=a(this.options.templates.iconpickerItem);e.find("i").addClass(this.options.fullClassFormatter(this.options.icons[d])),e.data("iconpickerValue",this.options.icons[d]).on("click.iconpicker",c),this.iconpicker.find(".iconpicker-items").append(e.attr("title","."+this.options.icons[d]))}return this.popover.find(".popover-content").append(this.iconpicker),this.iconpicker},_isEventInsideIconpicker:function(b){var c=a(b.target);return c.hasClass("iconpicker-element")&&(!c.hasClass("iconpicker-element")||c.is(this.element))||0!==c.parents(".iconpicker-popover").length?!0:!1},_bindElementEvents:function(){var c=this;this.getSearchInput().on("keyup.iconpicker",function(){c.filter(a(this).val().toLowerCase())}),this.getAcceptButton().on("click.iconpicker",function(){var a=c.iconpicker.find(".iconpicker-selected").get(0);c.update(c.iconpickerValue),c._trigger("iconpickerSelected",{iconpickerItem:a,iconpickerValue:c.iconpickerValue}),c.isInline()||c.hide()}),this.getCancelButton().on("click.iconpicker",function(){c.isInline()||c.hide()}),this.element.on("focus.iconpicker",function(a){c.show(),a.stopPropagation()}),this.hasComponent()&&this.component.on("click.iconpicker",function(){c.toggle()}),this.hasInput()&&this.input.on("keyup.iconpicker",function(d){b.inArray(d.keyCode,[38,40,37,39,16,17,18,9,8,91,93,20,46,186,190,46,78,188,44,86])?c._updateFormGroupStatus(c.getValid(this.value)!==!1):c.update(),c.options.inputSearch===!0&&c.filter(a(this).val().toLowerCase())})},_bindWindowEvents:function(){var b=a(window.document),c=this,d=".iconpicker.inst"+this._id;return a(window).on("resize.iconpicker"+d+" orientationchange.iconpicker"+d,function(a){c.popover.hasClass("in")&&c.updatePlacement()}),c.isInline()||b.on("mouseup"+d,function(a){c._isEventInsideIconpicker(a)||c.isInline()||c.hide()}),!1},_unbindElementEvents:function(){this.popover.off(".iconpicker"),this.element.off(".iconpicker"),this.hasInput()&&this.input.off(".iconpicker"),this.hasComponent()&&this.component.off(".iconpicker"),this.hasContainer()&&this.container.off(".iconpicker")},_unbindWindowEvents:function(){a(window).off(".iconpicker.inst"+this._id),a(window.document).off(".iconpicker.inst"+this._id)},updatePlacement:function(b,c){b=b||this.options.placement,this.options.placement=b,c=c||this.options.collision,c=c===!0?"flip":c;var d={at:"right bottom",my:"right top",of:this.hasInput()&&!this.isInputGroup()?this.input:this.container,collision:c===!0?"flip":c,within:window};if(this.popover.removeClass("inline topLeftCorner topLeft top topRight topRightCorner rightTop right rightBottom bottomRight bottomRightCorner bottom bottomLeft bottomLeftCorner leftBottom left leftTop"),"object"==typeof b)return this.popover.pos(a.extend({},d,b));switch(b){case"inline":d=!1;break;case"topLeftCorner":d.my="right bottom",d.at="left top";break;case"topLeft":d.my="left bottom",d.at="left top";break;case"top":d.my="center bottom",d.at="center top";break;case"topRight":d.my="right bottom",d.at="right top";break;case"topRightCorner":d.my="left bottom",d.at="right top";break;case"rightTop":d.my="left bottom",d.at="right center";break;case"right":d.my="left center",d.at="right center";break;case"rightBottom":d.my="left top",d.at="right center";break;case"bottomRightCorner":d.my="left top",d.at="right bottom";break;case"bottomRight":d.my="right top",d.at="right bottom";break;case"bottom":d.my="center top",d.at="center bottom";break;case"bottomLeft":d.my="left top",d.at="left bottom";break;case"bottomLeftCorner":d.my="right top",d.at="left bottom";break;case"leftBottom":d.my="right top",d.at="left center";break;case"left":d.my="right center",d.at="left center";break;case"leftTop":d.my="right bottom",d.at="left center";break;default:return!1}return this.popover.css({display:"inline"===this.options.placement?"":"block"}),d!==!1?this.popover.pos(d).css("maxWidth",a(window).width()-this.container.offset().left-5):this.popover.css({top:"auto",right:"auto",bottom:"auto",left:"auto",maxWidth:"none"}),this.popover.addClass(this.options.placement),!0},_updateComponents:function(){if(this.iconpicker.find(".iconpicker-item.iconpicker-selected").removeClass("iconpicker-selected "+this.options.selectedCustomClass),this.iconpickerValue&&this.iconpicker.find("."+this.options.fullClassFormatter(this.iconpickerValue).replace(/ /g,".")).parent().addClass("iconpicker-selected "+this.options.selectedCustomClass),this.hasComponent()){var a=this.component.find("i");a.length>0?a.attr("class",this.options.fullClassFormatter(this.iconpickerValue)):this.component.html(this.getHtml())}},_updateFormGroupStatus:function(a){return this.hasInput()?(a!==!1?this.input.parents(".form-group:first").removeClass("has-error"):this.input.parents(".form-group:first").addClass("has-error"),!0):!1},getValid:function(c){b.isString(c)||(c="");var d=""===c;return c=a.trim(c),b.inArray(c,this.options.icons)||d?c:!1},setValue:function(a){var b=this.getValid(a);return b!==!1?(this.iconpickerValue=b,this._trigger("iconpickerSetValue",{iconpickerValue:b}),this.iconpickerValue):(this._trigger("iconpickerInvalid",{iconpickerValue:a}),!1)},getHtml:function(){return'<i class="'+this.options.fullClassFormatter(this.iconpickerValue)+'"></i>'},setSourceValue:function(a){return a=this.setValue(a),a!==!1&&""!==a&&(this.hasInput()?this.input.val(this.iconpickerValue):this.element.data("iconpickerValue",this.iconpickerValue),this._trigger("iconpickerSetSourceValue",{iconpickerValue:a})),a},getSourceValue:function(a){a=a||this.options.defaultValue;var b=a;return b=this.hasInput()?this.input.val():this.element.data("iconpickerValue"),(void 0===b||""===b||null===b||b===!1)&&(b=a),b},hasInput:function(){return this.input!==!1},isInputSearch:function(){return this.hasInput()&&this.options.inputSearch===!0},isInputGroup:function(){return this.container.is(".input-group")},isDropdownMenu:function(){return this.container.is(".dropdown-menu")},hasSeparatedSearchInput:function(){return this.options.templates.search!==!1&&!this.isInputSearch()},hasComponent:function(){return this.component!==!1},hasContainer:function(){return this.container!==!1},getAcceptButton:function(){return this.popover.find(".iconpicker-btn-accept")},getCancelButton:function(){return this.popover.find(".iconpicker-btn-cancel")},getSearchInput:function(){return this.popover.find(".iconpicker-search")},filter:function(c){if(b.isEmpty(c))return this.iconpicker.find(".iconpicker-item").show(),a(!1);var d=[];return this.iconpicker.find(".iconpicker-item").each(function(){var b=a(this),e=b.attr("title").toLowerCase(),f=!1;try{f=new RegExp(c,"g")}catch(g){f=!1}f!==!1&&e.match(f)?(d.push(b),b.show()):b.hide()}),d},show:function(){return this.popover.hasClass("in")?!1:(a.iconpicker.batch(a(".iconpicker-popover.in:not(.inline)").not(this.popover),"hide"),this._trigger("iconpickerShow"),this.updatePlacement(),this.popover.addClass("in"),void setTimeout(a.proxy(function(){this.popover.css("display",this.isInline()?"":"block"),this._trigger("iconpickerShown")},this),this.options.animation?300:1))},hide:function(){return this.popover.hasClass("in")?(this._trigger("iconpickerHide"),this.popover.removeClass("in"),void setTimeout(a.proxy(function(){this.popover.css("display","none"),this.getSearchInput().val(""),this.filter(""),this._trigger("iconpickerHidden")},this),this.options.animation?300:1)):!1},toggle:function(){this.popover.is(":visible")?this.hide():this.show(!0)},update:function(a,b){return a=a?a:this.getSourceValue(this.iconpickerValue),this._trigger("iconpickerUpdate"),b===!0?a=this.setValue(a):(a=this.setSourceValue(a),this._updateFormGroupStatus(a!==!1)),a!==!1&&this._updateComponents(),this._trigger("iconpickerUpdated"),a},destroy:function(){this._trigger("iconpickerDestroy"),this.element.removeData("iconpicker").removeData("iconpickerValue").removeClass("iconpicker-element"),this._unbindElementEvents(),this._unbindWindowEvents(),a(this.popover).remove(),this._trigger("iconpickerDestroyed")},disable:function(){return this.hasInput()?(this.input.prop("disabled",!0),!0):!1},enable:function(){return this.hasInput()?(this.input.prop("disabled",!1),!0):!1},isDisabled:function(){return this.hasInput()?this.input.prop("disabled")===!0:!1},isInline:function(){return"inline"===this.options.placement||this.popover.hasClass("inline")}},a.iconpicker=c,a.fn.iconpicker=function(b){return this.each(function(){var d=a(this);d.data("iconpicker")||d.data("iconpicker",new c(this,"object"==typeof b?b:{}))})},c.defaultOptions.icons=["fa-adjust","fa-adn","fa-align-center","fa-align-justify","fa-align-left","fa-align-right","fa-ambulance","fa-anchor","fa-android","fa-angle-double-down","fa-angle-double-left","fa-angle-double-right","fa-angle-double-up","fa-angle-down","fa-angle-left","fa-angle-right","fa-angle-up","fa-apple","fa-archive","fa-arrow-circle-down","fa-arrow-circle-left","fa-arrow-circle-o-down","fa-arrow-circle-o-left","fa-arrow-circle-o-right","fa-arrow-circle-o-up","fa-arrow-circle-right","fa-arrow-circle-up","fa-arrow-down","fa-arrow-left","fa-arrow-right","fa-arrow-up","fa-arrows","fa-arrows-alt","fa-arrows-h","fa-arrows-v","fa-asterisk","fa-automobile","fa-backward","fa-ban","fa-bank","fa-bar-chart-o","fa-barcode","fa-bars","fa-beer","fa-behance","fa-behance-square","fa-bell","fa-bell-o","fa-bitbucket","fa-bitbucket-square","fa-bitcoin","fa-bold","fa-bolt","fa-bomb","fa-book","fa-bookmark","fa-bookmark-o","fa-briefcase","fa-btc","fa-bug","fa-building","fa-building-o","fa-bullhorn","fa-bullseye","fa-cab","fa-calendar","fa-calendar-o","fa-camera","fa-camera-retro","fa-car","fa-caret-down","fa-caret-left","fa-caret-right","fa-caret-square-o-down","fa-caret-square-o-left","fa-caret-square-o-right","fa-caret-square-o-up","fa-caret-up","fa-certificate","fa-chain","fa-chain-broken","fa-check","fa-check-circle","fa-check-circle-o","fa-check-square","fa-check-square-o","fa-chevron-circle-down","fa-chevron-circle-left","fa-chevron-circle-right","fa-chevron-circle-up","fa-chevron-down","fa-chevron-left","fa-chevron-right","fa-chevron-up","fa-child","fa-circle","fa-circle-o","fa-circle-o-notch","fa-circle-thin","fa-clipboard","fa-clock-o","fa-cloud","fa-cloud-download","fa-cloud-upload","fa-cny","fa-code","fa-code-fork","fa-codepen","fa-coffee","fa-cog","fa-cogs","fa-columns","fa-comment","fa-comment-o","fa-comments","fa-comments-o","fa-compass","fa-compress","fa-copy","fa-credit-card","fa-crop","fa-crosshairs","fa-css3","fa-cube","fa-cubes","fa-cut","fa-cutlery","fa-dashboard","fa-database","fa-dedent","fa-delicious","fa-desktop","fa-deviantart","fa-digg","fa-dollar","fa-dot-circle-o","fa-download","fa-dribbble","fa-dropbox","fa-drupal","fa-edit","fa-eject","fa-ellipsis-h","fa-ellipsis-v","fa-empire","fa-envelope","fa-envelope-o","fa-envelope-square","fa-eraser","fa-eur","fa-euro","fa-exchange","fa-exclamation","fa-exclamation-circle","fa-exclamation-triangle","fa-expand","fa-external-link","fa-external-link-square","fa-eye","fa-eye-slash","fa-facebook","fa-facebook-square","fa-fast-backward","fa-fast-forward","fa-fax","fa-female","fa-fighter-jet","fa-file","fa-file-archive-o","fa-file-audio-o","fa-file-code-o","fa-file-excel-o","fa-file-image-o","fa-file-movie-o","fa-file-o","fa-file-pdf-o","fa-file-photo-o","fa-file-picture-o","fa-file-powerpoint-o","fa-file-sound-o","fa-file-text","fa-file-text-o","fa-file-video-o","fa-file-word-o","fa-file-zip-o","fa-files-o","fa-film","fa-filter","fa-fire","fa-fire-extinguisher","fa-flag","fa-flag-checkered","fa-flag-o","fa-flash","fa-flask","fa-flickr","fa-floppy-o","fa-folder","fa-folder-o","fa-folder-open","fa-folder-open-o","fa-font","fa-forward","fa-foursquare","fa-frown-o","fa-gamepad","fa-gavel","fa-gbp","fa-ge","fa-gear","fa-gears","fa-gift","fa-git","fa-git-square","fa-github","fa-github-alt","fa-github-square","fa-gittip","fa-glass","fa-globe","fa-google","fa-google-plus","fa-google-plus-square","fa-graduation-cap","fa-group","fa-h-square","fa-hacker-news","fa-hand-o-down","fa-hand-o-left","fa-hand-o-right","fa-hand-o-up","fa-hdd-o","fa-header","fa-headphones","fa-heart","fa-heart-o","fa-history","fa-home","fa-hospital-o","fa-html5","fa-image","fa-inbox","fa-indent","fa-info","fa-info-circle","fa-inr","fa-instagram","fa-institution","fa-italic","fa-joomla","fa-jpy","fa-jsfiddle","fa-key","fa-keyboard-o","fa-krw","fa-language","fa-laptop","fa-leaf","fa-legal","fa-lemon-o","fa-level-down","fa-level-up","fa-life-bouy","fa-life-ring","fa-life-saver","fa-lightbulb-o","fa-link","fa-linkedin","fa-linkedin-square","fa-linux","fa-list","fa-list-alt","fa-list-ol","fa-list-ul","fa-location-arrow","fa-lock","fa-long-arrow-down","fa-long-arrow-left","fa-long-arrow-right","fa-long-arrow-up","fa-magic","fa-magnet","fa-mail-forward","fa-mail-reply","fa-mail-reply-all","fa-male","fa-map-marker","fa-maxcdn","fa-medkit","fa-meh-o","fa-microphone","fa-microphone-slash","fa-minus","fa-minus-circle","fa-minus-square","fa-minus-square-o","fa-mobile","fa-mobile-phone","fa-money","fa-moon-o","fa-mortar-board","fa-music","fa-navicon","fa-openid","fa-outdent","fa-pagelines","fa-paper-plane","fa-paper-plane-o","fa-paperclip","fa-paragraph","fa-paste","fa-pause","fa-paw","fa-pencil","fa-pencil-square","fa-pencil-square-o","fa-phone","fa-phone-square","fa-photo","fa-picture-o","fa-pied-piper","fa-pied-piper-alt","fa-pied-piper-square","fa-pinterest","fa-pinterest-square","fa-plane","fa-play","fa-play-circle","fa-play-circle-o","fa-plus","fa-plus-circle","fa-plus-square","fa-plus-square-o","fa-power-off","fa-print","fa-puzzle-piece","fa-qq","fa-qrcode","fa-question","fa-question-circle","fa-quote-left","fa-quote-right","fa-ra","fa-random","fa-rebel","fa-recycle","fa-reddit","fa-reddit-square","fa-refresh","fa-renren","fa-reorder","fa-repeat","fa-reply","fa-reply-all","fa-retweet","fa-rmb","fa-road","fa-rocket","fa-rotate-left","fa-rotate-right","fa-rouble","fa-rss","fa-rss-square","fa-rub","fa-ruble","fa-rupee","fa-save","fa-scissors","fa-search","fa-search-minus","fa-search-plus","fa-send","fa-send-o","fa-share","fa-share-alt","fa-share-alt-square","fa-share-square","fa-share-square-o","fa-shield","fa-shopping-cart","fa-sign-in","fa-sign-out","fa-signal","fa-sitemap","fa-skype","fa-slack","fa-sliders","fa-smile-o","fa-sort","fa-sort-alpha-asc","fa-sort-alpha-desc","fa-sort-amount-asc","fa-sort-amount-desc","fa-sort-asc","fa-sort-desc","fa-sort-down","fa-sort-numeric-asc","fa-sort-numeric-desc","fa-sort-up","fa-soundcloud","fa-space-shuttle","fa-spinner","fa-spoon","fa-spotify","fa-square","fa-square-o","fa-stack-exchange","fa-stack-overflow","fa-star","fa-star-half","fa-star-half-empty","fa-star-half-full","fa-star-half-o","fa-star-o","fa-steam","fa-steam-square","fa-step-backward","fa-step-forward","fa-stethoscope","fa-stop","fa-strikethrough","fa-stumbleupon","fa-stumbleupon-circle","fa-subscript","fa-suitcase","fa-sun-o","fa-superscript","fa-support","fa-table","fa-tablet","fa-tachometer","fa-tag","fa-tags","fa-tasks","fa-taxi","fa-tencent-weibo","fa-terminal","fa-text-height","fa-text-width","fa-th","fa-th-large","fa-th-list","fa-thumb-tack","fa-thumbs-down","fa-thumbs-o-down","fa-thumbs-o-up","fa-thumbs-up","fa-ticket","fa-times","fa-times-circle","fa-times-circle-o","fa-tint","fa-toggle-down","fa-toggle-left","fa-toggle-right","fa-toggle-up","fa-trash-o","fa-tree","fa-trello","fa-trophy","fa-truck","fa-try","fa-tumblr","fa-tumblr-square","fa-turkish-lira","fa-twitter","fa-twitter-square","fa-umbrella","fa-underline","fa-undo","fa-university","fa-unlink","fa-unlock","fa-unlock-alt","fa-unsorted","fa-upload","fa-usd","fa-user","fa-user-md","fa-users","fa-video-camera","fa-vimeo-square","fa-vine","fa-vk","fa-volume-down","fa-volume-off","fa-volume-up","fa-warning","fa-wechat","fa-weibo","fa-weixin","fa-wheelchair","fa-windows","fa-won","fa-wordpress","fa-wrench","fa-xing","fa-xing-square","fa-yahoo","fa-yen","fa-youtube","fa-youtube-play","fa-youtube-square"]});
|
license.txt
ADDED
@@ -0,0 +1,339 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
GNU GENERAL PUBLIC LICENSE
|
2 |
+
Version 2, June 1991
|
3 |
+
|
4 |
+
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
|
5 |
+
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
6 |
+
Everyone is permitted to copy and distribute verbatim copies
|
7 |
+
of this license document, but changing it is not allowed.
|
8 |
+
|
9 |
+
Preamble
|
10 |
+
|
11 |
+
The licenses for most software are designed to take away your
|
12 |
+
freedom to share and change it. By contrast, the GNU General Public
|
13 |
+
License is intended to guarantee your freedom to share and change free
|
14 |
+
software--to make sure the software is free for all its users. This
|
15 |
+
General Public License applies to most of the Free Software
|
16 |
+
Foundation's software and to any other program whose authors commit to
|
17 |
+
using it. (Some other Free Software Foundation software is covered by
|
18 |
+
the GNU Lesser General Public License instead.) You can apply it to
|
19 |
+
your programs, too.
|
20 |
+
|
21 |
+
When we speak of free software, we are referring to freedom, not
|
22 |
+
price. Our General Public Licenses are designed to make sure that you
|
23 |
+
have the freedom to distribute copies of free software (and charge for
|
24 |
+
this service if you wish), that you receive source code or can get it
|
25 |
+
if you want it, that you can change the software or use pieces of it
|
26 |
+
in new free programs; and that you know you can do these things.
|
27 |
+
|
28 |
+
To protect your rights, we need to make restrictions that forbid
|
29 |
+
anyone to deny you these rights or to ask you to surrender the rights.
|
30 |
+
These restrictions translate to certain responsibilities for you if you
|
31 |
+
distribute copies of the software, or if you modify it.
|
32 |
+
|
33 |
+
For example, if you distribute copies of such a program, whether
|
34 |
+
gratis or for a fee, you must give the recipients all the rights that
|
35 |
+
you have. You must make sure that they, too, receive or can get the
|
36 |
+
source code. And you must show them these terms so they know their
|
37 |
+
rights.
|
38 |
+
|
39 |
+
We protect your rights with two steps: (1) copyright the software, and
|
40 |
+
(2) offer you this license which gives you legal permission to copy,
|
41 |
+
distribute and/or modify the software.
|
42 |
+
|
43 |
+
Also, for each author's protection and ours, we want to make certain
|
44 |
+
that everyone understands that there is no warranty for this free
|
45 |
+
software. If the software is modified by someone else and passed on, we
|
46 |
+
want its recipients to know that what they have is not the original, so
|
47 |
+
that any problems introduced by others will not reflect on the original
|
48 |
+
authors' reputations.
|
49 |
+
|
50 |
+
Finally, any free program is threatened constantly by software
|
51 |
+
patents. We wish to avoid the danger that redistributors of a free
|
52 |
+
program will individually obtain patent licenses, in effect making the
|
53 |
+
program proprietary. To prevent this, we have made it clear that any
|
54 |
+
patent must be licensed for everyone's free use or not licensed at all.
|
55 |
+
|
56 |
+
The precise terms and conditions for copying, distribution and
|
57 |
+
modification follow.
|
58 |
+
|
59 |
+
GNU GENERAL PUBLIC LICENSE
|
60 |
+
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
61 |
+
|
62 |
+
0. This License applies to any program or other work which contains
|
63 |
+
a notice placed by the copyright holder saying it may be distributed
|
64 |
+
under the terms of this General Public License. The "Program", below,
|
65 |
+
refers to any such program or work, and a "work based on the Program"
|
66 |
+
means either the Program or any derivative work under copyright law:
|
67 |
+
that is to say, a work containing the Program or a portion of it,
|
68 |
+
either verbatim or with modifications and/or translated into another
|
69 |
+
language. (Hereinafter, translation is included without limitation in
|
70 |
+
the term "modification".) Each licensee is addressed as "you".
|
71 |
+
|
72 |
+
Activities other than copying, distribution and modification are not
|
73 |
+
covered by this License; they are outside its scope. The act of
|
74 |
+
running the Program is not restricted, and the output from the Program
|
75 |
+
is covered only if its contents constitute a work based on the
|
76 |
+
Program (independent of having been made by running the Program).
|
77 |
+
Whether that is true depends on what the Program does.
|
78 |
+
|
79 |
+
1. You may copy and distribute verbatim copies of the Program's
|
80 |
+
source code as you receive it, in any medium, provided that you
|
81 |
+
conspicuously and appropriately publish on each copy an appropriate
|
82 |
+
copyright notice and disclaimer of warranty; keep intact all the
|
83 |
+
notices that refer to this License and to the absence of any warranty;
|
84 |
+
and give any other recipients of the Program a copy of this License
|
85 |
+
along with the Program.
|
86 |
+
|
87 |
+
You may charge a fee for the physical act of transferring a copy, and
|
88 |
+
you may at your option offer warranty protection in exchange for a fee.
|
89 |
+
|
90 |
+
2. You may modify your copy or copies of the Program or any portion
|
91 |
+
of it, thus forming a work based on the Program, and copy and
|
92 |
+
distribute such modifications or work under the terms of Section 1
|
93 |
+
above, provided that you also meet all of these conditions:
|
94 |
+
|
95 |
+
a) You must cause the modified files to carry prominent notices
|
96 |
+
stating that you changed the files and the date of any change.
|
97 |
+
|
98 |
+
b) You must cause any work that you distribute or publish, that in
|
99 |
+
whole or in part contains or is derived from the Program or any
|
100 |
+
part thereof, to be licensed as a whole at no charge to all third
|
101 |
+
parties under the terms of this License.
|
102 |
+
|
103 |
+
c) If the modified program normally reads commands interactively
|
104 |
+
when run, you must cause it, when started running for such
|
105 |
+
interactive use in the most ordinary way, to print or display an
|
106 |
+
announcement including an appropriate copyright notice and a
|
107 |
+
notice that there is no warranty (or else, saying that you provide
|
108 |
+
a warranty) and that users may redistribute the program under
|
109 |
+
these conditions, and telling the user how to view a copy of this
|
110 |
+
License. (Exception: if the Program itself is interactive but
|
111 |
+
does not normally print such an announcement, your work based on
|
112 |
+
the Program is not required to print an announcement.)
|
113 |
+
|
114 |
+
These requirements apply to the modified work as a whole. If
|
115 |
+
identifiable sections of that work are not derived from the Program,
|
116 |
+
and can be reasonably considered independent and separate works in
|
117 |
+
themselves, then this License, and its terms, do not apply to those
|
118 |
+
sections when you distribute them as separate works. But when you
|
119 |
+
distribute the same sections as part of a whole which is a work based
|
120 |
+
on the Program, the distribution of the whole must be on the terms of
|
121 |
+
this License, whose permissions for other licensees extend to the
|
122 |
+
entire whole, and thus to each and every part regardless of who wrote it.
|
123 |
+
|
124 |
+
Thus, it is not the intent of this section to claim rights or contest
|
125 |
+
your rights to work written entirely by you; rather, the intent is to
|
126 |
+
exercise the right to control the distribution of derivative or
|
127 |
+
collective works based on the Program.
|
128 |
+
|
129 |
+
In addition, mere aggregation of another work not based on the Program
|
130 |
+
with the Program (or with a work based on the Program) on a volume of
|
131 |
+
a storage or distribution medium does not bring the other work under
|
132 |
+
the scope of this License.
|
133 |
+
|
134 |
+
3. You may copy and distribute the Program (or a work based on it,
|
135 |
+
under Section 2) in object code or executable form under the terms of
|
136 |
+
Sections 1 and 2 above provided that you also do one of the following:
|
137 |
+
|
138 |
+
a) Accompany it with the complete corresponding machine-readable
|
139 |
+
source code, which must be distributed under the terms of Sections
|
140 |
+
1 and 2 above on a medium customarily used for software interchange; or,
|
141 |
+
|
142 |
+
b) Accompany it with a written offer, valid for at least three
|
143 |
+
years, to give any third party, for a charge no more than your
|
144 |
+
cost of physically performing source distribution, a complete
|
145 |
+
machine-readable copy of the corresponding source code, to be
|
146 |
+
distributed under the terms of Sections 1 and 2 above on a medium
|
147 |
+
customarily used for software interchange; or,
|
148 |
+
|
149 |
+
c) Accompany it with the information you received as to the offer
|
150 |
+
to distribute corresponding source code. (This alternative is
|
151 |
+
allowed only for noncommercial distribution and only if you
|
152 |
+
received the program in object code or executable form with such
|
153 |
+
an offer, in accord with Subsection b above.)
|
154 |
+
|
155 |
+
The source code for a work means the preferred form of the work for
|
156 |
+
making modifications to it. For an executable work, complete source
|
157 |
+
code means all the source code for all modules it contains, plus any
|
158 |
+
associated interface definition files, plus the scripts used to
|
159 |
+
control compilation and installation of the executable. However, as a
|
160 |
+
special exception, the source code distributed need not include
|
161 |
+
anything that is normally distributed (in either source or binary
|
162 |
+
form) with the major components (compiler, kernel, and so on) of the
|
163 |
+
operating system on which the executable runs, unless that component
|
164 |
+
itself accompanies the executable.
|
165 |
+
|
166 |
+
If distribution of executable or object code is made by offering
|
167 |
+
access to copy from a designated place, then offering equivalent
|
168 |
+
access to copy the source code from the same place counts as
|
169 |
+
distribution of the source code, even though third parties are not
|
170 |
+
compelled to copy the source along with the object code.
|
171 |
+
|
172 |
+
4. You may not copy, modify, sublicense, or distribute the Program
|
173 |
+
except as expressly provided under this License. Any attempt
|
174 |
+
otherwise to copy, modify, sublicense or distribute the Program is
|
175 |
+
void, and will automatically terminate your rights under this License.
|
176 |
+
However, parties who have received copies, or rights, from you under
|
177 |
+
this License will not have their licenses terminated so long as such
|
178 |
+
parties remain in full compliance.
|
179 |
+
|
180 |
+
5. You are not required to accept this License, since you have not
|
181 |
+
signed it. However, nothing else grants you permission to modify or
|
182 |
+
distribute the Program or its derivative works. These actions are
|
183 |
+
prohibited by law if you do not accept this License. Therefore, by
|
184 |
+
modifying or distributing the Program (or any work based on the
|
185 |
+
Program), you indicate your acceptance of this License to do so, and
|
186 |
+
all its terms and conditions for copying, distributing or modifying
|
187 |
+
the Program or works based on it.
|
188 |
+
|
189 |
+
6. Each time you redistribute the Program (or any work based on the
|
190 |
+
Program), the recipient automatically receives a license from the
|
191 |
+
original licensor to copy, distribute or modify the Program subject to
|
192 |
+
these terms and conditions. You may not impose any further
|
193 |
+
restrictions on the recipients' exercise of the rights granted herein.
|
194 |
+
You are not responsible for enforcing compliance by third parties to
|
195 |
+
this License.
|
196 |
+
|
197 |
+
7. If, as a consequence of a court judgment or allegation of patent
|
198 |
+
infringement or for any other reason (not limited to patent issues),
|
199 |
+
conditions are imposed on you (whether by court order, agreement or
|
200 |
+
otherwise) that contradict the conditions of this License, they do not
|
201 |
+
excuse you from the conditions of this License. If you cannot
|
202 |
+
distribute so as to satisfy simultaneously your obligations under this
|
203 |
+
License and any other pertinent obligations, then as a consequence you
|
204 |
+
may not distribute the Program at all. For example, if a patent
|
205 |
+
license would not permit royalty-free redistribution of the Program by
|
206 |
+
all those who receive copies directly or indirectly through you, then
|
207 |
+
the only way you could satisfy both it and this License would be to
|
208 |
+
refrain entirely from distribution of the Program.
|
209 |
+
|
210 |
+
If any portion of this section is held invalid or unenforceable under
|
211 |
+
any particular circumstance, the balance of the section is intended to
|
212 |
+
apply and the section as a whole is intended to apply in other
|
213 |
+
circumstances.
|
214 |
+
|
215 |
+
It is not the purpose of this section to induce you to infringe any
|
216 |
+
patents or other property right claims or to contest validity of any
|
217 |
+
such claims; this section has the sole purpose of protecting the
|
218 |
+
integrity of the free software distribution system, which is
|
219 |
+
implemented by public license practices. Many people have made
|
220 |
+
generous contributions to the wide range of software distributed
|
221 |
+
through that system in reliance on consistent application of that
|
222 |
+
system; it is up to the author/donor to decide if he or she is willing
|
223 |
+
to distribute software through any other system and a licensee cannot
|
224 |
+
impose that choice.
|
225 |
+
|
226 |
+
This section is intended to make thoroughly clear what is believed to
|
227 |
+
be a consequence of the rest of this License.
|
228 |
+
|
229 |
+
8. If the distribution and/or use of the Program is restricted in
|
230 |
+
certain countries either by patents or by copyrighted interfaces, the
|
231 |
+
original copyright holder who places the Program under this License
|
232 |
+
may add an explicit geographical distribution limitation excluding
|
233 |
+
those countries, so that distribution is permitted only in or among
|
234 |
+
countries not thus excluded. In such case, this License incorporates
|
235 |
+
the limitation as if written in the body of this License.
|
236 |
+
|
237 |
+
9. The Free Software Foundation may publish revised and/or new versions
|
238 |
+
of the General Public License from time to time. Such new versions will
|
239 |
+
be similar in spirit to the present version, but may differ in detail to
|
240 |
+
address new problems or concerns.
|
241 |
+
|
242 |
+
Each version is given a distinguishing version number. If the Program
|
243 |
+
specifies a version number of this License which applies to it and "any
|
244 |
+
later version", you have the option of following the terms and conditions
|
245 |
+
either of that version or of any later version published by the Free
|
246 |
+
Software Foundation. If the Program does not specify a version number of
|
247 |
+
this License, you may choose any version ever published by the Free Software
|
248 |
+
Foundation.
|
249 |
+
|
250 |
+
10. If you wish to incorporate parts of the Program into other free
|
251 |
+
programs whose distribution conditions are different, write to the author
|
252 |
+
to ask for permission. For software which is copyrighted by the Free
|
253 |
+
Software Foundation, write to the Free Software Foundation; we sometimes
|
254 |
+
make exceptions for this. Our decision will be guided by the two goals
|
255 |
+
of preserving the free status of all derivatives of our free software and
|
256 |
+
of promoting the sharing and reuse of software generally.
|
257 |
+
|
258 |
+
NO WARRANTY
|
259 |
+
|
260 |
+
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
261 |
+
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
262 |
+
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
263 |
+
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
264 |
+
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
265 |
+
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
266 |
+
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
267 |
+
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
268 |
+
REPAIR OR CORRECTION.
|
269 |
+
|
270 |
+
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
271 |
+
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
272 |
+
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
273 |
+
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
274 |
+
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
275 |
+
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
276 |
+
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
277 |
+
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
278 |
+
POSSIBILITY OF SUCH DAMAGES.
|
279 |
+
|
280 |
+
END OF TERMS AND CONDITIONS
|
281 |
+
|
282 |
+
How to Apply These Terms to Your New Programs
|
283 |
+
|
284 |
+
If you develop a new program, and you want it to be of the greatest
|
285 |
+
possible use to the public, the best way to achieve this is to make it
|
286 |
+
free software which everyone can redistribute and change under these terms.
|
287 |
+
|
288 |
+
To do so, attach the following notices to the program. It is safest
|
289 |
+
to attach them to the start of each source file to most effectively
|
290 |
+
convey the exclusion of warranty; and each file should have at least
|
291 |
+
the "copyright" line and a pointer to where the full notice is found.
|
292 |
+
|
293 |
+
<one line to give the program's name and a brief idea of what it does.>
|
294 |
+
Copyright (C) <year> <name of author>
|
295 |
+
|
296 |
+
This program is free software; you can redistribute it and/or modify
|
297 |
+
it under the terms of the GNU General Public License as published by
|
298 |
+
the Free Software Foundation; either version 2 of the License, or
|
299 |
+
(at your option) any later version.
|
300 |
+
|
301 |
+
This program is distributed in the hope that it will be useful,
|
302 |
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
303 |
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
304 |
+
GNU General Public License for more details.
|
305 |
+
|
306 |
+
You should have received a copy of the GNU General Public License along
|
307 |
+
with this program; if not, write to the Free Software Foundation, Inc.,
|
308 |
+
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
309 |
+
|
310 |
+
Also add information on how to contact you by electronic and paper mail.
|
311 |
+
|
312 |
+
If the program is interactive, make it output a short notice like this
|
313 |
+
when it starts in an interactive mode:
|
314 |
+
|
315 |
+
Gnomovision version 69, Copyright (C) year name of author
|
316 |
+
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
317 |
+
This is free software, and you are welcome to redistribute it
|
318 |
+
under certain conditions; type `show c' for details.
|
319 |
+
|
320 |
+
The hypothetical commands `show w' and `show c' should show the appropriate
|
321 |
+
parts of the General Public License. Of course, the commands you use may
|
322 |
+
be called something other than `show w' and `show c'; they could even be
|
323 |
+
mouse-clicks or menu items--whatever suits your program.
|
324 |
+
|
325 |
+
You should also get your employer (if you work as a programmer) or your
|
326 |
+
school, if any, to sign a "copyright disclaimer" for the program, if
|
327 |
+
necessary. Here is a sample; alter the names:
|
328 |
+
|
329 |
+
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
330 |
+
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
331 |
+
|
332 |
+
<signature of Ty Coon>, 1 April 1989
|
333 |
+
Ty Coon, President of Vice
|
334 |
+
|
335 |
+
This General Public License does not permit incorporating your program into
|
336 |
+
proprietary programs. If your program is a subroutine library, you may
|
337 |
+
consider it more useful to permit linking proprietary applications with the
|
338 |
+
library. If this is what you want to do, use the GNU Lesser General
|
339 |
+
Public License instead of this License.
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: better, font, awesome, icon, icons, bootstrap, fontstrap, cdn, shortcode
|
|
4 |
Donate link: http://mightyminnow.com
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.3
|
7 |
-
Stable tag: 1.3.
|
8 |
License: GPLv2+
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -12,6 +12,8 @@ The Better Font Awesome plugin for WordPress. Shortcodes, HTML, TinyMCE, various
|
|
12 |
|
13 |
== Description ==
|
14 |
|
|
|
|
|
15 |
Better Font Awesome allows you to automatically integrate the latest available version of [Font Awesome](http://fontawesome.io/) into your WordPress project, along with accompanying CSS, shortcodes, and TinyMCE icon shortcode generator.
|
16 |
|
17 |
|
@@ -107,6 +109,11 @@ Better Font Awesome does it's best to load after any existing Font Awesome CSS,
|
|
107 |
|
108 |
== Changelog ==
|
109 |
|
|
|
|
|
|
|
|
|
|
|
110 |
= 1.3.2 =
|
111 |
* Update Better Font Awesome Library with better prefix removal method for filtered icons.
|
112 |
|
@@ -197,6 +204,11 @@ Better Font Awesome does it's best to load after any existing Font Awesome CSS,
|
|
197 |
|
198 |
== Upgrade Notice ==
|
199 |
|
|
|
|
|
|
|
|
|
|
|
200 |
= 1.3.2 =
|
201 |
* Update Better Font Awesome Library with better prefix removal method.
|
202 |
|
4 |
Donate link: http://mightyminnow.com
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 4.3
|
7 |
+
Stable tag: 1.3.3
|
8 |
License: GPLv2+
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
+
**Do you find this plugin helpful? Please consider [leaving a 5-star review](https://wordpress.org/support/view/plugin-reviews/better-font-awesome).**
|
16 |
+
|
17 |
Better Font Awesome allows you to automatically integrate the latest available version of [Font Awesome](http://fontawesome.io/) into your WordPress project, along with accompanying CSS, shortcodes, and TinyMCE icon shortcode generator.
|
18 |
|
19 |
|
109 |
|
110 |
== Changelog ==
|
111 |
|
112 |
+
= 1.3.3 =
|
113 |
+
* Update plugin and BFAL to all fire on `init` hook instead of mix of `plugins_loaded` and `after_theme_setup`. This should fix issues in which icons don't show up when BFAL is used in other plugins.
|
114 |
+
* Update iconpicker JS to avoid conflict that arose from preventing subsequent `mouseup` event listeners from firing.
|
115 |
+
* Change appearance of iconpicker button to match default buttons.
|
116 |
+
|
117 |
= 1.3.2 =
|
118 |
* Update Better Font Awesome Library with better prefix removal method for filtered icons.
|
119 |
|
204 |
|
205 |
== Upgrade Notice ==
|
206 |
|
207 |
+
= 1.3.3 =
|
208 |
+
* Update plugin and BFAL to all fire on `init` hook instead of mix of `plugins_loaded` and `after_theme_setup`. This should fix issues in which icons don't show up when BFAL is used in other plugins.
|
209 |
+
* Update iconpicker JS to avoid conflict that arose from preventing subsequent `mouseup` event listeners from firing.
|
210 |
+
* Change appearance of iconpicker button to match default buttons.
|
211 |
+
|
212 |
= 1.3.2 =
|
213 |
* Update Better Font Awesome Library with better prefix removal method.
|
214 |
|