Compare commits
52 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8bbc2f32ae | ||
|
|
4ca46ab3ba | ||
|
|
7442c72d01 | ||
|
|
01cd8350bc | ||
|
|
8b5ea589db | ||
|
|
3555ca1d1e | ||
|
|
ae034a47ed | ||
|
|
ec3862c930 | ||
|
|
c63804d1c5 | ||
|
|
c5e6752f75 | ||
|
|
e4f3e9d11c | ||
|
|
f3713536b9 | ||
|
|
fb751c0a51 | ||
|
|
9d3464055a | ||
|
|
0fea814f5d | ||
|
|
ae70a6df9d | ||
|
|
4afc756ccd | ||
|
|
adc5841261 | ||
|
|
41cca5fb8a | ||
|
|
498da1a06b | ||
|
|
48dab90313 | ||
|
|
d1ff642957 | ||
|
|
2b5613d84a | ||
|
|
09d28fae26 | ||
|
|
7517e247d9 | ||
|
|
998951e629 | ||
|
|
d89fcbb68a | ||
|
|
d3e0ff1e66 | ||
|
|
804a8c34c6 | ||
|
|
57942e1826 | ||
|
|
5657735b55 | ||
|
|
791fce2424 | ||
|
|
c34fa45875 | ||
|
|
e0fd79f800 | ||
|
|
f9d9cda4a4 | ||
|
|
d6f44b2f42 | ||
|
|
bd90da7ed2 | ||
|
|
3a1a976e35 | ||
|
|
db1309af83 | ||
|
|
0e47441a36 | ||
|
|
375bea9a8b | ||
|
|
3a42772879 | ||
|
|
e9956593dc | ||
|
|
fda6000c4c | ||
|
|
99b4eb969d | ||
|
|
dadd55ba32 | ||
|
|
b40e06b2ea | ||
|
|
3f20edc41f | ||
|
|
baaa11bb64 | ||
|
|
44e1179ce4 | ||
|
|
808521fb70 | ||
|
|
ad8e97f432 |
@@ -8,6 +8,7 @@ spec/
|
||||
.*
|
||||
**/*.md
|
||||
*.md
|
||||
!README.md
|
||||
Dockerfile
|
||||
**/*.orig
|
||||
*.orig
|
||||
|
||||
9
.gitignore
vendored
9
.gitignore
vendored
@@ -12,3 +12,12 @@ Gemfile.lock
|
||||
_yardoc
|
||||
doc/
|
||||
.wpscan/
|
||||
|
||||
.ash_history
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
.idea/
|
||||
|
||||
# Old files from v2
|
||||
cache/
|
||||
data/
|
||||
|
||||
@@ -1 +1 @@
|
||||
2.5.0
|
||||
2.5.3
|
||||
|
||||
@@ -10,12 +10,16 @@ rvm:
|
||||
- 2.3.5
|
||||
- 2.3.6
|
||||
- 2.3.7
|
||||
- 2.3.8
|
||||
- 2.4.1
|
||||
- 2.4.2
|
||||
- 2.4.3
|
||||
- 2.4.4
|
||||
- 2.4.5
|
||||
- 2.5.0
|
||||
- 2.5.1
|
||||
- 2.5.2
|
||||
- 2.5.3
|
||||
- ruby-head
|
||||
before_install:
|
||||
- "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
|
||||
|
||||
33
Dockerfile
33
Dockerfile
@@ -1,27 +1,38 @@
|
||||
FROM ruby:2.5-alpine
|
||||
MAINTAINER WPScan Team <team@wpscan.org>
|
||||
FROM ruby:2.5.1-alpine AS builder
|
||||
LABEL maintainer="WPScan Team <team@wpscan.org>"
|
||||
|
||||
ARG BUNDLER_ARGS="--jobs=8 --without test development"
|
||||
|
||||
RUN adduser -h /wpscan -g WPScan -D wpscan
|
||||
RUN echo "gem: --no-ri --no-rdoc" > /etc/gemrc
|
||||
|
||||
COPY . /wpscan
|
||||
RUN chown -R wpscan:wpscan /wpscan
|
||||
|
||||
# runtime dependencies
|
||||
RUN apk add --no-cache libcurl procps sqlite-libs && \
|
||||
# build dependencies
|
||||
apk add --no-cache --virtual build-deps git libcurl ruby-dev libffi-dev make gcc musl-dev zlib-dev procps sqlite-dev && \
|
||||
bundle install --system --gemfile=/wpscan/Gemfile $BUNDLER_ARGS && \
|
||||
apk del --no-cache build-deps
|
||||
RUN apk add --no-cache git libcurl ruby-dev libffi-dev make gcc musl-dev zlib-dev procps sqlite-dev && \
|
||||
bundle install --system --clean --no-cache --gemfile=/wpscan/Gemfile $BUNDLER_ARGS && \
|
||||
# temp fix for https://github.com/bundler/bundler/issues/6680
|
||||
rm -rf /usr/local/bundle/cache
|
||||
|
||||
WORKDIR /wpscan
|
||||
RUN rake install --trace
|
||||
|
||||
# needed so non superusers can read gems
|
||||
RUN chmod -R a+r /usr/local/bundle
|
||||
|
||||
|
||||
FROM ruby:2.5-alpine
|
||||
LABEL maintainer="WPScan Team <team@wpscan.org>"
|
||||
|
||||
RUN adduser -h /wpscan -g WPScan -D wpscan
|
||||
|
||||
COPY --from=builder /usr/local/bundle /usr/local/bundle
|
||||
RUN chown -R wpscan:wpscan /wpscan
|
||||
|
||||
# runtime dependencies
|
||||
RUN apk add --no-cache libcurl procps sqlite-libs
|
||||
|
||||
|
||||
USER wpscan
|
||||
RUN /usr/local/bundle/bin/wpscan --update --verbose
|
||||
|
||||
ENTRYPOINT ["/usr/local/bundle/bin/wpscan"]
|
||||
CMD ["--help"]
|
||||
|
||||
|
||||
30
README.md
30
README.md
@@ -1,7 +1,7 @@
|
||||

|
||||

|
||||
|
||||
[](https://badge.fury.io/rb/wpscan)
|
||||
[](https://travis-ci.org/wpscanteam/wpscan-v3)
|
||||
[](https://travis-ci.org/wpscanteam/wpscan)
|
||||
[](https://codeclimate.com/github/wpscanteam/wpscan)
|
||||
[](https://www.patreon.com/wpscan)
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
|
||||
## Prerequisites:
|
||||
|
||||
- Ruby >= 2.2.2 - Recommended: 2.3.3
|
||||
- Ruby >= 2.3 - Recommended: latest
|
||||
- Curl >= 7.21 - Recommended: latest - FYI the 7.29 has a segfault
|
||||
- RubyGems - Recommended: latest
|
||||
|
||||
@@ -35,6 +35,17 @@ bundle install && rake install
|
||||
|
||||
Pull the repo with ```docker pull wpscanteam/wpscan```
|
||||
|
||||
Enumerating usernames
|
||||
```
|
||||
docker run -it --rm wpscanteam/wpscan --url https://target.tld/ --enumerate u
|
||||
```
|
||||
|
||||
Enumerating a range of usernames
|
||||
```
|
||||
docker run -it --rm wpscanteam/wpscan --url https://target.tld/ --enumerate u1-100
|
||||
```
|
||||
** replace u1-100 with a range of your choice.
|
||||
|
||||
# Usage
|
||||
|
||||
```wpscan --url blog.tld``` This will scan the blog using default options with a good compromise between speed and accuracy. For example, the plugins will be checked passively but their version with a mixed detection mode (passively + aggressively). Potential config backup files will also be checked, along with other interesting findings. If a more stealthy approach is required, then ```wpscan --stealthy --url blog.tld``` can be used.
|
||||
@@ -69,6 +80,19 @@ url: 'http://target.tld'
|
||||
|
||||
Running ```wpscan``` in the current directory (pwd), is the same as ```wpscan -v --proxy socks5://127.0.0.1:9090 --url http://target.tld```
|
||||
|
||||
|
||||
Enumerating usernames
|
||||
```
|
||||
wpscan --url https://target.tld/ --enumerate u
|
||||
```
|
||||
|
||||
Enumerating a range of usernames
|
||||
```
|
||||
wpscan --url https://target.tld/ --enumerate u1-100
|
||||
```
|
||||
** replace u1-100 with a range of your choice.
|
||||
|
||||
|
||||
# PROJECT HOME
|
||||
|
||||
[https://wpscan.org](https://wpscan.org)
|
||||
|
||||
@@ -5,15 +5,15 @@ module WPScan
|
||||
# @return [ Array<OptParseValidator::Opt> ]
|
||||
def cli_options
|
||||
[OptURL.new(['--url URL', 'The URL of the blog to scan'],
|
||||
required_unless: %i[update help version], default_protocol: 'http')] +
|
||||
required_unless: %i[update help hh version], default_protocol: 'http')] +
|
||||
super.drop(1) + # delete the --url from CMSScanner
|
||||
[
|
||||
OptChoice.new(['--server SERVER', 'Force the supplied server module to be loaded'],
|
||||
choices: %w[apache iis nginx],
|
||||
normalize: %i[downcase to_sym]),
|
||||
normalize: %i[downcase to_sym],
|
||||
advanced: true),
|
||||
OptBoolean.new(['--force', 'Do not check if the target is running WordPress']),
|
||||
OptBoolean.new(['--[no-]update', 'Wether or not to update the Database'],
|
||||
required_unless: %i[url help version])
|
||||
OptBoolean.new(['--[no-]update', 'Whether or not to update the Database'])
|
||||
]
|
||||
end
|
||||
|
||||
|
||||
@@ -13,19 +13,22 @@ module WPScan
|
||||
def cli_enum_choices
|
||||
[
|
||||
OptMultiChoices.new(
|
||||
['--enumerate [OPTS]', '-e', 'Enumeration Process'],
|
||||
['-e', '--enumerate [OPTS]', 'Enumeration Process'],
|
||||
choices: {
|
||||
vp: OptBoolean.new(['--vulnerable-plugins']),
|
||||
ap: OptBoolean.new(['--all-plugins']),
|
||||
p: OptBoolean.new(['--plugins']),
|
||||
vt: OptBoolean.new(['--vulnerable-themes']),
|
||||
at: OptBoolean.new(['--all-themes']),
|
||||
t: OptBoolean.new(['--themes']),
|
||||
tt: OptBoolean.new(['--timthumbs']),
|
||||
cb: OptBoolean.new(['--config-backups']),
|
||||
vp: OptBoolean.new(['--vulnerable-plugins']),
|
||||
ap: OptBoolean.new(['--all-plugins']),
|
||||
p: OptBoolean.new(['--plugins']),
|
||||
vt: OptBoolean.new(['--vulnerable-themes']),
|
||||
at: OptBoolean.new(['--all-themes']),
|
||||
t: OptBoolean.new(['--themes']),
|
||||
tt: OptBoolean.new(['--timthumbs']),
|
||||
cb: OptBoolean.new(['--config-backups']),
|
||||
dbe: OptBoolean.new(['--db-exports']),
|
||||
u: OptIntegerRange.new(['--users', 'User IDs range. e.g: u1-5'], value_if_empty: '1-10'),
|
||||
m: OptIntegerRange.new(['--medias', 'Media IDs range. e.g m1-15'], value_if_empty: '1-100')
|
||||
u: OptIntegerRange.new(['--users', 'User IDs range. e.g: u1-5'], value_if_empty: '1-10'),
|
||||
m: OptIntegerRange.new(['--medias',
|
||||
'Media IDs range. e.g m1-15',
|
||||
'Note: Permalink setting must be set to "Plain" for those to be detected'],
|
||||
value_if_empty: '1-100')
|
||||
},
|
||||
value_if_empty: 'vp,vt,tt,cb,dbe,u,m',
|
||||
incompatible: [%i[vp ap p], %i[vt at t]],
|
||||
@@ -45,7 +48,7 @@ module WPScan
|
||||
# @return [ Array<OptParseValidator::OptBase> ]
|
||||
def cli_plugins_opts
|
||||
[
|
||||
OptSmartList.new(['--plugins-list LIST', 'List of plugins to enumerate']),
|
||||
OptSmartList.new(['--plugins-list LIST', 'List of plugins to enumerate'], advanced: true),
|
||||
OptChoice.new(
|
||||
['--plugins-detection MODE',
|
||||
'Use the supplied mode to enumerate Plugins, instead of the global (--detection-mode) mode.'],
|
||||
@@ -54,7 +57,8 @@ module WPScan
|
||||
OptBoolean.new(
|
||||
['--plugins-version-all',
|
||||
'Check all the plugins version locations according to the choosen mode (--detection-mode, ' \
|
||||
'--plugins-detection and --plugins-version-detection)']
|
||||
'--plugins-detection and --plugins-version-detection)'],
|
||||
advanced: true
|
||||
),
|
||||
OptChoice.new(
|
||||
['--plugins-version-detection MODE',
|
||||
@@ -68,22 +72,23 @@ module WPScan
|
||||
# @return [ Array<OptParseValidator::OptBase> ]
|
||||
def cli_themes_opts
|
||||
[
|
||||
OptSmartList.new(['--themes-list LIST', 'List of themes to enumerate']),
|
||||
OptSmartList.new(['--themes-list LIST', 'List of themes to enumerate'], advanced: true),
|
||||
OptChoice.new(
|
||||
['--themes-detection MODE',
|
||||
'Use the supplied mode to enumerate Themes, instead of the global (--detection-mode) mode.'],
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym, advanced: true
|
||||
),
|
||||
OptBoolean.new(
|
||||
['--themes-version-all',
|
||||
'Check all the themes version locations according to the choosen mode (--detection-mode, ' \
|
||||
'--themes-detection and --themes-version-detection)']
|
||||
'--themes-detection and --themes-version-detection)'],
|
||||
advanced: true
|
||||
),
|
||||
OptChoice.new(
|
||||
['--themes-version-detection MODE',
|
||||
'Use the supplied mode to check themes versions instead of the --detection-mode ' \
|
||||
'or --themes-detection modes.'],
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym, advanced: true
|
||||
)
|
||||
]
|
||||
end
|
||||
@@ -93,12 +98,12 @@ module WPScan
|
||||
[
|
||||
OptFilePath.new(
|
||||
['--timthumbs-list FILE-PATH', 'List of timthumbs\' location to use'],
|
||||
exists: true, default: File.join(DB_DIR, 'timthumbs-v3.txt')
|
||||
exists: true, default: File.join(DB_DIR, 'timthumbs-v3.txt'), advanced: true
|
||||
),
|
||||
OptChoice.new(
|
||||
['--timthumbs-detection MODE',
|
||||
'Use the supplied mode to enumerate Timthumbs, instead of the global (--detection-mode) mode.'],
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym, advanced: true
|
||||
)
|
||||
]
|
||||
end
|
||||
@@ -108,12 +113,12 @@ module WPScan
|
||||
[
|
||||
OptFilePath.new(
|
||||
['--config-backups-list FILE-PATH', 'List of config backups\' filenames to use'],
|
||||
exists: true, default: File.join(DB_DIR, 'config_backups.txt')
|
||||
exists: true, default: File.join(DB_DIR, 'config_backups.txt'), advanced: true
|
||||
),
|
||||
OptChoice.new(
|
||||
['--config-backups-detection MODE',
|
||||
'Use the supplied mode to enumerate Config Backups, instead of the global (--detection-mode) mode.'],
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym, advanced: true
|
||||
)
|
||||
]
|
||||
end
|
||||
@@ -123,12 +128,12 @@ module WPScan
|
||||
[
|
||||
OptFilePath.new(
|
||||
['--db-exports-list FILE-PATH', 'List of DB exports\' paths to use'],
|
||||
exists: true, default: File.join(DB_DIR, 'db_exports.txt')
|
||||
exists: true, default: File.join(DB_DIR, 'db_exports.txt'), advanced: true
|
||||
),
|
||||
OptChoice.new(
|
||||
['--db-exports-detection MODE',
|
||||
'Use the supplied mode to enumerate DB Exports, instead of the global (--detection-mode) mode.'],
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym, advanced: true
|
||||
)
|
||||
]
|
||||
end
|
||||
@@ -139,7 +144,7 @@ module WPScan
|
||||
OptChoice.new(
|
||||
['--medias-detection MODE',
|
||||
'Use the supplied mode to enumerate Medias, instead of the global (--detection-mode) mode.'],
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym, advanced: true
|
||||
)
|
||||
]
|
||||
end
|
||||
@@ -149,12 +154,13 @@ module WPScan
|
||||
[
|
||||
OptSmartList.new(
|
||||
['--users-list LIST',
|
||||
'List of users to check during the users enumeration from the Login Error Messages']
|
||||
'List of users to check during the users enumeration from the Login Error Messages'],
|
||||
advanced: true
|
||||
),
|
||||
OptChoice.new(
|
||||
['--users-detection MODE',
|
||||
'Use the supplied mode to enumerate Users, instead of the global (--detection-mode) mode.'],
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym, advanced: true
|
||||
)
|
||||
]
|
||||
end
|
||||
|
||||
@@ -146,7 +146,10 @@ module WPScan
|
||||
def enum_medias
|
||||
opts = default_opts('medias').merge(range: parsed_options[:enumerate][:medias])
|
||||
|
||||
output('@info', msg: 'Enumerating Medias') if user_interaction?
|
||||
if user_interaction?
|
||||
output('@info', msg: 'Enumerating Medias (Permalink setting must be set to "Plain" for those to be detected)')
|
||||
end
|
||||
|
||||
output('medias', medias: target.medias(opts))
|
||||
end
|
||||
|
||||
|
||||
@@ -7,8 +7,7 @@ module WPScan
|
||||
OptChoice.new(
|
||||
['--main-theme-detection MODE',
|
||||
'Use the supplied mode for the Main theme detection, instead of the global (--detection-mode) mode.'],
|
||||
choices: %w[mixed passive aggressive],
|
||||
normalize: :to_sym
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym, advanced: true
|
||||
)
|
||||
]
|
||||
end
|
||||
|
||||
@@ -4,13 +4,12 @@ module WPScan
|
||||
class WpVersion < CMSScanner::Controller::Base
|
||||
def cli_options
|
||||
[
|
||||
OptBoolean.new(['--wp-version-all', 'Check all the version locations']),
|
||||
OptBoolean.new(['--wp-version-all', 'Check all the version locations'], advanced: true),
|
||||
OptChoice.new(
|
||||
['--wp-version-detection MODE',
|
||||
'Use the supplied mode for the WordPress version detection, ' \
|
||||
'instead of the global (--detection-mode) mode.'],
|
||||
choices: %w[mixed passive aggressive],
|
||||
normalize: :to_sym
|
||||
choices: %w[mixed passive aggressive], normalize: :to_sym, advanced: true
|
||||
)
|
||||
]
|
||||
end
|
||||
|
||||
@@ -11,7 +11,7 @@ module WPScan
|
||||
|
||||
return unless [200, 403].include?(res.code) && !target.homepage_or_404?(res)
|
||||
|
||||
WPScan::InterestingFinding.new(
|
||||
WPScan::BackupDB.new(
|
||||
url,
|
||||
confidence: 70,
|
||||
found_by: DIRECT_ACCESS,
|
||||
|
||||
@@ -9,7 +9,7 @@ module WPScan
|
||||
|
||||
return unless target.debug_log?(path)
|
||||
|
||||
WPScan::InterestingFinding.new(
|
||||
WPScan::DebugLog.new(
|
||||
target.url(path),
|
||||
confidence: 100, found_by: DIRECT_ACCESS
|
||||
)
|
||||
|
||||
@@ -10,7 +10,7 @@ module WPScan
|
||||
|
||||
return unless res.body =~ /DUPLICATOR INSTALL-LOG/
|
||||
|
||||
WPScan::InterestingFinding.new(
|
||||
WPScan::DuplicatorInstallerLog.new(
|
||||
url,
|
||||
confidence: 100,
|
||||
found_by: DIRECT_ACCESS,
|
||||
|
||||
@@ -10,7 +10,7 @@ module WPScan
|
||||
|
||||
return unless res.code == 200 && !target.homepage_or_404?(res)
|
||||
|
||||
WPScan::InterestingFinding.new(
|
||||
WPScan::EmergencyPwdResetScript.new(
|
||||
url,
|
||||
confidence: res.body =~ /password/i ? 100 : 40,
|
||||
found_by: DIRECT_ACCESS,
|
||||
|
||||
@@ -10,7 +10,7 @@ module WPScan
|
||||
|
||||
return if fpd_entries.empty?
|
||||
|
||||
WPScan::InterestingFinding.new(
|
||||
WPScan::FullPathDisclosure.new(
|
||||
target.url(path),
|
||||
confidence: 100,
|
||||
found_by: DIRECT_ACCESS,
|
||||
|
||||
@@ -12,7 +12,7 @@ module WPScan
|
||||
|
||||
url = target.url('wp-content/mu-plugins/')
|
||||
|
||||
return WPScan::InterestingFinding.new(
|
||||
return WPScan::MuPlugins.new(
|
||||
url,
|
||||
confidence: 70,
|
||||
found_by: 'URLs In Homepage (Passive Detection)',
|
||||
@@ -35,7 +35,7 @@ module WPScan
|
||||
|
||||
target.mu_plugins = true
|
||||
|
||||
WPScan::InterestingFinding.new(
|
||||
WPScan::MuPlugins.new(
|
||||
url,
|
||||
confidence: 80,
|
||||
found_by: DIRECT_ACCESS,
|
||||
|
||||
@@ -15,7 +15,7 @@ module WPScan
|
||||
|
||||
target.multisite = true
|
||||
|
||||
WPScan::InterestingFinding.new(
|
||||
WPScan::Multisite.new(
|
||||
url,
|
||||
confidence: 100,
|
||||
found_by: DIRECT_ACCESS,
|
||||
|
||||
@@ -10,7 +10,7 @@ module WPScan
|
||||
res = Browser.get(url)
|
||||
|
||||
if res.code == 200 && res.body =~ /wordpress/i
|
||||
return WPScan::InterestingFinding.new(url, confidence: 100, found_by: DIRECT_ACCESS)
|
||||
return WPScan::Readme.new(url, confidence: 100, found_by: DIRECT_ACCESS)
|
||||
end
|
||||
end
|
||||
nil
|
||||
|
||||
@@ -18,7 +18,7 @@ module WPScan
|
||||
|
||||
target.registration_enabled = true
|
||||
|
||||
WPScan::InterestingFinding.new(
|
||||
WPScan::Registration.new(
|
||||
res.effective_url,
|
||||
confidence: 100,
|
||||
found_by: DIRECT_ACCESS,
|
||||
|
||||
@@ -11,7 +11,7 @@ module WPScan
|
||||
|
||||
return unless res.code == 200 && res.headers['Content-Type'] =~ %r{\Aapplication/zip}i
|
||||
|
||||
WPScan::InterestingFinding.new(
|
||||
WPScan::TmmDbMigrate.new(
|
||||
url,
|
||||
confidence: 100,
|
||||
found_by: DIRECT_ACCESS,
|
||||
|
||||
@@ -11,7 +11,7 @@ module WPScan
|
||||
|
||||
url = target.url(path)
|
||||
|
||||
WPScan::InterestingFinding.new(
|
||||
WPScan::UploadDirectoryListing.new(
|
||||
url,
|
||||
confidence: 100,
|
||||
found_by: DIRECT_ACCESS,
|
||||
|
||||
@@ -3,7 +3,7 @@ module WPScan
|
||||
module InterestingFindings
|
||||
# UploadSQLDump finder
|
||||
class UploadSQLDump < CMSScanner::Finders::Finder
|
||||
SQL_PATTERN = /(?:(?:(?:DROP|CREATE) TABLE)|INSERT INTO)/
|
||||
SQL_PATTERN = /(?:(?:(?:DROP|CREATE) TABLE)|INSERT INTO)/.freeze
|
||||
|
||||
# @return [ InterestingFinding ]
|
||||
def aggressive(_opts = {})
|
||||
@@ -12,7 +12,7 @@ module WPScan
|
||||
|
||||
return unless res.code == 200 && res.body =~ SQL_PATTERN
|
||||
|
||||
WPScan::InterestingFinding.new(
|
||||
WPScan::UploadSQLDump.new(
|
||||
url,
|
||||
confidence: 100,
|
||||
found_by: DIRECT_ACCESS
|
||||
|
||||
@@ -3,9 +3,9 @@ module WPScan
|
||||
module MainTheme
|
||||
# From the WooFramework meta generators
|
||||
class WooFrameworkMetaGenerator < CMSScanner::Finders::Finder
|
||||
THEME_PATTERN = %r{<meta name="generator" content="([^\s"]+)\s?([^"]+)?"\s+/?>}
|
||||
FRAMEWORK_PATTERN = %r{<meta name="generator" content="WooFramework\s?([^"]+)?"\s+/?>}
|
||||
PATTERN = /#{THEME_PATTERN}\s+#{FRAMEWORK_PATTERN}/i
|
||||
THEME_PATTERN = %r{<meta name="generator" content="([^\s"]+)\s?([^"]+)?"\s+/?>}.freeze
|
||||
FRAMEWORK_PATTERN = %r{<meta name="generator" content="WooFramework\s?([^"]+)?"\s+/?>}.freeze
|
||||
PATTERN = /#{THEME_PATTERN}\s+#{FRAMEWORK_PATTERN}/i.freeze
|
||||
|
||||
def passive(opts = {})
|
||||
return unless target.homepage_res.body =~ PATTERN
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
module WPScan
|
||||
module Finders
|
||||
module Medias
|
||||
# Medias Finder
|
||||
# Medias Finder, see https://github.com/wpscanteam/wpscan/issues/172
|
||||
class AttachmentBruteForcing < CMSScanner::Finders::Finder
|
||||
include CMSScanner::Finders::Finder::Enumerator
|
||||
|
||||
|
||||
@@ -4,6 +4,7 @@ require_relative 'users/oembed_api'
|
||||
require_relative 'users/rss_generator'
|
||||
require_relative 'users/author_id_brute_forcing'
|
||||
require_relative 'users/login_error_messages'
|
||||
require_relative 'users/yoast_seo_author_sitemap.rb'
|
||||
|
||||
module WPScan
|
||||
module Finders
|
||||
@@ -19,6 +20,7 @@ module WPScan
|
||||
Users::WpJsonApi.new(target) <<
|
||||
Users::OembedApi.new(target) <<
|
||||
Users::RSSGenerator.new(target) <<
|
||||
Users::YoastSeoAuthorSitemap.new(target) <<
|
||||
Users::AuthorIdBruteForcing.new(target) <<
|
||||
Users::LoginErrorMessages.new(target)
|
||||
end
|
||||
|
||||
@@ -14,29 +14,35 @@ module WPScan
|
||||
|
||||
# @param [ Hash ] opts
|
||||
#
|
||||
# TODO: make this code pretty :x
|
||||
#
|
||||
# @return [ Array<User> ]
|
||||
def aggressive(_opts = {})
|
||||
found = []
|
||||
found_by_msg = 'Oembed API - %s (Aggressive Detection)'
|
||||
|
||||
oembed_data = JSON.parse(Browser.get(api_url).body)
|
||||
details = user_details_from_oembed_data(oembed_data)
|
||||
|
||||
return [] unless details
|
||||
|
||||
[CMSScanner::User.new(details[0],
|
||||
found_by: format(found_by_msg, details[1]),
|
||||
confidence: details[2],
|
||||
interesting_entries: [api_url])]
|
||||
rescue JSON::ParserError
|
||||
[]
|
||||
end
|
||||
|
||||
def user_details_from_oembed_data(oembed_data)
|
||||
return unless oembed_data
|
||||
|
||||
if oembed_data['author_url'] =~ %r{/author/([^/]+)/?\z}
|
||||
details = [Regexp.last_match[1], 'Author URL', 90]
|
||||
elsif oembed_data['author_name'] && !oembed_data['author_name'].empty?
|
||||
details = [oembed_data['author_name'].delete(' '), 'Author Name', 70]
|
||||
details = [oembed_data['author_name'], 'Author Name', 70]
|
||||
end
|
||||
|
||||
return unless details
|
||||
details
|
||||
end
|
||||
|
||||
found << CMSScanner::User.new(details[0],
|
||||
found_by: format(found_by_msg, details[1]),
|
||||
confidence: details[2],
|
||||
interesting_entries: [api_url])
|
||||
rescue JSON::ParserError
|
||||
found
|
||||
def found_by_msg
|
||||
'Oembed API - %s (Aggressive Detection)'
|
||||
end
|
||||
|
||||
# @return [ String ] The URL of the API listing the Users
|
||||
|
||||
@@ -17,7 +17,13 @@ module WPScan
|
||||
|
||||
begin
|
||||
res.xml.xpath('//item/dc:creator').each do |node|
|
||||
potential_usernames << node.text.to_s unless node.text.to_s.length > 40
|
||||
potential_username = node.text.to_s
|
||||
|
||||
# Ignoring potential username longer than 60 characters and containing accents
|
||||
# as they are considered invalid. See https://github.com/wpscanteam/wpscan/issues/1215
|
||||
next if potential_username.length > 60 || potential_username =~ /[^\x00-\x7F]/
|
||||
|
||||
potential_usernames << potential_username
|
||||
end
|
||||
rescue Nokogiri::XML::XPath::SyntaxError
|
||||
next
|
||||
|
||||
34
app/finders/users/yoast_seo_author_sitemap.rb
Normal file
34
app/finders/users/yoast_seo_author_sitemap.rb
Normal file
@@ -0,0 +1,34 @@
|
||||
module WPScan
|
||||
module Finders
|
||||
module Users
|
||||
# The YOAST SEO plugin has an author-sitemap.xml which can leak usernames
|
||||
# See https://github.com/wpscanteam/wpscan/issues/1228
|
||||
class YoastSeoAuthorSitemap < CMSScanner::Finders::Finder
|
||||
# @param [ Hash ] opts
|
||||
#
|
||||
# @return [ Array<User> ]
|
||||
def aggressive(_opts = {})
|
||||
found = []
|
||||
|
||||
Browser.get(sitemap_url).html.xpath('//url/loc').each do |user_tag|
|
||||
username = user_tag.text.to_s[%r{/author/([^\/]+)/}, 1]
|
||||
|
||||
next unless username && !username.strip.empty?
|
||||
|
||||
found << CMSScanner::User.new(username,
|
||||
found_by: found_by,
|
||||
confidence: 100,
|
||||
interesting_entries: [sitemap_url])
|
||||
end
|
||||
|
||||
found
|
||||
end
|
||||
|
||||
# @return [ String ] The URL of the author-sitemap
|
||||
def sitemap_url
|
||||
@sitemap_url ||= target.url('author-sitemap.xml')
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -3,4 +3,43 @@ module WPScan
|
||||
class InterestingFinding < CMSScanner::InterestingFinding
|
||||
include References
|
||||
end
|
||||
|
||||
#
|
||||
# Empty classes for the #type to be correctly displayed (as taken from the self.class from the parent)
|
||||
#
|
||||
class BackupDB < InterestingFinding
|
||||
end
|
||||
|
||||
class DebugLog < InterestingFinding
|
||||
end
|
||||
|
||||
class DuplicatorInstallerLog < InterestingFinding
|
||||
end
|
||||
|
||||
class EmergencyPwdResetScript < InterestingFinding
|
||||
end
|
||||
|
||||
class FullPathDisclosure < InterestingFinding
|
||||
end
|
||||
|
||||
class MuPlugins < InterestingFinding
|
||||
end
|
||||
|
||||
class Multisite < InterestingFinding
|
||||
end
|
||||
|
||||
class Readme < InterestingFinding
|
||||
end
|
||||
|
||||
class Registration < InterestingFinding
|
||||
end
|
||||
|
||||
class TmmDbMigrate < InterestingFinding
|
||||
end
|
||||
|
||||
class UploadDirectoryListing < InterestingFinding
|
||||
end
|
||||
|
||||
class UploadSQLDump < InterestingFinding
|
||||
end
|
||||
end
|
||||
|
||||
@@ -50,5 +50,15 @@ module WPScan
|
||||
|
||||
@vulnerabilities
|
||||
end
|
||||
|
||||
# @return [ String ]
|
||||
def release_date
|
||||
@release_date ||= db_data['release_date']
|
||||
end
|
||||
|
||||
# @return [ String ]
|
||||
def status
|
||||
@status ||= db_data['status']
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<% if @version -%>
|
||||
<%= info_icon %> WordPress version <%= @version.number %> identified.
|
||||
<%= info_icon %> WordPress version <%= @version.number %> identified (<%= @version.status.capitalize %>, released on <%= @version.release_date %>).
|
||||
<%= render('@finding', item: @version) -%>
|
||||
<% else -%>
|
||||
<%= notice_icon %> The WordPress version could not be detected.
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
<% if @version -%>
|
||||
"version": {
|
||||
"number": <%= @version.number.to_json %>,
|
||||
"release_date": <%= @version.release_date.to_json %>,
|
||||
"status": <%= @version.status.to_json %>,
|
||||
<%= render('@finding', item: @version) -%>
|
||||
},
|
||||
<% else -%>
|
||||
|
||||
@@ -9,6 +9,6 @@ done
|
||||
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
|
||||
|
||||
cd $DIR/../
|
||||
docker build -q -t wpscanv3:git .
|
||||
docker run -it --rm wpscanv3:git "$@"
|
||||
docker build -q -t wpscan:git .
|
||||
docker run -it --rm wpscan:git "$@"
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
|
||||
|
||||
cd $DIR/../
|
||||
if [[ -n "$WPSCAN_BUILD" ]]; then
|
||||
docker build -q -t wpscanv3:git .
|
||||
docker build -q -t wpscan:git .
|
||||
fi
|
||||
docker run -it --rm -v $DIR/../:/wpscan wpscanv3:git "$@"
|
||||
docker run -it --rm -v $DIR/../:/wpscan wpscan:git "$@"
|
||||
|
||||
|
||||
@@ -16,9 +16,7 @@ require 'securerandom'
|
||||
require 'wpscan/helper'
|
||||
require 'wpscan/db'
|
||||
require 'wpscan/version'
|
||||
require 'wpscan/errors/wordpress'
|
||||
require 'wpscan/errors/http'
|
||||
require 'wpscan/errors/update'
|
||||
require 'wpscan/errors'
|
||||
require 'wpscan/browser'
|
||||
require 'wpscan/target'
|
||||
require 'wpscan/finders'
|
||||
|
||||
@@ -60,12 +60,11 @@ module WPScan
|
||||
end
|
||||
|
||||
# @return [ Hash ] The params for Typhoeus::Request
|
||||
# @note Those params can't be overriden by CLI options
|
||||
def request_params
|
||||
{
|
||||
ssl_verifyhost: 2,
|
||||
ssl_verifypeer: true,
|
||||
timeout: 300,
|
||||
connecttimeout: 120,
|
||||
timeout: 600,
|
||||
connecttimeout: 300,
|
||||
accept_encoding: 'gzip, deflate',
|
||||
cache_ttl: 0
|
||||
}
|
||||
|
||||
8
lib/wpscan/errors.rb
Normal file
8
lib/wpscan/errors.rb
Normal file
@@ -0,0 +1,8 @@
|
||||
module WPScan
|
||||
class Error < StandardError
|
||||
end
|
||||
end
|
||||
|
||||
require_relative 'errors/http'
|
||||
require_relative 'errors/update'
|
||||
require_relative 'errors/wordpress'
|
||||
@@ -1,6 +1,6 @@
|
||||
module WPScan
|
||||
# HTTP Error
|
||||
class HTTPError < StandardError
|
||||
class HTTPError < Error
|
||||
attr_reader :response
|
||||
|
||||
# @param [ Typhoeus::Response ] res
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
module WPScan
|
||||
# Error raised when there is a missing DB file and --no-update supplied
|
||||
class MissingDatabaseFile < StandardError
|
||||
class MissingDatabaseFile < Error
|
||||
def to_s
|
||||
'Update required, you can not run a scan if a database file is missing.'
|
||||
end
|
||||
|
||||
@@ -1,20 +1,20 @@
|
||||
module WPScan
|
||||
# WordPress hosted (*.wordpress.com)
|
||||
class WordPressHostedError < StandardError
|
||||
class WordPressHostedError < Error
|
||||
def to_s
|
||||
'Scanning *.wordpress.com hosted blogs is not supported.'
|
||||
end
|
||||
end
|
||||
|
||||
# Not WordPress Error
|
||||
class NotWordPressError < StandardError
|
||||
class NotWordPressError < Error
|
||||
def to_s
|
||||
'The remote website is up, but does not seem to be running WordPress.'
|
||||
end
|
||||
end
|
||||
|
||||
# Invalid Wp Version (used in the WpVersion#new)
|
||||
class InvalidWordPressVersion < StandardError
|
||||
class InvalidWordPressVersion < Error
|
||||
def to_s
|
||||
'The WordPress version is invalid'
|
||||
end
|
||||
|
||||
@@ -9,7 +9,7 @@ module WPScan
|
||||
module WordPress
|
||||
include CMSScanner::Target::Platform::PHP
|
||||
|
||||
WORDPRESS_PATTERN = %r{/(?:(?:wp-content/(?:themes|(?:mu\-)?plugins|uploads))|wp-includes)/}i
|
||||
WORDPRESS_PATTERN = %r{/(?:(?:wp-content/(?:themes|(?:mu\-)?plugins|uploads))|wp-includes)/}i.freeze
|
||||
|
||||
# These methods are used in the associated interesting_findings finders
|
||||
# to keep the boolean state of the finding rather than re-check the whole thing again
|
||||
@@ -41,7 +41,7 @@ module WPScan
|
||||
end
|
||||
|
||||
def wordpress_hosted?
|
||||
uri.host =~ /wordpress.com$/i ? true : false
|
||||
uri.host =~ /\.wordpress\.com$/i ? true : false
|
||||
end
|
||||
|
||||
# @param [ String ] username
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Version
|
||||
module WPScan
|
||||
VERSION = '3.3.0'.freeze
|
||||
VERSION = '3.4.0'.freeze
|
||||
end
|
||||
|
||||
@@ -22,7 +22,7 @@ describe WPScan::Controller::Core do
|
||||
|
||||
# Ensures the :url is the first one and is correctly setup
|
||||
expect(cli_options.first.to_sym).to eql :url
|
||||
expect(cli_options.first.required_unless).to match_array %i[update help version]
|
||||
expect(cli_options.first.required_unless).to match_array %i[update help hh version]
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
@@ -37,7 +37,7 @@ describe WPScan::Finders::InterestingFindings::BackupDB do
|
||||
after do
|
||||
found = finder.aggressive
|
||||
|
||||
expect(found).to eql WPScan::InterestingFinding.new(
|
||||
expect(found).to eql WPScan::BackupDB.new(
|
||||
dir_url,
|
||||
confidence: 70,
|
||||
found_by: described_class::DIRECT_ACCESS
|
||||
|
||||
@@ -23,7 +23,7 @@ describe WPScan::Finders::InterestingFindings::DebugLog do
|
||||
let(:body) { File.read(File.join(fixtures, 'debug.log')) }
|
||||
|
||||
it 'returns the InterestingFinding' do
|
||||
expect(finder.aggressive).to eql WPScan::InterestingFinding.new(
|
||||
expect(finder.aggressive).to eql WPScan::DebugLog.new(
|
||||
log_url,
|
||||
confidence: 100,
|
||||
found_by: described_class::DIRECT_ACCESS
|
||||
|
||||
@@ -24,7 +24,7 @@ describe WPScan::Finders::InterestingFindings::DuplicatorInstallerLog do
|
||||
let(:body) { File.read(File.join(fixtures, filename)) }
|
||||
|
||||
it 'returns the InterestingFinding' do
|
||||
expect(finder.aggressive).to eql WPScan::InterestingFinding.new(
|
||||
expect(finder.aggressive).to eql WPScan::DuplicatorInstallerLog.new(
|
||||
log_url,
|
||||
confidence: 100,
|
||||
found_by: described_class::DIRECT_ACCESS
|
||||
|
||||
@@ -25,7 +25,7 @@ describe WPScan::Finders::InterestingFindings::FullPathDisclosure do
|
||||
it 'returns the InterestingFinding' do
|
||||
found = finder.aggressive
|
||||
|
||||
expect(found).to eql WPScan::InterestingFinding.new(
|
||||
expect(found).to eql WPScan::FullPathDisclosure.new(
|
||||
file_url,
|
||||
confidence: 100,
|
||||
found_by: described_class::DIRECT_ACCESS
|
||||
|
||||
@@ -27,7 +27,7 @@ describe WPScan::Finders::InterestingFindings::Readme do
|
||||
before { stub_request(:get, target.url(file)).to_return(body: readme) }
|
||||
|
||||
it 'returns the expected InterestingFinding' do
|
||||
expected = WPScan::InterestingFinding.new(
|
||||
expected = WPScan::Readme.new(
|
||||
target.url(file),
|
||||
confidence: 100,
|
||||
found_by: described_class::DIRECT_ACCESS
|
||||
|
||||
@@ -38,7 +38,7 @@ describe WPScan::Finders::InterestingFindings::UploadSQLDump do
|
||||
let(:fixture) { 'dump.sql' }
|
||||
|
||||
it 'returns the interesting findings' do
|
||||
@expected = WPScan::InterestingFinding.new(
|
||||
@expected = WPScan::UploadSQLDump.new(
|
||||
finder.dump_url,
|
||||
confidence: 100,
|
||||
found_by: described_class::DIRECT_ACCESS
|
||||
|
||||
@@ -7,6 +7,59 @@ describe WPScan::Finders::Users::OembedApi do
|
||||
let(:fixtures) { File.join(FINDERS_FIXTURES, 'users', 'oembed_api') }
|
||||
|
||||
describe '#aggressive' do
|
||||
xit
|
||||
before do
|
||||
allow(target).to receive(:sub_dir).and_return(false)
|
||||
stub_request(:get, finder.api_url).to_return(body: body)
|
||||
end
|
||||
|
||||
context 'when not a JSON response' do
|
||||
let(:body) { '' }
|
||||
|
||||
its(:aggressive) { should eql([]) }
|
||||
end
|
||||
|
||||
context 'when a JSON response' do
|
||||
context 'when 404' do
|
||||
let(:body) { File.read(File.join(fixtures, '404.json')) }
|
||||
|
||||
its(:aggressive) { should eql([]) }
|
||||
end
|
||||
|
||||
context 'when 200' do
|
||||
context 'when author_url present' do
|
||||
let(:body) { File.read(File.join(fixtures, '200_author_url.json')) }
|
||||
|
||||
it 'returns the expected array of users' do
|
||||
users = finder.aggressive
|
||||
|
||||
expect(users.size).to eql 1
|
||||
|
||||
user = users.first
|
||||
|
||||
expect(user.username).to eql 'admin'
|
||||
expect(user.confidence).to eql 90
|
||||
expect(user.found_by).to eql 'Oembed API - Author URL (Aggressive Detection)'
|
||||
expect(user.interesting_entries).to eql ['http://wp.lab/wp-json/oembed/1.0/embed?url=http://wp.lab/&format=json']
|
||||
end
|
||||
end
|
||||
|
||||
context 'when author_url not present but author_name' do
|
||||
let(:body) { File.read(File.join(fixtures, '200_author_name.json')) }
|
||||
|
||||
it 'returns the expected array of users' do
|
||||
users = finder.aggressive
|
||||
|
||||
expect(users.size).to eql 1
|
||||
|
||||
user = users.first
|
||||
|
||||
expect(user.username).to eql 'admin sa'
|
||||
expect(user.confidence).to eql 70
|
||||
expect(user.found_by).to eql 'Oembed API - Author Name (Aggressive Detection)'
|
||||
expect(user.interesting_entries).to eql ['http://wp.lab/wp-json/oembed/1.0/embed?url=http://wp.lab/&format=json']
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -32,7 +32,7 @@ describe WPScan::Finders::Users::RSSGenerator do
|
||||
found_by: 'Rss Generator (Aggressive Detection)'
|
||||
),
|
||||
CMSScanner::User.new(
|
||||
'Aa Días-Gildés',
|
||||
'Aa Dias-Gildes',
|
||||
confidence: 50,
|
||||
found_by: 'Rss Generator (Aggressive Detection)'
|
||||
)
|
||||
@@ -53,7 +53,7 @@ describe WPScan::Finders::Users::RSSGenerator do
|
||||
found_by: 'Rss Generator (Passive Detection)'
|
||||
),
|
||||
CMSScanner::User.new(
|
||||
'Aa Días-Gildés',
|
||||
'Aa Dias-Gildes',
|
||||
confidence: 50,
|
||||
found_by: 'Rss Generator (Passive Detection)'
|
||||
)
|
||||
@@ -71,7 +71,7 @@ describe WPScan::Finders::Users::RSSGenerator do
|
||||
found_by: 'Rss Generator (Aggressive Detection)'
|
||||
),
|
||||
CMSScanner::User.new(
|
||||
'Aa Días-Gildés',
|
||||
'Aa Dias-Gildes',
|
||||
confidence: 50,
|
||||
found_by: 'Rss Generator (Aggressive Detection)'
|
||||
)
|
||||
@@ -90,7 +90,7 @@ describe WPScan::Finders::Users::RSSGenerator do
|
||||
found_by: 'Rss Generator (Aggressive Detection)'
|
||||
),
|
||||
CMSScanner::User.new(
|
||||
'Aa Días-Gildés',
|
||||
'Aa Dias-Gildes',
|
||||
confidence: 50,
|
||||
found_by: 'Rss Generator (Aggressive Detection)'
|
||||
)
|
||||
|
||||
@@ -8,7 +8,6 @@ describe WPScan::Finders::Users::WpJsonApi do
|
||||
|
||||
describe '#aggressive' do
|
||||
before do
|
||||
# allow(target).to receive(:content_dir).and_return('wp-content')
|
||||
allow(target).to receive(:sub_dir).and_return(false)
|
||||
stub_request(:get, finder.api_url).to_return(body: body)
|
||||
end
|
||||
|
||||
48
spec/app/finders/users/yoast_seo_author_sitemap_spec.rb
Normal file
48
spec/app/finders/users/yoast_seo_author_sitemap_spec.rb
Normal file
@@ -0,0 +1,48 @@
|
||||
require 'spec_helper'
|
||||
|
||||
describe WPScan::Finders::Users::YoastSeoAuthorSitemap do
|
||||
subject(:finder) { described_class.new(target) }
|
||||
let(:target) { WPScan::Target.new(url) }
|
||||
let(:url) { 'http://wp.lab/' }
|
||||
let(:fixtures) { FINDERS_FIXTURES.join('users', 'yoast_seo_author_sitemap') }
|
||||
|
||||
describe '#aggressive' do
|
||||
before do
|
||||
allow(target).to receive(:sub_dir).and_return(false)
|
||||
|
||||
stub_request(:get, finder.sitemap_url).to_return(body: body)
|
||||
end
|
||||
|
||||
context 'when not an XML response' do
|
||||
let(:body) { '' }
|
||||
|
||||
its(:aggressive) { should eql([]) }
|
||||
end
|
||||
|
||||
context 'when an XML response' do
|
||||
context 'when no usernames disclosed' do
|
||||
let(:body) { File.read(fixtures.join('no_usernames.xml')) }
|
||||
|
||||
its(:aggressive) { should eql([]) }
|
||||
end
|
||||
|
||||
context 'when usernames disclosed' do
|
||||
let(:body) { File.read(fixtures.join('usernames.xml')) }
|
||||
|
||||
it 'returns the expected array of users' do
|
||||
users = finder.aggressive
|
||||
|
||||
expect(users.size).to eql 2
|
||||
|
||||
expect(users.first.username).to eql 'editor'
|
||||
expect(users.first.confidence).to eql 100
|
||||
expect(users.first.interesting_entries).to eql ['http://wp.lab/author-sitemap.xml']
|
||||
|
||||
expect(users.last.username).to eql 'admin'
|
||||
expect(users.last.confidence).to eql 100
|
||||
expect(users.last.interesting_entries).to eql ['http://wp.lab/author-sitemap.xml']
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
@@ -8,7 +8,8 @@ describe WPScan::Finders::Users::Base do
|
||||
describe '#finders' do
|
||||
it 'contains the expected finders' do
|
||||
expect(user.finders.map { |f| f.class.to_s.demodulize })
|
||||
.to eq %w[AuthorPosts WpJsonApi OembedApi RSSGenerator AuthorIdBruteForcing LoginErrorMessages]
|
||||
.to eq %w[AuthorPosts WpJsonApi OembedApi RSSGenerator YoastSeoAuthorSitemap
|
||||
AuthorIdBruteForcing LoginErrorMessages]
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -86,4 +86,16 @@ describe WPScan::WpVersion do
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe '#release_date' do
|
||||
subject(:version) { described_class.new('3.8.1') }
|
||||
|
||||
its(:release_date) { should eql '2014-01-23' }
|
||||
end
|
||||
|
||||
describe '#status' do
|
||||
subject(:version) { described_class.new('3.8.1') }
|
||||
|
||||
its(:status) { should eql 'outdated' }
|
||||
end
|
||||
end
|
||||
|
||||
691
spec/fixtures/db/dynamic_finders.yml
vendored
691
spec/fixtures/db/dynamic_finders.yml
vendored
File diff suppressed because it is too large
Load Diff
8
spec/fixtures/db/wordpresses.json
vendored
8
spec/fixtures/db/wordpresses.json
vendored
@@ -1,5 +1,11 @@
|
||||
{
|
||||
"4.0": {
|
||||
"release_date" : "2014-09-04",
|
||||
"status": "latest"
|
||||
},
|
||||
"3.8.1": {
|
||||
"release_date" : "2014-01-23",
|
||||
"status": "outdated",
|
||||
"vulnerabilities" : [
|
||||
{
|
||||
"created_at" : "2014-08-01T10:58:19.000Z",
|
||||
@@ -25,6 +31,8 @@
|
||||
]
|
||||
},
|
||||
"3.8": {
|
||||
"release_date" : "2013-12-12",
|
||||
"status": "insecure",
|
||||
"vulnerabilities" : [
|
||||
{
|
||||
"references": {
|
||||
|
||||
872
spec/fixtures/dynamic_finders/expected.yml
vendored
872
spec/fixtures/dynamic_finders/expected.yml
vendored
File diff suppressed because it is too large
Load Diff
92
spec/fixtures/dynamic_finders/plugin_version/animation-block/composer_file/package.json
vendored
Normal file
92
spec/fixtures/dynamic_finders/plugin_version/animation-block/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,92 @@
|
||||
{
|
||||
"name": "animation-block",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "node scripts/start.js",
|
||||
"build": "node scripts/build.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"animate.css": "^3.7.0",
|
||||
"autoprefixer": "^7.2.4",
|
||||
"babel-core": "^6.25.0",
|
||||
"babel-eslint": "^8.2.1",
|
||||
"babel-loader": "^7.1.1",
|
||||
"babel-preset-cgb": "^1.5.0",
|
||||
"cgb-dev-utils": "^1.4.0",
|
||||
"chalk": "^2.3.0",
|
||||
"classnames": "^2.2.6",
|
||||
"cross-env": "^5.0.1",
|
||||
"cross-spawn": "^5.1.0",
|
||||
"css-loader": "^1.0.0",
|
||||
"emergence.js": "^1.1.2",
|
||||
"eslint": "^4.15.0",
|
||||
"eslint-config-wordpress": "^2.0.0",
|
||||
"eslint-plugin-jest": "^21.6.1",
|
||||
"eslint-plugin-jsx-a11y": "^6.0.3",
|
||||
"eslint-plugin-react": "^7.5.1",
|
||||
"eslint-plugin-wordpress": "^0.1.0",
|
||||
"extract-text-webpack-plugin": "^3.0.2",
|
||||
"file-loader": "^2.0.0",
|
||||
"filesize": "^3.5.11",
|
||||
"fs-extra": "^5.0.0",
|
||||
"gzip-size": "^4.1.0",
|
||||
"inquirer": "^5.0.0",
|
||||
"node-sass": "^4.7.2",
|
||||
"ora": "^1.3.0",
|
||||
"postcss-loader": "^2.0.10",
|
||||
"raw-loader": "^0.5.1",
|
||||
"resolve-pkg": "^1.0.0",
|
||||
"sass-loader": "^6.0.6",
|
||||
"shelljs": "^0.8.0",
|
||||
"style-loader": "^0.19.1",
|
||||
"update-notifier": "^2.3.0",
|
||||
"webpack": "^3.1.0"
|
||||
},
|
||||
"babel": {
|
||||
"presets": [
|
||||
[
|
||||
"env",
|
||||
{
|
||||
"modules": false,
|
||||
"targets": {
|
||||
"browsers": [
|
||||
"last 2 Chrome versions",
|
||||
"last 2 Firefox versions",
|
||||
"last 2 Safari versions",
|
||||
"last 2 iOS versions",
|
||||
"last 1 Android version",
|
||||
"last 1 ChromeAndroid version",
|
||||
"ie 11"
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"plugins": [
|
||||
[
|
||||
"transform-object-rest-spread"
|
||||
],
|
||||
[
|
||||
"transform-object-rest-spread",
|
||||
{
|
||||
"useBuiltIns": true
|
||||
}
|
||||
],
|
||||
[
|
||||
"transform-react-jsx",
|
||||
{
|
||||
"pragma": "wp.element.createElement"
|
||||
}
|
||||
],
|
||||
[
|
||||
"transform-runtime",
|
||||
{
|
||||
"helpers": false,
|
||||
"polyfill": false,
|
||||
"regenerator": true
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,84 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: APx Link Status 1.0.0\n"
|
||||
"POT-Creation-Date: 2018-10-10 19:05+0600\n"
|
||||
"PO-Revision-Date: 2018-10-10 19:05+0600\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: AlignPixel <contact@alignpixel.com>\n"
|
||||
"Language: en\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.6.11\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-KeywordsList: __;esc_attr__;esc_html__;_e;esc_attr_e;esc_html_e;_x;"
|
||||
"esc_attr_x;esc_html_x\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: admin/class-apx-link-status-admin.php:206
|
||||
msgid "APX Link Status Info"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-apx-link-status-admin.php:218
|
||||
msgid "All Links"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-apx-link-status-admin.php:219
|
||||
msgid "Internal Links"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-apx-link-status-admin.php:220
|
||||
msgid "External Links"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-apx-link-status-admin.php:244
|
||||
msgid "APX Link Status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-apx-link-status-admin.php:253
|
||||
msgid "Main Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-apx-link-status-admin.php:254
|
||||
msgid "Select Post Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-apx-link-status-admin.php:255
|
||||
msgid "Add Image link"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-apx-link-status-admin.php:259
|
||||
msgid ""
|
||||
"Select post type where you want to show the APX Link Status. By default, all "
|
||||
"media link are excluded, if you want to show the media link please select "
|
||||
"media type."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/meta-display.php:19
|
||||
msgid "Total Links:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/meta-display.php:20
|
||||
msgid "Internal Links:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/meta-display.php:21
|
||||
msgid "External Links:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/meta-display.php:28
|
||||
msgid "Link Type"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/meta-display.php:29
|
||||
msgid "Anchor Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/meta-display.php:30
|
||||
msgid "Link"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/options-main-wrap.php:2
|
||||
msgid "APX Link Status Options"
|
||||
msgstr ""
|
||||
248
spec/fixtures/dynamic_finders/plugin_version/backstage/translation_file/languages/backstage.pot
vendored
Normal file
248
spec/fixtures/dynamic_finders/plugin_version/backstage/translation_file/languages/backstage.pot
vendored
Normal file
@@ -0,0 +1,248 @@
|
||||
# Copyright (C) 2018 Backstage
|
||||
# This file is distributed under the same license as the Backstage package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Backstage 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/backstage\n"
|
||||
"POT-Creation-Date: 2018-09-27 10:57:34+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: extras.php:227
|
||||
msgid "Please provide only paths in the plugin for autoloading."
|
||||
msgstr ""
|
||||
|
||||
#: extras.php:232
|
||||
msgid "We support only require, require_once, include, and include_once."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Backstage.php:138
|
||||
msgid "Customizer Preview"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Backstage.php:158
|
||||
msgid "Something is wrong! We couldn't find the user role needed for Backstage. Try to deactivate and activate the plugin again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Backstage.php:214
|
||||
msgid "Something is very wrong! We couldn't create the user needed for Backstage."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Backstage.php:225
|
||||
msgid "Something is very wrong! We couldn't find the user needed for Backstage. Try to deactivate and activate the plugin again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Backstage.php:492 includes/class-Settings.php:131
|
||||
msgid "Back to Demo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Backstage.php:495 includes/class-Settings.php:154
|
||||
msgid "<b>Demo Mode</b><p>You can't upload images and save settings.</p>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Backstage.php:631 includes/class-Settings.php:213
|
||||
msgid "Customize Styles"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:53
|
||||
msgid "Backstage Setup"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:99
|
||||
msgid "Backstage"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:120
|
||||
msgid "Customizer Behavior"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:127 includes/class-Settings.php:209
|
||||
msgid "Button Text"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:128
|
||||
msgid "Input the text of the button at the top of the Customizer sidebar (that replaces the Publish button). This button will bring the visitor back to the URL it entered the Customizer from."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:135
|
||||
msgid "Notice Style"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:136
|
||||
msgid "Set the style/type of the Customizer notice. If \"Custom\", you can target the notification with the \".notice-backstage-custom\" CSS selector."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:141
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:142
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:143
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:144
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:145
|
||||
msgid "Custom"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:150
|
||||
msgid "Notice HTML"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:151
|
||||
msgid "Set the text or HTML of the Customizer notice. Leave empty if you don't want to show a notification."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:166
|
||||
msgid "Dismissible Notice"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:167
|
||||
msgid "Decide if the notice should be dismissible by the user or not. It will only be dismissed for the current session."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:173
|
||||
msgid "Hide Customizing Info"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:174
|
||||
msgid "Check to hide the top Customizer sidebar info that starts with \"You are customizing...\"."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:184
|
||||
msgid "Frontend Behavior"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:191
|
||||
msgid "Output Mode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:192
|
||||
msgid "Here you can decide if you want us to output a button on the frontend with a link to the Customizer, or if you want to do that yourself."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:198
|
||||
msgid "Output a button for me"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:199
|
||||
msgid "Let me specify the button markup and CSS"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:200
|
||||
msgid "I will handle the button myself"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:210
|
||||
msgid "Set here the text for the frontend button."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:221
|
||||
msgid "Button Classes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:222
|
||||
msgid "Set here custom class(es) for the frontend button. If multiple, please separate them with a comma and a space."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:233
|
||||
msgid "Button Wrapper Classes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:234
|
||||
msgid "Set here custom class(es) for the frontend button wrapper. If multiple, please separate them with a comma and a space."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:250
|
||||
msgid "Custom HTML"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:251
|
||||
msgid "Add here the custom HTML you want to output on the frontend of your site. You must include the %s content tag so it can be replaced with the URL for Customizer access."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:273
|
||||
msgid "Custom CSS"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:274
|
||||
msgid "Add here the custom CSS you want to output on the frontend of your site. It's OK to leave it empty if you have the CSS elsewhere."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:331
|
||||
msgid "Custom Button Instructions"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:332
|
||||
msgid "Since you wish to have control and handle your own button, we will make it easy for you. You use the \"backstage_get_customizer_link()\" PHP function to get the link to the Customizer. Output it directly or send it to JS via a localized variable."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:346
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:353
|
||||
msgid "URL Auto-login Key"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-Settings.php:354
|
||||
msgid "Set the key (parameter name) that will be used to auto-login the visitor and gain access to the Customizer."
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/abstracts/class-Plugin_Init.php:81
|
||||
msgid "Error: plugin \"%s\" requires a newer version of PHP to be running."
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/abstracts/class-Plugin_Init.php:82
|
||||
msgid "Minimal version of PHP required: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/abstracts/class-Plugin_Init.php:83
|
||||
msgid "Your server's PHP version: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/abstracts/class-Plugin_Init.php:144
|
||||
msgid "The <strong>%s</strong> plugin has been updated to version %s. Enjoy!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/abstracts/class-Singleton_Registry.php:56
|
||||
msgid "Trying to get instance of nonexistent class."
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/abstracts/class-Singleton_Registry.php:121
|
||||
msgid "Cloning is forbidden."
|
||||
msgstr ""
|
||||
|
||||
#: includes/lib/abstracts/class-Singleton_Registry.php:130
|
||||
msgid "Unserializing instances of this class is forbidden."
|
||||
msgstr ""
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Backstage"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://wordpress.org/plugins/customizer-guest-demo-access"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Allow your visitors to access the Customizer and play with it."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Pixelgrade"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://pixelgrade.com"
|
||||
msgstr ""
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,159 @@
|
||||
# Copyright (C) 2018 CurrencyRate.today
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Cryptocurrency Price Widget 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/cryptocurrency-price-widget\n"
|
||||
"POT-Creation-Date: 2018-10-04 11:30:27+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: grunt-wp-i18n1.0.2\n"
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Cryptocurrency Price Widget"
|
||||
msgstr ""
|
||||
|
||||
#: includes/crcpw-admin-settings.php:6
|
||||
#: includes/crcpw-cryptocurrency-price-widget.php:60
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/crcpw-admin-settings.php:7
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: includes/crcpw-admin-settings.php:12
|
||||
msgid "Select horizontal"
|
||||
msgstr ""
|
||||
|
||||
#: includes/crcpw-admin-settings.php:25
|
||||
msgid "Select vertical"
|
||||
msgstr ""
|
||||
|
||||
#: includes/crcpw-admin-settings.php:39
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
|
||||
#: includes/crcpw-admin-settings.php:47
|
||||
msgid "Options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/crcpw-admin-settings.php:52
|
||||
msgid "Streaming data"
|
||||
msgstr ""
|
||||
|
||||
#: includes/crcpw-admin-settings.php:52
|
||||
msgid "Prices are updated real-time"
|
||||
msgstr ""
|
||||
|
||||
#: includes/crcpw-admin-settings.php:56
|
||||
msgid "Striped"
|
||||
msgstr ""
|
||||
|
||||
#: includes/crcpw-admin-settings.php:60
|
||||
msgid "Rounded"
|
||||
msgstr ""
|
||||
|
||||
#: includes/crcpw-admin-settings.php:64
|
||||
msgid "Shadow"
|
||||
msgstr ""
|
||||
|
||||
#: includes/crcpw-admin-settings.php:68
|
||||
msgid "Border"
|
||||
msgstr ""
|
||||
|
||||
#: includes/crcpw-admin-settings.php:72
|
||||
msgid "Signature"
|
||||
msgstr ""
|
||||
|
||||
#: includes/crcpw-admin-settings.php:72
|
||||
msgid ""
|
||||
"Please don't uncheck this option, this makes our widget free and will help "
|
||||
"improve it in the future"
|
||||
msgstr ""
|
||||
|
||||
#: includes/crcpw-admin-settings.php:81 includes/crcpw-admin-settings.php:83
|
||||
msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: includes/crcpw-admin-settings.php:90
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/crcpw-admin-settings.php:93
|
||||
msgid "How to install"
|
||||
msgstr ""
|
||||
|
||||
#: includes/crcpw-admin-settings.php:95
|
||||
msgid "Copy the shortcode, then go to %sWidgets%s page"
|
||||
msgstr ""
|
||||
|
||||
#: includes/crcpw-admin-settings.php:96
|
||||
msgid "Select «Text» press button «Add Widget»"
|
||||
msgstr ""
|
||||
|
||||
#: includes/crcpw-admin-settings.php:97
|
||||
msgid "In form «Content» paste shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/crcpw-admin-settings.php:99
|
||||
msgid "Advice"
|
||||
msgstr ""
|
||||
|
||||
#: includes/crcpw-admin-settings.php:99
|
||||
msgid "you'll can add shortcode anywhere: post, page and etc"
|
||||
msgstr ""
|
||||
|
||||
#: includes/crcpw-admin-settings.php:103
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
|
||||
#: includes/crcpw-admin-settings.php:106
|
||||
msgid "We do everything so that you use this plugin for free"
|
||||
msgstr ""
|
||||
|
||||
#: includes/crcpw-admin-settings.php:107
|
||||
msgid "To make the plugin work in further — rate it please"
|
||||
msgstr ""
|
||||
|
||||
#: includes/crcpw-admin-settings.php:108
|
||||
msgid "Rating"
|
||||
msgstr ""
|
||||
|
||||
#: includes/crcpw-admin-settings.php:111
|
||||
msgid "Cryptocurrency Widgets for Website"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://co-in.io/crypto-price-widget/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Gives you a customizable Cryptocurrency Price Widget for website with ⚡live "
|
||||
"real-time price update and flexible settings."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "CurrencyRate.today"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://currencyrate.today/"
|
||||
msgstr ""
|
||||
26
spec/fixtures/dynamic_finders/plugin_version/download-media-file/composer_file/package.json
vendored
Normal file
26
spec/fixtures/dynamic_finders/plugin_version/download-media-file/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
"name": "download-media-file",
|
||||
"version": "1.0.0",
|
||||
"description": "Adds a button to media modal to download media file.",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/shamimmoeen/download-media-file.git"
|
||||
},
|
||||
"keywords": [
|
||||
"download-media-file"
|
||||
],
|
||||
"author": "CoderBloc",
|
||||
"license": "GPL-3.0+",
|
||||
"bugs": {
|
||||
"url": "https://github.com/shamimmoeen/download-media-file/issues"
|
||||
},
|
||||
"homepage": "https://github.com/shamimmoeen/download-media-file#readme",
|
||||
"devDependencies": {
|
||||
"grunt-wp-i18n": "^1.0.2",
|
||||
"grunt-wp-readme-to-markdown": "^2.0.1"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
# Copyright (C) 2018 CoderBloc
|
||||
# This file is distributed under the GPL-3.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Download Media File 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/download-media-file\n"
|
||||
"POT-Creation-Date: 2018-10-02 08:03:29+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: grunt-wp-i18n1.0.2\n"
|
||||
|
||||
#: includes/class-download-media-file.php:62
|
||||
msgid "Download"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-download-media-file.php:112
|
||||
#: includes/class-download-media-file.php:173
|
||||
msgid "File not found"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,164 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Enhanced Woocommerce Flash Sale 1.0.0\n"
|
||||
"POT-Creation-Date: 2018-10-09 17:07+0530\n"
|
||||
"PO-Revision-Date: 2018-10-09 17:07+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: makewebbetter <webmaster@makewebbetter.com>\n"
|
||||
"Language: English\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.5.4\n"
|
||||
"X-Poedit-KeywordsList: _e;__\n"
|
||||
"X-Poedit-Basepath: /opt/lampp/htdocs/wordpress/wp-content/plugins/enhanced-"
|
||||
"woocommerce-flash-sale/\n"
|
||||
"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: enhanced-woocommerce-flash-sale.php:75
|
||||
msgid "Go To Settings"
|
||||
msgstr ""
|
||||
|
||||
#: enhanced-woocommerce-flash-sale.php:114
|
||||
msgid ""
|
||||
"WooCommerce is not activated. Please install WooCommerce first, to use the "
|
||||
"Woo Flash Sale plugin !!!"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-enhanced-woocommerce-flash-sale-public.php:469
|
||||
msgid "Sale"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-enhanced-woocommerce-flash-sale-admin.php:120
|
||||
msgid "Flash Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:34
|
||||
msgid "Flash Sale Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:39
|
||||
msgid "Settings Saved!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:49
|
||||
msgid "TimerSettings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:55
|
||||
msgid "Enable Timer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:61
|
||||
msgid "By clicking timer will be enable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:69
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:74
|
||||
msgid "Select background color of the counter "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:80
|
||||
msgid "Font Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:85
|
||||
msgid "Select text color of the timer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:91
|
||||
msgid "Border "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:95
|
||||
msgid "Border for the Timer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:96
|
||||
msgid "Write border of the timer example 2"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:103
|
||||
msgid "Border Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:108
|
||||
msgid "Select border color for the Timer "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:115
|
||||
msgid "Start Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:120
|
||||
msgid "Select the Start date for the timer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:127
|
||||
msgid "End Date"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:132
|
||||
msgid "Select the End date for the timer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:139
|
||||
msgid "TimerStyle"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:144
|
||||
msgid "Round"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:145
|
||||
msgid "RoundFill"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:146
|
||||
msgid "Squre"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:147
|
||||
msgid "SqureFill"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:151
|
||||
msgid "Select the timer style which will show on product detail page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:160
|
||||
msgid "Sale Text Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:166
|
||||
msgid "Sale Text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:171
|
||||
msgid "Write your own text which will display on the product shop page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:177
|
||||
msgid "Text color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:184
|
||||
msgid "Select text color for the the sale text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:190
|
||||
msgid "Sale Text Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:196
|
||||
msgid "Select the font size for the the sale text "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/enhanced-woocommerce-flash-sale-admin-display.php:204
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
65
spec/fixtures/dynamic_finders/plugin_version/expivi/translation_file/languages/expivi.pot
vendored
Normal file
65
spec/fixtures/dynamic_finders/plugin_version/expivi/translation_file/languages/expivi.pot
vendored
Normal file
@@ -0,0 +1,65 @@
|
||||
# Copyright (C) 2018 Expivi
|
||||
# This file is distributed under the same license as the Expivi package.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Expivi 0.1\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/expivi\n"
|
||||
"POT-Creation-Date: 2018-07-04 13:40+0200\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: Poedit 2.0.8\n"
|
||||
|
||||
#: classes/AdminSettings.php:19
|
||||
msgid "Expivi product"
|
||||
msgstr ""
|
||||
|
||||
#: classes/AdminSettings.php:43
|
||||
msgid "Expivi settings"
|
||||
msgstr ""
|
||||
|
||||
#: classes/AdminSettings.php:53
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: classes/AdminSettings.php:58
|
||||
msgid "API Url"
|
||||
msgstr ""
|
||||
|
||||
#: classes/AdminSettings.php:62
|
||||
msgid "API Token"
|
||||
msgstr ""
|
||||
|
||||
#: classes/CartManager.php:50 classes/CartManager.php:104
|
||||
msgid "Could not do price calculation"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Catalog.php:20
|
||||
msgid "Configure product"
|
||||
msgstr ""
|
||||
|
||||
#: expivi.php:33
|
||||
msgid "This plugin requires %s to be active"
|
||||
msgstr ""
|
||||
|
||||
#: templates/expivi_tab.php:19
|
||||
msgid "Expivi product ID"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
#. Author of the plugin/theme
|
||||
msgid "Expivi"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://www.expivi.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Complex visualisation and configuration made simple"
|
||||
msgstr ""
|
||||
213
spec/fixtures/dynamic_finders/plugin_version/extra-blocks/translation_file/languages/extra-blocks.po
vendored
Normal file
213
spec/fixtures/dynamic_finders/plugin_version/extra-blocks/translation_file/languages/extra-blocks.po
vendored
Normal file
@@ -0,0 +1,213 @@
|
||||
# Copyright (C) 2018 ZintaTheme (www.zintatheme.com)
|
||||
# This file is distributed under the same license as ExtraBlocks package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Extra Blocks 1.0\n"
|
||||
"Report-Msgid-Bugs-To: http://zintathemes.com\n"
|
||||
"POT-Creation-Date: 2018-09-21 00:07:03+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: Hassan Matooq <>\n"
|
||||
"Language-Team: Hassan Matooq <>\n"
|
||||
"X-Generator: grunt-wp-i18n1.0.2\n"
|
||||
|
||||
#: includes/class-extrablocks-hooks.php:26
|
||||
msgid ""
|
||||
"<strong>Extra Blocks</strong> needs Gutenberg editor installed.<br/> It "
|
||||
"looks like you don`t have Gutenberg editor installed."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Extra Blocks"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-extrablocks-hooks.php:141 languages/extra-blocks.php:31
|
||||
msgid "Row"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:27
|
||||
msgid "Column"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:28
|
||||
msgid "A single column."
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:34
|
||||
msgid "layouts configuration"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:37
|
||||
msgid "Container"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:38
|
||||
msgid "Container Box"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:39
|
||||
msgid "Background Image"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:40
|
||||
msgid "Remove image"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:41
|
||||
msgid "Edit image"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:42
|
||||
msgid "Background Attachment"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:43 languages/extra-blocks.php:44
|
||||
#: languages/extra-blocks.php:64
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:47
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:48
|
||||
msgid "Button block."
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:49
|
||||
msgid "Button Settings"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:50
|
||||
msgid "Button title"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:51
|
||||
msgid "Button Link"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:52
|
||||
msgid "Open in new tab"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:53
|
||||
msgid "Wave effect"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:54
|
||||
msgid "Effect color"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:55
|
||||
msgid "Light"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:56
|
||||
msgid "Red"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:57
|
||||
msgid "Yellow"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:58
|
||||
msgid "Orange"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:59
|
||||
msgid "Purple"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:60
|
||||
msgid "Green"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:61
|
||||
msgid "Teal"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:62 languages/extra-blocks.php:84
|
||||
msgid "Color Settings"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:63 languages/extra-blocks.php:85
|
||||
msgid "Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:67
|
||||
msgid "Buttons Group"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:70
|
||||
msgid "Number of buttons"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:71
|
||||
msgid "Space between buttons"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:74
|
||||
msgid "Testimonial"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:75
|
||||
msgid "Regular"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:76
|
||||
msgid "Large"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:79
|
||||
msgid "Testimonial Settings"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:80
|
||||
msgid "Testimonial Style"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:81
|
||||
msgid "none"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:82
|
||||
msgid "Style 1"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:83
|
||||
msgid "Show Stars"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:86
|
||||
msgid "Cite Color"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:87
|
||||
msgid "Add testimonial text"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:88
|
||||
msgid "Add cite text"
|
||||
msgstr ""
|
||||
|
||||
#: languages/extra-blocks.php:91
|
||||
msgid "Separator"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://zintathemes.com"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Extra blocks for Gutenberg editor."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "ZintaThemes"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "www.zintathemes.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "front-editor-wc",
|
||||
"version": "1.0.0",
|
||||
"description": "Front Editor for Woocommerce",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "test"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git"
|
||||
},
|
||||
"keywords": [
|
||||
"wordpress"
|
||||
],
|
||||
"author": "briar",
|
||||
"license": "GPL-2.0",
|
||||
"devDependencies": {
|
||||
"gulp": "^3.9.1",
|
||||
"gulp-cssnano": "^2.1.2",
|
||||
"gulp-minify": "0.0.14",
|
||||
"gulp-npm-files": "^0.1.3",
|
||||
"gulp-postcss": "^6.1.0",
|
||||
"gulp-rename": "^1.2.2",
|
||||
"gulp-wp-pot": "^2.0.1",
|
||||
"postcss-cssnext": "^2.8.0"
|
||||
},
|
||||
"dependencies": {}
|
||||
}
|
||||
36
spec/fixtures/dynamic_finders/plugin_version/gallerya/composer_file/package.json
vendored
Normal file
36
spec/fixtures/dynamic_finders/plugin_version/gallerya/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"name": "gallerya",
|
||||
"version": "1.9.15",
|
||||
"author": "netzstrategen <hallo@netzstrategen.com>",
|
||||
"license": "GPL-2.0",
|
||||
"devDependencies": {
|
||||
"asset-builder": "^1.1.0",
|
||||
"browser-sync": "^2.8.2",
|
||||
"del": "^1.2.1",
|
||||
"gulp": "^3.9.0",
|
||||
"gulp-autoprefixer": "^2.3.1",
|
||||
"gulp-changed": "^1.3.0",
|
||||
"gulp-concat": "^2.6.0",
|
||||
"gulp-flatten": "0.1.1",
|
||||
"gulp-if": "^2.0.1",
|
||||
"gulp-imagemin": "^2.3.0",
|
||||
"gulp-jshint": "^1.11.2",
|
||||
"gulp-less": "^3.0.3",
|
||||
"gulp-minify-css": "^1.2.0",
|
||||
"gulp-plumber": "^1.0.1",
|
||||
"gulp-rename": "^1.2.2",
|
||||
"gulp-rev": "^6.0.0",
|
||||
"gulp-sass": "^2.3.2",
|
||||
"gulp-sourcemaps": "^1.5.2",
|
||||
"gulp-uglify": "^1.2.0",
|
||||
"imagemin-pngcrush": "^4.1.0",
|
||||
"jshint-stylish": "^2.0.1",
|
||||
"lazypipe": "^1.0.1",
|
||||
"merge": "^1.2.0",
|
||||
"merge-stream": "^1.0.0",
|
||||
"minimist": "^1.1.3",
|
||||
"run-sequence": "^1.1.2",
|
||||
"traverse": "^0.6.6",
|
||||
"wiredep": "^2.2.2"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"name": "posts-masonry-block-gosign-block",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "cgb-scripts start",
|
||||
"build": "cgb-scripts build",
|
||||
"eject": "cgb-scripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wordpress/components": "^2.0.1",
|
||||
"@wordpress/compose": "^2.0.4",
|
||||
"@wordpress/html-entities": "^2.0.1",
|
||||
"cgb-scripts": "1.11.0",
|
||||
"classnames": "^2.2.6",
|
||||
"imagesloaded": "^4.1.4",
|
||||
"isotope-layout": "^3.0.6",
|
||||
"lodash": "^4.17.11",
|
||||
"lodash.uniqueid": "^4.0.1",
|
||||
"masonry-layout": "^4.2.2"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,525 @@
|
||||
# Blank WordPress Pot
|
||||
# Copyright 2014 ...
|
||||
# This file is distributed under the GNU General Public License v3 or later.
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: "
|
||||
"Guten Editor Blocks "
|
||||
"v1.0.0\n"
|
||||
"POT-Creation-Date: "
|
||||
"2018-09-19 16:27+0530\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Your "
|
||||
"Name <you@example.com>\n"
|
||||
"Language-Team: "
|
||||
"ThemeVedanta "
|
||||
"<themevedanta@gmail."
|
||||
"com>\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"Translator Name "
|
||||
"<translations@example."
|
||||
"com>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/"
|
||||
"plain; charset=UTF-8\n"
|
||||
"Content-Transfer-"
|
||||
"Encoding: 8bit\n"
|
||||
"Plural-Forms: "
|
||||
"nplurals=2; plural=n != "
|
||||
"1;\n"
|
||||
"X-Textdomain-Support: "
|
||||
"yesX-Generator: Poedit "
|
||||
"1.6.4\n"
|
||||
"X-Poedit-SourceCharset: "
|
||||
"UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;esc_html_e;"
|
||||
"esc_html_x:1,2c;"
|
||||
"esc_html__;esc_attr_e;"
|
||||
"esc_attr_x:1,2c;"
|
||||
"esc_attr__;_ex:1,2c;"
|
||||
"_nx:4c,1,2;"
|
||||
"_nx_noop:4c,1,2;_x:1,2c;"
|
||||
"_n:1,2;_n_noop:1,2;"
|
||||
"__ngettext:1,2;"
|
||||
"__ngettext_noop:1,2;_c,"
|
||||
"_nc:4c,1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Language: en_US\n"
|
||||
"X-Generator: Poedit "
|
||||
"2.1.1\n"
|
||||
"X-Poedit-"
|
||||
"SearchPath-0: .\n"
|
||||
|
||||
#: guten-editor-blocks.php:49
|
||||
msgid "Guten Editor Blocks"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/webpack/node_modules/yargs-parser/index.js:306
|
||||
#: node_modules/yargs-parser/index.js:301
|
||||
#, javascript-format
|
||||
msgid ""
|
||||
"Not enough arguments "
|
||||
"following: %s"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/webpack/node_modules/yargs-parser/index.js:454
|
||||
#: node_modules/yargs-parser/index.js:449
|
||||
#, javascript-format
|
||||
msgid ""
|
||||
"Invalid JSON config "
|
||||
"file: %s"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/webpack/node_modules/yargs/lib/usage.js:169
|
||||
#: node_modules/yargs/lib/usage.js:169
|
||||
msgid "Commands:"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/webpack/node_modules/yargs/lib/usage.js:177
|
||||
#: node_modules/webpack/node_modules/yargs/lib/usage.js:407
|
||||
#: node_modules/yargs/lib/usage.js:177
|
||||
#: node_modules/yargs/lib/usage.js:407
|
||||
msgid "default:"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/webpack/node_modules/yargs/lib/usage.js:179
|
||||
#: node_modules/yargs/lib/usage.js:179
|
||||
msgid "aliases:"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/webpack/node_modules/yargs/lib/usage.js:241
|
||||
#: node_modules/yargs/lib/usage.js:241
|
||||
msgid "boolean"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/webpack/node_modules/yargs/lib/usage.js:242
|
||||
#: node_modules/yargs/lib/usage.js:242
|
||||
msgid "count"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/webpack/node_modules/yargs/lib/usage.js:243
|
||||
#: node_modules/webpack/node_modules/yargs/lib/usage.js:244
|
||||
#: node_modules/yargs/lib/usage.js:243
|
||||
#: node_modules/yargs/lib/usage.js:244
|
||||
msgid "string"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/webpack/node_modules/yargs/lib/usage.js:245
|
||||
#: node_modules/yargs/lib/usage.js:245
|
||||
msgid "array"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/webpack/node_modules/yargs/lib/usage.js:246
|
||||
#: node_modules/yargs/lib/usage.js:246
|
||||
msgid "number"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/webpack/node_modules/yargs/lib/usage.js:250
|
||||
#: node_modules/yargs/lib/usage.js:250
|
||||
msgid "required"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/webpack/node_modules/yargs/lib/usage.js:251
|
||||
#: node_modules/yargs/lib/usage.js:251
|
||||
msgid "choices:"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/webpack/node_modules/yargs/lib/usage.js:270
|
||||
#: node_modules/yargs/lib/usage.js:270
|
||||
msgid "Examples:"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/webpack/node_modules/yargs/lib/usage.js:385
|
||||
#: node_modules/yargs/lib/usage.js:385
|
||||
msgid "generated-value"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/webpack/node_modules/yargs/lib/validation.js:27
|
||||
#: node_modules/webpack/node_modules/yargs/lib/validation.js:50
|
||||
#: node_modules/yargs/lib/validation.js:26
|
||||
#: node_modules/yargs/lib/validation.js:49
|
||||
#, javascript-format
|
||||
msgid ""
|
||||
"Not enough non-option "
|
||||
"arguments: got %s, need "
|
||||
"at least %s"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/webpack/node_modules/yargs/lib/validation.js:38
|
||||
#: node_modules/yargs/lib/validation.js:37
|
||||
#, javascript-format
|
||||
msgid ""
|
||||
"Too many non-option "
|
||||
"arguments: got %s, "
|
||||
"maximum of %s"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/webpack/node_modules/yargs/lib/validation.js:186
|
||||
#: node_modules/yargs/lib/validation.js:185
|
||||
msgid "Invalid values:"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/webpack/node_modules/yargs/lib/validation.js:189
|
||||
#: node_modules/yargs/lib/validation.js:188
|
||||
#, javascript-format
|
||||
msgid ""
|
||||
"Argument: %s, Given: %s, "
|
||||
"Choices: %s"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/webpack/node_modules/yargs/lib/validation.js:219
|
||||
#: node_modules/yargs/lib/validation.js:218
|
||||
#, javascript-format
|
||||
msgid ""
|
||||
"Argument check failed: %s"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/webpack/node_modules/yargs/lib/validation.js:284
|
||||
#: node_modules/yargs/lib/validation.js:283
|
||||
msgid ""
|
||||
"Implications failed:"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/webpack/node_modules/yargs/lib/validation.js:314
|
||||
#: node_modules/yargs/lib/validation.js:313
|
||||
#, javascript-format
|
||||
msgid ""
|
||||
"Arguments %s and %s are "
|
||||
"mutually exclusive"
|
||||
msgstr ""
|
||||
|
||||
#: node_modules/webpack/node_modules/yargs/lib/validation.js:333
|
||||
#: node_modules/yargs/lib/validation.js:332
|
||||
#, javascript-format
|
||||
msgid "Did you mean %s?"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/components/inspector.js:68
|
||||
msgid "Small"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/components/inspector.js:69
|
||||
msgid "Medium"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/components/inspector.js:70
|
||||
msgid "Large"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/components/inspector.js:71
|
||||
msgid "Extra Large"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/components/inspector.js:76
|
||||
msgid "Square"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/components/inspector.js:77
|
||||
msgid "Rounded Square"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/components/inspector.js:78
|
||||
msgid "Circular"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/components/inspector.js:99
|
||||
msgid "Content Options"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/components/inspector.js:101
|
||||
#: src/blocks/block-iconbox/components/inspector.js:153
|
||||
#: src/blocks/block-imagebox/components/inspector.js:93
|
||||
msgid "Title Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/components/inspector.js:110
|
||||
msgid ""
|
||||
"Description Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/components/inspector.js:119
|
||||
#: src/blocks/block-cta/components/inspector.js:124
|
||||
#: src/blocks/block-iconbox/components/inspector.js:198
|
||||
#: src/blocks/block-iconbox/components/inspector.js:203
|
||||
#: src/blocks/block-imagebox/components/inspector.js:129
|
||||
#: src/blocks/block-imagebox/components/inspector.js:134
|
||||
msgid "Title Color"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/components/inspector.js:131
|
||||
#: src/blocks/block-cta/components/inspector.js:136
|
||||
msgid "Description Color"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/components/inspector.js:143
|
||||
msgid "Background Options"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/components/inspector.js:144
|
||||
#: src/blocks/block-iconbox/components/inspector.js:247
|
||||
msgid ""
|
||||
"Select a background "
|
||||
"image:"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/components/inspector.js:153
|
||||
#: src/blocks/block-iconbox/components/inspector.js:256
|
||||
msgid "Edit image"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/components/inspector.js:157
|
||||
#: src/blocks/block-iconbox/components/inspector.js:260
|
||||
msgid "Select Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/components/inspector.js:163
|
||||
#: src/blocks/block-iconbox/components/inspector.js:266
|
||||
msgid "Remove Image"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/components/inspector.js:167
|
||||
#: src/blocks/block-iconbox/components/inspector.js:270
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/components/inspector.js:177
|
||||
#: src/blocks/block-iconbox/components/inspector.js:280
|
||||
msgid "Image Opacity"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/components/inspector.js:187
|
||||
#: src/blocks/block-cta/components/inspector.js:192
|
||||
#: src/blocks/block-iconbox/components/inspector.js:290
|
||||
#: src/blocks/block-iconbox/components/inspector.js:295
|
||||
#: src/blocks/block-imagebox/components/inspector.js:80
|
||||
#: src/blocks/block-imagebox/components/inspector.js:85
|
||||
msgid "Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/components/inspector.js:199
|
||||
msgid "Button Options"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/components/inspector.js:201
|
||||
msgid ""
|
||||
"Open link in new window"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/components/inspector.js:207
|
||||
msgid "Button Size"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/components/inspector.js:217
|
||||
msgid "Button Shape"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/components/inspector.js:227
|
||||
#: src/blocks/block-cta/components/inspector.js:232
|
||||
msgid "Button Color"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/components/inspector.js:249
|
||||
#: src/blocks/block-cta/components/inspector.js:254
|
||||
msgid "Button Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/index.js:214
|
||||
msgid "CallToAction Title"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/index.js:229
|
||||
msgid ""
|
||||
"CallToAction Description"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/index.js:245
|
||||
msgid "Button text..."
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/index.js:277
|
||||
msgid "Apply"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/index.js:290
|
||||
msgid "GEB CallToAction"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/index.js:291
|
||||
msgid ""
|
||||
"Add a cta section with a "
|
||||
"title, text, and a "
|
||||
"button."
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/index.js:295
|
||||
msgid "calltoaction"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/index.js:296
|
||||
#: src/blocks/block-iconbox/index.js:576
|
||||
#: src/blocks/block-imagebox/index.js:549
|
||||
msgid "editor"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-cta/index.js:297
|
||||
#: src/blocks/block-iconbox/index.js:577
|
||||
#: src/blocks/block-imagebox/index.js:550
|
||||
msgid "guteneditorblocks"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-iconbox/components/inspector.js:86
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-iconbox/components/inspector.js:87
|
||||
msgid "Aside Left"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-iconbox/components/inspector.js:88
|
||||
msgid "Aside Right"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-iconbox/components/inspector.js:93
|
||||
#: src/blocks/block-imagebox/components/inspector.js:62
|
||||
msgid ""
|
||||
"Iconbox General Options"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-iconbox/components/inspector.js:95
|
||||
#: src/blocks/block-imagebox/components/inspector.js:64
|
||||
msgid "Number Of Columns"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-iconbox/components/inspector.js:103
|
||||
msgid "Iconbox Style"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-iconbox/components/inspector.js:112
|
||||
msgid "Iconbox-1 Icon"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-iconbox/components/inspector.js:121
|
||||
msgid "Iconbox-2 Icon"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-iconbox/components/inspector.js:131
|
||||
msgid "Iconbox-3 Icon"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-iconbox/components/inspector.js:141
|
||||
msgid "Iconbox-4 Icon"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-iconbox/components/inspector.js:151
|
||||
#: src/blocks/block-imagebox/components/inspector.js:91
|
||||
msgid ""
|
||||
"Iconbox Content Options"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-iconbox/components/inspector.js:162
|
||||
#: src/blocks/block-imagebox/components/inspector.js:102
|
||||
msgid "Content Font Size"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-iconbox/components/inspector.js:171
|
||||
msgid "Icon Size"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-iconbox/components/inspector.js:180
|
||||
#: src/blocks/block-imagebox/components/inspector.js:111
|
||||
msgid "Border Size"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-iconbox/components/inspector.js:189
|
||||
#: src/blocks/block-imagebox/components/inspector.js:120
|
||||
msgid "Border Radius"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-iconbox/components/inspector.js:210
|
||||
#: src/blocks/block-iconbox/components/inspector.js:215
|
||||
#: src/blocks/block-imagebox/components/inspector.js:141
|
||||
#: src/blocks/block-imagebox/components/inspector.js:146
|
||||
msgid "Content Color"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-iconbox/components/inspector.js:222
|
||||
#: src/blocks/block-iconbox/components/inspector.js:227
|
||||
msgid "Icon Color"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-iconbox/components/inspector.js:234
|
||||
#: src/blocks/block-iconbox/components/inspector.js:239
|
||||
#: src/blocks/block-imagebox/components/inspector.js:153
|
||||
#: src/blocks/block-imagebox/components/inspector.js:158
|
||||
msgid "Border Color"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-iconbox/components/inspector.js:246
|
||||
msgid ""
|
||||
"Iconbox Background "
|
||||
"Options"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-iconbox/index.js:295
|
||||
#: src/blocks/block-iconbox/index.js:374
|
||||
#: src/blocks/block-iconbox/index.js:454
|
||||
#: src/blocks/block-iconbox/index.js:532
|
||||
msgid "Iconbox Title"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-iconbox/index.js:310
|
||||
#: src/blocks/block-iconbox/index.js:389
|
||||
#: src/blocks/block-iconbox/index.js:469
|
||||
#: src/blocks/block-iconbox/index.js:547
|
||||
msgid "Iconbox Description"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-iconbox/index.js:570
|
||||
msgid "GEB Iconbox"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-iconbox/index.js:571
|
||||
msgid ""
|
||||
"Add a iconbox section "
|
||||
"with a title, content, "
|
||||
"and fontawesome icon."
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-iconbox/index.js:575
|
||||
msgid "iconbox"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-imagebox/components/inspector.js:72
|
||||
msgid "Image Width"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-imagebox/index.js:284
|
||||
#: src/blocks/block-imagebox/index.js:362
|
||||
#: src/blocks/block-imagebox/index.js:441
|
||||
#: src/blocks/block-imagebox/index.js:520
|
||||
msgid ""
|
||||
"Imagebox Description"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-imagebox/index.js:347
|
||||
#: src/blocks/block-imagebox/index.js:426
|
||||
#: src/blocks/block-imagebox/index.js:505
|
||||
msgid "Imagebox Title"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-imagebox/index.js:543
|
||||
msgid "GEB Imagebox"
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-imagebox/index.js:544
|
||||
msgid ""
|
||||
"Add a imagebox section "
|
||||
"with a title, content, "
|
||||
"and image."
|
||||
msgstr ""
|
||||
|
||||
#: src/blocks/block-imagebox/index.js:548
|
||||
msgid "imagebox"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,138 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Hide Content 1.0\n"
|
||||
"POT-Creation-Date: 2018-10-06 00:28+0330\n"
|
||||
"PO-Revision-Date: 2018-10-06 00:29+0330\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: WP-Mart\n"
|
||||
"Language: fa_IR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.5\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n==0 || n==1);\n"
|
||||
"X-Poedit-KeywordsList: __;_e\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: hidden-contents.php:38 hidden-contents.php:39
|
||||
msgid "Hide Content"
|
||||
msgstr "مخفیساز متن"
|
||||
|
||||
#: hidden-contents.php:62
|
||||
msgid "You do not have sufficient permissions to access this page."
|
||||
msgstr "شما دسترسی لازم برای مشاهده این صفحه را ندارید."
|
||||
|
||||
#: hidden-contents.php:83
|
||||
msgid "Hide content settings"
|
||||
msgstr "تنظیمات مخفیساز متن"
|
||||
|
||||
#: hidden-contents.php:103
|
||||
msgid "Settings Saved."
|
||||
msgstr "تنظیمات ذخیره شد."
|
||||
|
||||
#: hidden-contents.php:104
|
||||
msgid "Close"
|
||||
msgstr "بستن"
|
||||
|
||||
#: hidden-contents.php:108
|
||||
msgid "Sorry, your nonce did not verify."
|
||||
msgstr "پیوندی که شما دنبال میکردید منقضی شده است."
|
||||
|
||||
#: hidden-contents.php:112
|
||||
msgid ""
|
||||
"The following options are available to set the output of the 'Hide Content' "
|
||||
"plugin."
|
||||
msgstr "گزینه های زیر جهت تنظیم خروجی و نحوه کار افزونه مخفی ساز متن است."
|
||||
|
||||
#: hidden-contents.php:118
|
||||
msgid "Post Type to hide content"
|
||||
msgstr "انتخاب پست تایپ برای مخفی سازی"
|
||||
|
||||
#: hidden-contents.php:121
|
||||
msgid "Post Type"
|
||||
msgstr "پست تایپ"
|
||||
|
||||
#: hidden-contents.php:135
|
||||
msgid "Select Post Type to hide "
|
||||
msgstr ""
|
||||
"از این بخش می توانید پست تایپ مدنظرتان را برای مخفی سازی متن انتخاب کنید "
|
||||
|
||||
#: hidden-contents.php:140
|
||||
msgid "Change content dump image"
|
||||
msgstr "تغییر عکس پیش فرض"
|
||||
|
||||
#: hidden-contents.php:143
|
||||
msgid "Upload image"
|
||||
msgstr "بارگزاری عکس"
|
||||
|
||||
#: hidden-contents.php:144
|
||||
msgid "Change default image"
|
||||
msgstr "تغییر عکس پیش فرض"
|
||||
|
||||
#: hidden-contents.php:145
|
||||
msgid "You can change default image holder from here."
|
||||
msgstr "از این بخش می توانید عکس پیش فرض را تغییر دهید."
|
||||
|
||||
#: hidden-contents.php:150
|
||||
msgid "Character to show"
|
||||
msgstr "تعداد کاراکتر نمایشی"
|
||||
|
||||
#: hidden-contents.php:154
|
||||
msgid "Enter the number of characters you want to be visible to the user."
|
||||
msgstr ""
|
||||
"تعداد کاراکتری که می خواهید برای کاربر قابل مشاهده باشد را وارد کنید. برای "
|
||||
"عدم نمایش روی عدد 0 تنظیم کنید."
|
||||
|
||||
#: hidden-contents.php:159
|
||||
msgid "Content phars list to show"
|
||||
msgstr "لیست واژگان جهت نمایش"
|
||||
|
||||
#: hidden-contents.php:162
|
||||
msgid "write some phars"
|
||||
msgstr "واژه مدنظر را وارد کنید"
|
||||
|
||||
#: hidden-contents.php:163
|
||||
msgid ""
|
||||
"The exlude list is for creating a list of words that is visible to the user "
|
||||
"in your contents. <br>Example phars: we, was, or, that,... "
|
||||
msgstr ""
|
||||
"لیست محروم سازی جهت ایجاد لیستی از واژه هاست که در متن برای کاربر قابل "
|
||||
"مشاهده است. <br>مانند: است، به ، با و... "
|
||||
|
||||
#: hidden-contents.php:169
|
||||
msgid "Save Settings"
|
||||
msgstr "ذخیره تنظیمات"
|
||||
|
||||
#: languages/common-strings.php:2
|
||||
msgid "Hidden Contents"
|
||||
msgstr "مخفیساز متن"
|
||||
|
||||
#: languages/common-strings.php:3
|
||||
msgid "A handy plugin for hide contents and images from guest users."
|
||||
msgstr "افزونه ای جهت مخفی کردن متن و عکس از کاربران مهمان."
|
||||
|
||||
#: languages/common-strings.php:4
|
||||
msgid "Morteza Geransayeh"
|
||||
msgstr "مرتضی گرانسایه"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "A handy plugin for hide contents and images from guest users. But you can "
|
||||
#~ "control how many characters and what words show."
|
||||
#~ msgstr "افزونه ای جهت مخفی کردن متن و عکس از کاربران مهمان."
|
||||
|
||||
#~ msgid "Hide content for registered users?"
|
||||
#~ msgstr "مخفی سازی برای کاربران؟"
|
||||
|
||||
#~ msgid "Yes"
|
||||
#~ msgstr "بله"
|
||||
|
||||
#~ msgid "No"
|
||||
#~ msgstr "خیر"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "By turning this option on, all site contents will be hiding for "
|
||||
#~ "registered users."
|
||||
#~ msgstr ""
|
||||
#~ "با فعال کردن این گزینه، نوشته های سایت حتی برای کاربران عضو هم مخفی می "
|
||||
#~ "شوند."
|
||||
@@ -0,0 +1,181 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: HTTP to HTTPS 2.0\n"
|
||||
"POT-Creation-Date: 2018-10-16 00:35+0200\n"
|
||||
"PO-Revision-Date: 2018-10-16 00:39+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Ambrogio Piredda\n"
|
||||
"Language: en\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.8.7.1\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: _e;__\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: settings-fields.php:6
|
||||
msgid ""
|
||||
"Select one or more of the options below and click the \"Replace URLs\" "
|
||||
"button. Only the URLs that point to your own site will be replaced. No URL "
|
||||
"pointing outside of your site will be replaced."
|
||||
msgstr ""
|
||||
|
||||
#: settings-fields.php:7
|
||||
msgid ""
|
||||
"<b>WARNING:</b> Changing the site URL without having an SSL certificate "
|
||||
"installed will break your site. You can find more information about the site "
|
||||
"URL"
|
||||
msgstr ""
|
||||
|
||||
#: settings-fields.php:7 settings-fields.php:93 settings-fields.php:141
|
||||
#: settings-fields.php:157
|
||||
msgid "here"
|
||||
msgstr ""
|
||||
|
||||
#: settings-fields.php:8
|
||||
msgid "<b>NOTE:</b> This plugin does not change URLs in the"
|
||||
msgstr ""
|
||||
|
||||
#: settings-fields.php:8
|
||||
msgid "GUID"
|
||||
msgstr ""
|
||||
|
||||
#: settings-fields.php:8
|
||||
msgid "column of the wp_posts table"
|
||||
msgstr ""
|
||||
|
||||
#: settings-fields.php:39
|
||||
#, php-format
|
||||
msgid "Site URL:	%s"
|
||||
msgstr ""
|
||||
|
||||
#: settings-fields.php:39
|
||||
#, php-format
|
||||
msgid "Home URL:	%s"
|
||||
msgstr ""
|
||||
|
||||
#: settings-fields.php:39
|
||||
#, php-format
|
||||
msgid "Table prefix:	%s"
|
||||
msgstr ""
|
||||
|
||||
#: settings-fields.php:39
|
||||
#, php-format
|
||||
msgid "Blog ID:	%s"
|
||||
msgstr ""
|
||||
|
||||
#: settings-fields.php:61
|
||||
msgid ""
|
||||
"Replace URLs of src attributes in the <b>post_content</b> column of the "
|
||||
"<b>wp_posts</b> table."
|
||||
msgstr ""
|
||||
|
||||
#: settings-fields.php:77
|
||||
msgid ""
|
||||
"Replace URLs of href attributes in the <b>post_content</b> column of the "
|
||||
"<b>wp_posts</b> table."
|
||||
msgstr ""
|
||||
|
||||
#: settings-fields.php:93
|
||||
msgid ""
|
||||
"Replace URLs in the <b>pinged</b> column of the <b>wp_posts</b> table. More "
|
||||
"information about pingbacks"
|
||||
msgstr ""
|
||||
|
||||
#: settings-fields.php:109
|
||||
msgid ""
|
||||
"Replace URLs in the <b>comment_author_url</b> and the <b>comment_content</b> "
|
||||
"columns of the <b>wp_comments</b> table."
|
||||
msgstr ""
|
||||
|
||||
#: settings-fields.php:125
|
||||
msgid ""
|
||||
"Replace URLs in the <b>meta_value</b> column of the <b>wp_postmeta</b> table."
|
||||
msgstr ""
|
||||
|
||||
#: settings-fields.php:141
|
||||
msgid ""
|
||||
"Replace the site URL in the <b>wp_options</b> table. More information about "
|
||||
"the site URL"
|
||||
msgstr ""
|
||||
|
||||
#: settings-fields.php:157
|
||||
msgid ""
|
||||
"Replace the home URL in the <b>wp_options</b> table. More information about "
|
||||
"the home URL"
|
||||
msgstr ""
|
||||
|
||||
#: settings-fields.php:173
|
||||
msgid ""
|
||||
"Select this option to simulate a replacement of the options you have "
|
||||
"selected. No URL will be replaced."
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:8 settings-page.php:82 settings-page.php:83
|
||||
msgid "HTTP to HTTPS"
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:17
|
||||
msgid "Replace URLs"
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:56
|
||||
#, php-format
|
||||
msgid "Cells found: %s"
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:58
|
||||
#, php-format
|
||||
msgid "Cells updated: %s"
|
||||
msgstr ""
|
||||
|
||||
#: settings-page.php:63
|
||||
msgid "Select at least one option"
|
||||
msgstr ""
|
||||
|
||||
#: settings.php:8
|
||||
msgid "Instructions"
|
||||
msgstr ""
|
||||
|
||||
#: settings.php:15
|
||||
msgid "Site details"
|
||||
msgstr ""
|
||||
|
||||
#: settings.php:22
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: settings.php:30
|
||||
msgid "Replace images and attachments URLs"
|
||||
msgstr ""
|
||||
|
||||
#: settings.php:38
|
||||
msgid "Replace links URLs"
|
||||
msgstr ""
|
||||
|
||||
#: settings.php:46
|
||||
msgid "Replace pingbacks URLs"
|
||||
msgstr ""
|
||||
|
||||
#: settings.php:54
|
||||
msgid "Replace URLs in comments"
|
||||
msgstr ""
|
||||
|
||||
#: settings.php:62
|
||||
msgid "Replace postmeta URLs"
|
||||
msgstr ""
|
||||
|
||||
#: settings.php:70
|
||||
msgid "Replace site URL"
|
||||
msgstr ""
|
||||
|
||||
#: settings.php:78
|
||||
msgid "Replace home URL"
|
||||
msgstr ""
|
||||
|
||||
#: settings.php:86
|
||||
msgid "Simulate replacement"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,752 @@
|
||||
# Copyright (C) 2018 The Plugin Pros
|
||||
# This file is distributed under the same license as the Marketplace Taxes package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Marketplace Taxes 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://github.com/ThePluginPros/marketplace-taxes/issues\n"
|
||||
"POT-Creation-Date: 2018-10-12 13:17:26+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: grunt-wp-i18n1.0.2\n"
|
||||
|
||||
#: includes/admin/class-mt-admin-notices.php:98
|
||||
msgid "Action failed. Please refresh the page and retry."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-mt-admin-notices.php:102
|
||||
msgid "Cheatin’ huh?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-mt-admin.php:54
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Marketplace Taxes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-mt-wc-integration.php:48
|
||||
msgid "Use this page to configure sales tax automation for your marketplace."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-mt-wc-integration.php:49
|
||||
msgid ""
|
||||
"Need help? Check out the <a "
|
||||
"href=\"https://thepluginpros.com/documentation/taxjar\">documentation</a>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-mt-wc-integration.php:63
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-mt-wc-integration.php:65
|
||||
msgid "Enable automated tax calculations"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-mt-wc-integration.php:71
|
||||
msgid "Your API token will be used to calculate the correct tax rate at checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-mt-wc-integration.php:81
|
||||
msgid "Seller of record"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-mt-wc-integration.php:85
|
||||
msgid "Vendor"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-mt-wc-integration.php:86
|
||||
msgid "Marketplace"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-mt-wc-integration.php:89
|
||||
msgid ""
|
||||
"The seller of record is responsible for collecting and remitting sales tax "
|
||||
"for each sale. The tax collected at checkout will be given to the seller of "
|
||||
"record."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-mt-wc-integration.php:98
|
||||
msgid "Business locations"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-select-category-bulk.php:7
|
||||
#: includes/admin/views/html-select-category.php:26
|
||||
msgid "Tax category"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-select-category-bulk.php:9
|
||||
#: includes/class-mt-assets.php:67
|
||||
msgid "No change"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-select-category-bulk.php:14
|
||||
#: includes/admin/views/html-select-category.php:43
|
||||
#: includes/integrations/wc-vendors/views/html-field-tax-category.php:26
|
||||
msgid "Change"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-select-category-bulk.php:18
|
||||
#: includes/admin/views/html-select-category.php:48
|
||||
#: includes/integrations/wc-vendors/views/html-field-tax-category.php:31
|
||||
msgid "Reset"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-select-category.php:29
|
||||
msgid ""
|
||||
"Used for products that are either exempt from tax in some jurisdictions or "
|
||||
"are taxed at reduced rates. "
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-select-category.php:37
|
||||
#: includes/class-mt-assets.php:66
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-tax-category-modal.php:13
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-tax-category-modal.php:26
|
||||
msgid "Select tax category"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-tax-category-modal.php:28
|
||||
msgid "Close modal panel"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-tax-category-modal.php:37
|
||||
msgid "Start typing to search"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/notices/html-notice-custom.php:19
|
||||
#: includes/integrations/wc-vendors/views/notices/html-notice-update.php:33
|
||||
#: includes/integrations/wc-vendors/views/notices/html-notice-updated.php:19
|
||||
msgid "Dismiss"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-marketplace-taxes.php:140
|
||||
#. translators: 1: required plugin name, 2: minimum version
|
||||
msgid ""
|
||||
"<strong>%1$s needs to be updated.</strong> Marketplace Taxes requires %1$s "
|
||||
"%2$s+."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-marketplace-taxes.php:151
|
||||
#. translators: 1: required plugin name
|
||||
msgid ""
|
||||
"<strong>%1$s not detected.</strong> Please install or activate %1$s to use "
|
||||
"Marketplace Taxes."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-marketplace-taxes.php:173
|
||||
#. translators: 1 - list of required PHP extensions
|
||||
msgid ""
|
||||
"<strong>Required PHP extensions are missing.</strong> Marketplace Taxes "
|
||||
"requires %1$s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-marketplace-taxes.php:182
|
||||
#. translators: 1 - required php version
|
||||
msgid ""
|
||||
"<strong>PHP needs to be updated.</strong> Marketplace Taxes requires PHP "
|
||||
"%1$s+."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-addresses.php:80
|
||||
msgid "Inherited from your general shop settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-addresses.php:135
|
||||
msgid "Default address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-addresses.php:243
|
||||
msgid "%1$s and <a href=\"%4$s\">%2$s other %3$s</a>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-addresses.php:246
|
||||
msgid "seller"
|
||||
msgid_plural "sellers"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: includes/class-mt-addresses.php:262
|
||||
msgid ""
|
||||
"<strong>Warning!</strong> %s %s not configured their business addresses. "
|
||||
"Taxes will not be calculated for %s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-addresses.php:267
|
||||
msgid "has"
|
||||
msgid_plural "have"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: includes/class-mt-addresses.php:268
|
||||
msgid "this vendor"
|
||||
msgid_plural "these vendors"
|
||||
msgstr[0] ""
|
||||
msgstr[1] ""
|
||||
|
||||
#: includes/class-mt-addresses.php:313
|
||||
msgid "Tax setup incomplete."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-addresses.php:314
|
||||
msgid ""
|
||||
"Please complete the following steps to ensure your customers are taxed "
|
||||
"correctly:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-addresses.php:347
|
||||
msgid ""
|
||||
"<strong>Tax setup incomplete.</strong> Please <a href=\"%s\">complete your "
|
||||
"store address</a> to dismiss this notice."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-assets.php:65
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:323
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:350
|
||||
msgid "Same as parent"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-assets.php:96
|
||||
msgid "Select an option…"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-assets.php:177
|
||||
msgid ""
|
||||
"Are you sure you want to dismiss this notice? You won't be warned about "
|
||||
"these sellers again."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-calculator.php:120
|
||||
msgid "%s Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-calculator.php:172
|
||||
msgid "Failed to calculate the tax due: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-install.php:69
|
||||
msgid "%1$s tax rate(s) deleted successfully."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-install.php:73
|
||||
msgid "Your existing tax rates will be kept."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-install.php:106
|
||||
msgid ""
|
||||
"<strong>Warning!</strong> There are tax rates in your WooCommerce tax "
|
||||
"tables. This may cause your customers to be overtaxed. Please choose to <a "
|
||||
"href=\"%1$s\">keep</a> or <a href=\"%2$s\">delete</a> the existing tax "
|
||||
"rates."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-integrations.php:51
|
||||
msgid ""
|
||||
"<strong>%1$s not detected.</strong> Please install or active %1$s to use "
|
||||
"Marketplace Taxes."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-integrations.php:65
|
||||
msgid ""
|
||||
"<strong>%1$s needs to be updated.</strong> Marketplace Taxes requires %1$s "
|
||||
"version %2$s or greater."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-integrations.php:84
|
||||
msgid ""
|
||||
"<strong>TaxJar for Marketplace is inactive</strong>. No compatible "
|
||||
"marketplace plugin detected."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-tax-categories.php:42
|
||||
msgid "Once monthly"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-tax-categories.php:110
|
||||
msgid "Products that don't fall into other categories"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-tax-categories.php:111
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-util.php:33
|
||||
#: includes/fields/class-mt-field-api-token.php:67
|
||||
msgid "The provided API token is invalid."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-util.php:35
|
||||
#: includes/fields/class-mt-field-api-token.php:69
|
||||
msgid "Error connecting to TaxJar."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-vendor-settings-form.php:69
|
||||
msgid "Use TaxJar for Reporting"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-vendor-settings-form.php:94
|
||||
msgid ""
|
||||
"Please fill out the fields below to ensure that your customers are taxed "
|
||||
"correctly."
|
||||
msgstr ""
|
||||
|
||||
#: includes/fields/class-mt-field-api-token.php:31
|
||||
msgid "TaxJar API token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/fields/class-mt-field-api-token.php:32
|
||||
msgid ""
|
||||
"<a href=\"https://thepluginpros.com/out/taxjar-api-token\" "
|
||||
"target=\"_blank\">Find your API token</a> | <a "
|
||||
"href=\"https://thepluginpros.com/out/taxjar\" target=\"_blank\">Register "
|
||||
"for TaxJar</a>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/fields/class-mt-field-business-locations.php:34
|
||||
msgid "Business Locations"
|
||||
msgstr ""
|
||||
|
||||
#: includes/fields/class-mt-field-business-locations.php:35
|
||||
msgid ""
|
||||
"Please enter all locations, including stores, warehouses, distribution "
|
||||
"facilities, etc."
|
||||
msgstr ""
|
||||
|
||||
#: includes/fields/class-mt-field-business-locations.php:81
|
||||
msgid "You must provide at least one business location."
|
||||
msgstr ""
|
||||
|
||||
#: includes/fields/class-mt-field-business-locations.php:101
|
||||
msgid "Select an option..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/fields/class-mt-field-upload-orders.php:39
|
||||
msgid "Sales tax reporting"
|
||||
msgstr ""
|
||||
|
||||
#: includes/fields/class-mt-field-upload-orders.php:40
|
||||
msgid ""
|
||||
"Upload orders to <a href=\"https://thepluginpros.com/out/taxjar\" "
|
||||
"target=\"_blank\">TaxJar</a> for reporting"
|
||||
msgstr ""
|
||||
|
||||
#: includes/fields/class-mt-field-upload-orders.php:51
|
||||
msgid ""
|
||||
"<span style='color: #ff0000;'>There was an error retrieving your keys. "
|
||||
"Please disable and re-enable reporting.</span>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/fields/class-mt-field-upload-orders.php:103
|
||||
msgid ""
|
||||
"There was an error linking this store to your TaxJar account. Please "
|
||||
"contact support@thepluginpros.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/fields/class-mt-field-upload-orders.php:114
|
||||
msgid ""
|
||||
"There was an error unlinking this store from your TaxJar account. Please "
|
||||
"contact support@thepluginpros.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/class-mt-integration-wc-vendors.php:100
|
||||
msgid "Inherited from your store settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/class-mt-integration-wc-vendors.php:116
|
||||
msgid "Inherited from your shipping settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/class-mt-integration-wc-vendors.php:297
|
||||
msgid "Enter a complete store address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/class-mt-integration-wc-vendors.php:310
|
||||
msgid "Review your tax settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/class-mt-wc-vendors-admin.php:43
|
||||
#: includes/integrations/wc-vendors/views/html-admin-tax-settings-page.php:15
|
||||
msgid "Tax Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/class-mt-wc-vendors-admin.php:44
|
||||
#: includes/integrations/wc-vendors/class-mt-wc-vendors-dashboard.php:66
|
||||
msgid "Taxes"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/class-mt-wc-vendors-admin.php:67
|
||||
msgid "Settings saved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/class-mt-wc-vendors-dashboard.php:149
|
||||
msgid ""
|
||||
"A custom product variation template is in use. Tax category assignment "
|
||||
"won't work for variations."
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/class-mt-wc-vendors-dashboard.php:231
|
||||
msgid "Store Country"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/class-mt-wc-vendors-dashboard.php:247
|
||||
msgid "Store Address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/class-mt-wc-vendors-dashboard.php:248
|
||||
msgid "Street Address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/class-mt-wc-vendors-dashboard.php:260
|
||||
msgid "Apartment, unit, suite etc."
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/class-mt-wc-vendors-dashboard.php:272
|
||||
#: includes/integrations/wc-vendors/class-mt-wc-vendors-dashboard.php:273
|
||||
msgid "City / Town"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/class-mt-wc-vendors-dashboard.php:285
|
||||
#: includes/integrations/wc-vendors/class-mt-wc-vendors-dashboard.php:286
|
||||
msgid "State / County"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/class-mt-wc-vendors-dashboard.php:298
|
||||
#: includes/integrations/wc-vendors/class-mt-wc-vendors-dashboard.php:299
|
||||
msgid "Postcode / Zip"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/class-mt-wc-vendors-settings-manager.php:107
|
||||
msgid "This field is disabled while Marketplace Taxes is active."
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/html-field-tax-category.php:19
|
||||
msgid "Tax Category"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/html-field-tax-category.php:23
|
||||
msgid "Loading..."
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/html-field-tax-category.php:41
|
||||
msgid ""
|
||||
"Used for products that are either exempt from tax in some jurisdictions or "
|
||||
"are taxed at reduced rates."
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/notices/html-notice-update.php:22
|
||||
msgid "Your vendor orders need to be updated."
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/notices/html-notice-update.php:24
|
||||
msgid ""
|
||||
"Marketplace Taxes needs to update your database to ensure that transaction "
|
||||
"data imported into TaxJar is accurate."
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/notices/html-notice-update.php:30
|
||||
msgid "Run the update"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/notices/html-notice-update.php:42
|
||||
msgid ""
|
||||
"It is strongly recommended that you backup your database before proceeding. "
|
||||
"Are you sure you wish to run the updater now?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/notices/html-notice-update.php:50
|
||||
msgid ""
|
||||
"Are you sure you want to skip the database update? Your vendors will only "
|
||||
"be able to import new orders into TaxJar."
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/notices/html-notice-updated.php:21
|
||||
msgid ""
|
||||
"Marketplace Taxes data update complete. The updated orders will be imported "
|
||||
"into TaxJar within 24 hours."
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/notices/html-notice-updating.php:17
|
||||
msgid "Marketplace Taxes data update"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/notices/html-notice-updating.php:18
|
||||
msgid "Your vendor sub orders are being updated in the background. "
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/notices/html-notice-updating.php:21
|
||||
msgid "Taking a while? Click here to run it now."
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:49
|
||||
msgid "Any"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:73
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:96
|
||||
msgid "SKU"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:124
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:130
|
||||
msgid "Downloadable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:136
|
||||
msgid "Virtual"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:143
|
||||
msgid "Manage stock?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:163
|
||||
msgid "Regular Price:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:165
|
||||
msgid "Variation price (required)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:173
|
||||
msgid "Sale Price:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:177
|
||||
msgid "Schedule"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:186
|
||||
msgid "Sale start date:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:195
|
||||
msgid "Sale end date:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:199
|
||||
msgid "Cancel schedule"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:213
|
||||
msgid "Stock Qty:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:223
|
||||
msgid "Allow Backorders?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:243
|
||||
msgid "Stock status"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:268
|
||||
msgid "Weight"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:282
|
||||
msgid "Dimensions (L×W×H)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:317
|
||||
msgid "Shipping class:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:347
|
||||
msgid "Tax class:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:370
|
||||
msgid "Variation Description:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:387
|
||||
msgid "Downloadable Files"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:392
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:393
|
||||
msgid "File URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:433
|
||||
msgid "Add File"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:449
|
||||
msgid "Download Limit:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:451
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:461
|
||||
msgid "Unlimited"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:459
|
||||
msgid "Download Expiry:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/views/html-field-address-table.php:27
|
||||
msgid "Address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/views/html-field-address-table.php:28
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#: includes/views/html-field-address-table.php:29
|
||||
#: includes/views/html-field-address-table.php:84
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#: includes/views/html-field-address-table.php:30
|
||||
#: includes/views/html-field-address-table.php:90
|
||||
msgid "City"
|
||||
msgstr ""
|
||||
|
||||
#: includes/views/html-field-address-table.php:31
|
||||
#: includes/views/html-field-address-table.php:95
|
||||
msgid "Postcode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/views/html-field-address-table.php:40
|
||||
msgid "Add Address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/views/html-field-address-table.php:57
|
||||
msgid "No addresses entered."
|
||||
msgstr ""
|
||||
|
||||
#: includes/views/html-field-address-table.php:58
|
||||
msgid "Add one."
|
||||
msgstr ""
|
||||
|
||||
#: includes/views/html-field-address-table.php:69
|
||||
msgid "Street address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/views/html-field-address-table.php:141
|
||||
msgid "At least one business address is required."
|
||||
msgstr ""
|
||||
|
||||
#: marketplace-taxes.php:57
|
||||
msgid "WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://github.com/ThePluginPros/marketplace-taxes"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Connect your WooCommerce based marketplace to <a "
|
||||
"href=\"https://thepluginpros.com/out/taxjar\" target=\"_blank\">TaxJar</a> "
|
||||
"to automate sales tax calculations, reporting, and filing."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "The Plugin Pros"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://thepluginpros.com"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-assets.php:100
|
||||
msgctxt "enhanced select"
|
||||
msgid "One result is available, press enter to select it."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-assets.php:105
|
||||
msgctxt "enhanced select"
|
||||
msgid "%qty% results are available, use up and down arrow keys to navigate."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-assets.php:110
|
||||
msgctxt "enhanced select"
|
||||
msgid "No matches found"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-assets.php:115
|
||||
msgctxt "enhanced select"
|
||||
msgid "Loading failed"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-assets.php:120
|
||||
msgctxt "enhanced select"
|
||||
msgid "Please enter 1 or more characters"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-assets.php:125
|
||||
msgctxt "enhanced select"
|
||||
msgid "Please enter %qty% or more characters"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-assets.php:130
|
||||
msgctxt "enhanced select"
|
||||
msgid "Please delete 1 character"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-assets.php:135
|
||||
msgctxt "enhanced select"
|
||||
msgid "Please delete %qty% characters"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-assets.php:140
|
||||
msgctxt "enhanced select"
|
||||
msgid "You can only select 1 item"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-assets.php:145
|
||||
msgctxt "enhanced select"
|
||||
msgid "You can only select %qty% items"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-assets.php:150
|
||||
msgctxt "enhanced select"
|
||||
msgid "Loading more results…"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-mt-assets.php:155
|
||||
msgctxt "enhanced select"
|
||||
msgid "Searching…"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:188
|
||||
msgctxt "placeholder"
|
||||
msgid "From…"
|
||||
msgstr ""
|
||||
|
||||
#: includes/integrations/wc-vendors/views/partials/wcvendors-pro-product-variation.php:197
|
||||
msgctxt "placeholder"
|
||||
msgid "To…"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,34 @@
|
||||
# Copyright (C) 2018 Menu Item Duplicator
|
||||
# This file is distributed under the same license as the Menu Item Duplicator package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Menu Item Duplicator 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/menu-item-"
|
||||
"duplicator\n"
|
||||
"POT-Creation-Date: 2018-10-14 22:02:33+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: menu-item-duplicator.php:49
|
||||
msgid "Duplicate"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Menu Item Duplicator"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Enable duplication of menu items (also duplicates sub-elements)"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Mathieu Hays"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://mathieuhays.co.uk"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,35 @@
|
||||
# Copyright (C) 2018 JSM's Non-Breaking Space for French Content
|
||||
# This file is distributed under the same license as the JSM's Non-Breaking Space for French Content package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: JSM's Non-Breaking Space for French Content 1.9.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/nbsp-french\n"
|
||||
"POT-Creation-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "JSM's Non-Breaking Space for French Content"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://surniaulula.com/extend/plugins/nbsp-french/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Adds a non-breaking space between words and punctuation marks to avoid "
|
||||
"inappropriate line-breaks in French."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "JS Morisset"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://surniaulula.com/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"name": "bccampus/pressbooks-openstax-import",
|
||||
"description": "Imports OpenStax zip files into Pressbooks",
|
||||
"type": "wordpress-plugin",
|
||||
"version": "1.3.0",
|
||||
"homepage": "https://github.com/bccampus/pressbooks-openstax-import",
|
||||
"license": "GPL-3.0+",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Brad Payne",
|
||||
"homepage": "https://github.com/bdolor"
|
||||
},
|
||||
{
|
||||
"name": "aparedes",
|
||||
"homepage": "https://github.com/alexpflores"
|
||||
}
|
||||
],
|
||||
"config": {
|
||||
"platform": {
|
||||
"php": "7.1"
|
||||
}
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.1",
|
||||
"ext-libxml": "*",
|
||||
"ext-xsl": "*",
|
||||
"composer/installers": "~1.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^5.7",
|
||||
"humanmade/coding-standards": "^0.5.0"
|
||||
},
|
||||
"scripts": {
|
||||
"test": [
|
||||
"vendor/bin/phpunit --configuration phpunit.xml",
|
||||
"@standards"
|
||||
],
|
||||
"standards": [
|
||||
"vendor/bin/phpcs --standard=phpcs.ruleset.xml *.php inc/"
|
||||
]
|
||||
}
|
||||
}
|
||||
@@ -212,6 +212,11 @@
|
||||
<link rel="stylesheet" id="ad-short-css" href="http://wp.lab/wp-content/plugins/ad-short/ad_short.css?ver=2.0.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- adbutler -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/adbutler/js/adbutler_hb_init.js?ver=1.18"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/adbutler/js/adbutler_hb_final.js?ver=1.18"></script>
|
||||
|
||||
|
||||
<!-- add-anchor-links -->
|
||||
<link rel="stylesheet" id="add-anchor-links-style-css" href="http://wp.lab/wp-content/plugins/add-anchor-links/assets/css/add-anchor-links.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
@@ -458,6 +463,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ajaxify-faqtastic/js/ajaxify-faqtastic.js?ver=1.5"></script>
|
||||
|
||||
|
||||
<!-- ak-menu-icons-lite -->
|
||||
<link rel="stylesheet" id="wpmi-font-awesome-style-css" href="http://wp.lab/wp-content/plugins/ak-menu-icons-lite/css/font-awesome.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- aklamator-popup -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/aklamator-popup/assets/js/popup.js?ver=1.0"></script>
|
||||
|
||||
@@ -740,6 +749,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/arrange-multisite-order/js/amo.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- art-decoration-shortcode -->
|
||||
<link rel="stylesheet" id="tds-style-frontend-css" href="http://wp.lab/wp-content/plugins/art-decoration-shortcode/assets/css/style-front.min.css?ver=1.5.2" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- art-picture-gallery -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/art-picture-gallery/assets/js/masonry.pkgd.min.js?ver=1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/art-picture-gallery/assets/js/imagesloaded.pkgd.min.js?ver=1.0"></script>
|
||||
@@ -1820,6 +1833,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/case-study/include/js/custom-owlCarousel-detail.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- catch-breadcrumb -->
|
||||
<link rel="stylesheet" id="catch-breadcrumb-css" href="http://wp.lab/wp-content/plugins/catch-breadcrumb/public/css/catch-breadcrumb-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/catch-breadcrumb/public/js/catch-breadcrumb-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- catch-infinite-scroll -->
|
||||
<link rel="stylesheet" id="catch-infinite-scroll-css" href="http://wp.lab/wp-content/plugins/catch-infinite-scroll/public/css/catch-infinite-scroll-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/catch-infinite-scroll/public/js/catch-infinite-scroll-public.js?ver=1.0.0"></script>
|
||||
@@ -2536,6 +2554,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cornerstone/js/lib.core.js?ver=0.7.5"></script>
|
||||
|
||||
|
||||
<!-- cosmic-carousel -->
|
||||
<link rel="stylesheet" id="cosmic-css" href="http://wp.lab/wp-content/plugins/cosmic-carousel/public/css/cosmic-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cosmic-carousel/public/js/cosmic-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- coupon-reveal-button -->
|
||||
<link rel="stylesheet" id="spbcta-stylesheet-front-css" href="http://wp.lab/wp-content/plugins/coupon-reveal-button/css/spbcta-stylesheet-front.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/coupon-reveal-button/js/spbcta-nm.js?ver=1.0.0"></script>
|
||||
@@ -3216,6 +3239,11 @@
|
||||
<link rel="stylesheet" id="eu-cookies-bar-style-css" href="http://wp.lab/wp-content/plugins/eu-cookies-bar/css/eu-cookies-bar.css?ver=1.0.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- event-calendar-by-hg -->
|
||||
<link rel="stylesheet" id="ech-front-css-css" href="http://wp.lab/wp-content/plugins/event-calendar-by-hg/assets/css/front.min.css?v=1.0.2&ver=4.9.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/event-calendar-by-hg/assets/js/front.min.js?v=1.0.2&ver=4.9.1"></script>
|
||||
|
||||
|
||||
<!-- event-calendar-wd -->
|
||||
<link rel="stylesheet" id="ecwd-popup-style-css" href="http://wp.lab/wp-content/plugins/event-calendar-wd/css/ecwd_popup.css?ver=1.1.8_5a27b7015a44d" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="ecwd_font-awesome-css" href="http://wp.lab/wp-content/plugins/event-calendar-wd/css/font-awesome/font-awesome.css?ver=1.1.8_5a27b7015a44d" type="text/css" media="all">
|
||||
@@ -4390,6 +4418,15 @@
|
||||
<link rel="stylesheet" id="h7tabs_animate.min-css" href="http://wp.lab/wp-content/plugins/h7-tabs/assets/css/animate.min.css?ver=7.0.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- halloween-woocommerce -->
|
||||
<link rel="stylesheet" id="halloweenstyles-css" href="http://wp.lab/wp-content/plugins/halloween-woocommerce/styles.css?ver=0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/halloween-woocommerce/assets/js/cookie.js?ver=0.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/halloween-woocommerce/main.js?ver=0.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/halloween-woocommerce/assets/js/jquery.vibrate.js?ver=0.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/halloween-woocommerce/assets/js/vibrationoptions.js?ver=0.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/halloween-woocommerce/assets/js/random-image.js?ver=0.2"></script>
|
||||
|
||||
|
||||
<!-- hammy -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hammy/js/jquery-picture.js?ver=1.5.1"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hammy/js/hammy.js?ver=1.5.1"></script>
|
||||
@@ -4513,6 +4550,21 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hints/_inc/hints.js?ver=1.0aa"></script>
|
||||
|
||||
|
||||
<!-- hivepress -->
|
||||
<link rel="stylesheet" id="fontawesome-css" href="http://wp.lab/wp-content/plugins/hivepress/assets/css/fontawesome/fontawesome.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="fontawesome-solid-css" href="http://wp.lab/wp-content/plugins/hivepress/assets/css/fontawesome/solid.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="fancybox-css" href="http://wp.lab/wp-content/plugins/hivepress/assets/css/fancybox.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="slick-css" href="http://wp.lab/wp-content/plugins/hivepress/assets/css/slick.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="hp-grid-css" href="http://wp.lab/wp-content/plugins/hivepress/assets/css/grid.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="hp-core-css" href="http://wp.lab/wp-content/plugins/hivepress/assets/css/frontend.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hivepress/assets/js/jquery.iframe-transport.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hivepress/assets/js/jquery.fileupload.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hivepress/assets/js/jquery.fancybox.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hivepress/assets/js/slick.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hivepress/assets/js/jquery.sticky-sidebar.min.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/hivepress/assets/js/frontend.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- holler-box -->
|
||||
<link rel="stylesheet" id="holler-css-css" href="http://wp.lab/wp-content/plugins/holler-box/assets/css/holler-frontend.min.css?ver=1.3.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/holler-box/assets/js/holler-frontend.min.js?ver=1.3.1"></script>
|
||||
@@ -4625,6 +4677,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ico-list-widget/assets/js/elw.front.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- iconpress-lite -->
|
||||
<link rel="stylesheet" id="iconpress-css-css" href="http://wp.lab/wp-content/plugins/iconpress-lite/assets/css/iconpress.css?ver=1.4.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="iconpress-panel-css-css" href="http://wp.lab/wp-content/plugins/iconpress-lite/assets/css/panel.css?ver=1.4.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/iconpress-lite/assets/js/iconpress.min.js?ver=1.4.0"></script>
|
||||
|
||||
|
||||
<!-- idataffiliates -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/idataffiliates/js/app/ta.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -4643,6 +4701,17 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ie-compatibility-mode-checker/public/js/wp-ie-check-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- ifthengive -->
|
||||
<link rel="stylesheet" id="ifthengivepublicDataTablecss-css" href="http://wp.lab/wp-content/plugins/ifthengive/public/css/datatables/jquery.dataTables.css?ver=0.1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="ifthengivepublicDataTable-css" href="http://wp.lab/wp-content/plugins/ifthengive/public/css/datatables/dataTables.responsive.css?ver=0.1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="ifthengivepublic_alertify_css-css" href="http://wp.lab/wp-content/plugins/ifthengive/includes/css/alertify/alertify.css?ver=0.1.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="ifthengive-css" href="http://wp.lab/wp-content/plugins/ifthengive/public/css/ifthengive-public.css?ver=0.1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ifthengive/includes/css/alertify/alertify.min.js?ver=0.1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ifthengive/public/js/ifthengive-public.js?ver=0.1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ifthengive/public/js/datatables/jquery.dataTables.min.js?ver=0.1.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ifthengive/public/js/datatables/dataTables.responsive.js?ver=0.1.0"></script>
|
||||
|
||||
|
||||
<!-- ifttt-instagram-gallery -->
|
||||
<link rel="stylesheet" id="ifttt-instagram-gallery-plugin-styles-css" href="http://wp.lab/wp-content/plugins/ifttt-instagram-gallery/public/assets/css/public.css?ver=1.0.5" type="text/css" media="all">
|
||||
|
||||
@@ -5128,6 +5197,7 @@
|
||||
<link rel="stylesheet" id="wpkqcg-style-css" href="http://wp.lab/wp-content/plugins/kaya-qr-code-generator/css/wpkqcg-pkg.css?ver=1.0.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/kaya-qr-code-generator/assets/qrcode.js?ver=1.0.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/kaya-qr-code-generator/js/wpkqcg-pkg.js?ver=1.0.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/kaya-qr-code-generator/assets/qrcode-v2.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- kb-support -->
|
||||
@@ -5341,6 +5411,20 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lead-magnets-by-contentupgrademe/public/js/contentupgrade-me.js?ver=1.0.4"></script>
|
||||
|
||||
|
||||
<!-- leader -->
|
||||
<link rel="stylesheet" id="leader-css" href="http://wp.lab/wp-content/plugins/leader/public/css/leader-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/leader/public/js/leader-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- leadgeneration -->
|
||||
<link rel="stylesheet" id="lg-fontawesome-css" href="http://wp.lab/wp-content/plugins/leadgeneration/assets/vendors/fontawesome/css/fontawesome-all.min.css?ver=1.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- leadkit-pro -->
|
||||
<link rel="stylesheet" id="leadkitpro-css" href="http://wp.lab/wp-content/plugins/leadkit-pro/public/css/leadkitpro-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/leadkit-pro/public/js/leadkitpro-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- leaflet-map -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/leaflet-map/scripts/construct-leaflet-map.min.js?ver=2.9.1"></script>
|
||||
|
||||
@@ -5465,6 +5549,7 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/limelight-storefront/includes/assets/limelight-traffic-attribution.min.js?ver=1.1.3"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/limelight-storefront/includes/assets/main.js?ver=1.1.3"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/limelight-storefront/classes/assets/limelight-traffic-attribution.min.js?ver=1.1.3"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/limelight-storefront/assets/js/limelight-traffic-attribution.min.js?ver=1.1.3"></script>
|
||||
|
||||
|
||||
<!-- link-designer-lite -->
|
||||
@@ -5533,6 +5618,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/livemesh-siteorigin-widgets/assets/js/lsow-frontend.min.js?ver=1.6.1"></script>
|
||||
|
||||
|
||||
<!-- livestream-notice -->
|
||||
<link rel="stylesheet" id="livestreamNotice-css" href="http://wp.lab/wp-content/plugins/livestream-notice/livestream-notice.css?ver=1.1.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/livestream-notice/livestream-notice.js?ver=1.1.2"></script>
|
||||
|
||||
|
||||
<!-- loanthru-calculator -->
|
||||
<link rel="stylesheet" id="loanthru_calculator-css" href="http://wp.lab/wp-content/plugins/loanthru-calculator/public/css/loanthru_calculator-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/loanthru-calculator/public/js/loanthru_calculator-public.js?ver=1.0.0"></script>
|
||||
@@ -5576,6 +5666,12 @@
|
||||
<!-- logic-hop -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/logic-hop/public/js/ajax-methods.min.js?ver=2.1.9"></script>
|
||||
<link rel="stylesheet" id="logichop-display-css" href="http://wp.lab/wp-content/plugins/logic-hop/public/css/display.css?ver=2.1.9" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="logichop-display-css" href="http://wp.lab/wp-content/plugins/logic-hop/public/css/display.min.css?ver=2.1.9" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- login-and-logout-redirect -->
|
||||
<link rel="stylesheet" id="login-and-logout-redirect-css" href="http://wp.lab/wp-content/plugins/login-and-logout-redirect/public/css/login-and-logout-redirect-public.css?ver=1.0.4" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/login-and-logout-redirect/public/js/login-and-logout-redirect-public.js?ver=1.0.4"></script>
|
||||
|
||||
|
||||
<!-- login-ip-restriction -->
|
||||
@@ -5699,6 +5795,11 @@
|
||||
<link rel="stylesheet" id="lucidlms-main-css" href="//wp.lab/wp-content/plugins/lucidlms/assets/css/frontend/main.css?ver=1.0.5" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- luckywp-cookie-notice-gdpr -->
|
||||
<link rel="stylesheet" id="lwpcng-main-css" href="http://wp.lab/wp-content/plugins/luckywp-cookie-notice-gdpr/front/assets/main.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/luckywp-cookie-notice-gdpr/front/assets/main.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- lvl99-omny-embed -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/lvl99-omny-embed/js/lvl99-omny-embed.js?ver=0.1.0"></script>
|
||||
|
||||
@@ -5793,6 +5894,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/magic-slider/bxslider/jquery.bxslider.min.js?ver=1.3"></script>
|
||||
|
||||
|
||||
<!-- mailcamp -->
|
||||
<link rel="stylesheet" id="mailcamp-css" href="http://wp.lab/wp-content/plugins/mailcamp/public/css/mailcamp-public.css?ver=1.3.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mailcamp/public/js/mailcamp-public.js?ver=1.3.1"></script>
|
||||
|
||||
|
||||
<!-- mailchimp-subscribe-widget -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mailchimp-subscribe-widget/js/mcsw.js?ver=0.9"></script>
|
||||
|
||||
@@ -5903,6 +6009,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/massive-visual-builder-page-layout-builder/assets/rating/rating.js?ver=1.0"></script>
|
||||
|
||||
|
||||
<!-- mastalab-comments -->
|
||||
<link rel="stylesheet" id="mastalab-comments-css" href="http://wp.lab/wp-content/plugins/mastalab-comments/public/css/mastalab_comments-public.css?ver=1.0.10" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mastalab-comments/public/js/mastalab_comments-public.js?ver=1.0.10"></script>
|
||||
|
||||
|
||||
<!-- master-slider -->
|
||||
<link rel="stylesheet" id="msl-main-css" href="http://wp.lab/wp-content/plugins/master-slider/public/assets/css/masterslider.main.css?ver=3.4.1" type="text/css" media="all">
|
||||
|
||||
@@ -6493,6 +6604,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/nepali-calendar/assets/js/frontend/nepali-calendar-frontend.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- neptune-business -->
|
||||
<link rel="stylesheet" id="neptune-busines-css" href="http://wp.lab/wp-content/plugins/neptune-business/public/css/neptune-busines-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/neptune-business/public/js/neptune-busines-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- nerd-wp -->
|
||||
<link rel="stylesheet" id="nerd-wp-css" href="http://wp.lab/wp-content/plugins/nerd-wp/public/css/nerd-wp-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/nerd-wp/public/js/nerd-wp-public.js?ver=1.0.0"></script>
|
||||
@@ -6747,6 +6863,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/olevmedia-shortcodes/assets/js/shortcodes.js?ver=1.1.9"></script>
|
||||
|
||||
|
||||
<!-- onc-master -->
|
||||
<link rel="stylesheet" id="onc_master-css" href="http://wp.lab/wp-content/plugins/onc-master/public/css/onc_master-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/onc-master/public/js/onc_master-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- one-thousand-nine-hundred-and-ninety-nineify -->
|
||||
<link rel="stylesheet" id="oneK99ify-css" href="http://wp.lab/wp-content/plugins/one-thousand-nine-hundred-and-ninety-nineify/assets/css/oneK99ify.min.css?ver=0.0.3" type="text/css" media="screen">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/one-thousand-nine-hundred-and-ninety-nineify/assets/js/oneK99ify.min.js?ver=0.0.3"></script>
|
||||
@@ -6857,6 +6978,13 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/oscar-hotel-booking-engine/assets/js/ohbe-search-ui.js?ver=1.1.1"></script>
|
||||
|
||||
|
||||
<!-- osmapper -->
|
||||
<link rel="stylesheet" id="ba_map_renderer-css" href="http://wp.lab/wp-content/plugins/osmapper/assets/css/ba_map_renderer.css?ver=1.3.2" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="ba_map_styles-css" href="http://wp.lab/wp-content/plugins/osmapper/assets/css/ba_map_styles.css?ver=1.3.2" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/osmapper/assets/js/leaflet.js?ver=1.3.2"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/osmapper/assets/js/ba_map_renderer.js?ver=1.3.2"></script>
|
||||
|
||||
|
||||
<!-- ot-flatsome-vertical-menu -->
|
||||
<link rel="stylesheet" id="ot-vertical-menu-css" href="http://wp.lab/wp-content/plugins/ot-flatsome-vertical-menu/assets/css/ot-vertical-menu.css?ver=1.1.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ot-flatsome-vertical-menu/assets/js/ot-vertical-menu.js?ver=1.1.0"></script>
|
||||
@@ -6897,6 +7025,23 @@
|
||||
<link rel="stylesheet" id="pablo-career-icons-css" href="http://wp.lab/wp-content/plugins/pablo-career/src/Plugin/Helper/../../../public/css/dashicons.min.css?ver=1.0.3" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- page-builder-by-azexo -->
|
||||
<link rel="stylesheet" id="swiper-css" href="http://wp.lab/wp-content/plugins/page-builder-by-azexo/css/swiper.css?ver=1.27.84" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="animate-css" href="http://wp.lab/wp-content/plugins/page-builder-by-azexo/css/animate.css?ver=1.27.84" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="magnific-popup-css" href="http://wp.lab/wp-content/plugins/page-builder-by-azexo/css/magnific-popup.css?ver=1.27.84" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="azh_frontend-css" href="http://wp.lab/wp-content/plugins/page-builder-by-azexo/css/frontend.css?ver=1.27.84" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/isotope.pkgd.js?ver=1.27.84"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/jquery.waypoints.js?ver=1.27.84"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/jquery.countdown.js?ver=1.27.84"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/jquery.maskedinput.js?ver=1.27.84"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/swiper.js?ver=1.27.84"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/jquery.magnific-popup.js?ver=1.27.84"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/scrollReveal.js?ver=1.27.84"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/parallax.js?ver=1.27.84"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/rellax.js?ver=1.27.84"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-builder-by-azexo/js/frontend.js?ver=1.27.84"></script>
|
||||
|
||||
|
||||
<!-- page-builder-sandwich -->
|
||||
<link rel="stylesheet" id="PageBuilderSandwich-css" href="http://wp.lab/wp-content/plugins/page-builder-sandwich/page_builder_sandwich/css/style.min.css?ver=4.4.3" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/page-builder-sandwich/page_builder_sandwich/js/min/frontend-min.js?ver=4.4.3"></script>
|
||||
@@ -7299,6 +7444,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/portfolio-gallery-by-ims/public/js/ims-portfolio-public.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- poshtiban -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/poshtiban/assets/js/poshtiban-public.js?ver=1.1.0"></script>
|
||||
|
||||
|
||||
<!-- post-and-page-builder -->
|
||||
<link rel="stylesheet" id="boldgrid-fe-css" href="http://wp.lab/wp-content/plugins/post-and-page-builder/assets/css/editor-fe.min.css?ver=1.6.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/post-and-page-builder/assets/js/jquery-stellar/jquery.stellar.js?ver=1.6.1"></script>
|
||||
@@ -7330,6 +7479,10 @@
|
||||
<link rel="stylesheet" id="pcs-styles-css" href="http://wp.lab/wp-content/plugins/post-content-shortcodes/styles/default-styles.css?ver=1.0" type="text/css" media="screen">
|
||||
|
||||
|
||||
<!-- post-deadlines -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/post-deadlines/assets/script.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- post-display -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/post-display/js/owl.carousel.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -8401,6 +8554,11 @@
|
||||
<link rel="stylesheet" id="sanpop-public-style-css" href="http://wp.lab/wp-content/plugins/search-and-navigation-popup/assets/css/sanpop-public-style.css?ver=1.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- search-cloud-one -->
|
||||
<link rel="stylesheet" id="sc1-search-css" href="http://wp.lab/wp-content/plugins/search-cloud-one/public/css/sc1-search-public.css?ver=2.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/search-cloud-one/public/js/sc1-search-public.js?ver=2.0.0"></script>
|
||||
|
||||
|
||||
<!-- search-google -->
|
||||
<link rel="stylesheet" id="search-google-style-css" href="http://wp.lab/wp-content/plugins/search-google/css/search-google.css?ver=1.9" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/search-google/js/search-google.js?ver=1.9"></script>
|
||||
@@ -9049,6 +9207,7 @@
|
||||
<!-- smart-overlay -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/smart-overlay/smart-overlay.js?ver=0.7"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/smart-overlay/assets/smart-overlay.js?ver=0.7"></script>
|
||||
<link rel="stylesheet" id="smart-overlay-css" href="http://wp.lab/wp-content/plugins/smart-overlay/assets/smart-overlay.css?ver=0.7" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- smart-post-like -->
|
||||
@@ -10057,6 +10216,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ttt-devices/js/ttt-devices.js?ver=0.4"></script>
|
||||
|
||||
|
||||
<!-- ttv-easy-embed-player -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/ttv-easy-embed-player/public/js/twitch-player-public.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- turbo-widgets -->
|
||||
<link rel="stylesheet" id="turbo-widgets-css" href="http://wp.lab/wp-content/plugins/turbo-widgets/public/css/turbo-widgets-public.css?ver=2.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/turbo-widgets/public/js/turbo-widgets-public.js?ver=2.0.0"></script>
|
||||
@@ -10443,6 +10606,11 @@
|
||||
<link rel="stylesheet" id="very-simple-slider-style-css" href="http://wp.lab/wp-content/plugins/very-simple-slider/css/very-simple-slider.css?ver=1.0" type="text/css" media="screen">
|
||||
|
||||
|
||||
<!-- vessel -->
|
||||
<link rel="stylesheet" id="vessel_campaign_style-css" href="http://wp.lab/wp-content/plugins/vessel/css/vessel.css?ver=0.7.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vessel/js/vessel.js?ver=0.7.1"></script>
|
||||
|
||||
|
||||
<!-- video-background -->
|
||||
<link rel="stylesheet" id="vidbg-frontend-style-css" href="http://wp.lab/wp-content/plugins/video-background/css/pushlabs-vidbg.css?ver=2.6.3" type="text/css" media="all">
|
||||
|
||||
@@ -10524,6 +10692,12 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/voice-search/js/voice-search.min%20.js?ver=1.2.1"></script>
|
||||
|
||||
|
||||
<!-- vowels-contact-form-with-drag-and-drop -->
|
||||
<link rel="stylesheet" id="vowels-css" href="http://wp.lab/wp-content/plugins/vowels-contact-form-with-drag-and-drop/css/styles.css?ver=1.0.4" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vowels-contact-form-with-drag-and-drop/js/vowels.js?ver=1.0.4"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/vowels-contact-form-with-drag-and-drop/js/jquery.vowels.js?ver=1.0.4"></script>
|
||||
|
||||
|
||||
<!-- voxpress -->
|
||||
<link rel="stylesheet" id="ubivox-style-public-css" href="http://wp.lab/wp-content/plugins/voxpress/styles/ubivox.public.css?ver=1.1.5" type="text/css" media="">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/voxpress/scripts/ubivox.public.js?ver=1.1.5"></script>
|
||||
@@ -10941,6 +11115,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-added-to-cart-notification/assets/js/frontend.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- woo-ajax-loginregister -->
|
||||
<link rel="stylesheet" id="zorem-ajax-css" href="http://wp.lab/wp-content/plugins/woo-ajax-loginregister/css/style.css?ver=1.1" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- woo-align-buttons -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-align-buttons/public/js/wooalign-public.js?ver=3.1.1"></script>
|
||||
|
||||
@@ -11216,6 +11394,11 @@
|
||||
<link rel="stylesheet" id="wordpresscom-stats-smiley-remover-css" href="http://wp.lab/wp-content/plugins/wordpresscom-stats-smiley-remover/css/wordpresscom-stats-smiley-remover.css?ver=15.01" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- workshop-butler -->
|
||||
<link rel="stylesheet" id="wsb-themes-css" href="http://wp.lab/wp-content/plugins/workshop-butler/public/css/styles.1.0.2.min.css?ver=2.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wsb-fontawesome-styles-css" href="http://wp.lab/wp-content/plugins/workshop-butler/public/css/fontawesome-all.min.css?ver=2.0.0" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- world-flags -->
|
||||
<link rel="stylesheet" id="world_flags_css-css" href="http://wp.lab/wp-content/plugins/world-flags/css/wf.css?ver=1.1" type="text/css" media="screen">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/world-flags/js/wf.jq.js?ver=1.1"></script>
|
||||
@@ -11428,6 +11611,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-cfg-leaderboard/js/jsgrid/jsgrid.min.js?ver=1.3.1"></script>
|
||||
|
||||
|
||||
<!-- wp-charts-and-graphs -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-charts-and-graphs/assets/js/pantherius_wp_charts.js?ver=1.0.4"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-charts-and-graphs/assets/js/pantherius_wp_charts_init.js?ver=1.0.4"></script>
|
||||
|
||||
|
||||
<!-- wp-cirrus -->
|
||||
<link rel="stylesheet" id="wpcirrus-cloudStyle-css" href="http://wp.lab/wp-content/plugins/wp-cirrus/cirrusCloud.css?ver=0.6.11" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-cirrus/wp_cirrus_gwt/wp_cirrus_gwt.nocache.js?ver=0.6.11"></script>
|
||||
@@ -11666,6 +11854,17 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-facebook-group/public/js/kankoz-fg-promoter-public.js?ver=1.0.2"></script>
|
||||
|
||||
|
||||
<!-- wp-facebook-review-showcase-lite -->
|
||||
<link rel="stylesheet" id="wpfrsl-frontend-css-css" href="http://wp.lab/wp-content/plugins/wp-facebook-review-showcase-lite/assets/frontend/css/frontend-style.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wpfrsl-fontawesome-style-css" href="http://wp.lab/wp-content/plugins/wp-facebook-review-showcase-lite/assets/frontend/css/font-awesome/font-awesome.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wpfrsl-elegant-icons-style-css" href="http://wp.lab/wp-content/plugins/wp-facebook-review-showcase-lite/assets/frontend/css/elegant-icons/elegant-icons.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wpfrsl-flaticons-star-style-css" href="http://wp.lab/wp-content/plugins/wp-facebook-review-showcase-lite/assets/frontend/css/flat-star-icon/flaticon.css?ver=1.0.0" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wpfrsl-bxslider-style-css" href="http://wp.lab/wp-content/plugins/wp-facebook-review-showcase-lite/assets/frontend/css/jquery.bxslider.css?ver=1.0.0" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-facebook-review-showcase-lite/assets/frontend/js/jquery.bxslider.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-facebook-review-showcase-lite/assets/frontend/js/wow.js?ver=1.0.0"></script>
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-facebook-review-showcase-lite/assets/frontend/js/frontend-script.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-facebook-reviews -->
|
||||
<link rel="stylesheet" id="wp-review-slider-pro-public_template1-css" href="http://wp.lab/wp-content/plugins/wp-facebook-reviews/public/css/wprev-public_template1.css?ver=3.4" type="text/css" media="all">
|
||||
<link rel="stylesheet" id="wprev_w3-css" href="http://wp.lab/wp-content/plugins/wp-facebook-reviews/public/css/wprev_w3.css?ver=3.4" type="text/css" media="all">
|
||||
@@ -11713,6 +11912,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-file-word-counter/public/js/wfwc-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-film-studio -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-film-studio/assets/js/popper.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-flexible-map -->
|
||||
<link rel="stylesheet" id="flxmap-css" href="http://wp.lab/wp-content/plugins/wp-flexible-map/css/styles.css?ver=1.12.1" type="text/css" media="all">
|
||||
|
||||
@@ -11860,6 +12063,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-image-zoooom/assets/js/image_zoom-init.js?ver=1.21"></script>
|
||||
|
||||
|
||||
<!-- wp-insurance -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-insurance/assets/js/popper.min.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wp-inventory-manager -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-inventory-manager/js/wpinventory.js?ver=1.5.7"></script>
|
||||
|
||||
@@ -12740,6 +12947,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp30-by-who/public/js/wp30-by-who-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wpac-like-system -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpac-like-system/assets/js/ajax.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wpaudio-mp3-player -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpaudio-mp3-player/wpaudio.min.js?ver=3.1"></script>
|
||||
|
||||
@@ -12849,6 +13060,10 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpmerchant/public/js/wpmerchant-public.js?ver=2.0.5"></script>
|
||||
|
||||
|
||||
<!-- wpmk-faq -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpmk-faq/assets/js/wpmk-script.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wpmk-portfolio -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wpmk-portfolio/assets/js/wpmk-script.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -12984,6 +13199,11 @@
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wt-advanced-woocommerce-report/public/js/wt-advanced-woocommerce-report-public.js?ver=1.0.0"></script>
|
||||
|
||||
|
||||
<!-- wt-pocket-navigator -->
|
||||
<link rel="stylesheet" id="wtpn-pocket-nav-css" href="http://wp.lab/wp-content/plugins/wt-pocket-navigator/public/css/wtpn-pocket-nav-public.css?ver=1.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wt-pocket-navigator/public/js/wtpn-pocket-nav-public.js?ver=1.0.1"></script>
|
||||
|
||||
|
||||
<!-- wt-smart-coupons-for-woocommerce -->
|
||||
<link rel="stylesheet" id="wt-smart-coupon-css" href="http://wp.lab/wp-content/plugins/wt-smart-coupons-for-woocommerce/public/css/wt-smart-coupon-public.css?ver=0.0.1" type="text/css" media="all">
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wt-smart-coupons-for-woocommerce/public/js/wt-smart-coupon-public.js?ver=0.0.1"></script>
|
||||
@@ -13188,3 +13408,161 @@
|
||||
<link rel="stylesheet" id="zwm-css" href="http://wp.lab/wp-content/plugins/zwm-zeumic-work-management/css/style.css?ver=1.11.8" type="text/css" media="all">
|
||||
|
||||
|
||||
<!-- activities -->
|
||||
<link rel="stylesheet" id="activities-public-css-css" href="http://wp.lab/wp-content/plugins/activities/public/css/activities-public.css?ver=1.0.2" type="text/css" media="all">
|
||||
<!-- activities -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/activities/public/js/activities-public.js?ver=1.0.2"></script>
|
||||
<!-- advanced-floating-sliding-panel -->
|
||||
<link rel="stylesheet" id="advanced-floating-sliding-panel-css" href="http://wp.lab/wp-content/plugins/advanced-floating-sliding-panel/public/css/advanced-floating-sliding-panel-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<!-- advanced-floating-sliding-panel -->
|
||||
<link rel="stylesheet" id="advanced-floating-sliding-panel-fontawesome-css" href="http://wp.lab/wp-content/plugins/advanced-floating-sliding-panel/public/css/font-awesome.css?ver=1.0.0" type="text/css" media="all">
|
||||
<!-- advanced-portfolio -->
|
||||
<link rel="stylesheet" id="advp-style-css" href="http://wp.lab/wp-content/plugins/advanced-portfolio/public/assets/css/style.css?ver=1.0.1" type="text/css" media="all">
|
||||
<!-- advanced-portfolio -->
|
||||
<link rel="stylesheet" id="advp-responsive-css" href="http://wp.lab/wp-content/plugins/advanced-portfolio/public/assets/css/responsive.css?ver=1.0.1" type="text/css" media="all">
|
||||
<!-- advanced-portfolio -->
|
||||
<link rel="stylesheet" id="advp-custom-css" href="http://wp.lab/wp-content/plugins/advanced-portfolio/public/assets/css/custom.css?ver=1.0.1" type="text/css" media="all">
|
||||
<!-- advanced-portfolio -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/advanced-portfolio/public/assets/js/isotope.min.js?ver=1.0.1"></script>
|
||||
<!-- advanced-portfolio -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/advanced-portfolio/public/assets/js/scripts.js?ver=1.0.1"></script>
|
||||
<!-- apostle-social-wall -->
|
||||
<link rel="stylesheet" id="apostle-social-wall-css" href="http://wp.lab/wp-content/plugins/apostle-social-wall/public/css/apostle-social-wall-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<!-- apostle-social-wall -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/apostle-social-wall/public/js/apostle-social-wall-public.js?ver=1.0.0"></script>
|
||||
<!-- apostle-social-wall -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/apostle-social-wall/public/js/apostle-social-wall-masonry.js?ver=1.0.0"></script>
|
||||
<!-- awesome-post-views-counter -->
|
||||
<link rel="stylesheet" id="post-views-counter-frontend-css" href="http://wp.lab/wp-content/plugins/awesome-post-views-counter/css/frontend.css?ver=1.0.0" type="text/css" media="all">
|
||||
<!-- birdseed -->
|
||||
<link rel="stylesheet" id="birdseed-css" href="http://wp.lab/wp-content/plugins/birdseed/public/css/birdseed-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<!-- birdseed -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/birdseed/public/js/birdseed-public.js?ver=1.0.0"></script>
|
||||
<!-- cool-responsive-mega-menu -->
|
||||
<link rel="stylesheet" id="cool-megamenu-css" href="http://wp.lab/wp-content/plugins/cool-responsive-mega-menu/assets/css/crmm.css?ver=1.1.3" type="text/css" media="all">
|
||||
<!-- cool-responsive-mega-menu -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cool-responsive-mega-menu/assets/js/crmm.js?ver=1.1.3"></script>
|
||||
<!-- cronycle-content -->
|
||||
<link rel="stylesheet" id="cronycle-content-css" href="http://wp.lab/wp-content/plugins/cronycle-content/public/css/cronycle-content-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<!-- cronycle-content -->
|
||||
<link rel="stylesheet" id="cronycle-contentslick-css" href="http://wp.lab/wp-content/plugins/cronycle-content/public/slick/slick.css?ver=1.0.0" type="text/css" media="all">
|
||||
<!-- cronycle-content -->
|
||||
<link rel="stylesheet" id="cronycle-contentslick-theme-css" href="http://wp.lab/wp-content/plugins/cronycle-content/public/slick/slick-theme.css?ver=1.0.0" type="text/css" media="all">
|
||||
<!-- cronycle-content -->
|
||||
<link rel="stylesheet" id="cronycle-contentslick-custom-css" href="http://wp.lab/wp-content/plugins/cronycle-content/public/css/slick-carousel.css?ver=1.0.0" type="text/css" media="all">
|
||||
<!-- cronycle-content -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cronycle-content/public/js/moment.min.js?ver=1.0.0"></script>
|
||||
<!-- cronycle-content -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cronycle-content/public/js/cronycle-content-public.js?ver=1.0.0"></script>
|
||||
<!-- cronycle-content -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cronycle-content/public/slick/slick.min.js?ver=1.0.0"></script>
|
||||
<!-- cronycle-content -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/cronycle-content/public/js/slick-carousel.js?ver=1.0.0"></script>
|
||||
<!-- custom-color-palette -->
|
||||
<link rel="stylesheet" id="themezee-custom-color-palette-css" href="http://wp.lab/wp-content/plugins/custom-color-palette/assets/css/custom-color-palette.css?ver=1.0" type="text/css" media="all">
|
||||
<!-- easy-accordion-for-faq -->
|
||||
<link rel="stylesheet" id="accordion-faq-css" href="http://wp.lab/wp-content/plugins/easy-accordion-for-faq/eaf-assets/css/eaf-costum.css?ver=1.0" type="text/css" media="all">
|
||||
<!-- easy-accordion-for-faq -->
|
||||
<link rel="stylesheet" id="accordion-fa-css" href="http://wp.lab/wp-content/plugins/easy-accordion-for-faq/eaf-assets/css/font-awesome.min.css?ver=1.0" type="text/css" media="all">
|
||||
<!-- easy-accordion-for-faq -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/easy-accordion-for-faq/eaf-assets/js/eaf-costum.js?ver=1.0"></script>
|
||||
<!-- easy-accordion-for-faq -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/easy-accordion-for-faq/eaf-assets/js/eaf-admin.js?ver=1.0"></script>
|
||||
<!-- form-generation -->
|
||||
<link rel="stylesheet" id="lg-fontawesome-css" href="http://wp.lab/wp-content/plugins/form-generation/assets/vendors/fontawesome/css/fontawesome-all.min.css?ver=1.2" type="text/css" media="all">
|
||||
<!-- immobilien-leadgenerator -->
|
||||
<link rel="stylesheet" id="prt-css" href="http://wp.lab/wp-content/plugins/immobilien-leadgenerator/public/css/prt-modern.css?ver=1.6.8.1" type="text/css" media="all">
|
||||
<!-- immobilien-leadgenerator -->
|
||||
<link rel="stylesheet" id="nouislider-css-css" href="http://wp.lab/wp-content/plugins/immobilien-leadgenerator/public/css/nouislider.min.css?ver=1.6.8.1" type="text/css" media="all">
|
||||
<!-- immobilien-leadgenerator -->
|
||||
<link rel="stylesheet" id="owl-carousel-css" href="http://wp.lab/wp-content/plugins/immobilien-leadgenerator/public/css/owl.carousel.min.css?ver=1.6.8.1" type="text/css" media="all">
|
||||
<!-- immobilien-leadgenerator -->
|
||||
<link rel="stylesheet" id="owl-carousel-theme-css" href="http://wp.lab/wp-content/plugins/immobilien-leadgenerator/public/css/owl.theme.default.css?ver=1.6.8.1" type="text/css" media="all">
|
||||
<!-- immobilien-leadgenerator -->
|
||||
<link rel="stylesheet" id="hover-css-css" href="http://wp.lab/wp-content/plugins/immobilien-leadgenerator/public/css/hover-min.css?ver=1.6.8.1" type="text/css" media="all">
|
||||
<!-- light-bakso -->
|
||||
<link rel="stylesheet" id="lightbakso-css" href="http://wp.lab/wp-content/plugins/light-bakso/public/css/lightbakso-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<!-- light-bakso -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/light-bakso/public/js/lightbakso-public.js?ver=1.0.0"></script>
|
||||
<!-- mana-gateway -->
|
||||
<link rel="stylesheet" id="mana-gateway-css" href="http://wp.lab/wp-content/plugins/mana-gateway/inc/frontend/css/mana-gateway-frontend.css?ver=1.0.0" type="text/css" media="all">
|
||||
<!-- mana-gateway -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/mana-gateway/inc/frontend/js/mana-gateway-frontend.js?ver=1.0.0"></script>
|
||||
<!-- modern-portfolio -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/modern-portfolio/js/script.js?ver=1.0"></script>
|
||||
<!-- modern-portfolio -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/modern-portfolio/js/fetchmore.js?ver=1.0"></script>
|
||||
<!-- pretty-portfolio -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pretty-portfolio/assets/js/charming.min.js?ver=1.0.0"></script>
|
||||
<!-- pretty-portfolio -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pretty-portfolio/assets/js/TweenMax.min.js?ver=1.0.0"></script>
|
||||
<!-- pretty-portfolio -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pretty-portfolio/assets/js/demo.js?ver=1.0.0"></script>
|
||||
<!-- pretty-portfolio -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/pretty-portfolio/assets/js/test.js?ver=1.0.0"></script>
|
||||
<!-- quran-live -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/quran-live//template/js/quranlive_load.js?ver=1.0"></script>
|
||||
<!-- quran-live -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/quran-live//template/js/screenfull.js?ver=1.0"></script>
|
||||
<!-- relations-lite -->
|
||||
<link rel="stylesheet" id="relations-public-style-css" href="http://wp.lab/wp-content/plugins/relations-lite/assets/public/css/relations.css?ver=1.0.0" type="text/css" media="all">
|
||||
<!-- relations-lite -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/relations-lite/assets/public/js/relations.js?ver=1.0.0"></script>
|
||||
<!-- reputate -->
|
||||
<link rel="stylesheet" id="reputate_wordpress-css" href="http://wp.lab/wp-content/plugins/reputate/public/css/reputate_wordpress-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<!-- reputate -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/reputate/public/js/reputate_wordpress-public.js?ver=1.0.0"></script>
|
||||
<!-- review-pro -->
|
||||
<link rel="stylesheet" id="review-pro-css" href="http://wp.lab/wp-content/plugins/review-pro/public/css/review-pro-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<!-- review-pro -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/review-pro/public/js/review-pro-public.js?ver=1.0.0"></script>
|
||||
<!-- secure-copy-content-protection -->
|
||||
<link rel="stylesheet" id="secure-copy-content-protection-css" href="http://wp.lab/wp-content/plugins/secure-copy-content-protection/public/css/secure-copy-content-protection-public.css?ver=1.0.2" type="text/css" media="all">
|
||||
<!-- secure-copy-content-protection -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/secure-copy-content-protection/public/js/secure-copy-content-protection-public.js?ver=1.0.2"></script>
|
||||
<!-- seo-content-randomizer -->
|
||||
<link rel="stylesheet" id="issscr-css" href="http://wp.lab/wp-content/plugins/seo-content-randomizer/public/css/issscr-public.css?ver=3.3.1" type="text/css" media="all">
|
||||
<!-- seo-content-randomizer -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/seo-content-randomizer/public/js/issscr-public.js?ver=3.3.1"></script>
|
||||
<!-- seo-content-randomizer -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/seo-content-randomizer/public/plugins/flexslider/jquery.flexslider-min.js?ver=3.3.1"></script>
|
||||
<!-- sharethis-reviews -->
|
||||
<link rel="stylesheet" id="share-this-reviews-review-css" href="http://wp.lab/wp-content/plugins/sharethis-reviews/css/sharethisreviews.css?ver=1.0.0" type="text/css" media="all">
|
||||
<!-- sharethis-reviews -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/sharethis-reviews/js/review.js?ver=1.0.0"></script>
|
||||
<!-- simple-cookie-control -->
|
||||
<link rel="stylesheet" id="cookieconsent-css" href="http://wp.lab/wp-content/plugins/simple-cookie-control/public/css/cookieconsent.min.css?ver=1.0.0" type="text/css" media="all">
|
||||
<!-- simple-cookie-control -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-cookie-control/public/js/cookieconsent.min.js?ver=1.0.0"></script>
|
||||
<!-- simple-cookie-control -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-cookie-control/public/js/simple-cookie-control-public.min.js?ver=1.0.0"></script>
|
||||
<!-- simple-nested-menu -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/simple-nested-menu/js/script.js?ver=1.0"></script>
|
||||
<!-- super-web-share -->
|
||||
<link rel="stylesheet" id="super-web-share-css" href="http://wp.lab/wp-content/plugins/super-web-share/public/css/super-web-share-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<!-- super-web-share -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/super-web-share/public/js/super-web-share-public.js?ver=1.0.0"></script>
|
||||
<!-- truendo -->
|
||||
<link rel="stylesheet" id="truendo_wordpress-css" href="http://wp.lab/wp-content/plugins/truendo/public/css/truendo-public.css?ver=1.0.3" type="text/css" media="all">
|
||||
<!-- truendo -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/truendo/public/js/truendo-public.js?ver=1.0.3"></script>
|
||||
<!-- trusted-order-notifications -->
|
||||
<link rel="stylesheet" id="vnf-style-css" href="http://wp.lab/wp-content/plugins/trusted-order-notifications/assets/css/vnfaster-order.min.css?ver=2.0.0" type="text/css" media="all">
|
||||
<!-- trusted-order-notifications -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/trusted-order-notifications/assets/js/vnfaster-order.min.js?ver=2.0.0"></script>
|
||||
<!-- um-events-lite-for-ultimate-member -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/um-events-lite-for-ultimate-member/assets/js/um-events.min.js?ver=1.0.0"></script>
|
||||
<!-- wc-shipping-insurance -->
|
||||
<link rel="stylesheet" id="shipping_insurance_policy-css" href="http://wp.lab/wp-content/plugins/wc-shipping-insurance/assets/css/shipping-insurance.css?ver=1.0.0" type="text/css" media="all">
|
||||
<!-- widget-github-profile -->
|
||||
<link rel="stylesheet" id="gh-profile-widget-style-css" href="http://wp.lab/wp-content/plugins/widget-github-profile/style.css?ver=1.0.0" type="text/css" media="all">
|
||||
<!-- woo-seo-content-randomizer-addon -->
|
||||
<link rel="stylesheet" id="isswscr-css" href="http://wp.lab/wp-content/plugins/woo-seo-content-randomizer-addon/public/css/isswscr-public.css?ver=1.1.0" type="text/css" media="all">
|
||||
<!-- woo-seo-content-randomizer-addon -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/woo-seo-content-randomizer-addon/public/js/isswscr-public.js?ver=1.1.0"></script>
|
||||
<!-- woorousell -->
|
||||
<link rel="stylesheet" id="woorousell-css" href="http://wp.lab/wp-content/plugins/woorousell/assets/css/core.css?ver=1.0.0" type="text/css" media="all">
|
||||
<!-- wp-change-logo -->
|
||||
<link rel="stylesheet" id="wp-change-logo-css" href="http://wp.lab/wp-content/plugins/wp-change-logo/public/css/wp-change-logo-public.css?ver=1.0.0" type="text/css" media="all">
|
||||
<!-- wp-change-logo -->
|
||||
<script type="text/javascript" src="http://wp.lab/wp-content/plugins/wp-change-logo/public/js/wp-change-logo-public.js?ver=1.0.0"></script>
|
||||
|
||||
@@ -0,0 +1,167 @@
|
||||
# Copyright (C) 2018 Salive
|
||||
# This file is distributed under the same license as the Registration For WooCommerce package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Registration For WooCommerce 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-09-25 13:10:15+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
|
||||
"X-Generator: grunt-wp-i18n1.0.2\n"
|
||||
|
||||
#: includes/class-registration-for-woocommerce-settings.php:24
|
||||
#: includes/class-registration-for-woocommerce-settings.php:47
|
||||
msgid "Registration Form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-registration-for-woocommerce-settings.php:49
|
||||
msgid "Settings for woocommerce registration."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-registration-for-woocommerce-settings.php:54
|
||||
msgid "Layout"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-registration-for-woocommerce-settings.php:55
|
||||
msgid "Layout to appear woocommerce registration form in frontend."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-registration-for-woocommerce-settings.php:69
|
||||
msgid "Include WooCommerce Billing Fields"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-registration-for-woocommerce-settings.php:70
|
||||
#: includes/class-registration-for-woocommerce-settings.php:82
|
||||
#: includes/class-registration-for-woocommerce-settings.php:116
|
||||
msgid "Billing Fields to appear in woocommerce registration form."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-registration-for-woocommerce-settings.php:81
|
||||
msgid "Required (*) Billing Fields"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-registration-for-woocommerce-settings.php:93
|
||||
msgid "Different Shipping"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-registration-for-woocommerce-settings.php:94
|
||||
msgid "Show ship to different address checkbox field"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-registration-for-woocommerce-settings.php:103
|
||||
msgid "Include WooCommerce Shipping Fields"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-registration-for-woocommerce-settings.php:104
|
||||
msgid "Shipping Fields to appear in woocommerce registration form."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-registration-for-woocommerce-settings.php:115
|
||||
msgid "Required (*) Shipping Fields"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-registration-for-woocommerce.php:46
|
||||
#: includes/class-registration-for-woocommerce.php:55
|
||||
msgid "Cheatin’ huh?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-registration-for-woocommerce.php:151
|
||||
msgid "Please install woocommerce plugin to use registration-for-woocommerce addon."
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions-registration-for-woocommerce.php:57
|
||||
msgid "Billing Address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions-registration-for-woocommerce.php:68
|
||||
#: includes/functions-registration-for-woocommerce.php:121
|
||||
#: includes/functions-registration-for-woocommerce.php:160
|
||||
#: includes/functions-registration-for-woocommerce.php:181
|
||||
msgid "Country"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions-registration-for-woocommerce.php:70
|
||||
#: includes/functions-registration-for-woocommerce.php:123
|
||||
msgid "Select a country…"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions-registration-for-woocommerce.php:101
|
||||
msgid "Ship to different address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions-registration-for-woocommerce.php:110
|
||||
msgid "Shipping Address"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions-registration-for-woocommerce.php:154
|
||||
#: includes/functions-registration-for-woocommerce.php:175
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions-registration-for-woocommerce.php:155
|
||||
#: includes/functions-registration-for-woocommerce.php:176
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions-registration-for-woocommerce.php:156
|
||||
#: includes/functions-registration-for-woocommerce.php:177
|
||||
msgid "Last Name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions-registration-for-woocommerce.php:157
|
||||
#: includes/functions-registration-for-woocommerce.php:178
|
||||
msgid "Company"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions-registration-for-woocommerce.php:158
|
||||
#: includes/functions-registration-for-woocommerce.php:179
|
||||
msgid "Address 1"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions-registration-for-woocommerce.php:159
|
||||
#: includes/functions-registration-for-woocommerce.php:180
|
||||
msgid "Address 2"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions-registration-for-woocommerce.php:161
|
||||
#: includes/functions-registration-for-woocommerce.php:182
|
||||
msgid "City"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions-registration-for-woocommerce.php:162
|
||||
#: includes/functions-registration-for-woocommerce.php:183
|
||||
msgid "State"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions-registration-for-woocommerce.php:163
|
||||
#: includes/functions-registration-for-woocommerce.php:184
|
||||
msgid "Postcode"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions-registration-for-woocommerce.php:164
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions-registration-for-woocommerce.php:165
|
||||
msgid "Phone"
|
||||
msgstr ""
|
||||
|
||||
#: includes/functions-registration-for-woocommerce.php:234
|
||||
msgid "is a required field."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Registration For WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Extended registration form for woocommerce"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Salive"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,363 @@
|
||||
# Copyright (C) 2018 Responsive horizontal vertical and accordion Tabs
|
||||
# This file is distributed under the same license as the Responsive horizontal vertical and accordion Tabs package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Responsive horizontal vertical and accordion Tabs 1.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-best-"
|
||||
"responsive-tabs\n"
|
||||
"POT-Creation-Date: 2018-10-11 16:17:13+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: wp-best-responsive-tabs.php:102
|
||||
msgid "Responsive Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:103
|
||||
msgid "Tab Sets"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:104 wp-best-responsive-tabs.php:404
|
||||
#: wp-best-responsive-tabs.php:464
|
||||
msgid "Manage Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:105
|
||||
msgid "Preview Slider"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:105
|
||||
msgid "Preview Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:282 wp-best-responsive-tabs.php:706
|
||||
#: wp-best-responsive-tabs.php:1182 wp-best-responsive-tabs.php:1755
|
||||
msgid "UPGRADE TO PRO VERSION"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:304
|
||||
msgid "Manage Tab Sets"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:304 wp-best-responsive-tabs.php:1289
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:311 wp-best-responsive-tabs.php:492
|
||||
#: wp-best-responsive-tabs.php:1298 wp-best-responsive-tabs.php:1516
|
||||
msgid "Bulk Actions"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:312 wp-best-responsive-tabs.php:493
|
||||
#: wp-best-responsive-tabs.php:1299
|
||||
msgid "delete"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:314 wp-best-responsive-tabs.php:496
|
||||
#: wp-best-responsive-tabs.php:1300 wp-best-responsive-tabs.php:1520
|
||||
msgid "Apply"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:336 wp-best-responsive-tabs.php:338
|
||||
#: wp-best-responsive-tabs.php:1364 wp-best-responsive-tabs.php:1366
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:339 wp-best-responsive-tabs.php:1367
|
||||
msgid "Reset Search"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:372 wp-best-responsive-tabs.php:375
|
||||
#: wp-best-responsive-tabs.php:377 wp-best-responsive-tabs.php:460
|
||||
#: wp-best-responsive-tabs.php:1397 wp-best-responsive-tabs.php:1400
|
||||
#: wp-best-responsive-tabs.php:1402 wp-best-responsive-tabs.php:1480
|
||||
msgid "Id"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:383 wp-best-responsive-tabs.php:386
|
||||
#: wp-best-responsive-tabs.php:388 wp-best-responsive-tabs.php:461
|
||||
#: wp-best-responsive-tabs.php:745
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:394 wp-best-responsive-tabs.php:397
|
||||
#: wp-best-responsive-tabs.php:399 wp-best-responsive-tabs.php:462
|
||||
msgid "Created On"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:403
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:405 wp-best-responsive-tabs.php:465
|
||||
#: wp-best-responsive-tabs.php:1440 wp-best-responsive-tabs.php:1489
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:406 wp-best-responsive-tabs.php:466
|
||||
#: wp-best-responsive-tabs.php:1441 wp-best-responsive-tabs.php:1490
|
||||
#: wp-best-responsive-tabs.php:1517
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:459
|
||||
msgid "Select Record"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:463
|
||||
msgid "ShortCode"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:472 wp-best-responsive-tabs.php:1498
|
||||
msgid "No Records"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:472
|
||||
msgid "No Tab Sets Found"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:510
|
||||
msgid ""
|
||||
"Are you sure you want to delete selected tabs Sets ? All tabs related to "
|
||||
"this tab Sets also removed."
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:519
|
||||
msgid ""
|
||||
"Are you sure you want to delete this tab sets ? All tabs related to this "
|
||||
"sets also removed."
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:532 wp-best-responsive-tabs.php:950
|
||||
#: wp-best-responsive-tabs.php:1563 wp-best-responsive-tabs.php:1950
|
||||
msgid "Access All Themes In One Price"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:543
|
||||
msgid "Recommended WordPress Plugin"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:602
|
||||
msgid "Tab set updated successfully."
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:615
|
||||
msgid "Tab set added successfully."
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:730
|
||||
msgid "Update Tab Set"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:734
|
||||
msgid "Add Tab Set"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:758
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:764 wp-best-responsive-tabs.php:2121
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:766
|
||||
msgid "Responsive Horizontal Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:767
|
||||
msgid "Responsive Vertical Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:768
|
||||
msgid "Responsive Accordion Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:782
|
||||
msgid "Active Tab Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:796
|
||||
msgid "Inactive Tab Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:811
|
||||
msgid "Border Color"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:826
|
||||
msgid "Tab font color"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:840
|
||||
msgid "Active Tab font color"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:854
|
||||
msgid "Tab Content color"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:872 wp-best-responsive-tabs.php:1870
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:874 wp-best-responsive-tabs.php:1872
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:961
|
||||
msgid "Speed Test For Your WP"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:1018
|
||||
msgid "Tab set deleted successfully."
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:1025
|
||||
msgid "Error while deleting tab set."
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:1076
|
||||
msgid "Selected tab sets deleted successfully."
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:1083
|
||||
msgid "Error while deleting tab sets."
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:1115
|
||||
msgid ""
|
||||
"Please select tab set. Click on \"Manage Tabs\" of your desired tab set."
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:1289
|
||||
msgid "Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:1408 wp-best-responsive-tabs.php:1411
|
||||
#: wp-best-responsive-tabs.php:1413 wp-best-responsive-tabs.php:1481
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:1418 wp-best-responsive-tabs.php:1421
|
||||
#: wp-best-responsive-tabs.php:1423 wp-best-responsive-tabs.php:1487
|
||||
msgid "Display Order"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:1430 wp-best-responsive-tabs.php:1433
|
||||
#: wp-best-responsive-tabs.php:1435 wp-best-responsive-tabs.php:1488
|
||||
msgid "Published On"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:1498
|
||||
msgid "No Tabs"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:1535
|
||||
msgid "Are you sure you want to delete selected tabs?"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:1544
|
||||
msgid "Are you sure you want to delete this tab?"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:1554 wp-best-responsive-tabs.php:1941
|
||||
msgid "Google For Business Coupon"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:1583 wp-best-responsive-tabs.php:2137
|
||||
msgid "To print this tab sets into WordPress Post/Page use below code"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:1589 wp-best-responsive-tabs.php:2140
|
||||
msgid ""
|
||||
"To print this tab sets into WordPress theme/template PHP files use below code"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:1675
|
||||
msgid "Tab updated successfully."
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:1682
|
||||
msgid "Error while updating tab"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:1712
|
||||
msgid "New tab added successfully."
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:1720
|
||||
msgid "Error while adding tab"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:1779
|
||||
msgid "Update Tab"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:1789
|
||||
msgid "Add Tab"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:1801
|
||||
msgid "Tab Title"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:1817
|
||||
msgid "Tab Order"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:1835
|
||||
msgid "Tab Content"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:1849 wp-best-responsive-tabs.php:1854
|
||||
msgid "Is Default Selected Tab?"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:2010
|
||||
msgid "Tab deleted successfully."
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:2017
|
||||
msgid "Error while deleting tab."
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:2058
|
||||
msgid "selected tabs deleted successfully."
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:2067
|
||||
msgid "Error while deleting tabs."
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:2117
|
||||
msgid "Tabs Preview"
|
||||
msgstr ""
|
||||
|
||||
#: wp-best-responsive-tabs.php:2119
|
||||
msgid "Select Tab Set"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Responsive horizontal vertical and accordion Tabs"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid ""
|
||||
"https://www.i13websolution.com/best-wordpress-responsive-tabs-plugin.html"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"This is beautiful responsive all in one tabs for wordpress sites/blogs. Add "
|
||||
"any number of tabs sets to your site. your tabs sets will be ready within "
|
||||
"few min."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "I Thirteen Web Solution"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,60 @@
|
||||
# Copyright (C) 2018 Rontar Blog Retargeting
|
||||
# This file is distributed under the same license as the Rontar Blog Retargeting package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Rontar Blog Retargeting 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/rontar-blog-retargeting\n"
|
||||
"POT-Creation-Date: 2018-10-13 17:28:14+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: admin/Class_Admin.php:75
|
||||
msgid "Rontar Blog Retargeting"
|
||||
msgstr ""
|
||||
|
||||
#: admin/Class_Admin.php:82 admin/Class_Admin.php:147
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/Class_Admin.php:93 admin/Class_Admin.php:99
|
||||
msgid "Advertiser ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/Class_Admin.php:106 admin/Class_Admin.php:112
|
||||
msgid "Feed ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/Class_Admin.php:119 admin/Class_Admin.php:125
|
||||
msgid "Audience ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/Class_Admin.php:132 admin/Class_Admin.php:138
|
||||
msgid "Blog Feed URL"
|
||||
msgstr ""
|
||||
|
||||
#: admin/Class_Admin.php:157
|
||||
msgid "Enable Rontar Blog Retargeting"
|
||||
msgstr ""
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Rontar Blog Retargeting"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://rontar.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Rontar blog feed and retargeting pixel easy integration."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Slava Velikiy <slava@rontar.com>"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://rontar.com/"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,375 @@
|
||||
# Copyright (C) 2018 SumaPress
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Simple Cookie Control 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"http://wordpress.org/support/plugin/simple-cookie-control\n"
|
||||
"POT-Creation-Date: 2018-10-29 15:45:29+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: grunt-wp-i18n 0.4.9\n"
|
||||
|
||||
#: admin/class-simple-cookie-control-admin.php:79
|
||||
msgid "Go to customizer"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:64
|
||||
msgid "Main Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:69
|
||||
msgid "Main Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:74
|
||||
msgid "Main Link Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:81
|
||||
msgid "Button Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:86
|
||||
msgid "Button Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:91
|
||||
msgid "Button Border Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:98
|
||||
msgid "Decline Button Background Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:103
|
||||
msgid "Decline Button Text Color"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:108
|
||||
msgid "Decline Button Border Color"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Simple Cookie Control"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:164
|
||||
msgid "Customize Manager for custom cookie banner"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:190
|
||||
msgid "Styles of the banner"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:213
|
||||
msgid "Set the position of the cookie banner"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:218
|
||||
msgid "Banner bottom"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:219
|
||||
msgid "Bottom - Floating left"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:220
|
||||
msgid "Bottom - Floating right"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:221
|
||||
msgid "Banner top"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:222
|
||||
msgid "Top - Floating left"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:223
|
||||
msgid "Top - Floating right"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:244
|
||||
msgid "Set the style of the cookie banner"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:249
|
||||
msgid "Block"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:250
|
||||
msgid "Classic"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:251
|
||||
msgid "Edgeless"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:271
|
||||
msgid "Check to change colors here or uncheck to defined them in CSS."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:319
|
||||
msgid "Contents of the banner"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:342
|
||||
msgid "Main Message"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:365
|
||||
msgid "Link text"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:384
|
||||
msgid "Link href (internal or external)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:407
|
||||
msgid "Main Button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:426
|
||||
msgid "Secondary Button"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:449
|
||||
msgid "The content of the secondary banner"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:450
|
||||
msgid ""
|
||||
"Put only text or even html like: \"<span class=\"dashicons "
|
||||
"dashicons-image-filter\"></span>\" or an img tag."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:468
|
||||
msgid "Show or not the secondary banner after the primary one is hidden"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:469
|
||||
msgid ""
|
||||
"The secondary banner allow users see again the main banner to change their "
|
||||
"previous decision."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:491
|
||||
msgid "Analytics & Cookie control"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:514
|
||||
msgid "Activate or not the implementation of basic internal Analytics."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:532
|
||||
msgid "Cookie name"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:533
|
||||
msgid "Name of the cookie that keeps track of users choice."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:551
|
||||
msgid "Days to expiry"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:552
|
||||
msgid "The cookies expire date, specified in days."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:570
|
||||
msgid "Reload or not the web after the user make a choice."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:592
|
||||
msgid "Google Tag Manager ID"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:593
|
||||
msgid "Set your ID of Google Tag Manager."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:611
|
||||
msgid "Activate or not the implementation of Google Tag Manager"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:616
|
||||
msgid "Do not activate it never"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:617
|
||||
msgid "Conditional on the acceptance of cookies"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:618
|
||||
msgid "Always activated"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:638
|
||||
msgid "Advanced control"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:661
|
||||
msgid "Add or not extra control to prevents the execution of third party scripts."
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:684
|
||||
msgid "<scripts> to try to block"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:685
|
||||
msgid ""
|
||||
"Set comma separated list of words, absolute or relative urls, or only JS "
|
||||
"file names to allow this plugin to search them into the src of the "
|
||||
"<scripts> you want to block. Please be carefoul with this!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:708
|
||||
msgid "Blacklist to block (also about JS inline with external calls into the code)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:709
|
||||
msgid ""
|
||||
"Set comma separated list of regexes to test URLs against. Example: "
|
||||
"/black-domain-name-1/, /black-domain-name-2/ "
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:728
|
||||
msgid ""
|
||||
"Whitelist not to block (also about JS inline with external calls into the "
|
||||
"code)"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-simple-cookie-control-customizer.php:729
|
||||
msgid ""
|
||||
"Set comma separated list of regexes to test URLs against. Example: "
|
||||
"/white-domain-name-1/, /white-domain-name-2/"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-internal-analytics.php:19
|
||||
msgid "Total: %s"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-internal-analytics.php:28
|
||||
msgid "Data from:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-internal-analytics.php:30
|
||||
msgid "Accepted"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-internal-analytics.php:32
|
||||
msgid "Rejected"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-internal-analytics.php:38
|
||||
msgid "Reset data"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:19
|
||||
msgid ""
|
||||
"With this plugin you can show/hide conditional content depending on the "
|
||||
"acceptance of cookies with:"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:21
|
||||
msgid "A specific block of gutenberg."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:22
|
||||
msgid "Some shortocodes described below."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:23
|
||||
msgid "Others advanced options that you can configure in this section."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:26
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:28
|
||||
msgid "your content"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:27
|
||||
msgid "Shortcode to show the content only when cookies have been accepted."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:29
|
||||
msgid ""
|
||||
"Shortcode to show the content only when cookies have not been yet accepted "
|
||||
"(or even are rejected)."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:31
|
||||
msgid ""
|
||||
"Shortcode to show IFRAME only when the user has accepted cookies or in "
|
||||
"another case this one show an IMAGE."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:33
|
||||
msgid "Attributes for [SCC_ALLOW], [SCC_DENY], [SCC_IFRAME] "
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:34
|
||||
msgid ""
|
||||
"message to show like a button to allow user to accept cookies of these "
|
||||
"shortcodes restring content"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:35
|
||||
msgid ""
|
||||
"define a cookie if you want allow partial acceptance even though the main "
|
||||
"banner's cookies have been rejected"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:36
|
||||
msgid ""
|
||||
"define 'true'(default) or 'false' to show or not a secundary banner as "
|
||||
"button."
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:39
|
||||
msgid "Extra attributes only for [SCC_IFRAME] "
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:40
|
||||
msgid "url of the image to show when the user has NOT accepted cookies yet"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:41
|
||||
msgid "unique name to identify the previous image with CSS or JS"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:42
|
||||
msgid "url /embed/ of the iframe to show when the user has accepted cookies"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:43
|
||||
msgid "width in pixels for the iframe"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:44
|
||||
msgid "height in pixels for the iframe"
|
||||
msgstr ""
|
||||
|
||||
#: admin/views/simple-cookie-control-display-shortcode-information.php:47
|
||||
msgid "Try to force automatically the blocking of scripts?"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "SumaPress"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Inform users that your site uses cookies and blocks them until the visitor "
|
||||
"accepts."
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://sumapress.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,185 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WB Newsletter 1.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-10-08 13:27+0330\n"
|
||||
"PO-Revision-Date: 2018-10-08 13:28+0330\n"
|
||||
"Last-Translator: Morteza Geransayeh <man4toman@gmail.com>\n"
|
||||
"Language-Team: WPB\n"
|
||||
"Language: fa_IR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.1.1\n"
|
||||
"X-Poedit-KeywordsList: _e;__\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-SearchPath-1: languages\n"
|
||||
|
||||
#: includes/newsletter_list.php:12 includes/newsletter_list.php:13
|
||||
msgid "Newsletter"
|
||||
msgstr "خبرنامه"
|
||||
|
||||
#: includes/newsletter_list.php:67
|
||||
msgid "No items avaliable."
|
||||
msgstr "موردی پیدا نشد."
|
||||
|
||||
#: includes/newsletter_list.php:135
|
||||
msgid "Name"
|
||||
msgstr "نام"
|
||||
|
||||
#: includes/newsletter_list.php:138
|
||||
msgid "Phone"
|
||||
msgstr "شماره موبایل"
|
||||
|
||||
#: includes/newsletter_list.php:141
|
||||
msgid "Email"
|
||||
msgstr "آدرس ایمیل"
|
||||
|
||||
#: includes/newsletter_list.php:143
|
||||
msgid "Register Date"
|
||||
msgstr "تاریخ عضویت"
|
||||
|
||||
#: includes/newsletter_list.php:205 simple-newsletter.php:85
|
||||
#: simple-newsletter.php:113
|
||||
msgid "You do not have the necessary access to change the data."
|
||||
msgstr "شما دسترسی لازم برای تغییر داده ها را ندارید."
|
||||
|
||||
#: includes/newsletter_list.php:283 includes/newsletter_list.php:284
|
||||
#: includes/newsletter_list.php:310
|
||||
msgid "Email Newsletter"
|
||||
msgstr "خبرنامه ایمیلی"
|
||||
|
||||
#: includes/newsletter_list.php:293 includes/newsletter_list.php:294
|
||||
msgid "Setting"
|
||||
msgstr "تنظیمات"
|
||||
|
||||
#: includes/newsletter_list.php:303 includes/newsletter_list.php:336
|
||||
msgid "You do not have sufficient permissions to access this page."
|
||||
msgstr "شما دسترسی لازم برای مشاهده این صفحه را ندارید."
|
||||
|
||||
#: includes/newsletter_list.php:312
|
||||
msgid "Export Email List"
|
||||
msgstr "خروجی از لیست"
|
||||
|
||||
#: includes/newsletter_list.php:342
|
||||
msgid "Newsletter Settings"
|
||||
msgstr "تنظیمات خبرنامه"
|
||||
|
||||
#: includes/newsletter_list.php:346
|
||||
msgid "Email: "
|
||||
msgstr "ایمیل: "
|
||||
|
||||
#: includes/newsletter_list.php:347 includes/newsletter_list.php:352
|
||||
#: includes/newsletter_list.php:357
|
||||
msgid "Yes"
|
||||
msgstr "بله"
|
||||
|
||||
#: includes/newsletter_list.php:348 includes/newsletter_list.php:353
|
||||
#: includes/newsletter_list.php:358
|
||||
msgid "no"
|
||||
msgstr "خیر"
|
||||
|
||||
#: includes/newsletter_list.php:351
|
||||
msgid "Name: "
|
||||
msgstr "نام: "
|
||||
|
||||
#: includes/newsletter_list.php:356
|
||||
msgid "Phone: "
|
||||
msgstr "شماره موبایل: "
|
||||
|
||||
#: includes/newsletter_list.php:361
|
||||
msgid "Save"
|
||||
msgstr "ذخیره کردن"
|
||||
|
||||
#: languages/common-strings.php:2
|
||||
#, fuzzy
|
||||
#| msgid "Email Newsletter"
|
||||
msgid "Simple newsletter"
|
||||
msgstr "خبرنامه ایمیلی"
|
||||
|
||||
#: languages/common-strings.php:3
|
||||
#, fuzzy
|
||||
#| msgid "Subscribe to Newsletter"
|
||||
msgid "Simple custom newsletter."
|
||||
msgstr "اشتراک در خبرنامه"
|
||||
|
||||
#: languages/common-strings.php:4
|
||||
#, fuzzy
|
||||
msgid "Sekineh Ebrahimzadeh"
|
||||
msgstr "سکینه ابراهیم زاده"
|
||||
|
||||
#: simple-newsletter.php:91
|
||||
msgid "Settings saved successfully"
|
||||
msgstr "تنظیمات با موفقیت ذخیره شد"
|
||||
|
||||
#: simple-newsletter.php:121
|
||||
msgid "Please enter the email address"
|
||||
msgstr "لطفا آدرس ایمیل را وارد کنید."
|
||||
|
||||
#: simple-newsletter.php:124
|
||||
msgid "Invalid email address"
|
||||
msgstr "لطفا آدرس ایمیل معتبری وارد کنید."
|
||||
|
||||
#: simple-newsletter.php:131
|
||||
msgid "Please enter the name"
|
||||
msgstr "لطفا نام خود را وارد کنید."
|
||||
|
||||
#: simple-newsletter.php:138
|
||||
msgid "Please enter the phone number"
|
||||
msgstr "لطفا شماره موبایل خود را وارد کنید."
|
||||
|
||||
#: simple-newsletter.php:141
|
||||
msgid "Invalid phone number"
|
||||
msgstr "لطفا شماره موبایل معتبری وارد کنید."
|
||||
|
||||
#: simple-newsletter.php:161
|
||||
msgid "You are already a member"
|
||||
msgstr "شما قبلا عضو شدید."
|
||||
|
||||
#: simple-newsletter.php:176
|
||||
msgid "Your information has been successfully recorded."
|
||||
msgstr "اطلاعات شما با موفقیت ثبت شده است."
|
||||
|
||||
#: simple-newsletter.php:198
|
||||
msgid "Enter your name"
|
||||
msgstr "لطفا نام خود را وارد کنید."
|
||||
|
||||
#: simple-newsletter.php:201
|
||||
msgid "Enter your email address*"
|
||||
msgstr "آدرس ایمیل خود را وارد کنید."
|
||||
|
||||
#: simple-newsletter.php:204
|
||||
msgid "Enter your phone number"
|
||||
msgstr "لطفا شماره موبایل خود را وارد کنید."
|
||||
|
||||
#: simple-newsletter.php:206
|
||||
msgid "Subscribe to Newsletter"
|
||||
msgstr "اشتراک در خبرنامه"
|
||||
|
||||
#~ msgid "Please enter valid email/phone"
|
||||
#~ msgstr "ورودی ها معتبر نیستند"
|
||||
|
||||
#~ msgid "Thanks for join our newsletter"
|
||||
#~ msgstr "شما با موفقیت عضو شدید"
|
||||
|
||||
#~ msgid "Phone Number*"
|
||||
#~ msgstr "شماره موبایل خود را وارد کنید ..."
|
||||
|
||||
#~ msgid "Regme »"
|
||||
#~ msgstr "عضویت"
|
||||
|
||||
#~ msgid "Your Name*"
|
||||
#~ msgstr "نام"
|
||||
|
||||
#~ msgid "Your Family*"
|
||||
#~ msgstr "نام خانوادگی"
|
||||
|
||||
#~ msgid "Please enter your last name"
|
||||
#~ msgstr "لطفا نام خانوادگی خود را وارد کنید"
|
||||
|
||||
#~ msgid "Last Name*"
|
||||
#~ msgstr "نام خانوادگی*"
|
||||
|
||||
#~ msgid "Last name"
|
||||
#~ msgstr "نام خانوادگی"
|
||||
@@ -0,0 +1,35 @@
|
||||
# Copyright (C) 2018 Pablo Cianes
|
||||
# This file is distributed under the GPL-2.0+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Simple Shortcode Block 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"http://wordpress.org/support/plugin/simple-shortcode-block\n"
|
||||
"POT-Creation-Date: 2018-10-08 19:13:14+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: grunt-wp-i18n 0.4.9\n"
|
||||
|
||||
#: gutenberg/class-simple-shortcode-block-gutenberg.php:180
|
||||
msgid "Please, set here the [shortcode] to render"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Simple Shortcode Block"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "A simple block to render a shortcode in a dynamic way."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Pablo Cianes"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://pablocianes.com/"
|
||||
msgstr ""
|
||||
72
spec/fixtures/dynamic_finders/plugin_version/siwecos/translation_file/languages/siwecos-de_DE.po
vendored
Normal file
72
spec/fixtures/dynamic_finders/plugin_version/siwecos/translation_file/languages/siwecos-de_DE.po
vendored
Normal file
@@ -0,0 +1,72 @@
|
||||
# Plugin Name: SIWECOS
|
||||
# Plugin URI: https://www.siwecos.de
|
||||
# Version: 1.0.0
|
||||
# Description: Validate your Wordpress site against the SIWECOS.de security check
|
||||
# Author: SIWECOS.de
|
||||
# Author URI: https:/www.siwecos.de
|
||||
# License: GPL2
|
||||
#
|
||||
# SIWECOS is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 2 of the License, or
|
||||
# any later version.
|
||||
#
|
||||
# SIWECOS is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with SIWECOS. If not, see http://www.gnu.org/licenses/gpl-2.0.html file.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: SIWECOS WordPress Pot v1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: SIWECOS <technik@siwecos.de>\n"
|
||||
"POT-Creation-Date: 2018-10-12 11:27+0200\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: SIWECOS <technik@siwecos.de\n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Textdomain-Support: yesX-Generator: Poedit 1.6.4\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: __;_e;esc_html_e;esc_html_x:1,2c;esc_html__;"
|
||||
"esc_attr_e;esc_attr_x:1,2c;esc_attr__;_ex:1,2c;_nx:4c,1,2;"
|
||||
"_nx_noop:4c,1,2;_x:1,2c;_n:1,2;_n_noop:1,2;__ngettext:1,2;"
|
||||
"__ngettext_noop:1,2;_c,_nc:4c,1,2\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Generator: Poedit 2.2\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: output/form.php:39
|
||||
msgid "Email"
|
||||
msgstr "E-Mail"
|
||||
|
||||
#: output/form.php:43
|
||||
msgid "Password"
|
||||
msgstr "Passwort"
|
||||
|
||||
#: output/form.php:50
|
||||
msgid "Register on siwecos.de"
|
||||
msgstr "Auf siwecos.de registrieren"
|
||||
|
||||
#: output/validation.php:34
|
||||
msgid "The scan is in progress, please refresh the page and try again"
|
||||
msgstr ""
|
||||
"Der Scan Ihrer Seite läuft, bitte aktualisieren Sie die Seite in "
|
||||
"einigen Minuten"
|
||||
|
||||
#: output/validation.php:41
|
||||
msgid "Result"
|
||||
msgstr "Ergebnis"
|
||||
|
||||
#: output/validation.php:53
|
||||
msgid "Open siwecos.de"
|
||||
msgstr "SIWECOS.de öffnen"
|
||||
|
||||
#: output/validation.php:54
|
||||
msgid "Scan again"
|
||||
msgstr "Erneut scannen"
|
||||
@@ -0,0 +1,87 @@
|
||||
# Copyright (C) 2018 Sophia Twitter Auto Post
|
||||
# This file is distributed under the same license as the Sophia Twitter Auto Post package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sophia Twitter Auto Post 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/sophia-post-to-"
|
||||
"twitter\n"
|
||||
"POT-Creation-Date: 2018-09-28 17:52:52+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
#: admin/options-init.php:131
|
||||
msgid "Plugin Options"
|
||||
msgstr ""
|
||||
|
||||
#: admin/options-init.php:133
|
||||
msgid "Set plugins options."
|
||||
msgstr ""
|
||||
|
||||
#: admin/options-init.php:139
|
||||
msgid "Plugin status"
|
||||
msgstr ""
|
||||
|
||||
#: admin/options-init.php:140
|
||||
msgid "Enable or Disable post to twitter"
|
||||
msgstr ""
|
||||
|
||||
#: admin/options-init.php:158
|
||||
msgid "Twitter Options"
|
||||
msgstr ""
|
||||
|
||||
#: admin/options-init.php:160
|
||||
msgid "Twitter App keys."
|
||||
msgstr ""
|
||||
|
||||
#: admin/options-init.php:166
|
||||
msgid "Consumer Key"
|
||||
msgstr ""
|
||||
|
||||
#: admin/options-init.php:167
|
||||
msgid "Consumer key of your twitter app."
|
||||
msgstr ""
|
||||
|
||||
#: admin/options-init.php:172
|
||||
msgid "Consumer Secret"
|
||||
msgstr ""
|
||||
|
||||
#: admin/options-init.php:173
|
||||
msgid "Consumer secret of your twitter app."
|
||||
msgstr ""
|
||||
|
||||
#: admin/options-init.php:178
|
||||
msgid "Access Token"
|
||||
msgstr ""
|
||||
|
||||
#: admin/options-init.php:179
|
||||
msgid "Access token of your twitter app."
|
||||
msgstr ""
|
||||
|
||||
#: admin/options-init.php:184
|
||||
msgid "Access Token Secret"
|
||||
msgstr ""
|
||||
|
||||
#: admin/options-init.php:185
|
||||
msgid "Access token secret of your twitter app."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Sophia Twitter Auto Post"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"Plugin to send new posts to twitter using the codebird twitter auth library"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Jordi Cuevas"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "@jordicuevas"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,122 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Ultimate WooCommerce Offers Zone 1.0.0\n"
|
||||
"POT-Creation-Date: 2018-10-09 18:39+0530\n"
|
||||
"PO-Revision-Date: 2018-10-09 18:39+0530\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: makewebbetter <webmaster@makewebbetter.com>\n"
|
||||
"Language: English\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 1.5.4\n"
|
||||
"X-Poedit-KeywordsList: _e;__\n"
|
||||
"X-Poedit-Basepath: /opt/lampp/htdocs/wordpress/wp-content/plugins/ultimate-"
|
||||
"woocommerce-offers-zone/\n"
|
||||
"Plural-Forms: nplurals=2; plural=n == 1 ? 0 : 1;\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: ultimate-woocommerce-offers-zone.php:84
|
||||
msgid "Go To Settings"
|
||||
msgstr ""
|
||||
|
||||
#: ultimate-woocommerce-offers-zone.php:129
|
||||
msgid ""
|
||||
"WooCommerce is not activated. Please install WooCommerce first, to use the "
|
||||
"Woocommerce Offers Zone plugin !!!"
|
||||
msgstr ""
|
||||
|
||||
#: public/class-ultimate-woocommerce-offers-zone-public.php:153
|
||||
msgid "No products found"
|
||||
msgstr ""
|
||||
|
||||
#: admin/class-ultimate-woocommerce-offers-zone-admin.php:110
|
||||
msgid "Ultimate Woocommerce Offers Zone Settings"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:14
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display.php:48
|
||||
msgid "Ultimate Woocommerce Offers Zone "
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:17
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:18
|
||||
msgid "By clicking enable button working will be enable."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:23
|
||||
msgid "Design"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:29
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:30
|
||||
msgid "Slide"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:33
|
||||
msgid "Select the design for product listing on offer page"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:39
|
||||
msgid "Heading"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:42
|
||||
msgid "Enter the heading of the product."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:47
|
||||
msgid "No Of Products"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:50
|
||||
msgid "Enter the no of product for listing on offer page."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:55
|
||||
msgid "Shortcode"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:58
|
||||
msgid "Shortcode for listing products on shop page ."
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-general.php:64
|
||||
msgid "Save Changes"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display.php:54
|
||||
msgid "Settings Saved!"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display.php:64
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display.php:66
|
||||
msgid "Offers"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display.php:71
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display.php:74
|
||||
msgid "enhanced-woocommerce-flash-sale"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display.php:97
|
||||
msgid "please purchase this plugin and then activate this plugin"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-offer.php:34
|
||||
msgid "View Details"
|
||||
msgstr ""
|
||||
|
||||
#: admin/partials/ultimate-woocommerce-offers-zone-admin-display-offer.php:37
|
||||
msgid "Add To Cart"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,240 @@
|
||||
# Copyright (C) 2018 SuitePlugins
|
||||
# This file is distributed under the GPLv2 or later..
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: UM Events Lite for Ultimate Member 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/um-events\n"
|
||||
"POT-Creation-Date: 2018-10-25 01:29:33+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: grunt-wp-i18n1.0.2\n"
|
||||
|
||||
#: includes/class-um-events-admin.php:80 um-events.php:113 um-events.php:126
|
||||
msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-admin.php:104
|
||||
#: includes/class-um-events-admin.php:194
|
||||
msgid "Show Event Image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-admin.php:105
|
||||
#: includes/class-um-events-admin.php:198
|
||||
msgid "Show event featured image"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-admin.php:111
|
||||
#: includes/class-um-events-admin.php:203
|
||||
msgid "Allow Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-admin.php:112
|
||||
#: includes/class-um-events-admin.php:207
|
||||
msgid "Allow event description in form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-admin.php:118
|
||||
msgid "Allow Ticket URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-admin.php:119
|
||||
msgid "Allow ticket URL in form"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-admin.php:125
|
||||
msgid "Restrict frontend file upload"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-admin.php:126
|
||||
msgid "Restrict users from adding events from their profile"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-admin.php:142 includes/um-events-posttypes.php:17
|
||||
#: templates/events-list-tab.php:28 templates/events-list.php:31
|
||||
#: um-events.php:148
|
||||
msgid "No events found."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-admin.php:150
|
||||
#: includes/class-um-events-admin.php:151
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-admin.php:163
|
||||
msgid "UM Events"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:19
|
||||
msgid "Event name missing."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:22
|
||||
msgid "Event start date missing."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:25
|
||||
msgid "Event start time missing."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:65 um-events.php:181
|
||||
msgid "Create Event"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:67 um-events.php:183
|
||||
msgid "Update Event"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:80 templates/events-list-tab-form.php:6
|
||||
msgid "Event Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:89 templates/events-list-tab-form.php:15
|
||||
msgid "Add Event Photo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:95 includes/um-events-posttypes.php:78
|
||||
#: templates/events-list-tab-form.php:22
|
||||
msgid "Start Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:99 includes/um-events-posttypes.php:82
|
||||
#: templates/events-list-tab-form.php:26
|
||||
msgid "+ End Time"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:103 includes/um-events-posttypes.php:86
|
||||
#: templates/events-list-tab-form.php:30
|
||||
msgid "End Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:107 includes/um-events-posttypes.php:90
|
||||
#: templates/events-list-tab-form.php:34
|
||||
msgid "- End Time"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:111 includes/um-events-posttypes.php:94
|
||||
#: templates/events-list-tab-form.php:42
|
||||
msgid "Event Locaton"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:118 includes/um-events-posttypes.php:101
|
||||
#: templates/event-view.php:42 templates/events-list-tab-form.php:49
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-um-events-ajax.php:124 templates/events-list-tab-form.php:56
|
||||
msgid "Submit Event"
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:10
|
||||
msgid "Add New Event"
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:11
|
||||
msgid "New Event"
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:12
|
||||
msgid "Edit Event"
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:13
|
||||
msgid "View Event"
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:14
|
||||
msgid "All Events"
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:15
|
||||
msgid "Search Events"
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:16
|
||||
msgid "Parent Events:"
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:18
|
||||
msgid "No events found in Trash."
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:23
|
||||
msgid "Events."
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:50 templates/events-list-tab-form.php:40
|
||||
msgid "Event Details"
|
||||
msgstr ""
|
||||
|
||||
#: templates/elements/event-header.php:4
|
||||
msgid "Upcoming"
|
||||
msgstr ""
|
||||
|
||||
#: templates/elements/event-header.php:5
|
||||
msgid "Past"
|
||||
msgstr ""
|
||||
|
||||
#: templates/elements/event-header.php:10
|
||||
msgid "+ Add Event"
|
||||
msgstr ""
|
||||
|
||||
#: templates/elements/event-list-details.php:14 templates/event-view.php:36
|
||||
msgid "Location:"
|
||||
msgstr ""
|
||||
|
||||
#: templates/elements/event-list-details.php:20
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
#: templates/elements/event-list-details.php:23
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: templates/events-list.php:2
|
||||
msgid "Add Event"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "UM Events Lite for Ultimate Member"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://suiteplugins.com/"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Manage events from Ultimate Member Profile"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "SuitePlugins"
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:5
|
||||
msgctxt "post type general name"
|
||||
msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:6
|
||||
msgctxt "post type singular name"
|
||||
msgid "Event"
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:7
|
||||
msgctxt "admin menu"
|
||||
msgid "Events"
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:8
|
||||
msgctxt "add new on admin bar"
|
||||
msgid "Event"
|
||||
msgstr ""
|
||||
|
||||
#: includes/um-events-posttypes.php:9
|
||||
msgctxt "event"
|
||||
msgid "Add New"
|
||||
msgstr ""
|
||||
189
spec/fixtures/dynamic_finders/plugin_version/wc-18app/translation_file/languages/it_IT.pot
vendored
Normal file
189
spec/fixtures/dynamic_finders/plugin_version/wc-18app/translation_file/languages/it_IT.pot
vendored
Normal file
@@ -0,0 +1,189 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WC 18app 0.9.0\n"
|
||||
"POT-Creation-Date: 2018-10-17 22:48+0200\n"
|
||||
"PO-Revision-Date: 2018-07-02 12:47+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: ilGhera\n"
|
||||
"Language: it_IT\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: Poedit 2.0.6\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-KeywordsList: _;__\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
|
||||
#: includes/class-18app-admin.php:17
|
||||
msgid "WooCommerce 18app - Impostazioni"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:17
|
||||
msgid "WC 18app"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:166
|
||||
msgid "Impostazioni"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:171
|
||||
msgid "Certificato"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:172
|
||||
msgid "Opzioni"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:179
|
||||
msgid "Carica il tuo certificato"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:180
|
||||
msgid ""
|
||||
"Se sei già in posseso di un certificato non devi fare altro che caricarlo, "
|
||||
"nient'altro."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:187
|
||||
msgid "Carica certificato"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:196 includes/class-18app-admin.php:204
|
||||
msgid "Elimina"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:197
|
||||
msgid "File caricato e attivato correttamente."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:205
|
||||
#, php-format
|
||||
msgid "L'attivazione del certificato ha restituito il seguente errore: %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:213
|
||||
msgid "Carica il certificato (.pem) necessario alla connessione con 18app"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:229
|
||||
msgid "Richiedi un certificato"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:230
|
||||
msgid ""
|
||||
"Con questo strumento puoi generare un file .der necessario per richiedere il "
|
||||
"tuo certificato su 18app."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:235
|
||||
msgid "Stato"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:241
|
||||
msgid "Provincia"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:247
|
||||
msgid "Località"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:253
|
||||
msgid "Nome azienda"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:259
|
||||
msgid "Reparto azienda"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:265
|
||||
msgid "Nome"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:271
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:277
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:286
|
||||
msgid "Scarica file .der"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:295
|
||||
msgid "Crea il tuo certificato"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:296
|
||||
msgid ""
|
||||
"Con questo ultimo passaggio, potrai iniziare a ricevere pagamenti attraverso "
|
||||
"buoni 18app."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:303
|
||||
msgid "Genera certificato"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:307
|
||||
msgid "Carica il file .cer ottenuto da 18app per procedere"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:331
|
||||
msgid "Categorie"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:346
|
||||
msgid "Seleziona le categorie di prodotti corrispondenti ai beni acquistabili."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:351
|
||||
msgid "Utilizzo immagine "
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:355
|
||||
msgid "Mostra il logo 18app nella pagine di checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-admin.php:386
|
||||
msgid "ATTENZIONE! Il file caricato non sembra essere un certificato valido."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-gateway.php:40
|
||||
msgid "Enable/Disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-gateway.php:42
|
||||
msgid "Abilita pagamento con buono 18app"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-gateway.php:46
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-gateway.php:48
|
||||
msgid "This controls the title which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-gateway.php:49 includes/class-18app-gateway.php:139
|
||||
msgid "Buono 18app"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-gateway.php:53
|
||||
msgid "Messaggio utente"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-gateway.php:70
|
||||
msgid "Inserisci qui il tuo codice"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-gateway.php:180
|
||||
msgid ""
|
||||
"Uno o più prodotti nel carrello non sono acquistabili con il buono inserito."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-18app-gateway.php:239
|
||||
msgid "<b>Buono 18app</b> - "
|
||||
msgstr ""
|
||||
@@ -0,0 +1,115 @@
|
||||
# Copyright (C) 2018 pluginever
|
||||
# This file is distributed under the GPLv2+.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WC Min Max Quantities 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/wc-min-max-quantities\n"
|
||||
"POT-Creation-Date: 2018-10-07 10:11:57+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
|
||||
"X-Generator: grunt-wp-i18n1.0.2\n"
|
||||
|
||||
#: includes/admin/class-metabox.php:14
|
||||
msgid "Product Min Quantity"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-metabox.php:19
|
||||
msgid ""
|
||||
"Enter a quantity to prevent user from buying this product if they have "
|
||||
"fewer than the allowed quantity in their cart."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-metabox.php:26
|
||||
msgid "Product Max Quantity"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-metabox.php:29
|
||||
msgid ""
|
||||
"Enter a quantity to prevent user from buying this product if they have "
|
||||
"more than the allowed quantity in their cart."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-metabox.php:35
|
||||
msgid "Ignore Global MinMax Rules"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-metabox.php:38
|
||||
msgid "Exclude this product from global minimum/maximum order quantity/value rules."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-settings.php:15
|
||||
msgid "Min/Max Quantities"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-settings.php:18
|
||||
msgid "Minimum Order Quantity"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-settings.php:24
|
||||
msgid "Maximum Order Quantity"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-settings.php:30
|
||||
msgid "Minimum Order Value"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-settings.php:36
|
||||
msgid "Maximum Order Value"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-user-cart.php:50 includes/class-user-cart.php:106
|
||||
msgid "You have to buy at least %s quantities of %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-user-cart.php:57 includes/class-user-cart.php:115
|
||||
msgid "You can't buy more than %s quantities of %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-user-cart.php:66
|
||||
msgid "Quantity of products in cart must be %s or more "
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-user-cart.php:73
|
||||
msgid "Quantity of products in cart must not be more than %s "
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-user-cart.php:80
|
||||
msgid "Minimum cart total should be %s or more"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-user-cart.php:87
|
||||
msgid "Maximum cart total can not be more than %s "
|
||||
msgstr ""
|
||||
|
||||
#: wc-min-max-quantities.php:98
|
||||
msgid "Cloning is forbidden."
|
||||
msgstr ""
|
||||
|
||||
#: wc-min-max-quantities.php:107
|
||||
msgid "Unserializing instances of this class is forbidden."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "WC Min Max Quantities"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://www.pluginever.com/wc-minmax-qunatities"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "The Best WordPress Plugin ever made!"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "pluginever"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://www.pluginever.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,758 @@
|
||||
# Copyright (C) 2018 ApusPayments
|
||||
# This file is distributed under the GPLv3 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WooCommerce ApusPayments 2.13.1\n"
|
||||
"Report-Msgid-Bugs-To: "
|
||||
"https://wordpress.org/support/plugin/woocommerce-ApusPayments\n"
|
||||
"POT-Creation-Date: 2018-08-03 20:47:22+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"X-Generator: grunt-wp-i18n1.0.2\n"
|
||||
|
||||
#: includes/admin/views/html-admin-help-message.php:14
|
||||
msgid ""
|
||||
"Help us keep the %s plugin free making a donation or rate %s on "
|
||||
"WordPress.org. Thank you in advance!"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "WooCommerce ApusPayments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-help-message.php:15
|
||||
msgid "Make a donation"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-admin-help-message.php:15
|
||||
msgid "Make a review"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-notice-currency-not-supported.php:15
|
||||
#: includes/admin/views/html-notice-email-missing.php:15
|
||||
#: includes/admin/views/html-notice-token-missing.php:15
|
||||
msgid "ApusPayments Disabled"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-notice-currency-not-supported.php:15
|
||||
msgid "Currency <code>%s</code> is not supported. Works only with Brazilian Real."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-notice-email-missing.php:15
|
||||
msgid "You should inform your email address."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-notice-missing-ecfb.php:22
|
||||
msgid "depends on the last version of Extra Checkout Fields for Brazil to work!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-notice-missing-ecfb.php:25
|
||||
msgid "Active Extra Checkout Fields for Brazil"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-notice-missing-ecfb.php:33
|
||||
msgid "Install Extra Checkout Fields for Brazil"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-notice-missing-woocommerce.php:22
|
||||
msgid "depends on the last version of WooCommerce to work!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-notice-missing-woocommerce.php:25
|
||||
msgid "Active WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-notice-missing-woocommerce.php:33
|
||||
msgid "Install WooCommerce"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/views/html-notice-token-missing.php:15
|
||||
msgid "You should inform your token."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:151
|
||||
#: includes/class-wc-ApusPayments-gateway.php:258
|
||||
#: templates/transparent-checkout-form.php:19
|
||||
msgid "Credit Card"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:152
|
||||
msgid "Billet"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:153
|
||||
#: includes/class-wc-ApusPayments-gateway.php:264
|
||||
#: templates/transparent-checkout-form.php:23
|
||||
msgid "Bank Transfer"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:154
|
||||
#: includes/class-wc-ApusPayments-api.php:203
|
||||
msgid "ApusPayments credit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:155
|
||||
#: includes/class-wc-ApusPayments-api.php:204
|
||||
msgid "Oi Paggo"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:156
|
||||
#: includes/class-wc-ApusPayments-api.php:205
|
||||
msgid "Account deposit"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:159
|
||||
#: includes/class-wc-ApusPayments-api.php:208
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:170
|
||||
msgid "Credit Card %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:171
|
||||
msgid "Billet %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:172
|
||||
msgid "Bank Transfer %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:239
|
||||
#: includes/class-wc-ApusPayments-api.php:240
|
||||
#: includes/class-wc-ApusPayments-api.php:241
|
||||
#: includes/class-wc-ApusPayments-api.php:242
|
||||
#: includes/class-wc-ApusPayments-api.php:243
|
||||
#: includes/class-wc-ApusPayments-api.php:244
|
||||
msgid "Please enter with a valid phone number with DDD. Example: (11) 5555-5555."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:245
|
||||
#: includes/class-wc-ApusPayments-api.php:246
|
||||
#: includes/class-wc-ApusPayments-api.php:247
|
||||
#: includes/class-wc-ApusPayments-api.php:248
|
||||
#: includes/class-wc-ApusPayments-api.php:249
|
||||
msgid "Please enter with a valid zip code number."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:250
|
||||
msgid "Please enter with a valid CPF number."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:252
|
||||
msgid "Please select a bank to make payment by bank transfer."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:253
|
||||
msgid "Credit card holder CPF is required."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:254
|
||||
msgid "Credit card holder birthdate is required."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:255
|
||||
msgid "Credit card holder name is required."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:256
|
||||
#: includes/class-wc-ApusPayments-api.php:257
|
||||
msgid "Credit card holder phone is required."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:258
|
||||
#: includes/class-wc-ApusPayments-api.php:259
|
||||
msgid "The address complement is too long, it cannot be more than 40 characters."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:260
|
||||
msgid "<strong>Neighborhood</strong> is a required field."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:261
|
||||
msgid "Credit card holder CPF invalid."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:262
|
||||
msgid ""
|
||||
"Invalid email domain. You must use an email @sandbox.ApusPayments.com.br while "
|
||||
"you are using the ApusPayments Sandbox."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:263
|
||||
msgid "The customer email can not be the same as the ApusPayments account owner."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:270
|
||||
msgid ""
|
||||
"An error has occurred while processing your payment, please review your "
|
||||
"data and try again. Or contact us for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:379
|
||||
msgid "Order %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:611
|
||||
msgid ""
|
||||
"Too bad! The email or token from the ApusPayments are invalids my little "
|
||||
"friend!"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:648
|
||||
#: includes/class-wc-ApusPayments-api.php:668
|
||||
#: includes/class-wc-ApusPayments-api.php:690
|
||||
#: includes/class-wc-ApusPayments-api.php:750
|
||||
#: includes/class-wc-ApusPayments-api.php:770
|
||||
#: includes/class-wc-ApusPayments-gateway.php:24
|
||||
#: includes/class-wc-ApusPayments-gateway.php:190
|
||||
msgid "ApusPayments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:668
|
||||
#: includes/class-wc-ApusPayments-api.php:770
|
||||
msgid ""
|
||||
"An error has occurred while processing your payment, please try again. Or "
|
||||
"contact us for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:690
|
||||
msgid "Please, select a payment method."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-api.php:716
|
||||
msgid ""
|
||||
"You are not allowed to use the ApusPayments Transparent Checkout. Looks like "
|
||||
"you neglected to installation guide of this plugin. This is not pretty, do "
|
||||
"you know?"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:25
|
||||
msgid ""
|
||||
"Accept payments by credit card, bank debit or banking ticket using the "
|
||||
"ApusPayments."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:26
|
||||
msgid "Proceed to payment"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:149
|
||||
msgid "interest free"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:150
|
||||
msgid "Invalid credit card number."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:151
|
||||
msgid "Invalid expiry date, please use the MM / YYYY date format."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:152
|
||||
msgid "Please check the expiry date and use a valid format as MM / YYYY."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:153
|
||||
msgid ""
|
||||
"Unable to process the data from your credit card on the ApusPayments, please "
|
||||
"try again or contact us for assistance."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:154
|
||||
msgid "Select a number of installments."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:168
|
||||
msgid "System Status > Logs"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:180
|
||||
msgid "Enable/Disable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:182
|
||||
msgid "Enable ApusPayments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:186
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:188
|
||||
msgid "This controls the title which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:193
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:195
|
||||
msgid "This controls the description which the user sees during checkout."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:196
|
||||
#: templates/lightbox-checkout.php:19
|
||||
msgid "Pay via ApusPayments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:199
|
||||
msgid "Integration"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:204
|
||||
msgid "Integration method"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:206
|
||||
msgid ""
|
||||
"Choose how the customer will interact with the ApusPayments. Redirect (Client "
|
||||
"goes to ApusPayments page) or Lightbox (Inside your store)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:211
|
||||
msgid "Redirect (default)"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:212
|
||||
msgid "Lightbox"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:213
|
||||
msgid "Transparent Checkout"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:217
|
||||
msgid "ApusPayments Sandbox"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:219
|
||||
msgid "Enable ApusPayments Sandbox"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:222
|
||||
msgid "ApusPayments Sandbox can be used to test the payments."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:225
|
||||
msgid "ApusPayments Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:227
|
||||
msgid ""
|
||||
"Please enter your ApusPayments email address. This is needed in order to take "
|
||||
"payment."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:232
|
||||
msgid "ApusPayments Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:235
|
||||
#. translators: %s: link to ApusPayments settings
|
||||
msgid ""
|
||||
"Please enter your ApusPayments token. This is needed to process the payment "
|
||||
"and notifications. Is possible generate a new token %s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:235
|
||||
#: includes/class-wc-ApusPayments-gateway.php:242
|
||||
#: includes/class-wc-ApusPayments-gateway.php:249
|
||||
msgid "here"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:239
|
||||
msgid "ApusPayments Sandbox Email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:242
|
||||
#. translators: %s: link to ApusPayments settings
|
||||
msgid ""
|
||||
"Please enter your ApusPayments sandbox email address. You can get your sandbox "
|
||||
"email %s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:246
|
||||
msgid "ApusPayments Sandbox Token"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:249
|
||||
#. translators: %s: link to ApusPayments settings
|
||||
msgid ""
|
||||
"Please enter your ApusPayments sandbox token. You can get your sandbox token "
|
||||
"%s."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:253
|
||||
msgid "Transparent Checkout Options"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:260
|
||||
msgid "Enable Credit Card for Transparente Checkout"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:266
|
||||
msgid "Enable Bank Transfer for Transparente Checkout"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:270
|
||||
#: templates/transparent-checkout-form.php:27
|
||||
msgid "Banking Ticket"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:272
|
||||
msgid "Enable Banking Ticket for Transparente Checkout"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:276
|
||||
msgid "Banking Ticket Tax Message"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:278
|
||||
msgid ""
|
||||
"Display a message alerting the customer that will be charged R$ 1,00 for "
|
||||
"payment by Banking Ticket"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:282
|
||||
msgid "Integration Behavior"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:287
|
||||
msgid "Send only the order total"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:289
|
||||
msgid ""
|
||||
"If this option is enabled will only send the order total, not the list of "
|
||||
"items."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:293
|
||||
msgid "Invoice Prefix"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:295
|
||||
msgid ""
|
||||
"Please enter a prefix for your invoice numbers. If you use your ApusPayments "
|
||||
"account for multiple stores ensure this prefix is unqiue as ApusPayments will "
|
||||
"not allow orders with the same invoice number."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:300
|
||||
msgid "Gateway Testing"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:305
|
||||
msgid "Debug Log"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:307
|
||||
msgid "Enable logging"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:310
|
||||
#. translators: %s: log page link
|
||||
msgid "Log ApusPayments events, such as API requests, inside %s"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:475
|
||||
msgid "ApusPayments Request Unauthorized"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:495
|
||||
msgid "Payer email"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:498
|
||||
msgid "Payer name"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:503
|
||||
msgid "Payment type"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:508
|
||||
msgid "Payment method"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:513
|
||||
#: templates/transparent-checkout-form.php:53
|
||||
msgid "Installments"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:518
|
||||
msgid "Payment URL"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:521
|
||||
msgid "Intermediation Rate"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:524
|
||||
msgid "Intermediation Fee"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:571
|
||||
msgid ""
|
||||
"ApusPayments: The buyer initiated the transaction, but so far the ApusPayments "
|
||||
"not received any payment information."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:575
|
||||
msgid "ApusPayments: Payment under review."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:586
|
||||
#: includes/class-wc-ApusPayments-gateway.php:589
|
||||
msgid "ApusPayments: Payment approved."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:597
|
||||
msgid "ApusPayments: Payment completed and credited to your account."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:601
|
||||
msgid "ApusPayments: Payment came into dispute."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:604
|
||||
#. translators: %s: order number
|
||||
msgid "Payment for order %s came into dispute"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:605
|
||||
msgid "Payment in dispute"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:607
|
||||
#. translators: %s: order number
|
||||
msgid ""
|
||||
"Order %s has been marked as on-hold, because the payment came into dispute "
|
||||
"in ApusPayments."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:612
|
||||
msgid "ApusPayments: Payment refunded."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:615
|
||||
#. translators: %s: order number
|
||||
msgid "Payment for order %s refunded"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:616
|
||||
msgid "Payment refunded"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:618
|
||||
#. translators: %s: order number
|
||||
msgid "Order %s has been marked as refunded by ApusPayments."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments-gateway.php:627
|
||||
msgid "ApusPayments: Payment canceled."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wc-ApusPayments.php:63
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/views/html-receipt-page-error.php:19
|
||||
msgid "Click to try again"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/html-instructions.php:15
|
||||
#: templates/emails/plain-instructions.php:14
|
||||
msgid "Payment"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/html-instructions.php:19
|
||||
#: templates/emails/plain-instructions.php:20
|
||||
msgid ""
|
||||
"Please use the link below to view your Banking Ticket, you can print and "
|
||||
"pay in your internet banking or in a lottery retailer:"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/html-instructions.php:19
|
||||
#: templates/payment-instructions.php:18
|
||||
msgid "Pay the Banking Ticket"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/html-instructions.php:19
|
||||
#: templates/emails/plain-instructions.php:28
|
||||
#: templates/payment-instructions.php:18
|
||||
msgid ""
|
||||
"After we receive the ticket payment confirmation, your order will be "
|
||||
"processed."
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/html-instructions.php:23
|
||||
#: templates/emails/plain-instructions.php:32
|
||||
msgid "Please use the link below to make the payment in your bankline:"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/html-instructions.php:23
|
||||
#: templates/payment-instructions.php:24
|
||||
msgid "Pay at your bank"
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/html-instructions.php:23
|
||||
#: templates/emails/plain-instructions.php:40
|
||||
#: templates/payment-instructions.php:24
|
||||
msgid ""
|
||||
"After we receive the confirmation from the bank, your order will be "
|
||||
"processed."
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/html-instructions.php:27
|
||||
#: templates/emails/plain-instructions.php:44
|
||||
#: templates/payment-instructions.php:30
|
||||
msgid "You just made the payment in %s using the %s."
|
||||
msgstr ""
|
||||
|
||||
#: templates/emails/html-instructions.php:27
|
||||
#: templates/emails/plain-instructions.php:48
|
||||
#: templates/payment-instructions.php:30
|
||||
msgid ""
|
||||
"As soon as the credit card operator confirm the payment, your order will be "
|
||||
"processed."
|
||||
msgstr ""
|
||||
|
||||
#: templates/lightbox-checkout.php:15
|
||||
msgid ""
|
||||
"Thank you for your order, please wait a few seconds to make the payment "
|
||||
"with ApusPayments."
|
||||
msgstr ""
|
||||
|
||||
#: templates/lightbox-checkout.php:17
|
||||
msgid ""
|
||||
"Thank you for your order, please click the button below to pay with "
|
||||
"ApusPayments."
|
||||
msgstr ""
|
||||
|
||||
#: templates/lightbox-checkout.php:19
|
||||
msgid "Cancel order & restore cart"
|
||||
msgstr ""
|
||||
|
||||
#: templates/payment-instructions.php:18
|
||||
msgid "Please click in the following button to view your Banking Ticket."
|
||||
msgstr ""
|
||||
|
||||
#: templates/payment-instructions.php:18
|
||||
msgid "You can print and pay in your internet banking or in a lottery retailer."
|
||||
msgstr ""
|
||||
|
||||
#: templates/payment-instructions.php:24
|
||||
msgid "Please use the following button to make the payment in your bankline."
|
||||
msgstr ""
|
||||
|
||||
#: templates/transparent-checkout-form.php:35
|
||||
msgid "Card Holder Name"
|
||||
msgstr ""
|
||||
|
||||
#: templates/transparent-checkout-form.php:35
|
||||
msgid "as recorded on the card"
|
||||
msgstr ""
|
||||
|
||||
#: templates/transparent-checkout-form.php:39
|
||||
msgid "Card Number"
|
||||
msgstr ""
|
||||
|
||||
#: templates/transparent-checkout-form.php:44
|
||||
msgid "Expiry (MM/YYYY)"
|
||||
msgstr ""
|
||||
|
||||
#: templates/transparent-checkout-form.php:45
|
||||
msgid "MM / YYYY"
|
||||
msgstr ""
|
||||
|
||||
#: templates/transparent-checkout-form.php:48
|
||||
msgid "Security Code"
|
||||
msgstr ""
|
||||
|
||||
#: templates/transparent-checkout-form.php:49
|
||||
msgid "CVC"
|
||||
msgstr ""
|
||||
|
||||
#: templates/transparent-checkout-form.php:53
|
||||
msgid "the minimum value of the installment is R$ 5,00"
|
||||
msgstr ""
|
||||
|
||||
#: templates/transparent-checkout-form.php:59
|
||||
msgid "Card Holder CPF"
|
||||
msgstr ""
|
||||
|
||||
#: templates/transparent-checkout-form.php:64
|
||||
msgid "Card Holder Birth Date"
|
||||
msgstr ""
|
||||
|
||||
#: templates/transparent-checkout-form.php:65
|
||||
msgid "DD / MM / YYYY"
|
||||
msgstr ""
|
||||
|
||||
#: templates/transparent-checkout-form.php:68
|
||||
msgid "Card Holder Phone"
|
||||
msgstr ""
|
||||
|
||||
#: templates/transparent-checkout-form.php:69
|
||||
msgid "(xx) xxxx-xxxx"
|
||||
msgstr ""
|
||||
|
||||
#: templates/transparent-checkout-form.php:77
|
||||
msgid "Select your bank:"
|
||||
msgstr ""
|
||||
|
||||
#: templates/transparent-checkout-form.php:79
|
||||
msgid "Banco do Brasil"
|
||||
msgstr ""
|
||||
|
||||
#: templates/transparent-checkout-form.php:80
|
||||
msgid "Banco Bradesco"
|
||||
msgstr ""
|
||||
|
||||
#: templates/transparent-checkout-form.php:82
|
||||
msgid ""
|
||||
"* After clicking \"Proceed to payment\" you will have access to the link "
|
||||
"that will take you to your bank's website, so you can make the payment in "
|
||||
"total security."
|
||||
msgstr ""
|
||||
|
||||
#: templates/transparent-checkout-form.php:91
|
||||
msgid "The order will be confirmed only after the payment approval."
|
||||
msgstr ""
|
||||
|
||||
#: templates/transparent-checkout-form.php:94
|
||||
msgid "Tax"
|
||||
msgstr ""
|
||||
|
||||
#: templates/transparent-checkout-form.php:94
|
||||
msgid "R$ 1,00 (rate applied to cover management risk costs of the payment method)."
|
||||
msgstr ""
|
||||
|
||||
#: templates/transparent-checkout-form.php:97
|
||||
msgid ""
|
||||
"* After clicking \"Proceed to payment\" you will have access to banking "
|
||||
"ticket which you can print and pay in your internet banking or in a lottery "
|
||||
"retailer."
|
||||
msgstr ""
|
||||
|
||||
#. Plugin URI of the plugin/theme
|
||||
msgid "https://github.com/apuspayments/WooComercePlugin"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Includes ApusPayments as a payment gateway to WooCommerce."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "ApusPayments"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://apuspayments.com"
|
||||
msgstr ""
|
||||
@@ -0,0 +1,145 @@
|
||||
# Copyright (C) 2018 Mohammed Saimon
|
||||
# This file is distributed under the GPLv2 or later.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WooCommerce Estimated Shipping Date 3.0.2\n"
|
||||
"Report-Msgid-Bugs-To: https://saimonsplugins.com/contact/\n"
|
||||
"POT-Creation-Date: 2018-10-05 07:52:34+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
|
||||
"Language: en\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"X-Poedit-Country: United States\n"
|
||||
"X-Poedit-SourceCharset: UTF-8\n"
|
||||
"X-Poedit-KeywordsList: "
|
||||
"__;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_"
|
||||
"attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;esc_html_x:1,2c;\n"
|
||||
"X-Poedit-Basepath: ../\n"
|
||||
"X-Poedit-SearchPath-0: .\n"
|
||||
"X-Poedit-Bookmarks: \n"
|
||||
"X-Textdomain-Support: yes\n"
|
||||
"X-Generator: grunt-wp-i18n1.0.2\n"
|
||||
|
||||
#: includes/admin/class-product-settings.php:51
|
||||
msgid "Enable WC Estimated Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-product-settings.php:52
|
||||
msgid "Enable or Disable woocommerce estimated shipping date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-product-settings.php:57
|
||||
#: includes/admin/class-settings.php:150
|
||||
msgid "Estimated Delivery Time in Days"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-product-settings.php:58
|
||||
#: includes/admin/class-settings.php:151
|
||||
msgid "Insert how many days it will take to deliver the product after purchase"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-product-settings.php:66
|
||||
#: includes/admin/class-settings.php:157
|
||||
msgid "Estimated Delivery Date Message"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-product-settings.php:67
|
||||
#: includes/admin/class-settings.php:158
|
||||
msgid "Insert your message"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-settings.php:62
|
||||
msgid "Estimated Shipping Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-settings.php:62
|
||||
msgid "Shipping Date"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-settings.php:69
|
||||
msgid "WooCommerce Estimated Shipping Date Settings"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-settings.php:85
|
||||
msgid "Enable Shipping Date for All Existing Products"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-settings.php:88
|
||||
msgid ""
|
||||
"This tool will enable WooCommerce Estimated Shipping Date for all the "
|
||||
"existing products. It's helpful if you have lots of products, that you "
|
||||
"don't want to insert estimated shipping date for each and every product "
|
||||
"manually. Which is very time consuming."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-settings.php:97
|
||||
msgid "Enable for All"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-settings.php:134
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-settings.php:135
|
||||
msgid "Enable WooCommerce Estimated Shipping Date."
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-settings.php:141
|
||||
msgid "Enable Shipping Date for All Existing Product"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-settings.php:142
|
||||
msgid ""
|
||||
"Enable Shipping for all existing product by default. If this option is not "
|
||||
"checked you will have to enable estimated shipping date for each individual "
|
||||
"product manually"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-settings.php:239
|
||||
msgid "%d products are completed out of %d"
|
||||
msgstr ""
|
||||
|
||||
#: includes/admin/class-settings.php:245
|
||||
msgid "WooCommerce estimated shipping date has been applied to all products."
|
||||
msgstr ""
|
||||
|
||||
#: includes/libs/settings-api.php:370
|
||||
msgid "Choose File"
|
||||
msgstr ""
|
||||
|
||||
#: includes/public/class-public.php:74
|
||||
msgid "<strong class='shipping-date'> %s %s</strong>"
|
||||
msgstr ""
|
||||
|
||||
#: includes/public/class-public.php:101 includes/public/class-public.php:125
|
||||
#: includes/public/class-public.php:151
|
||||
msgid "<strong>%s %s</strong>"
|
||||
msgstr ""
|
||||
|
||||
#: woo-estimated-shipping-date.php:123
|
||||
msgid ""
|
||||
"<b>WC Estimated Shipping Date</b> requires %sWooCommerce%s to be installed "
|
||||
"& activated!"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "WooCommerce Estimated Shipping Date"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid ""
|
||||
"A simple WooCommerce based plugin to show the estimated shipping date on "
|
||||
"the product, cart, checkout page"
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Mohammed Saimon"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "https://saimonsplugins.com"
|
||||
msgstr ""
|
||||
310
spec/fixtures/dynamic_finders/plugin_version/woo-gateway-payger/translation_file/languages/PT_pt.po
vendored
Normal file
310
spec/fixtures/dynamic_finders/plugin_version/woo-gateway-payger/translation_file/languages/PT_pt.po
vendored
Normal file
@@ -0,0 +1,310 @@
|
||||
# Translation of Payger in Portuguese (Portugal)
|
||||
# This file is distributed under the same license as the Payger package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"PO-Revision-Date: 2018-08-31 14:33:52+0000\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: GlotPress/1.0-alpha-1000\n"
|
||||
"Project-Id-Version: Payger\n"
|
||||
|
||||
#: public/partials/pay-modal.php:127
|
||||
msgid "This payment is underpaid. Please use the data below to pay the missing amount"
|
||||
msgstr "Esta encomenda está parcialmente paga. Por favor use os dados abaixo para completar o pagamento."
|
||||
|
||||
#: public/class-wc-email-customer-underpaid-order.php:28
|
||||
msgid "Order underpaid"
|
||||
msgstr "Encomenda parcialmente paga"
|
||||
|
||||
#: public/emails/plain/customer-underpaid-order.php:25
|
||||
msgid "Your order is on-hold until we confirm payment has been received. Your order details are shown below for your reference:"
|
||||
msgstr "A sua encomenda aguarda pagamento até confirmação de que o montante foi recebido. Os dados da sua encomenda estão visíveis abaixo para sua referência:"
|
||||
|
||||
#: admin/class-woocommerce-payger-admin.php:117
|
||||
msgid "Every Minute"
|
||||
msgstr "A cada minuto"
|
||||
|
||||
#: admin/class-woocommerce-payger-admin.php:131
|
||||
msgid "Error: You must enter API key."
|
||||
msgstr "Erro: Deve inserir a sua chave API key"
|
||||
|
||||
#: admin/class-woocommerce-payger-admin.php:138
|
||||
msgid "Error: You must enter API secret."
|
||||
msgstr "Erro: Deve inserir o seu API secret."
|
||||
|
||||
#: admin/class-woocommerce-payger-admin.php:150
|
||||
msgid "Error: Your api credentials are not valid. Please double check that you entered them correctly and try again."
|
||||
msgstr "Erro: As suas credenciais para acesso à API não são válidas. Por favor verifique que as inseriu correctamente e tente novamente."
|
||||
|
||||
#: admin/class-woocommerce-payger-admin.php:170
|
||||
msgid "You must choose a crypto currency first."
|
||||
msgstr "Deve primeiro escolher uma criptomoeda."
|
||||
|
||||
#: admin/class-woocommerce-payger-admin.php:171
|
||||
#: includes/class-woocommerce-payger-gateway.php:395
|
||||
#: includes/class-woocommerce-payger-gateway.php:543
|
||||
msgid "Payment error: "
|
||||
msgstr "Erro de pagamento:"
|
||||
|
||||
#: admin/class-woocommerce-payger-admin.php:222
|
||||
#: public/class-woocommerce-payger-public.php:118
|
||||
msgid "Please use the following qrCode to process your payment."
|
||||
msgstr "Por favor use o seguinte qrCode para efectuar o seu pagamento."
|
||||
|
||||
#: admin/class-woocommerce-payger-admin.php:237
|
||||
#: includes/class-woocommerce-payger-gateway.php:264
|
||||
#: public/class-woocommerce-payger-public.php:135
|
||||
msgid "You will pay"
|
||||
msgstr "Vai pagar"
|
||||
|
||||
#: admin/class-woocommerce-payger-admin.php:238
|
||||
#: public/class-woocommerce-payger-public.php:136
|
||||
msgid "in"
|
||||
msgstr "em"
|
||||
|
||||
#: admin/class-woocommerce-payger-admin.php:239
|
||||
msgid "Payger qrCode"
|
||||
msgstr "Payger qrCode"
|
||||
|
||||
#: admin/class-woocommerce-payger-admin.php:277
|
||||
#: admin/class-woocommerce-payger-admin.php:332
|
||||
#: admin/class-woocommerce-payger-admin.php:422
|
||||
msgid "Payger Payment Confirmed"
|
||||
msgstr "Pagamento via Payger Confirmado"
|
||||
|
||||
#: admin/class-woocommerce-payger-admin.php:281
|
||||
msgid "Still Waiting for Payment"
|
||||
msgstr "A Aguardar Pagamento"
|
||||
|
||||
#: admin/class-woocommerce-payger-admin.php:333
|
||||
msgid "Payment is verified and completed."
|
||||
msgstr "Pagamento foi verificado e está completo."
|
||||
|
||||
#: admin/class-woocommerce-payger-admin.php:356
|
||||
msgid "Payment is verified but not completed. Missing amount of "
|
||||
msgstr "Pagamento foi verificado mas não está completo. Está em falta o montante de"
|
||||
|
||||
#: admin/class-woocommerce-payger-admin.php:356
|
||||
msgid " an email was sent to the buyer."
|
||||
msgstr "um email foi enviado ao comprador."
|
||||
|
||||
#: admin/class-woocommerce-payger-admin.php:424
|
||||
msgid "Payment is verified and completed. The amount of "
|
||||
msgstr "Pagamento foi verificado e está completo. O montante de"
|
||||
|
||||
#: admin/class-woocommerce-payger-admin.php:424
|
||||
msgid " was overpaid."
|
||||
msgstr "foi pago a mais."
|
||||
|
||||
#: admin/class-woocommerce-payger-admin.php:526
|
||||
msgid "Payger Payment Failed"
|
||||
msgstr "Pagamento através do Payger falhou"
|
||||
|
||||
#: admin/class-woocommerce-payger-admin.php:437
|
||||
msgid "Unpaid order cancelled - time limit reached."
|
||||
msgstr "Encomenda não paga foi cancelada - tempo limite atingido."
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:51
|
||||
#: includes/class-woocommerce-payger-gateway.php:52
|
||||
#: includes/class-woocommerce-payger-gateway.php:152
|
||||
msgid "Payger"
|
||||
msgstr "Payger"
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:53
|
||||
msgid "Pay with crypto currency (powered by Payger)"
|
||||
msgstr "Pague com criptomoedas ( através do Payger )"
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:95
|
||||
msgid "What is Payger?"
|
||||
msgstr "O que é o Payger?"
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:143
|
||||
msgid "Enable/Disable"
|
||||
msgstr "Activar/Desactivar"
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:145
|
||||
msgid "Enable payments through Payger"
|
||||
msgstr "Activar pagamentos através do Payger"
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:149
|
||||
msgid "Title"
|
||||
msgstr "Título"
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:151
|
||||
msgid "This controls the title which the user sees during checkout."
|
||||
msgstr "Controla o título que o utilizador vê durante o processo de compra."
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:156
|
||||
msgid "Description"
|
||||
msgstr "Descrição"
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:158
|
||||
msgid "Pay with crypto currency provided by Payger"
|
||||
msgstr "Pague com criptomoedas através do Payger"
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:159
|
||||
msgid "This controls the description which the user sees during checkout."
|
||||
msgstr "Controla a descrição que o utilizador vê durante o processo de compra."
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:163
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:165
|
||||
msgid "Key provided by Payger when signing the contract."
|
||||
msgstr "Chave obtida no Payger quando cria uma conta."
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:169
|
||||
msgid "Password"
|
||||
msgstr "Palavra chave"
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:171
|
||||
msgid "Secret provided by Payger when signing the contract."
|
||||
msgstr "Secret obtido no Payger quando cria uma conta."
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:175
|
||||
msgid "Advanced options"
|
||||
msgstr "Opções Avançadas"
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:180
|
||||
msgid "Accepted Currencies"
|
||||
msgstr "Moedas Aceites"
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:183
|
||||
msgid "Choose which are the currencies you will allow users to pay with. This depends on your shop currency choosen on Woocommerce General Options. If no options are available it means your shop currency can't be converted to any crypto currency, please choose a different one you want to use Payger. "
|
||||
msgstr "Escolha que moedas vai disponibilizar para os seus utilizadores usarem como pagamento. Estas opções dependem na moeda da sua loja escolhida nas opções gerais do WooCommerce. Se nenhuma opção estiver disponível, significa que a sua moeda não pode ser convertida em nenhuma criptomoeda, por favor escolha uma diferente se pretende usar o Payger."
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:189
|
||||
msgid "Max Expired"
|
||||
msgstr "Nº vezes que pode Expirar"
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:191
|
||||
msgid "Define the number of times an expired order will ask for payment to the user. Default is set to 5."
|
||||
msgstr "Define o número de vezes uma encomenda expirada vai pedir um novo pagamento ao utilizador. Default is set to 5."
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:196
|
||||
msgid "Payment Type"
|
||||
msgstr "Tipo de Pagamento"
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:199
|
||||
msgid "Choose which type of paymnet you would like to make available for buyers "
|
||||
msgstr "Escolha o tipo de pagamento que quer disponibilizar aos seus utilizadores"
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:260
|
||||
msgid "Choose Currency"
|
||||
msgstr "Escolha a Moeda"
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:263
|
||||
msgid "Please choose one..."
|
||||
msgstr "Por favor escolha uma..."
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:265
|
||||
msgid "at rate"
|
||||
msgstr "à rate"
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:267
|
||||
msgid "Your currency rate was recently updated. You will pay a total amount of"
|
||||
msgstr "A sua rate de moeda mudou recentemente. Irá pagar um montante total de "
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:268
|
||||
msgid "corresponding to a rate of"
|
||||
msgstr "correspondente a uma rate de"
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:269
|
||||
msgid "Please confirm you want to proceed with your order."
|
||||
msgstr "Por favor confirme que quer prosseguir com a sua encomenda."
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:271
|
||||
msgid "*This is an estimate value. Due to crypto currency volatility this rate may change. Please take this into consideration."
|
||||
msgstr "*Este é um valor estimado. Devido à volatilidade das criptomoedas a rate pode variar. Por favor tenha isso em conta."
|
||||
|
||||
#: includes/class-woocommerce-payger-gateway.php:376
|
||||
msgid "Awaiting Payger payment"
|
||||
msgstr "A aguardar pagamento"
|
||||
|
||||
#: includes/class-woocommerce-payger.php:95
|
||||
msgid "WooCommerce Gateway Payger requires WooCommerce to be activated"
|
||||
msgstr "WooCommerce Gateway Payger depende do WooCommerce estar activo"
|
||||
|
||||
#: public/class-wc-email-customer-underpaid-order.php:29
|
||||
msgid "This is an order notification sent to customers containing order details after an order is underpaid."
|
||||
msgstr "Esta notificação é enviada aos clientes contendo detalhes da encomenda após uma encomenda ser parcialmente paga."
|
||||
|
||||
#: public/class-wc-email-customer-underpaid-order.php:52
|
||||
msgid "Your {site_title} underpaid order notification"
|
||||
msgstr "A sua {site_title} notificação de encomenda parcialmente paga"
|
||||
|
||||
#: public/class-wc-email-customer-underpaid-order.php:62
|
||||
msgid "Thank you for your order"
|
||||
msgstr "Obrigado pela sua encomenda"
|
||||
|
||||
#: public/class-woocommerce-payger-public.php:131
|
||||
msgid "Copy"
|
||||
msgstr "Copiar"
|
||||
|
||||
#: public/emails/customer-underpaid-order.php:28
|
||||
msgid "Your order is on-hold until we confirm the missing payment has been received. Your order details are shown below for your reference:"
|
||||
msgstr "A sua encomenda aguarda pagamento até confirmação de que o montante em falta foi recebido. Os detalhes da sua encomenda estão visíveis abaixo para sua referência:"
|
||||
|
||||
#: public/partials/customer-underpaid-order.php:28
|
||||
msgid "Your order is underpaid and will remain on-hold until we confirm the complete payment has been received. Your order details and instructions for complete the payment are shown below for your reference:"
|
||||
msgstr "A sua encomenda foi parcialmente paga e continuará a aguardar pagamento até confirmação que o montante total foi recebido. Os detalhes da encomenda e instruções para completar o pagamento estão visíveis abaixo para sua referência:"
|
||||
|
||||
#: public/partials/pay-modal.php:37
|
||||
msgid "Payment for: "
|
||||
msgstr "Pagamento de:"
|
||||
|
||||
#: public/partials/pay-modal.php:96
|
||||
msgid "Open Modal"
|
||||
msgstr "Abrir Modal"
|
||||
|
||||
#: public/partials/pay-modal.php:117
|
||||
msgid "Awaiting Payment..."
|
||||
msgstr "A aguardar pagamento..."
|
||||
|
||||
#: public/partials/pay-modal.php:122
|
||||
msgid "This payment has expired"
|
||||
msgstr "Este pagamento expirou"
|
||||
|
||||
#: public/partials/pay-modal.php:166
|
||||
msgid "Payment Amount"
|
||||
msgstr "Montante a pagar"
|
||||
|
||||
#: public/partials/pay-modal.php:171
|
||||
msgid "Network Cost"
|
||||
msgstr "Taxa a pagar"
|
||||
|
||||
#: public/partials/pay-modal.php:176
|
||||
msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#: public/partials/pay-modal.php:193
|
||||
msgid "Copy payment URL"
|
||||
msgstr "Copiar o URL de pagamento"
|
||||
|
||||
#: public/partials/pay-modal.php:201
|
||||
msgid "How do I pay this?"
|
||||
msgstr "Como pago?"
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "Woocommerce Gateway Payger"
|
||||
msgstr "Woocommerce Gateway Payger"
|
||||
|
||||
#. #-#-#-#-# woocommerce-gateway-payger.pot (Woocommerce Gateway Payger 1.0.0)
|
||||
#. #-#-#-#-#
|
||||
#. Plugin URI of the plugin/theme
|
||||
#. #-#-#-#-# woocommerce-gateway-payger.pot (Woocommerce Gateway Payger 1.0.0)
|
||||
#. #-#-#-#-#
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://www.widgilabs.com"
|
||||
msgstr "http://www.widgilabs.com"
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Payger Payment Gateway for Woocommerce"
|
||||
msgstr "Payger Payment Gateway para Woocommerce"
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "WidgiLabs"
|
||||
msgstr "WidgiLabs"
|
||||
22
spec/fixtures/dynamic_finders/plugin_version/woorousell/composer_file/package.json
vendored
Normal file
22
spec/fixtures/dynamic_finders/plugin_version/woorousell/composer_file/package.json
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"name": "woorousell",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"start": "cross-env webpack --watch",
|
||||
"build": "cross-env NODE_ENV=production webpack"
|
||||
},
|
||||
"devDependencies": {
|
||||
"browser-sync": "^2.18.13",
|
||||
"browser-sync-webpack-plugin": "^1.2.0",
|
||||
"cross-env": "^5.1.1",
|
||||
"css-loader": "^0.28.7",
|
||||
"extract-text-webpack-plugin": "^3.0.2",
|
||||
"node-sass": "^4.7.2",
|
||||
"postcss-loader": "^2.0.9",
|
||||
"raw-loader": "^0.5.1",
|
||||
"sass-loader": "^6.0.6",
|
||||
"style-loader": "^0.19.1",
|
||||
"susy": "^2.2.12",
|
||||
"webpack": "^3.10.0"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,54 @@
|
||||
# Copyright (C) 2018 Sanjeev Aryal
|
||||
# This file is distributed under the same license as the WPForce Logout package.
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: WPForce Logout 1.0.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-10-12 15:06:58+00:00\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=utf-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <EMAIL@ADDRESS>\n"
|
||||
"X-Generator: grunt-wp-i18n1.0.2\n"
|
||||
|
||||
#: includes/class-wp-force-logout-process.php:53
|
||||
msgid "Login Activity"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wp-force-logout-process.php:226
|
||||
msgid "Logout"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wp-force-logout-process.php:249
|
||||
msgid ""
|
||||
"Before we deactivate WPForce Logout, would you care to <a href=\"%1$s\" "
|
||||
"target=\"_blank\">let us know why</a> so we can improve it for you? <a "
|
||||
"href=\"%2$s\">No, deactivate now</a>."
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wp-force-logout.php:47 includes/class-wp-force-logout.php:56
|
||||
msgid "Cheatin’ huh?"
|
||||
msgstr ""
|
||||
|
||||
#. Plugin Name of the plugin/theme
|
||||
msgid "WPForce Logout"
|
||||
msgstr ""
|
||||
|
||||
#. Description of the plugin/theme
|
||||
msgid "Forcefully logout WordPress user(s)."
|
||||
msgstr ""
|
||||
|
||||
#. Author of the plugin/theme
|
||||
msgid "Sanjeev Aryal"
|
||||
msgstr ""
|
||||
|
||||
#. Author URI of the plugin/theme
|
||||
msgid "http://www.sanjeebaryal.com.np"
|
||||
msgstr ""
|
||||
|
||||
#: includes/class-wp-force-logout-process.php:105
|
||||
msgctxt "The action on users list page"
|
||||
msgid "Logout"
|
||||
msgstr ""
|
||||
11
spec/fixtures/finders/users/oembed_api/200_author_name.json
vendored
Normal file
11
spec/fixtures/finders/users/oembed_api/200_author_name.json
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"type" : "rich",
|
||||
"version" : "1.0",
|
||||
"provider_url" : "https://wp.lab",
|
||||
"provider_name" : "WP Lab",
|
||||
"width" : 600,
|
||||
"author_name" : "admin sa",
|
||||
"height" : 338,
|
||||
"html" : "aaa",
|
||||
"title" : "HOME"
|
||||
}
|
||||
12
spec/fixtures/finders/users/oembed_api/200_author_url.json
vendored
Normal file
12
spec/fixtures/finders/users/oembed_api/200_author_url.json
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"type" : "rich",
|
||||
"version" : "1.0",
|
||||
"provider_url" : "https://wp.lab",
|
||||
"provider_name" : "WP Lab",
|
||||
"author_url" : "https://wp.lab/author/admin/",
|
||||
"width" : 600,
|
||||
"author_name" : "admin",
|
||||
"height" : 338,
|
||||
"html" : "aaa",
|
||||
"title" : "HOME"
|
||||
}
|
||||
1
spec/fixtures/finders/users/oembed_api/404.json
vendored
Normal file
1
spec/fixtures/finders/users/oembed_api/404.json
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"code":"oembed_invalid_url","message":"Not Found","data":{"status":404}}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user