initial commit
2
.gitignore
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
.DS_Store
|
||||||
|
node_modules
|
||||||
53
.vscode/globalsnippets.code-snippets
vendored
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
{
|
||||||
|
// Place your dis-2019 workspace snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and
|
||||||
|
// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope
|
||||||
|
// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is
|
||||||
|
// used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
|
||||||
|
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders.
|
||||||
|
// Placeholders with the same ids are connected.
|
||||||
|
// Example:
|
||||||
|
// "Print to console": {
|
||||||
|
// "scope": "javascript,typescript",
|
||||||
|
// "prefix": "log",
|
||||||
|
// "body": [
|
||||||
|
// "console.log('$1');",
|
||||||
|
// "$2"
|
||||||
|
// ],
|
||||||
|
// "description": "Log output to console"
|
||||||
|
// }
|
||||||
|
|
||||||
|
"smalldesktop": {
|
||||||
|
"scope": "scss,sass",
|
||||||
|
"prefix": "smalldesktop",
|
||||||
|
"body": [
|
||||||
|
"@media #{\\$smalldesktop} {",
|
||||||
|
"$0",
|
||||||
|
"}"
|
||||||
|
],
|
||||||
|
"description": "SCSS: Smalldesktop media query"
|
||||||
|
},
|
||||||
|
"bigdesktop": {
|
||||||
|
"scope": "scss,sass",
|
||||||
|
"prefix": "bigdesktop",
|
||||||
|
"body": [
|
||||||
|
"@media #{\\$bigdesktop} {",
|
||||||
|
"$0",
|
||||||
|
"}"
|
||||||
|
],
|
||||||
|
"description": "SCSS: Bigdesktop media query"
|
||||||
|
},
|
||||||
|
|
||||||
|
"div": {
|
||||||
|
"scope":"html,php",
|
||||||
|
"prefix": "div",
|
||||||
|
"body": [
|
||||||
|
"<div class=\"$1\">",
|
||||||
|
"$0",
|
||||||
|
"</div>"
|
||||||
|
],
|
||||||
|
"description": "HTML: div start and end"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
24
404.php
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
<?php get_header(); ?>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- section -->
|
||||||
|
<section>
|
||||||
|
|
||||||
|
<!-- article -->
|
||||||
|
<article id="post-404">
|
||||||
|
|
||||||
|
<h1><?php _e( 'Page not found', 'dis2019' ); ?></h1>
|
||||||
|
<h2>
|
||||||
|
<a href="<?php echo home_url(); ?>"><?php _e( 'Return home?', 'dis2019' ); ?></a>
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
<!-- /article -->
|
||||||
|
|
||||||
|
</section>
|
||||||
|
<!-- /section -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<?php get_footer(); ?>
|
||||||
258
CHANGELOG.md
Normal file
@@ -0,0 +1,258 @@
|
|||||||
|
### [dis-2019](http://dis2019.com) Changelog
|
||||||
|
|
||||||
|
## 1.4.3 (02 December, 2013)
|
||||||
|
|
||||||
|
* Update [conditionizr](http://conditionizr.com) to version 4.0.0
|
||||||
|
* Update jQuery to v1.10.2
|
||||||
|
* Update Google Analytics snippet to _new_ universal snippet
|
||||||
|
* Improved SVG script
|
||||||
|
* Removed empty conditionizr asset directories for `js` and `css`
|
||||||
|
* Remove redundant Modernizr file, loading from CDN
|
||||||
|
|
||||||
|
## 1.4.2 (15 June, 2013)
|
||||||
|
|
||||||
|
* Add _font-size:62.5%;_ to the HTML element in CSS for _rem_ (relative-ems) sizing
|
||||||
|
* Update jQuery 1.9.1 to 1.10.1
|
||||||
|
|
||||||
|
## 1.4.1 (26 April, 2013)
|
||||||
|
|
||||||
|
* Removed protocol-relative scripts/styles function as causes some disruption on some local development environments
|
||||||
|
* Removed hard-coded jQuery from footer as was causing issues with plugins that relied on jQuery being enqueued
|
||||||
|
* Removed jQuery CDN fallback, jQuery 1.9.1 and theme scripts will be enqueued in the <head> from now on to avoid conflicts with WordPress jQuery checks/detects
|
||||||
|
|
||||||
|
## 1.4.0 (09 April, 2013)
|
||||||
|
|
||||||
|
* Move pagination into it's own file (pagination.php) and include in necessary template files
|
||||||
|
* Enhanced clearfix in CSS to micro clearfix hack (works by using parent element for clear)
|
||||||
|
* Change all HTML structural comments to lower case for cleaner look
|
||||||
|
* Add apple-touch-icon-precomposed to <head>
|
||||||
|
* Moved favicon.ico to 'img/icons'
|
||||||
|
* Moved new apple touch icon to 'img/icons'
|
||||||
|
* Remove Conditionizr default <head> setup and add config URL (cleaner code from install) please see [conditionizr](http://conditionizr.com/docs.html) for configuration
|
||||||
|
* Reordered some meta, links in <head> for better readability/consistency
|
||||||
|
* Add a few structural (but empty) classes into CSS for fast styling upon install
|
||||||
|
* Few CSS comments added to label areas/components better
|
||||||
|
|
||||||
|
## 1.3.9 (07 April, 2013)
|
||||||
|
|
||||||
|
* Added WAI-ARIA landmark roles to enrich semantics and improve accessibility. [Stacey Cordoni](https://github.com/staceycordoni) [#32](https://github.com/toddmotto/dis2019/pull/32)
|
||||||
|
* Added WAI-ARIA 'role=button' to search form <button>
|
||||||
|
* Upgrade search input type from 'type=text' to 'type=search' for better use of HTML5 alongside WAI-ARIA
|
||||||
|
|
||||||
|
## 1.3.8 (02 April, 2013)
|
||||||
|
|
||||||
|
* Load Modernizr from CloudFlare CDN (same as Conditionizr)
|
||||||
|
* Load only Conditionizr and Modernizr through the <head>, with Conditionizr call too.
|
||||||
|
* Load jQuery CDN (Google) in footer, with jQuery CDN fallback (CloudFlare)
|
||||||
|
* Separated WordPress script enqueue to load Conditionizr, Modernizr in head: 'function dis2019_header_scripts()'
|
||||||
|
* Hard-coded jQuery and CDN fallback into footer.php above custom theme scripts, more reliable fallback method
|
||||||
|
* Load custom theme scripts in footer: 'function dis2019_footer_scripts()'
|
||||||
|
* Loading scripts before closing </body> tag is best practice and not seen often in WordPress sites
|
||||||
|
* Lowercase <!doctype html> in header.php
|
||||||
|
* Remove empty line at end of functions.php
|
||||||
|
|
||||||
|
## 1.3.7 (01 April, 2013)
|
||||||
|
|
||||||
|
* Added Portuguese (Brazil) language translation file to /languages/ from [Wesllei Henrique](https://github.com/wesllei)
|
||||||
|
|
||||||
|
## 1.3.6 (30 March, 2013)
|
||||||
|
|
||||||
|
* Protocol relative jQuery and Conditionizr URLs
|
||||||
|
* Protocol relative URLs for all enqueued scripts and styles
|
||||||
|
* Added French language translation file to /languages/ from [Kevin Plattret](https://twitter.com/kevinplattret)
|
||||||
|
* Fixed search form bug by adding name="s" attribute
|
||||||
|
* Neater comments for headings in functions.php (same as style.css)
|
||||||
|
* Add date ordered contributors to ReadMe.
|
||||||
|
|
||||||
|
## 1.3.5 (26 March, 2013)
|
||||||
|
|
||||||
|
* Update jQuery CDN to use $_SERVER['SERVER_PORT'] to server HTTPS if needed
|
||||||
|
* Edit Google Analytics string to cater for SSL/HTTPS (footer.php)
|
||||||
|
* Added Spanish language translation file to /languages/ from Carlos Pinar
|
||||||
|
* Indent <head> and <body> elements for better code readability
|
||||||
|
* Add X-UA-Compatible meta tag to <head> to force Chrome Frame/latest document mode in IE (edge)
|
||||||
|
* Format the <head> by grouping similar elements
|
||||||
|
* Enhance footer.php indentation
|
||||||
|
* Change footer.php fallback text
|
||||||
|
* Removed HTML comments from comments.php and changed ID to class
|
||||||
|
* Improve Conditionizr formatting in header.php
|
||||||
|
* Set Conditionizr scripts/styles to _false_ by default (classes true)
|
||||||
|
* Change pagination ID to class for better CSS
|
||||||
|
* Improve indentation in 404.php for child element
|
||||||
|
* Update screenshot.png
|
||||||
|
* Update default dis-2019 logo and gravatar
|
||||||
|
|
||||||
|
## 1.3.4 (22 March, 2013)
|
||||||
|
|
||||||
|
* Update Conditionizr to version 2.2.0
|
||||||
|
* Replaced <aside> id with a class for better CSS
|
||||||
|
* Better naming conventions for search form, more class focused
|
||||||
|
* Removed JavaScript onfocus/onblur events in search input
|
||||||
|
* Replaced onfocus/onblur events with HTML5 placeholder for 'Search' (this is fine for non-supporting browsers as the search button indicates it's a search input)
|
||||||
|
* Search <input> has been replaced to a <button> for more flexibility, allows HTML content
|
||||||
|
* Removed font-smoothing from Opera and Mozilla as no longer supported
|
||||||
|
|
||||||
|
## 1.3.3 (03 March, 2013)
|
||||||
|
|
||||||
|
* Hook up Conditionizr to theme Directory using WordPress theme URI hooks
|
||||||
|
|
||||||
|
## 1.3.2 (22 February, 2013)
|
||||||
|
|
||||||
|
* Optimise body CSS declaration to shorthand
|
||||||
|
* Remove inner wrapper inside header element, wrapper now wraps all content
|
||||||
|
* Added header and footer classes to elements to encourage class styling over element declaration (i.e. header {} always use .header {} class etc.)
|
||||||
|
|
||||||
|
## 1.3.1 (13 February, 2013)
|
||||||
|
|
||||||
|
* Restructured CSS file, better architecture
|
||||||
|
* Focused CSS document on a more OOCSS approach (part of restructure)
|
||||||
|
* Split CSS into; Main, Structure, Pages, Images, Typography, Responsive, Misc, Print
|
||||||
|
* Moved away from single-line CSS formatting to multiple-line formatting for clearer code
|
||||||
|
* CSS indentation formatting, new lines for shared selectors
|
||||||
|
* Update jQuery to version 1.9.1, Google CDN and CloudFlare CDN
|
||||||
|
* Update Conditionizr to CDNJS CloudFlare v2.1.1
|
||||||
|
* Removed mediaqueries.min.js, do we really need older browsers to be responsive, HTML5Shiv (built-in Modernizr) is enough
|
||||||
|
* Updated scripts.js to ride off Modernizr.svg feature detect and remove custom script detect
|
||||||
|
|
||||||
|
## 1.3.0 (09 February, 2013)
|
||||||
|
|
||||||
|
* Remove jquery.min.js 'local' fallback from /js/ folder, simply fallback to another CDN (CloudFlare), see footer.php, saves code and maintenance across all sites
|
||||||
|
* Remove Google Analytics and jQuery fallback from functions.php injection, added manually in footer.php
|
||||||
|
* Setup Conditionizr to supply an HTML5Shim to Less Than IE9 browsers
|
||||||
|
* Updates Conditionizr to v1.2.0, enhanced retina detection and unlimited 'customScript', for polyfill usage (e.g. using respond.js and disshim together)
|
||||||
|
* Added Romanian language translation file to /languages/
|
||||||
|
|
||||||
|
## 1.2.9 (03 February, 2013)
|
||||||
|
|
||||||
|
* Readded [//conditionizr.com](Conditionizr), the raw JavaScript version 50% faster, previously removed to work on jQuery-free Conditionizr
|
||||||
|
|
||||||
|
## 1.2.8 (30 January, 2013)
|
||||||
|
|
||||||
|
* Added Google Analytics DNS Prefetch to header.php to reduce [DNS latency](//www.chromium.org/developers/design-documents/dns-prefetching)
|
||||||
|
|
||||||
|
## 1.2.7 (23 January, 2013)
|
||||||
|
|
||||||
|
* Update to jQuery 1.9.0
|
||||||
|
* Removed [Conditionizr](http://conditionizr.com)
|
||||||
|
* Remove Apple Touch Icons
|
||||||
|
|
||||||
|
## 1.2.6 (24 December, 2012)
|
||||||
|
|
||||||
|
* [Conditionizr](http://conditionizr.com) legacy script and style loader added
|
||||||
|
* Conditional statements removed from HTML tag (HTML classes added dynamically with Conditionizr)
|
||||||
|
* Conditional statement for mediaqueries.min.js removed (added dynamically with Conditionizr, included inside scripts.js)
|
||||||
|
* conditionizr.min.js and conditionizr.js enqueued
|
||||||
|
* /css/conditionizr/ added with browser styles
|
||||||
|
* /js/conditionizr/ added with browser scripts
|
||||||
|
* Shortened ViewPort meta tag with user scalable enabled
|
||||||
|
|
||||||
|
## 1.2.5 (09 December, 2012)
|
||||||
|
|
||||||
|
* Added SVG support in scripts.js for SVG graphics
|
||||||
|
* Shorten DOM ready function call to shorthand
|
||||||
|
* Removed web app capable meta tag, kept viewport
|
||||||
|
* CSS3 Media Queries JavaScript polyfill added to header.php
|
||||||
|
* Included default .wrapper style for fluid-first responsive approach
|
||||||
|
* Upgraded jQuery to 1.8.3
|
||||||
|
* Split stylesheets with separate call for Normalize as reset
|
||||||
|
* Global Box Sizing and Font-Smoothing on all elements
|
||||||
|
|
||||||
|
## 1.2.4 (15 October, 2012)
|
||||||
|
|
||||||
|
* Custom Comments callback - wp_list_comments('type=comment&callback=dis2019comments'); editable comments now in functions.php
|
||||||
|
* Custom default Gravatar now built in, with demo gravatar.jpg inside the 'img' folder, swap it out
|
||||||
|
* Changed date format from the_date to the_time('F j, Y')
|
||||||
|
* Changed time format from the_time to the_time('g:i a')
|
||||||
|
* Changes above show the exact same when parsed, but have been changed due to the way WordPress works, which only shows one 'Date' for posts created on the same day. [More here](http://codex.wordpress.org/Function_Reference/the_date).
|
||||||
|
|
||||||
|
## 1.2.3 (13 October, 2012)
|
||||||
|
|
||||||
|
* Responsive Thumbnail support, added a function which removes width and height dynamic attributes from thumbnail
|
||||||
|
|
||||||
|
## 1.2.2 (09 October, 2012)
|
||||||
|
|
||||||
|
* Modified function - jQuery CDN fallback to get_template_directory_uri() instead of bloginfo('template_url')
|
||||||
|
* Add Support for Custom Header
|
||||||
|
* Tweaked support for Custom Background, added default color and placeholder background image
|
||||||
|
|
||||||
|
## 1.2.1 (07 October, 2012)
|
||||||
|
|
||||||
|
* Custom callback for wp_nav_menu, now in functions.php with dis2019_nav(); in header.php
|
||||||
|
* JavaScript added to 'scripts.js', hides URL bar after page load on iPhone/iPad, great for responsive projects
|
||||||
|
* Meta tag 'apple-mobile-web-app-capable' added to header.php
|
||||||
|
* Meta tag 'apple-mobile-web-app-status-bar-style' added to header.php
|
||||||
|
|
||||||
|
## 1.2.0 (03 October, 2012)
|
||||||
|
|
||||||
|
* Merged pull request from J-Rabe
|
||||||
|
* Localisation-support for all theme strings and empty *.pot for further translations
|
||||||
|
* German translation added by J-Rabe
|
||||||
|
* Functions.php includes new function 'load_theme_textdomain' for language support
|
||||||
|
* Loop.php created to handle the Loop core, with get_template_part inclusion for relevant files
|
||||||
|
* Loop.php includes conditional result for search results
|
||||||
|
* Swapped bloginfo('template_url'); for echo get_template_directory_uri(); on Logo + Favicon
|
||||||
|
* home_url instead of bloginfo('home')
|
||||||
|
|
||||||
|
## 1.1.2 (02 October, 2012)
|
||||||
|
|
||||||
|
* Merged pull request for comments.php code changes
|
||||||
|
* Merged pull request to remove 'rel' attribute from categories
|
||||||
|
* Filter added to remove autop paragraph function from Excerpts (Manual only)
|
||||||
|
* Filter added to allow shortcodes to execute inside Excerpts (Manual only)
|
||||||
|
* Filter added to strip autop tags altogether from Excerpts
|
||||||
|
|
||||||
|
## 1.1.1 (30 September, 2012)
|
||||||
|
|
||||||
|
* Enhanced author template
|
||||||
|
* Enhanced 404 page with return home link
|
||||||
|
* Semantic HTML enhancements
|
||||||
|
* Added 'published by the_author' hooks as a default
|
||||||
|
* Suggested include of WordPress Core CSS styles, now added
|
||||||
|
|
||||||
|
## 1.1.0 (29 September, 2012)
|
||||||
|
|
||||||
|
* Core template files restructure
|
||||||
|
* Semantic HTML enhancements
|
||||||
|
* Google analytics (optimised) dynamically loaded through functions.php in footer
|
||||||
|
* jQuery protocol relative fallback dynamically loaded through functions.php in footer
|
||||||
|
* Hardcoded footer.php content (analytics and jquery) removed as it's dynamically loaded now
|
||||||
|
* The Loop 'if, while, the' all inline, now inside parent section element
|
||||||
|
* Pagination links brought inside section element, outside of The Loop after our article
|
||||||
|
* Section elements brought outside The Loop to hold all page content
|
||||||
|
* The Loop 'else' content wrapper in article tag for markup/layout consistencies
|
||||||
|
* Post ID and Post Class added to article elements
|
||||||
|
* Category support for 'the category' title
|
||||||
|
* Enhanced Default Template page and Template Demo Page (page.php and template-demo.php)
|
||||||
|
* Threaded comments support
|
||||||
|
* Few obvious annotations removed
|
||||||
|
* Small typo in annotation 'function.php' changed to 'functions.php'
|
||||||
|
* Update theme default logo with new branding
|
||||||
|
* CSS tweak for default hyperlink color change to match Logo blue
|
||||||
|
|
||||||
|
## 1.0.2 (28 September, 2012)
|
||||||
|
|
||||||
|
* Update CDN and local jQuery fallbacks from 1.8.1 to 1.8.2
|
||||||
|
* Conditional page loads script added to functions.php
|
||||||
|
* Added Custom Background support into functions.php
|
||||||
|
* Remove WordPress Admin bar by default
|
||||||
|
* Remove 'text/css' from enqueued stylesheet
|
||||||
|
* Updated screenshot.png logo to new dis-2019 branding
|
||||||
|
* CSS change, :focus changed to input:focus as FireFox was adding focus styles to any element
|
||||||
|
* CSS change, new Chrome updates renders fonts thicker, reduced font-weight on body from 400 to 300
|
||||||
|
* CSS change, create non-semantic section below media queries, moved text-selection colors etc
|
||||||
|
* CSS change, default font-family for h1-h6 Helvetica Neue with Helvetica/Arial fallbacks (previous Georgia)
|
||||||
|
* CSS header theme details updated to new URL
|
||||||
|
* Move toddmotto.com/dis2019/ to new dis2019.com domain
|
||||||
|
* Favicon support for theme directory favicon.ico
|
||||||
|
* Apple touch icon support, drag into root folder
|
||||||
|
* LICENSE.md and README.md added and fully updated
|
||||||
|
|
||||||
|
## 1.0.1 (27 September, 2012)
|
||||||
|
|
||||||
|
* Commit CHANGELOG.md
|
||||||
|
* Commit README.md
|
||||||
|
* Commit of Empty Fonts folder with readme.txt inside (for GitHub detection)
|
||||||
|
|
||||||
|
## 1.0.0 (16 September, 2012)
|
||||||
|
|
||||||
|
* Initial commit
|
||||||
13
LICENSE.md
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
# [dis-2019](http://dis2019.com) License
|
||||||
|
|
||||||
|
## MIT License
|
||||||
|
|
||||||
|
Copyright © 2013 dis-2019 // @dis2019
|
||||||
|
|
||||||
|
Built by Todd Motto // @toddmotto
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
73
README.md
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
# [dis-2019](http://dis2019.com)
|
||||||
|
|
||||||
|
Powerful shell for rapidly deploying your WordPress projects.
|
||||||
|
|
||||||
|
* Project: [github.com/toddmotto/dis2019](https://github.com/toddmotto/dis2019)
|
||||||
|
* Website: [dis2019.com](http://dis2019.com)
|
||||||
|
* Twitter: [@dis2019](http://twitter.com/dis2019)
|
||||||
|
* Author : [Todd Motto](http://toddmotto.com) // [@toddmotto](http://twitter.com/toddmotto)
|
||||||
|
|
||||||
|
## Contributors (in order of pull request)
|
||||||
|
[David Munn](https://github.com/Munnday), [Patrick Zeinert](https://github.com/CoeusCC), [J-Rabe](https://github.com/J-Rabe), [Steve Steiner](https://github.com/ssteinerx), [Kyle Hudson](https://github.com/diskhub), [chrisdl](https://github.com/chrisdl), [Marcel Miranda](https://github.com/reaktivo), [Fx Bénard](https://github.com/fxbenard), Ioan Virag, [Mohamed Elkebir](https://github.com/elkebirmed), [lregla](https://github.com/lregla), Carlos Pinar, [Joshua Lyman](https://github.com/jlyman), [Kevin Plattret](https://github.com/kevinplattret), [Wesllei Henrique](https://github.com/wesllei), [Stacey Cordoni](https://github.com/staceycordoni).
|
||||||
|
|
||||||
|
## Getting Started with dis-2019
|
||||||
|
|
||||||
|
Download the latest version from [dis2019.com](http://dis2019.com)
|
||||||
|
|
||||||
|
## Get involved! Make dis-2019 better
|
||||||
|
|
||||||
|
There are a few ways to get involved, submit a Pull Request, or submit a comment on the website - [dis2019.com](http://dis2019.com)
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
### HTML5
|
||||||
|
* Basic Semantic HTML5 Markup
|
||||||
|
* W3C Valid Code Foundations
|
||||||
|
* Responsive Ready, ViewPort meta data
|
||||||
|
* HTML Class support for IE7, IE8, IE9 Conditionals (HTML5 Boilerplate)
|
||||||
|
* Clean, neatly organised code, with PHP annotations
|
||||||
|
|
||||||
|
### jQuery + JavaScript
|
||||||
|
* Replaced built-in WordPress enqueue with Google CDN
|
||||||
|
* Protocol relative jQuery if Google CDN offline (HTML5 Boilerplate)
|
||||||
|
* Conditionizr for cross-platform/device detects and enhancements
|
||||||
|
* Modernizr feature detection, HTML5 element support for legacy, progressive enhancement (HTML5 Boilerplate)
|
||||||
|
* DOM Ready JavaScript file setup (scripts.js) for instant JavaScript development
|
||||||
|
* JavaScript files enqueued using WordPress functions into wp_head
|
||||||
|
|
||||||
|
### CSS3
|
||||||
|
* HTML5 Boilerplate reset
|
||||||
|
* Media Queries framework for instant development using @media
|
||||||
|
* @font-face empty framework with Fonts folder setup ready for new custom fonts
|
||||||
|
* CSS3 custom selection styles
|
||||||
|
* Inline print styles (HTML5 Boilerplate)
|
||||||
|
* Body element config, including Optimize Legibility for kerning and font-smoothing
|
||||||
|
* Replaced focus styles to avoid blue blur in field elements, replaced with border
|
||||||
|
* Stylesheet enqueued using WordPress functions into wp_head
|
||||||
|
|
||||||
|
### Preloaded Functions (functions.php)
|
||||||
|
* Enqueue Scripts functions setup
|
||||||
|
* Enqueue Styles functions setup
|
||||||
|
* Dynamic WordPress Menu Navigation Support, preloaded with 3 Dynamic menus
|
||||||
|
* Cleaned up dynamic nav output (Remove outer 'div')
|
||||||
|
* Remove all injected classes from nav items, ID's, Page ID's
|
||||||
|
* Custom Post Type x1 preloaded for demonstration, supporting: Category, Tags, Post Thumbnails, Excerpts
|
||||||
|
* Dynamic Sidebar with x2 Widget Areas, and sidebar.php setup
|
||||||
|
* WordPress Thumbnail Support, no Plugin image cropping, custom Arrays and Thumbnail settings
|
||||||
|
* Custom Excerpt callbacks, with changeable callback numbers
|
||||||
|
* Replaced 'Read More' button for custom Excerpt callbacks
|
||||||
|
* Demo Shortcodes included, with Nested Shortcode capability
|
||||||
|
* Add Slug to body class (Starkers Theme credit)
|
||||||
|
* wp_head functions stripped right down, remove excess injected junk
|
||||||
|
* All functions annotated, categorised into sections, filters, actions, shortcodes etc.
|
||||||
|
* Space for development, neatly organised code with Modules/External files
|
||||||
|
|
||||||
|
### Theme Files and Functionality
|
||||||
|
* Built in Pagination, no plugins (strips out prev + next post and gives page numbers)
|
||||||
|
* Optimised Google Analytics in footer (HTML5 Boilerplate)
|
||||||
|
* Widget Area Sidebar support, functions in place to get developing
|
||||||
|
* Custom Search Form included (searchform.php) - fully editable
|
||||||
|
* Tags support for showing Post Tags
|
||||||
|
* Category support for showing the Category of post
|
||||||
|
* Author support showing the author
|
||||||
|
* Demo Custom Page Template for expansion
|
||||||
119
_jegyzet.md
Normal file
@@ -0,0 +1,119 @@
|
|||||||
|
# Telepítés új gépre:
|
||||||
|
Szükséges: python2, gulp global, max node 11
|
||||||
|
Mountnál exec paramétert nem kifelejteni!!!
|
||||||
|
|
||||||
|
```
|
||||||
|
nvm install 11
|
||||||
|
nvm use 11
|
||||||
|
sudo apt install python
|
||||||
|
npm install gulp-cli -g
|
||||||
|
nvm install dev
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Kérdések
|
||||||
|
|
||||||
|
## Általános
|
||||||
|
|
||||||
|
Hogyan legyen a kategorizálás:
|
||||||
|
Most így gondoltam:
|
||||||
|
Category: fotó hírek minden ide
|
||||||
|
Tag: BE DO THINK LOVE
|
||||||
|
|
||||||
|
A képek alapján ezt érzem:
|
||||||
|
Category: fotó média stb
|
||||||
|
Post type: Cikk, album stb
|
||||||
|
Tag: Be DO THINK LOVE
|
||||||
|
|
||||||
|
Ha jól látom tageket egyáltalán nem gondoltátok használni, ezért gondoltam erre a felosztásra, kérdés hogy legyen-e külön a a post type és kategory, vagy egyben?
|
||||||
|
|
||||||
|
A színek ugye a be do think love-tól függnek?
|
||||||
|
|
||||||
|
lightbox az a mostani designisso-n sincs, ezen legyen?
|
||||||
|
|
||||||
|
## kezdőlap
|
||||||
|
Így a ragadós tekerés miatt ajánlom, hogy legyen egy felülre ugrás gomb, talán a továbbugrás helyett, ugyanaz a nyíl, csak felfele, és nem gördül az oldallal
|
||||||
|
|
||||||
|
## single
|
||||||
|
ha hosszú a cím, akkor mi legyen? kevesbb látszon a cikkből? Lásd I O cikk
|
||||||
|
metadata: van szerző vagy nincs? melyik a jó változat?
|
||||||
|
|
||||||
|
### galéria:
|
||||||
|
Melyik sarokban vannak a képfeliratok, ha 3 elem jelenik meg egymás mellett? vagy mindig erőltetve legyen a max két kép egymás mellett? Lásd: mobil fekvő, mintaposzt
|
||||||
|
|
||||||
|
|
||||||
|
# további kérdések
|
||||||
|
|
||||||
|
## Kezdőlap asztali
|
||||||
|
|
||||||
|
Mitől függ, hogy a kép bal, vagy jobb oldalon van? random, felváltva, be-do alapján? Vagy egyesével állítható egy bal-jobb pataméterrel cikkenként?
|
||||||
|
|
||||||
|
## asztali single:
|
||||||
|
Követtem a mobilos analógiát: fent nincs szerző, csak lent, felül a kategóriák vannak
|
||||||
|
|
||||||
|
## általános
|
||||||
|
|
||||||
|
Kategória oldalak asztalin?
|
||||||
|
|
||||||
|
Továbbiak betöltése hogy néz ki?
|
||||||
|
|
||||||
|
## események
|
||||||
|
Események asztalin?
|
||||||
|
|
||||||
|
Egyedi esemény oldal van, vagy az csak egy link lista?
|
||||||
|
|
||||||
|
# Megbeszélés 2019.05.30.
|
||||||
|
|
||||||
|
Kezdőlap:
|
||||||
|
|
||||||
|
egér változzon lapozósra
|
||||||
|
két nagy, utána kicsi rácsban,
|
||||||
|
Nincs gradiens
|
||||||
|
Hover csak a címen
|
||||||
|
Nyíl, csak az első cikken
|
||||||
|
cursor módosítás tekerésre
|
||||||
|
Kis ikonok hover:
|
||||||
|
- maszkok bedo alapján
|
||||||
|
- némelyik maszkkal alapból, némelyik sima kép,
|
||||||
|
- hoverre eltűnik a kép, és helyette
|
||||||
|
|
||||||
|
Nagycímek:
|
||||||
|
- utána margó
|
||||||
|
- az is megnő, minden mint
|
||||||
|
|
||||||
|
Excerpt a főoldalon hoverre: külön paraméter, nem excerpt!!
|
||||||
|
|
||||||
|
og: tag: pluginnal!
|
||||||
|
|
||||||
|
Dátumot átírni
|
||||||
|
|
||||||
|
Szőveg kilóg a margóra!
|
||||||
|
|
||||||
|
szerzőnek is paraméter
|
||||||
|
|
||||||
|
Single:
|
||||||
|
|
||||||
|
- Nem kell carousel a felső oldalra
|
||||||
|
- crop thumbnail a fenti képnél
|
||||||
|
- állókép körbefut a szöveg
|
||||||
|
- galéria: mobilon fix 2, column számot lehessen használni asztalin
|
||||||
|
|
||||||
|
Menü: csík küzépen, két részben, két küön menü
|
||||||
|
|
||||||
|
|
||||||
|
BEDO kör: forog,
|
||||||
|
- hover, megáll, fekete megjelenik, nagyszüvegre megy a be-kat-ra
|
||||||
|
- kattintás a szóra:
|
||||||
|
|
||||||
|
Kategória lap: első csempe kimarad.
|
||||||
|
|
||||||
|
Kereső:
|
||||||
|
- teljes lábléc magasságban, hosszabban fusson ki
|
||||||
|
- ne legyen hover,
|
||||||
|
-
|
||||||
|
|
||||||
|
# Post-install teendők:
|
||||||
|
|
||||||
|
- function.php
|
||||||
|
esemény cat-id-t átírni!!
|
||||||
31
alm_templates/default.php
Normal file
@@ -0,0 +1,31 @@
|
|||||||
|
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||||
|
|
||||||
|
<!-- post thumbnail -->
|
||||||
|
<?php if ( has_post_thumbnail()) : // Check if thumbnail exists ?>
|
||||||
|
<a class="thumbnailwrapper" href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
|
||||||
|
<?php the_post_thumbnail('home-thumbnail'); ?>
|
||||||
|
</a>
|
||||||
|
<?php endif; ?>
|
||||||
|
<!-- /post thumbnail -->
|
||||||
|
|
||||||
|
<div class="metadata">
|
||||||
|
<div class="categories">
|
||||||
|
<?php the_category( ' | ' ); ?>
|
||||||
|
</div>
|
||||||
|
<div class="postedon">
|
||||||
|
<?php the_time('Y. m. d.'); ?>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- post title -->
|
||||||
|
<h2>
|
||||||
|
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
|
||||||
|
</h2>
|
||||||
|
<!-- /post title -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</article>
|
||||||
19
archive.php
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
<?php get_header(); ?>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- section -->
|
||||||
|
<section>
|
||||||
|
|
||||||
|
<h1><?php _e( 'Archives', 'dis2019' ); ?></h1>
|
||||||
|
|
||||||
|
<?php get_template_part('loop'); ?>
|
||||||
|
|
||||||
|
<?php get_template_part('pagination'); ?>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
<!-- /section -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<?php get_footer(); ?>
|
||||||
77
author.php
Normal file
@@ -0,0 +1,77 @@
|
|||||||
|
<?php get_header(); ?>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- section -->
|
||||||
|
<section>
|
||||||
|
|
||||||
|
<?php if (have_posts()): the_post(); ?>
|
||||||
|
|
||||||
|
<h1><?php _e( 'Author Archives for ', 'dis2019' ); echo get_the_author(); ?></h1>
|
||||||
|
|
||||||
|
<?php if ( get_the_author_meta('description')) : ?>
|
||||||
|
|
||||||
|
<?php echo get_avatar(get_the_author_meta('user_email')); ?>
|
||||||
|
|
||||||
|
<h2><?php _e( 'About ', 'dis2019' ); echo get_the_author() ; ?></h2>
|
||||||
|
|
||||||
|
<?php echo wpautop( get_the_author_meta('description') ); ?>
|
||||||
|
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php rewind_posts(); while (have_posts()) : the_post(); ?>
|
||||||
|
|
||||||
|
<!-- article -->
|
||||||
|
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||||
|
|
||||||
|
<!-- post thumbnail -->
|
||||||
|
<?php if ( has_post_thumbnail()) : // Check if Thumbnail exists ?>
|
||||||
|
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">
|
||||||
|
<?php the_post_thumbnail(array(120,120)); // Declare pixel size you need inside the array ?>
|
||||||
|
</a>
|
||||||
|
<?php endif; ?>
|
||||||
|
<!-- /post thumbnail -->
|
||||||
|
|
||||||
|
<!-- post title -->
|
||||||
|
<h2>
|
||||||
|
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
|
||||||
|
</h2>
|
||||||
|
<!-- /Post title -->
|
||||||
|
|
||||||
|
<!-- post details -->
|
||||||
|
<span class="date"><?php the_time('F j, Y'); ?> <?php the_time('g:i a'); ?></span>
|
||||||
|
<span class="author"><?php _e( 'Published by', 'dis2019' ); ?> <?php the_author_posts_link(); ?></span>
|
||||||
|
<span class="comments"><?php comments_popup_link( __( 'Leave your thoughts', 'dis2019' ), __( '1 Comment', 'dis2019' ), __( '% Comments', 'dis2019' )); ?></span>
|
||||||
|
<!-- /post details -->
|
||||||
|
|
||||||
|
<?php diswp_excerpt('diswp_index'); // Build your custom callback length in functions.php ?>
|
||||||
|
|
||||||
|
<br class="clear">
|
||||||
|
|
||||||
|
<?php edit_post_link(); ?>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
<!-- /article -->
|
||||||
|
|
||||||
|
<?php endwhile; ?>
|
||||||
|
|
||||||
|
<?php else: ?>
|
||||||
|
|
||||||
|
<!-- article -->
|
||||||
|
<article>
|
||||||
|
|
||||||
|
<h2><?php _e( 'Sorry, nothing to display.', 'dis2019' ); ?></h2>
|
||||||
|
|
||||||
|
</article>
|
||||||
|
<!-- /article -->
|
||||||
|
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php get_template_part('pagination'); ?>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
<!-- /section -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<?php get_footer(); ?>
|
||||||
65
category-esemeny.php
Normal file
@@ -0,0 +1,65 @@
|
|||||||
|
<?php get_header();?>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- section -->
|
||||||
|
<section>
|
||||||
|
|
||||||
|
<h1>Események</h1>
|
||||||
|
|
||||||
|
<?php if (have_posts()): while (have_posts()): the_post();?>
|
||||||
|
|
||||||
|
|
||||||
|
<article id="post-<?php the_ID();?>" <?php post_class();?>>
|
||||||
|
|
||||||
|
<!-- post thumbnail -->
|
||||||
|
<?php if (has_post_thumbnail()): // Check if thumbnail exists ?>
|
||||||
|
<a class="thumbnailwrapper" href="<?php the_permalink();?>" title="<?php the_title();?>">
|
||||||
|
<?php the_post_thumbnail('home-thumbnail');?>
|
||||||
|
</a>
|
||||||
|
<?php endif;?>
|
||||||
|
<!-- /post thumbnail -->
|
||||||
|
|
||||||
|
<div class="metadata">
|
||||||
|
<div class="categories">
|
||||||
|
<?php the_category(' | ');?>
|
||||||
|
</div>
|
||||||
|
<div class="postedon">
|
||||||
|
<?php the_time('Y. m. d.');?>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- post title -->
|
||||||
|
<h2>
|
||||||
|
<a href="<?php the_permalink();?>" title="<?php the_title();?>"><?php the_title();?></a>
|
||||||
|
</h2>
|
||||||
|
<!-- /post title -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</article>
|
||||||
|
|
||||||
|
|
||||||
|
<?php endwhile;?>
|
||||||
|
|
||||||
|
<?php else: ?>
|
||||||
|
|
||||||
|
<!-- article -->
|
||||||
|
<article>
|
||||||
|
<h2><?php _e('Sorry, nothing to display.', 'dis2019');?></h2>
|
||||||
|
</article>
|
||||||
|
<!-- /article -->
|
||||||
|
|
||||||
|
<?php endif;?>
|
||||||
|
|
||||||
|
<?php get_template_part('pagination');?>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
<!-- /section -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<?php get_footer();?>
|
||||||
19
category.php
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
<?php get_header(); ?>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- section -->
|
||||||
|
<section>
|
||||||
|
|
||||||
|
<h1><?php _e( 'Categories for ', 'dis2019' ); single_cat_title(); ?></h1>
|
||||||
|
|
||||||
|
<?php get_template_part('loop'); ?>
|
||||||
|
|
||||||
|
<?php get_template_part('pagination'); ?>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
<!-- /section -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<?php get_footer(); ?>
|
||||||
24
comments.php
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
<div class="comments">
|
||||||
|
<?php if (post_password_required()) : ?>
|
||||||
|
<p><?php _e( 'Post is password protected. Enter the password to view any comments.', 'dis2019' ); ?></p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<?php return; endif; ?>
|
||||||
|
|
||||||
|
<?php if (have_comments()) : ?>
|
||||||
|
|
||||||
|
<h2><?php comments_number(); ?></h2>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<?php wp_list_comments('type=comment&callback=dis2019comments'); // Custom callback in functions.php ?>
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<?php elseif ( ! comments_open() && ! is_page() && post_type_supports( get_post_type(), 'comments' ) ) : ?>
|
||||||
|
|
||||||
|
<p><?php _e( 'Comments are closed here.', 'dis2019' ); ?></p>
|
||||||
|
|
||||||
|
<?php endif; ?>
|
||||||
|
|
||||||
|
<?php comment_form(); ?>
|
||||||
|
|
||||||
|
</div>
|
||||||
1249
css/base.css
Normal file
BIN
fonts/Butler-Black.woff
Normal file
BIN
fonts/Butler-Black.woff2
Normal file
BIN
fonts/Butler-Bold.woff
Normal file
BIN
fonts/Butler-Bold.woff2
Normal file
BIN
fonts/Butler-ExtraBold.woff
Normal file
BIN
fonts/Butler-ExtraBold.woff2
Normal file
BIN
fonts/Butler-Light.woff
Normal file
BIN
fonts/Butler-Light.woff2
Normal file
BIN
fonts/Butler-Medium.woff
Normal file
BIN
fonts/Butler-Medium.woff2
Normal file
BIN
fonts/Butler-UltraLight.woff
Normal file
BIN
fonts/Butler-UltraLight.woff2
Normal file
BIN
fonts/Butler.woff
Normal file
BIN
fonts/Butler.woff2
Normal file
BIN
fonts/WesteindeCaption-Bold.woff
Normal file
BIN
fonts/WesteindeCaption-Bold.woff2
Normal file
BIN
fonts/WesteindeCaption-BoldItalic.woff
Normal file
BIN
fonts/WesteindeCaption-BoldItalic.woff2
Normal file
BIN
fonts/WesteindeCaption-Heavy.woff
Normal file
BIN
fonts/WesteindeCaption-Heavy.woff2
Normal file
BIN
fonts/WesteindeCaption-HeavyItalic.woff
Normal file
BIN
fonts/WesteindeCaption-HeavyItalic.woff2
Normal file
BIN
fonts/WesteindeCaption-Light.woff
Normal file
BIN
fonts/WesteindeCaption-Light.woff2
Normal file
BIN
fonts/WesteindeCaption-LightItalic.woff
Normal file
BIN
fonts/WesteindeCaption-LightItalic.woff2
Normal file
BIN
fonts/WesteindeCaption-Regular.woff
Normal file
BIN
fonts/WesteindeCaption-Regular.woff2
Normal file
BIN
fonts/WesteindeCaption-Thin.woff
Normal file
BIN
fonts/WesteindeCaption-Thin.woff2
Normal file
BIN
fonts/WesteindeCaption-ThinItalic.woff
Normal file
BIN
fonts/WesteindeCaption-ThinItalic.woff2
Normal file
20
footer.php
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
</main>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<!-- /wrapper -->
|
||||||
|
|
||||||
|
<?php //wp_footer(); ?>
|
||||||
|
|
||||||
|
<!-- analytics -->
|
||||||
|
<script>
|
||||||
|
(function(f,i,r,e,s,h,l){i['GoogleAnalyticsObject']=s;f[s]=f[s]||function(){
|
||||||
|
(f[s].q=f[s].q||[]).push(arguments)},f[s].l=1*new Date();h=i.createElement(r),
|
||||||
|
l=i.getElementsByTagName(r)[0];h.async=1;h.src=e;l.parentNode.insertBefore(h,l)
|
||||||
|
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
|
||||||
|
ga('create', 'UA-XXXXXXXX-XX', 'yourdomain.com');
|
||||||
|
ga('send', 'pageview');
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
594
functions.php
Normal file
@@ -0,0 +1,594 @@
|
|||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* Author: Todd Motto | @toddmotto
|
||||||
|
* URL: dis2019.com | @dis2019
|
||||||
|
* Custom functions, support, custom post types and more.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*------------------------------------*\
|
||||||
|
External Modules/Files
|
||||||
|
\*------------------------------------*/
|
||||||
|
|
||||||
|
// Load any external files you have here
|
||||||
|
|
||||||
|
/*------------------------------------*\
|
||||||
|
Theme Support
|
||||||
|
\*------------------------------------*/
|
||||||
|
|
||||||
|
if (!isset($content_width)) {
|
||||||
|
$content_width = 900;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (function_exists('add_theme_support')) {
|
||||||
|
// Add Menu Support
|
||||||
|
add_theme_support('menus');
|
||||||
|
|
||||||
|
// Add Thumbnail Theme Support
|
||||||
|
add_theme_support('post-thumbnails');
|
||||||
|
add_image_size('large', 700, '', true); // Large Thumbnail
|
||||||
|
add_image_size('medium', 250, '', true); // Medium Thumbnail
|
||||||
|
add_image_size('small', 120, '', true); // Small Thumbnail
|
||||||
|
add_image_size('home-thumbnail', 1024, 1024, true); // Custom Thumbnail Size call using the_post_thumbnail('home-thumbnail');
|
||||||
|
|
||||||
|
// Add Support for Custom Backgrounds - Uncomment below if you're going to use
|
||||||
|
/*add_theme_support('custom-background', array(
|
||||||
|
'default-color' => 'FFF',
|
||||||
|
'default-image' => get_template_directory_uri() . '/img/bg.jpg'
|
||||||
|
));*/
|
||||||
|
|
||||||
|
// Add Support for Custom Header - Uncomment below if you're going to use
|
||||||
|
/*add_theme_support('custom-header', array(
|
||||||
|
'default-image' => get_template_directory_uri() . '/img/headers/default.jpg',
|
||||||
|
'header-text' => false,
|
||||||
|
'default-text-color' => '000',
|
||||||
|
'width' => 1000,
|
||||||
|
'height' => 198,
|
||||||
|
'random-default' => false,
|
||||||
|
'wp-head-callback' => $wphead_cb,
|
||||||
|
'admin-head-callback' => $adminhead_cb,
|
||||||
|
'admin-preview-callback' => $adminpreview_cb
|
||||||
|
));*/
|
||||||
|
|
||||||
|
// Enables post and comment RSS feed links to head
|
||||||
|
add_theme_support('automatic-feed-links');
|
||||||
|
|
||||||
|
// Localisation Support
|
||||||
|
load_theme_textdomain('dis2019', get_template_directory() . '/languages');
|
||||||
|
}
|
||||||
|
|
||||||
|
/*------------------------------------*\
|
||||||
|
Functions
|
||||||
|
\*------------------------------------*/
|
||||||
|
|
||||||
|
// dis-2019 navigation
|
||||||
|
function dis2019_nav()
|
||||||
|
{
|
||||||
|
wp_nav_menu(
|
||||||
|
array(
|
||||||
|
'theme_location' => 'header-menu',
|
||||||
|
'menu' => '',
|
||||||
|
'container' => 'div',
|
||||||
|
'container_class' => 'menu-{menu slug}-container',
|
||||||
|
'container_id' => '',
|
||||||
|
'menu_class' => 'menu',
|
||||||
|
'menu_id' => '',
|
||||||
|
'echo' => true,
|
||||||
|
'fallback_cb' => 'wp_page_menu',
|
||||||
|
'before' => '',
|
||||||
|
'after' => '',
|
||||||
|
'link_before' => '',
|
||||||
|
'link_after' => '',
|
||||||
|
'items_wrap' => '<ul>%3$s</ul>',
|
||||||
|
'depth' => 0,
|
||||||
|
'walker' => '',
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Load dis-2019 scripts (header.php)
|
||||||
|
function dis2019_header_scripts()
|
||||||
|
{
|
||||||
|
if ($GLOBALS['pagenow'] != 'wp-login.php' && !is_admin()) {
|
||||||
|
|
||||||
|
wp_deregister_script('jquery');
|
||||||
|
wp_register_script('jquery', get_template_directory_uri() . '/js/lib/jquery-3.3.1.min.js', array(), '3.3.1');
|
||||||
|
|
||||||
|
wp_register_script('conditionizr', get_template_directory_uri() . '/js/lib/conditionizr-4.3.0.min.js', array(), '4.3.0'); // Conditionizr
|
||||||
|
wp_enqueue_script('conditionizr'); // Enqueue it!
|
||||||
|
|
||||||
|
wp_register_script('modernizr', get_template_directory_uri() . '/js/lib/modernizr-2.7.1.min.js', array(), '2.7.1'); // Modernizr
|
||||||
|
wp_enqueue_script('modernizr'); // Enqueue it!
|
||||||
|
|
||||||
|
wp_register_script('simpler-sidebar', get_template_directory_uri() . '/js/lib/jquery.simpler-sidebar.min.js', array('jquery'), '2.2.5'); // Modernizr
|
||||||
|
wp_enqueue_script('simpler-sidebar'); // Enqueue it!
|
||||||
|
|
||||||
|
wp_register_script('snap-scroll', get_template_directory_uri() . '/js/lib/snap-scroll.min.js', array('jquery'), '1.0.0'); // Modernizr
|
||||||
|
wp_enqueue_script('snap-scroll'); // Enqueue it!
|
||||||
|
|
||||||
|
//wp_register_script('jquery.corner', get_template_directory_uri() . '/js/lib/jquery.corner.js', array('jquery'), '1.0.0'); // Modernizr
|
||||||
|
//wp_enqueue_script('jquery.corner'); // Enqueue it!
|
||||||
|
|
||||||
|
wp_register_script('lettering', get_template_directory_uri() . '/js/lib/jquery.lettering.js', array('jquery'), '1.0.0'); // Modernizr
|
||||||
|
wp_enqueue_script('lettering'); // Enqueue it!
|
||||||
|
|
||||||
|
wp_register_script('dis2019scripts', get_template_directory_uri() . '/js/scripts.js', array(
|
||||||
|
'jquery',
|
||||||
|
'conditionizr',
|
||||||
|
'modernizr',
|
||||||
|
'simpler-sidebar',
|
||||||
|
'snap-scroll',
|
||||||
|
//'jquery.corner',
|
||||||
|
'lettering',
|
||||||
|
), '1.0.0'); // Custom scripts
|
||||||
|
wp_enqueue_script('dis2019scripts'); // Enqueue it!
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Load dis-2019 conditional scripts
|
||||||
|
function dis2019_conditional_scripts()
|
||||||
|
{
|
||||||
|
if (is_page('pagenamehere')) {
|
||||||
|
wp_register_script('scriptname', get_template_directory_uri() . '/js/scriptname.js', array('jquery'), '1.0.0'); // Conditional script(s)
|
||||||
|
wp_enqueue_script('scriptname'); // Enqueue it!
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Load dis-2019 styles
|
||||||
|
function dis2019_styles()
|
||||||
|
{
|
||||||
|
wp_register_style('normalize', get_template_directory_uri() . '/normalize.css', array(), '1.0', 'all');
|
||||||
|
wp_enqueue_style('normalize'); // Enqueue it!
|
||||||
|
|
||||||
|
wp_register_style('dis2019', get_template_directory_uri() . '/style.css', array(), '1.0', 'all');
|
||||||
|
wp_enqueue_style('dis2019'); // Enqueue it!
|
||||||
|
|
||||||
|
// wp_register_style('drawer', get_template_directory_uri() . '/css/drawer.min.css', array(), '1.0', 'all');
|
||||||
|
// wp_enqueue_style('drawer'); // Enqueue it!
|
||||||
|
|
||||||
|
wp_register_style('base', get_template_directory_uri() . '/css/base.css', array(), '1.0', 'all');
|
||||||
|
wp_enqueue_style('base'); // Enqueue it!
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
//remove events from home page
|
||||||
|
// !!!add event cat id to here!!!!
|
||||||
|
function exclude_category_home($query)
|
||||||
|
{
|
||||||
|
if ($query->is_home) {
|
||||||
|
$query->set('cat', '-5');
|
||||||
|
|
||||||
|
}
|
||||||
|
return $query;
|
||||||
|
}
|
||||||
|
|
||||||
|
add_filter('pre_get_posts', 'exclude_category_home');
|
||||||
|
|
||||||
|
// Register dis-2019 Navigation
|
||||||
|
function register_dis_menu()
|
||||||
|
{
|
||||||
|
register_nav_menus(array( // Using array to specify more menus if needed
|
||||||
|
'header-menu' => __('Header Menu', 'dis2019'), // Main Navigation
|
||||||
|
// 'sidebar-menu' => __('Sidebar Menu', 'dis2019'), // Sidebar Navigation
|
||||||
|
'tag-menu' => __('Tag Menu', 'dis2019'), // Extra Navigation if needed (duplicate as many as you need!)
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove the <div> surrounding the dynamic navigation to cleanup markup
|
||||||
|
function my_wp_nav_menu_args($args = '')
|
||||||
|
{
|
||||||
|
$args['container'] = false;
|
||||||
|
return $args;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove Injected classes, ID's and Page ID's from Navigation <li> items
|
||||||
|
function my_css_attributes_filter($var)
|
||||||
|
{
|
||||||
|
return is_array($var) ? array() : '';
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove invalid rel attribute values in the categorylist
|
||||||
|
function remove_category_rel_from_category_list($thelist)
|
||||||
|
{
|
||||||
|
return str_replace('rel="category tag"', 'rel="tag"', $thelist);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Add page slug to body class, love this - Credit: Starkers Wordpress Theme
|
||||||
|
function add_slug_to_body_class($classes)
|
||||||
|
{
|
||||||
|
global $post;
|
||||||
|
if (is_home()) {
|
||||||
|
$key = array_search('blog', $classes);
|
||||||
|
if ($key > -1) {
|
||||||
|
unset($classes[$key]);
|
||||||
|
}
|
||||||
|
} elseif (is_page()) {
|
||||||
|
$classes[] = sanitize_html_class($post->post_name);
|
||||||
|
} elseif (is_singular()) {
|
||||||
|
$classes[] = sanitize_html_class($post->post_name);
|
||||||
|
}
|
||||||
|
|
||||||
|
// array_push($classes,"drawer","drawer--right");
|
||||||
|
return $classes;
|
||||||
|
}
|
||||||
|
|
||||||
|
// // If Dynamic Sidebar Exists
|
||||||
|
// if (function_exists('register_sidebar'))
|
||||||
|
// {
|
||||||
|
// // Define Sidebar Widget Area 1
|
||||||
|
// register_sidebar(array(
|
||||||
|
// 'name' => __('Widget Area 1', 'dis2019'),
|
||||||
|
// 'description' => __('Description for this widget-area...', 'dis2019'),
|
||||||
|
// 'id' => 'widget-area-1',
|
||||||
|
// 'before_widget' => '<div id="%1$s" class="%2$s">',
|
||||||
|
// 'after_widget' => '</div>',
|
||||||
|
// 'before_title' => '<h3>',
|
||||||
|
// 'after_title' => '</h3>'
|
||||||
|
// ));
|
||||||
|
|
||||||
|
// // Define Sidebar Widget Area 2
|
||||||
|
// register_sidebar(array(
|
||||||
|
// 'name' => __('Widget Area 2', 'dis2019'),
|
||||||
|
// 'description' => __('Description for this widget-area...', 'dis2019'),
|
||||||
|
// 'id' => 'widget-area-2',
|
||||||
|
// 'before_widget' => '<div id="%1$s" class="%2$s">',
|
||||||
|
// 'after_widget' => '</div>',
|
||||||
|
// 'before_title' => '<h3>',
|
||||||
|
// 'after_title' => '</h3>'
|
||||||
|
// ));
|
||||||
|
// }
|
||||||
|
|
||||||
|
// Remove wp_head() injected Recent Comment styles
|
||||||
|
function my_remove_recent_comments_style()
|
||||||
|
{
|
||||||
|
global $wp_widget_factory;
|
||||||
|
remove_action('wp_head', array(
|
||||||
|
$wp_widget_factory->widgets['WP_Widget_Recent_Comments'],
|
||||||
|
'recent_comments_style',
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Pagination for paged posts, Page 1, Page 2, Page 3, with Next and Previous Links, No plugin
|
||||||
|
function diswp_pagination()
|
||||||
|
{
|
||||||
|
global $wp_query;
|
||||||
|
$big = 999999999;
|
||||||
|
echo paginate_links(array(
|
||||||
|
'base' => str_replace($big, '%#%', get_pagenum_link($big)),
|
||||||
|
'format' => '?paged=%#%',
|
||||||
|
'current' => max(1, get_query_var('paged')),
|
||||||
|
'total' => $wp_query->max_num_pages,
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Custom Excerpts
|
||||||
|
function diswp_index($length) // Create 20 Word Callback for Index page Excerpts, call using diswp_excerpt('diswp_index');
|
||||||
|
|
||||||
|
{
|
||||||
|
return 20;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create 40 Word Callback for Custom Post Excerpts, call using diswp_excerpt('diswp_custom_post');
|
||||||
|
function diswp_custom_post($length)
|
||||||
|
{
|
||||||
|
return 40;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create the Custom Excerpts callback
|
||||||
|
function diswp_excerpt($length_callback = '', $more_callback = '')
|
||||||
|
{
|
||||||
|
global $post;
|
||||||
|
if (function_exists($length_callback)) {
|
||||||
|
add_filter('excerpt_length', $length_callback);
|
||||||
|
}
|
||||||
|
if (function_exists($more_callback)) {
|
||||||
|
add_filter('excerpt_more', $more_callback);
|
||||||
|
}
|
||||||
|
$output = get_the_excerpt();
|
||||||
|
$output = apply_filters('wptexturize', $output);
|
||||||
|
$output = apply_filters('convert_chars', $output);
|
||||||
|
$output = '<p>' . $output . '</p>';
|
||||||
|
echo $output;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Custom View Article link to Post
|
||||||
|
function dis_blank_view_article($more)
|
||||||
|
{
|
||||||
|
global $post;
|
||||||
|
return '... <a class="view-article" href="' . get_permalink($post->ID) . '">' . __('View Article', 'dis2019') . '</a>';
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove Admin bar
|
||||||
|
function remove_admin_bar()
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove 'text/css' from our enqueued stylesheet
|
||||||
|
function dis_style_remove($tag)
|
||||||
|
{
|
||||||
|
return preg_replace('~\s+type=["\'][^"\']++["\']~', '', $tag);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove thumbnail width and height dimensions that prevent fluid images in the_thumbnail
|
||||||
|
function remove_thumbnail_dimensions($html)
|
||||||
|
{
|
||||||
|
$html = preg_replace('/(width|height)=\"\d*\"\s/', "", $html);
|
||||||
|
return $html;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Custom Gravatar in Settings > Discussion
|
||||||
|
function dis2019gravatar($avatar_defaults)
|
||||||
|
{
|
||||||
|
$myavatar = get_template_directory_uri() . '/img/gravatar.jpg';
|
||||||
|
$avatar_defaults[$myavatar] = "Custom Gravatar";
|
||||||
|
return $avatar_defaults;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Threaded Comments
|
||||||
|
function enable_threaded_comments()
|
||||||
|
{
|
||||||
|
if (!is_admin()) {
|
||||||
|
if (is_singular() and comments_open() and (get_option('thread_comments') == 1)) {
|
||||||
|
wp_enqueue_script('comment-reply');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Custom Comments Callback
|
||||||
|
function dis2019comments($comment, $args, $depth)
|
||||||
|
{
|
||||||
|
$GLOBALS['comment'] = $comment;
|
||||||
|
extract($args, EXTR_SKIP);
|
||||||
|
|
||||||
|
if ('div' == $args['style']) {
|
||||||
|
$tag = 'div';
|
||||||
|
$add_below = 'comment';
|
||||||
|
} else {
|
||||||
|
$tag = 'li';
|
||||||
|
$add_below = 'div-comment';
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
<!-- heads up: starting < for the html tag (li or div) in the next line: -->
|
||||||
|
<<?php echo $tag ?> <?php comment_class(empty($args['has_children']) ? '' : 'parent')?> id="comment-<?php comment_ID()?>">
|
||||||
|
<?php if ('div' != $args['style']): ?>
|
||||||
|
<div id="div-comment-<?php comment_ID()?>" class="comment-body">
|
||||||
|
<?php endif;?>
|
||||||
|
<div class="comment-author vcard">
|
||||||
|
<?php if ($args['avatar_size'] != 0) {
|
||||||
|
echo get_avatar($comment, $args['180']);
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
<?php printf(__('<cite class="fn">%s</cite> <span class="says">says:</span>'), get_comment_author_link())?>
|
||||||
|
</div>
|
||||||
|
<?php if ($comment->comment_approved == '0'): ?>
|
||||||
|
<em class="comment-awaiting-moderation"><?php _e('Your comment is awaiting moderation.')?></em>
|
||||||
|
<br />
|
||||||
|
<?php endif;?>
|
||||||
|
|
||||||
|
<div class="comment-meta commentmetadata"><a href="<?php echo htmlspecialchars(get_comment_link($comment->comment_ID)) ?>">
|
||||||
|
<?php
|
||||||
|
printf(__('%1$s at %2$s'), get_comment_date(), get_comment_time())?></a><?php edit_comment_link(__('(Edit)'), ' ', '');
|
||||||
|
?>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<?php comment_text()?>
|
||||||
|
|
||||||
|
<div class="reply">
|
||||||
|
<?php comment_reply_link(array_merge($args, array('add_below' => $add_below, 'depth' => $depth, 'max_depth' => $args['max_depth'])))?>
|
||||||
|
</div>
|
||||||
|
<?php if ('div' != $args['style']): ?>
|
||||||
|
</div>
|
||||||
|
<?php endif;?>
|
||||||
|
<?php }
|
||||||
|
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
/* INFINITE SCROLL */
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
|
function misha_my_load_more_scripts()
|
||||||
|
{
|
||||||
|
|
||||||
|
global $wp_query;
|
||||||
|
|
||||||
|
// In most cases it is already included on the page and this line can be removed
|
||||||
|
wp_enqueue_script('jquery');
|
||||||
|
|
||||||
|
// register our main script but do not enqueue it yet
|
||||||
|
wp_register_script('my_loadmore', get_stylesheet_directory_uri() . '/js/myloadmore.js', array('jquery'));
|
||||||
|
|
||||||
|
// now the most interesting part
|
||||||
|
// we have to pass parameters to myloadmore.js script but we can get the parameters values only in PHP
|
||||||
|
// you can define variables directly in your HTML but I decided that the most proper way is wp_localize_script()
|
||||||
|
wp_localize_script('my_loadmore', 'misha_loadmore_params', array(
|
||||||
|
'ajaxurl' => site_url() . '/wp-admin/admin-ajax.php', // WordPress AJAX
|
||||||
|
'posts' => json_encode($wp_query->query_vars), // everything about your loop is here
|
||||||
|
'current_page' => get_query_var('paged') ? get_query_var('paged') : 1,
|
||||||
|
'max_page' => $wp_query->max_num_pages,
|
||||||
|
));
|
||||||
|
|
||||||
|
wp_enqueue_script('my_loadmore');
|
||||||
|
}
|
||||||
|
|
||||||
|
add_action('wp_enqueue_scripts', 'misha_my_load_more_scripts');
|
||||||
|
|
||||||
|
function misha_loadmore_ajax_handler()
|
||||||
|
{
|
||||||
|
|
||||||
|
// prepare our arguments for the query
|
||||||
|
$args = json_decode(stripslashes($_POST['query']), true);
|
||||||
|
$args['paged'] = $_POST['page'] + 1; // we need next page to be loaded
|
||||||
|
$args['post_status'] = 'publish';
|
||||||
|
|
||||||
|
// it is always better to use WP_Query but not here
|
||||||
|
query_posts($args);
|
||||||
|
get_template_part('loop');
|
||||||
|
|
||||||
|
// if( have_posts() ) :
|
||||||
|
|
||||||
|
// run the loop
|
||||||
|
// while( have_posts() ): the_post();
|
||||||
|
|
||||||
|
// look into your theme code how the posts are inserted, but you can use your own HTML of course
|
||||||
|
// do you remember? - my example is adapted for Twenty Seventeen theme
|
||||||
|
// get_template_part( 'template-parts/post/content', get_post_format() );
|
||||||
|
// get_template_part('loop');
|
||||||
|
// for the test purposes comment the line above and uncomment the below one
|
||||||
|
// the_title();
|
||||||
|
|
||||||
|
// endwhile;
|
||||||
|
|
||||||
|
// endif;
|
||||||
|
die; // here we exit the script and even no wp_reset_query() required!
|
||||||
|
}
|
||||||
|
|
||||||
|
add_action('wp_ajax_loadmore', 'misha_loadmore_ajax_handler'); // wp_ajax_{action}
|
||||||
|
add_action('wp_ajax_nopriv_loadmore', 'misha_loadmore_ajax_handler'); // wp_ajax_nopriv_{action}
|
||||||
|
|
||||||
|
/*------------------------------------*\
|
||||||
|
Actions + Filters + ShortCodes
|
||||||
|
\*------------------------------------*/
|
||||||
|
|
||||||
|
// Add Actions
|
||||||
|
add_action('init', 'dis2019_header_scripts'); // Add Custom Scripts to wp_head
|
||||||
|
add_action('wp_print_scripts', 'dis2019_conditional_scripts'); // Add Conditional Page Scripts
|
||||||
|
add_action('get_header', 'enable_threaded_comments'); // Enable Threaded Comments
|
||||||
|
add_action('wp_enqueue_scripts', 'dis2019_styles'); // Add Theme Stylesheet
|
||||||
|
add_action('init', 'register_dis_menu'); // Add dis-2019 Menu
|
||||||
|
add_action('init', 'create_post_type_dis'); // Add our dis-2019 Custom Post Type
|
||||||
|
add_action('widgets_init', 'my_remove_recent_comments_style'); // Remove inline Recent Comment Styles from wp_head()
|
||||||
|
add_action('init', 'diswp_pagination'); // Add our HTML5 Pagination
|
||||||
|
|
||||||
|
// Remove Actions
|
||||||
|
remove_action('wp_head', 'feed_links_extra', 3); // Display the links to the extra feeds such as category feeds
|
||||||
|
remove_action('wp_head', 'feed_links', 2); // Display the links to the general feeds: Post and Comment Feed
|
||||||
|
remove_action('wp_head', 'rsd_link'); // Display the link to the Really Simple Discovery service endpoint, EditURI link
|
||||||
|
remove_action('wp_head', 'wlwmanifest_link'); // Display the link to the Windows Live Writer manifest file.
|
||||||
|
remove_action('wp_head', 'index_rel_link'); // Index link
|
||||||
|
remove_action('wp_head', 'parent_post_rel_link', 10, 0); // Prev link
|
||||||
|
remove_action('wp_head', 'start_post_rel_link', 10, 0); // Start link
|
||||||
|
remove_action('wp_head', 'adjacent_posts_rel_link', 10, 0); // Display relational links for the posts adjacent to the current post.
|
||||||
|
remove_action('wp_head', 'wp_generator'); // Display the XHTML generator that is generated on the wp_head hook, WP version
|
||||||
|
remove_action('wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0);
|
||||||
|
remove_action('wp_head', 'rel_canonical');
|
||||||
|
remove_action('wp_head', 'wp_shortlink_wp_head', 10, 0);
|
||||||
|
|
||||||
|
// Add Filters
|
||||||
|
add_filter('avatar_defaults', 'dis2019gravatar'); // Custom Gravatar in Settings > Discussion
|
||||||
|
add_filter('body_class', 'add_slug_to_body_class'); // Add slug to body class (Starkers build)
|
||||||
|
add_filter('widget_text', 'do_shortcode'); // Allow shortcodes in Dynamic Sidebar
|
||||||
|
add_filter('widget_text', 'shortcode_unautop'); // Remove <p> tags in Dynamic Sidebars (better!)
|
||||||
|
add_filter('wp_nav_menu_args', 'my_wp_nav_menu_args'); // Remove surrounding <div> from WP Navigation
|
||||||
|
// add_filter('nav_menu_css_class', 'my_css_attributes_filter', 100, 1); // Remove Navigation <li> injected classes (Commented out by default)
|
||||||
|
// add_filter('nav_menu_item_id', 'my_css_attributes_filter', 100, 1); // Remove Navigation <li> injected ID (Commented out by default)
|
||||||
|
// add_filter('page_css_class', 'my_css_attributes_filter', 100, 1); // Remove Navigation <li> Page ID's (Commented out by default)
|
||||||
|
add_filter('the_category', 'remove_category_rel_from_category_list'); // Remove invalid rel attribute
|
||||||
|
add_filter('the_excerpt', 'shortcode_unautop'); // Remove auto <p> tags in Excerpt (Manual Excerpts only)
|
||||||
|
add_filter('the_excerpt', 'do_shortcode'); // Allows Shortcodes to be executed in Excerpt (Manual Excerpts only)
|
||||||
|
add_filter('excerpt_more', 'dis_blank_view_article'); // Add 'View Article' button instead of [...] for Excerpts
|
||||||
|
add_filter('show_admin_bar', 'remove_admin_bar'); // Remove Admin bar
|
||||||
|
add_filter('style_loader_tag', 'dis_style_remove'); // Remove 'text/css' from enqueued stylesheet
|
||||||
|
add_filter('post_thumbnail_html', 'remove_thumbnail_dimensions', 10); // Remove width and height dynamic attributes to thumbnails
|
||||||
|
add_filter('image_send_to_editor', 'remove_thumbnail_dimensions', 10); // Remove width and height dynamic attributes to post images
|
||||||
|
|
||||||
|
// Remove Filters
|
||||||
|
remove_filter('the_excerpt', 'wpautop'); // Remove <p> tags from Excerpt altogether
|
||||||
|
|
||||||
|
// Shortcodes
|
||||||
|
add_shortcode('dis_shortcode_demo', 'dis_shortcode_demo'); // You can place [dis_shortcode_demo] in Pages, Posts now.
|
||||||
|
add_shortcode('dis_shortcode_demo_2', 'dis_shortcode_demo_2'); // Place [dis_shortcode_demo_2] in Pages, Posts now.
|
||||||
|
|
||||||
|
// Shortcodes above would be nested like this -
|
||||||
|
// [dis_shortcode_demo] [dis_shortcode_demo_2] Here's the page title! [/dis_shortcode_demo_2] [/dis_shortcode_demo]
|
||||||
|
|
||||||
|
/*------------------------------------*\
|
||||||
|
Custom Post Types
|
||||||
|
\*------------------------------------*/
|
||||||
|
|
||||||
|
// Create 1 Custom Post type for a Demo, called HTML5-Blank
|
||||||
|
// function create_post_type_dis()
|
||||||
|
// {
|
||||||
|
// register_taxonomy_for_object_type('category', 'dis-blank'); // Register Taxonomies for Category
|
||||||
|
// register_taxonomy_for_object_type('post_tag', 'dis-blank');
|
||||||
|
// register_post_type('dis-blank', // Register Custom Post Type
|
||||||
|
// array(
|
||||||
|
// 'labels' => array(
|
||||||
|
// 'name' => __('dis-2019 Custom Post', 'dis2019'), // Rename these to suit
|
||||||
|
// 'singular_name' => __('dis-2019 Custom Post', 'dis2019'),
|
||||||
|
// 'add_new' => __('Add New', 'dis2019'),
|
||||||
|
// 'add_new_item' => __('Add New dis-2019 Custom Post', 'dis2019'),
|
||||||
|
// 'edit' => __('Edit', 'dis2019'),
|
||||||
|
// 'edit_item' => __('Edit dis-2019 Custom Post', 'dis2019'),
|
||||||
|
// 'new_item' => __('New dis-2019 Custom Post', 'dis2019'),
|
||||||
|
// 'view' => __('View dis-2019 Custom Post', 'dis2019'),
|
||||||
|
// 'view_item' => __('View dis-2019 Custom Post', 'dis2019'),
|
||||||
|
// 'search_items' => __('Search dis-2019 Custom Post', 'dis2019'),
|
||||||
|
// 'not_found' => __('No dis-2019 Custom Posts found', 'dis2019'),
|
||||||
|
// 'not_found_in_trash' => __('No dis-2019 Custom Posts found in Trash', 'dis2019')
|
||||||
|
// ),
|
||||||
|
// 'public' => true,
|
||||||
|
// 'hierarchical' => true, // Allows your posts to behave like Hierarchy Pages
|
||||||
|
// 'has_archive' => true,
|
||||||
|
// 'supports' => array(
|
||||||
|
// 'title',
|
||||||
|
// 'editor',
|
||||||
|
// 'excerpt',
|
||||||
|
// 'thumbnail'
|
||||||
|
// ), // Go to Dashboard Custom dis-2019 post for supports
|
||||||
|
// 'can_export' => true, // Allows export in Tools > Export
|
||||||
|
// 'taxonomies' => array(
|
||||||
|
// 'post_tag',
|
||||||
|
// 'category'
|
||||||
|
// ) // Add Category and Post Tags support
|
||||||
|
// ));
|
||||||
|
// }
|
||||||
|
|
||||||
|
/*------------------------------------*\
|
||||||
|
ShortCode Functions
|
||||||
|
\*------------------------------------*/
|
||||||
|
|
||||||
|
// Shortcode Demo with Nested Capability
|
||||||
|
function dis_shortcode_demo($atts, $content = null)
|
||||||
|
{
|
||||||
|
return '<div class="shortcode-demo">' . do_shortcode($content) . '</div>'; // do_shortcode allows for nested Shortcodes
|
||||||
|
}
|
||||||
|
|
||||||
|
// Shortcode Demo with simple <h2> tag
|
||||||
|
function dis_shortcode_demo_2($atts, $content = null) // Demo Heading H2 shortcode, allows for nesting within above element. Fully expandable.
|
||||||
|
|
||||||
|
{
|
||||||
|
return '<h2>' . $content . '</h2>';
|
||||||
|
}
|
||||||
|
|
||||||
|
/*------------------------------------*\
|
||||||
|
Custom taxonomy
|
||||||
|
\*------------------------------------*/
|
||||||
|
|
||||||
|
function dis2019_register_taxonomy_format()
|
||||||
|
{
|
||||||
|
$labels = [
|
||||||
|
'name' => _x('Format', 'taxonomy general name'),
|
||||||
|
'singular_name' => _x('Format', 'taxonomy singular name'),
|
||||||
|
'search_items' => __('Search Formats'),
|
||||||
|
'all_items' => __('All Formats'),
|
||||||
|
'parent_item' => __('Parent Format'),
|
||||||
|
'parent_item_colon' => __('Parent Format:'),
|
||||||
|
'edit_item' => __('Edit Format'),
|
||||||
|
'update_item' => __('Update Format'),
|
||||||
|
'add_new_item' => __('Add New Format'),
|
||||||
|
'new_item_name' => __('New Format Name'),
|
||||||
|
'menu_name' => __('Formats'),
|
||||||
|
];
|
||||||
|
$args = [
|
||||||
|
'hierarchical' => false, // make it hierarchical (like categories)
|
||||||
|
'labels' => $labels,
|
||||||
|
'show_ui' => true,
|
||||||
|
'show_admin_column' => true,
|
||||||
|
'query_var' => true,
|
||||||
|
'rewrite' => ['slug' => 'Format'],
|
||||||
|
'show_in_rest' => true,
|
||||||
|
];
|
||||||
|
register_taxonomy('Format', ['post'], $args);
|
||||||
|
}
|
||||||
|
add_action('init', 'dis2019_register_taxonomy_format');
|
||||||
|
|
||||||
|
?>
|
||||||
32
gulpfile.js
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
var gulp = require('gulp');
|
||||||
|
var sass = require('gulp-sass');
|
||||||
|
var livereload = require('gulp-livereload');
|
||||||
|
|
||||||
|
sass.compiler = require('node-sass');
|
||||||
|
|
||||||
|
gulp.task('sass', function () {
|
||||||
|
return gulp.src('./sass/**/*.scss')
|
||||||
|
.pipe(sass().on('error', sass.logError))
|
||||||
|
.pipe(gulp.dest('./css'))
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
gulp.task('liverel', function () {
|
||||||
|
return gulp.src(['./**','!./node_modules/**'])
|
||||||
|
.pipe(livereload({
|
||||||
|
quiet:true
|
||||||
|
}))
|
||||||
|
})
|
||||||
|
|
||||||
|
// gulp.task('sass:watch', function () {
|
||||||
|
// gulp.watch('./sass/**/*.scss', ['sass']);
|
||||||
|
// });
|
||||||
|
|
||||||
|
gulp.task('watch', function () {
|
||||||
|
livereload.listen()
|
||||||
|
gulp.watch('./sass/**/*.scss', gulp.series('sass'))
|
||||||
|
gulp.watch(['./**','!./node_modules/**'], gulp.series('liverel'))
|
||||||
|
|
||||||
|
});
|
||||||
149
header.php
Normal file
@@ -0,0 +1,149 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html <?php language_attributes(); ?> class="no-js">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="<?php bloginfo('charset'); ?>">
|
||||||
|
<title><?php wp_title(''); ?><?php if(wp_title('', false)) { echo ' :'; } ?> <?php bloginfo('name'); ?></title>
|
||||||
|
|
||||||
|
<link href="//www.google-analytics.com" rel="dns-prefetch">
|
||||||
|
<!-- <link href="<?php //echo get_template_directory_uri(); ?>/img/icons/favicon.ico" rel="shortcut icon">
|
||||||
|
<link href="<?php //echo get_template_directory_uri(); ?>/img/icons/touch.png" rel="apple-touch-icon-precomposed"> -->
|
||||||
|
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<!-- <meta name="viewport" content="height=device-height, initial-scale=1.0"> -->
|
||||||
|
<meta name="description" content="<?php bloginfo('description'); ?>">
|
||||||
|
|
||||||
|
<?php wp_head(); ?>
|
||||||
|
<script>
|
||||||
|
// conditionizr.com
|
||||||
|
// configure environment tests
|
||||||
|
conditionizr.config({
|
||||||
|
assets: '<?php echo get_template_directory_uri(); ?>',
|
||||||
|
tests: {}
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body <?php body_class(); ?>>
|
||||||
|
|
||||||
|
<!-- wrapper -->
|
||||||
|
<div class="wrapper">
|
||||||
|
|
||||||
|
<!-- header -->
|
||||||
|
<header class="header clear" role="banner">
|
||||||
|
|
||||||
|
<!-- ------------------------------ header-1 ------------------------------- -->
|
||||||
|
|
||||||
|
<div class="header-1">
|
||||||
|
<!-- logo -->
|
||||||
|
<div class="logo">
|
||||||
|
<a href="<?php echo home_url(); ?>">
|
||||||
|
<object data="<?php echo get_template_directory_uri(); ?>/img/dis-logo.svg"
|
||||||
|
type="image/svg+xml">
|
||||||
|
<img src="<?php echo get_template_directory_uri(); ?>/img/dis-logo.png" />
|
||||||
|
</object>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<!-- /logo -->
|
||||||
|
<div class="fb-link social-link">
|
||||||
|
<a href="https://www.facebook.com/designisso" target="_blank">
|
||||||
|
<object data="<?php echo get_template_directory_uri(); ?>/img/facebook_icon.svg"
|
||||||
|
type="image/svg+xml">
|
||||||
|
<img src="<?php echo get_template_directory_uri(); ?>/img/facebook_icon.png" />
|
||||||
|
</object>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="search-box">
|
||||||
|
<button type="button" id="search-button">
|
||||||
|
<object data="<?php echo get_template_directory_uri(); ?>/img/kereso_icon.svg"
|
||||||
|
type="image/svg+xml">
|
||||||
|
<img src="<?php echo get_template_directory_uri(); ?>/img/kereso_icon.png" />
|
||||||
|
</object>
|
||||||
|
</button>
|
||||||
|
<div class="search-bar">
|
||||||
|
<?php get_search_form(); ?>
|
||||||
|
</div>
|
||||||
|
</div><!-- search end -->
|
||||||
|
|
||||||
|
</div><!-- header-1 end -->
|
||||||
|
|
||||||
|
|
||||||
|
<div class="header-scroll header-scroll-left">
|
||||||
|
<button type="button"></button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="header-scroll header-scroll-right">
|
||||||
|
<button type="button"></button>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ----------------------------- header 2 ------------------------------ -->
|
||||||
|
|
||||||
|
<div class="header-2">
|
||||||
|
<div class="menubutton">
|
||||||
|
<button type="button" id="toggle-sidebar">
|
||||||
|
<object data="<?php echo get_template_directory_uri(); ?>/img/dis-plus.svg"
|
||||||
|
type="image/svg+xml">
|
||||||
|
<img src="<?php echo get_template_directory_uri(); ?>/img/dis-plus.png" />
|
||||||
|
</object>
|
||||||
|
|
||||||
|
</button>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div class="ig-link social-link">
|
||||||
|
<a href="https://www.instagram.com/design_is_so/" target="_blank">
|
||||||
|
<object data="<?php echo get_template_directory_uri(); ?>/img/instagram_icon.svg"
|
||||||
|
type="image/svg+xml">
|
||||||
|
<img src="<?php echo get_template_directory_uri(); ?>/img/instagram_icon.png" />
|
||||||
|
</object>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
<div class="events-link">
|
||||||
|
<a href="/index.php/category/esemeny" target="_top">
|
||||||
|
<object data="<?php echo get_template_directory_uri(); ?>/img/naptar_icon.svg"
|
||||||
|
type="image/svg+xml">
|
||||||
|
<img src="<?php echo get_template_directory_uri(); ?>/img/naptar_icon.png" />
|
||||||
|
</object>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- nav -->
|
||||||
|
<div id="sidebar">
|
||||||
|
<nav role="navigation" id="sidebar-wrapper" class="nav sidebar-wrapper">
|
||||||
|
|
||||||
|
<?php dis2019_nav(); ?>
|
||||||
|
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
<!-- /nav -->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</div><!-- header-2 end -->
|
||||||
|
|
||||||
|
|
||||||
|
<!-- ----------------------------- bedocircle ------------------------------ -->
|
||||||
|
|
||||||
|
<div id="tag-nav">
|
||||||
|
<nav role="navigation" class="tag-nav">
|
||||||
|
|
||||||
|
<?php wp_nav_menu( array( 'theme_location' => 'tag-menu' ) ); ?>
|
||||||
|
|
||||||
|
</nav>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- ----------------------- to top arrow on mobile ------------------------ -->
|
||||||
|
|
||||||
|
<div class="totop">
|
||||||
|
<a href="#top">
|
||||||
|
<object data="<?php echo get_template_directory_uri(); ?>/img/arrow.svg" type="image/svg+xml">
|
||||||
|
<img src="<?php echo get_template_directory_uri(); ?>/img/arrow.png" />
|
||||||
|
</object>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</header>
|
||||||
|
<!-- /header -->
|
||||||
|
<main role="main">
|
||||||
BIN
img/.arrow.png-autosave.kra
Normal file
BIN
img/arrow-black-left.png
Normal file
|
After Width: | Height: | Size: 350 B |
63
img/arrow-black-left.svg
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="22.553785mm"
|
||||||
|
height="43.706402mm"
|
||||||
|
viewBox="0 0 22.553785 43.706401"
|
||||||
|
version="1.1"
|
||||||
|
id="svg229"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="arrow-black-left.svg">
|
||||||
|
<defs
|
||||||
|
id="defs223" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="2.8"
|
||||||
|
inkscape:cx="65.998897"
|
||||||
|
inkscape:cy="91.281272"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="2238"
|
||||||
|
inkscape:window-height="1373"
|
||||||
|
inkscape:window-x="567"
|
||||||
|
inkscape:window-y="39"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:pagecheckerboard="true" />
|
||||||
|
<metadata
|
||||||
|
id="metadata226">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(576.91639,-151.73948)">
|
||||||
|
<path
|
||||||
|
d="m -554.73679,152.11365 -21.43125,21.4316 0.0476,0.0476 -0.0476,0.0476 21.43125,21.43125"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:1.05833328;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="path212"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.0 KiB |
BIN
img/arrow-black-right.png
Normal file
|
After Width: | Height: | Size: 196 B |
63
img/arrow-black-right.svg
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="22.553785mm"
|
||||||
|
height="43.706402mm"
|
||||||
|
viewBox="0 0 22.553785 43.706401"
|
||||||
|
version="1.1"
|
||||||
|
id="svg229"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="arrow-black-right.svg">
|
||||||
|
<defs
|
||||||
|
id="defs223" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="2.8"
|
||||||
|
inkscape:cx="65.998897"
|
||||||
|
inkscape:cy="91.281272"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="2238"
|
||||||
|
inkscape:window-height="1373"
|
||||||
|
inkscape:window-x="567"
|
||||||
|
inkscape:window-y="39"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:pagecheckerboard="true" />
|
||||||
|
<metadata
|
||||||
|
id="metadata226">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(576.91639,-151.73948)">
|
||||||
|
<path
|
||||||
|
d="m -576.54221,152.11365 21.43125,21.4316 -0.0476,0.0476 0.0476,0.0476 -21.43125,21.43125"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:1.05833328;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="path212"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.0 KiB |
BIN
img/arrow.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
62
img/arrow.svg
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="43.706402mm"
|
||||||
|
height="22.553785mm"
|
||||||
|
viewBox="0 0 43.706402 22.553785"
|
||||||
|
version="1.1"
|
||||||
|
id="svg229"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="arrow.svg">
|
||||||
|
<defs
|
||||||
|
id="defs223" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="1.4"
|
||||||
|
inkscape:cx="488.62332"
|
||||||
|
inkscape:cy="48.879693"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="3374"
|
||||||
|
inkscape:window-height="1385"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
inkscape:window-maximized="1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata226">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(587.30561,-162.50287)">
|
||||||
|
<path
|
||||||
|
d="m -586.93144,162.87705 21.4316,21.43125 0.0476,-0.0476 0.0476,0.0476 21.43125,-21.43125"
|
||||||
|
style="fill:none;stroke:#ffffff;stroke-width:1.05833328;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="path212"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.0 KiB |
BIN
img/dis-logo.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
73
img/dis-logo.svg
Normal file
@@ -0,0 +1,73 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="47.293671mm"
|
||||||
|
height="46.798794mm"
|
||||||
|
viewBox="0 0 47.293671 46.798794"
|
||||||
|
version="1.1"
|
||||||
|
id="svg260"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="dis-logo.svg">
|
||||||
|
<defs
|
||||||
|
id="defs254" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="1.4"
|
||||||
|
inkscape:cx="185.14836"
|
||||||
|
inkscape:cy="-80.588807"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer2"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="2001"
|
||||||
|
inkscape:window-height="1335"
|
||||||
|
inkscape:window-x="673"
|
||||||
|
inkscape:window-y="69"
|
||||||
|
inkscape:window-maximized="0" />
|
||||||
|
<metadata
|
||||||
|
id="metadata257">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:label="Layer 2"
|
||||||
|
style="display:inline"
|
||||||
|
transform="translate(-11.221473,-3.6311089)">
|
||||||
|
<path
|
||||||
|
d="m 42.075803,16.517198 -17.7165,17.834327 3.3027,3.19264 17.71509,-17.83327 z"
|
||||||
|
style="display:inline;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
|
||||||
|
id="path172"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="M 16.022423,8.0725809 V 19.475417 h 2.8515 c 1.83021,0 3.3902,0 4.86128,-0.9906 1.44074,-0.960261 2.31069,-2.579864 2.31069,-4.801306 0,-1.980494 -0.81033,-3.480505 -2.16006,-4.4707521 -1.56139,-1.140178 -3.15171,-1.140178 -4.92195,-1.140178 z m -4.80095,-4.441472 h 7.68208 c 2.49097,0 5.04155,0 7.68245,1.740959 2.64054,1.650294 4.50109,4.501091 4.50109,8.3114431 0,4.111978 -2.19075,7.232297 -5.25145,8.882592 -2.43064,1.320447 -4.56107,1.320447 -6.9021,1.320447 h -7.71207 z"
|
||||||
|
style="display:inline;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
|
||||||
|
id="path176"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 56.235493,35.485884 c -2.40101,-1.050219 -4.89127,-1.591027 -7.26264,-1.591027 -1.68028,0 -3.0607,0.510469 -3.02966,1.891594 0,1.619953 2.45922,1.920168 5.16009,2.340327 3.8421,0.570441 7.41186,1.770239 7.41186,5.850818 0,5.011563 -5.16079,6.452307 -9.21174,6.452307 -3.48121,0 -6.66221,-0.689682 -9.45232,-2.191102 l 1.95015,-4.140907 c 2.34103,1.199798 5.16149,2.010482 7.86201,2.010482 1.58961,0 3.51119,-0.359834 3.51119,-1.980497 0.0296,-1.46967 -1.50072,-1.890535 -3.99027,-2.250368 -4.11233,-0.50941 -8.31285,-1.620308 -8.34284,-6.152444 0.03,-4.349398 4.23051,-6.150681 8.64165,-6.150681 2.88113,0 5.46241,0.449792 8.40246,1.740606 z"
|
||||||
|
style="display:inline;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.35277775"
|
||||||
|
id="path180"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.4 KiB |
BIN
img/dis-plus.png
Normal file
|
After Width: | Height: | Size: 455 B |
53
img/dis-plus.svg
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
version="1.1"
|
||||||
|
id="Layer_1"
|
||||||
|
x="0px"
|
||||||
|
y="0px"
|
||||||
|
width="57px"
|
||||||
|
height="58px"
|
||||||
|
viewBox="0 0 57 58"
|
||||||
|
enable-background="new 0 0 57 58"
|
||||||
|
xml:space="preserve"
|
||||||
|
sodipodi:docname="dis-plus.svg"
|
||||||
|
inkscape:export-filename="/media/miniretek/ssd/www/designisso/wp-content/themes/dis-2019/img/dis-plus.png"
|
||||||
|
inkscape:export-xdpi="165.51724"
|
||||||
|
inkscape:export-ydpi="165.51724"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
||||||
|
id="metadata9"><rdf:RDF><cc:Work
|
||||||
|
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
||||||
|
id="defs7" /><sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1511"
|
||||||
|
inkscape:window-height="866"
|
||||||
|
id="namedview5"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="4.0689655"
|
||||||
|
inkscape:cx="-17.639047"
|
||||||
|
inkscape:cy="33.915254"
|
||||||
|
inkscape:window-x="173"
|
||||||
|
inkscape:window-y="235"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:current-layer="Layer_1" />
|
||||||
|
<polygon
|
||||||
|
points="34,0 24,0 24,1 24,24 0,24 0,25 0,34 24,34 24,58 33,58 34,58 34,34 56,34 57,34 57,24 34,24 "
|
||||||
|
id="polygon2"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 1.8 KiB |
BIN
img/facebook_icon.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
58
img/facebook_icon.svg
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
version="1.1"
|
||||||
|
id="Layer_1"
|
||||||
|
x="0px"
|
||||||
|
y="0px"
|
||||||
|
width="44.034px"
|
||||||
|
height="44.082px"
|
||||||
|
viewBox="0 0 44.034 44.082"
|
||||||
|
enable-background="new 0 0 44.034 44.082"
|
||||||
|
xml:space="preserve"
|
||||||
|
sodipodi:docname="facebook_icon.svg"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
||||||
|
id="metadata13"><rdf:RDF><cc:Work
|
||||||
|
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||||
|
id="defs11" /><sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1368"
|
||||||
|
inkscape:window-height="1220"
|
||||||
|
id="namedview9"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="10.707318"
|
||||||
|
inkscape:cx="21.943301"
|
||||||
|
inkscape:cy="16.544497"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:current-layer="Layer_1" />
|
||||||
|
<g
|
||||||
|
id="g6"
|
||||||
|
style="fill:#ffffff;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="M36.379,7.678c-3.682-3.674-8.755-5.956-14.362-5.956S11.338,4.004,7.668,7.678c-3.671,3.673-5.949,8.751-5.949,14.364 c0,5.615,2.278,10.693,5.949,14.376c3.67,3.675,8.741,5.944,14.349,5.944s10.681-2.27,14.362-5.944 c3.669-3.684,5.937-8.762,5.937-14.376C42.315,16.429,40.048,11.351,36.379,7.678 M22.017,0C28.1,0,33.598,2.467,37.585,6.456 c3.987,3.994,6.449,9.498,6.449,15.586c0,6.09-2.462,11.595-6.449,15.586c-3.988,3.991-9.485,6.454-15.569,6.454 c-6.082,0-11.581-2.462-15.569-6.454C2.462,33.637,0,28.132,0,22.042C0,15.954,2.462,10.45,6.448,6.456 C10.436,2.467,15.935,0,22.017,0"
|
||||||
|
id="path2"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
d="M23.699,17.539v-1.806c0-0.866,0.574-1.073,0.989-1.073h2.523v-3.857h-3.475c-3.865,0-4.731,2.855-4.731,4.711v2.026 h-2.242v2.722v1.781h2.267v11.253h4.5V22.042h3.326l0.147-1.768l0.268-2.735H23.699z"
|
||||||
|
id="path4"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.5 KiB |
BIN
img/icons/favicon.ico
Normal file
|
After Width: | Height: | Size: 5.3 KiB |
BIN
img/icons/touch.png
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
img/instagram_icon.png
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
58
img/instagram_icon.svg
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
version="1.1"
|
||||||
|
id="Layer_1"
|
||||||
|
x="0px"
|
||||||
|
y="0px"
|
||||||
|
width="42.531px"
|
||||||
|
height="43.102px"
|
||||||
|
viewBox="0 0 42.531 43.102"
|
||||||
|
enable-background="new 0 0 42.531 43.102"
|
||||||
|
xml:space="preserve"
|
||||||
|
sodipodi:docname="instagram_icon.svg"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
||||||
|
id="metadata13"><rdf:RDF><cc:Work
|
||||||
|
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||||
|
id="defs11" /><sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1503"
|
||||||
|
inkscape:window-height="1382"
|
||||||
|
id="namedview9"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="15.486724"
|
||||||
|
inkscape:cx="21.988053"
|
||||||
|
inkscape:cy="18.191441"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:current-layer="Layer_1" />
|
||||||
|
<g
|
||||||
|
id="g6"
|
||||||
|
style="fill:#ffffff;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="M7.367,7.451c-3.545,3.604-5.748,8.567-5.748,14.058c0,5.477,2.203,10.453,5.748,14.045 c3.543,3.593,8.441,5.824,13.859,5.824c5.416,0,10.313-2.231,13.869-5.824c3.545-3.592,5.735-8.568,5.735-14.045 c0-5.49-2.19-10.454-5.735-14.058c-3.556-3.592-8.453-5.813-13.869-5.813C15.808,1.639,10.91,3.859,7.367,7.451 M-0.042,21.509 c0-5.954,2.379-11.349,6.23-15.238c3.851-3.902,9.16-6.313,15.037-6.313c5.875,0,11.184,2.41,15.035,6.313 c3.85,3.89,6.229,9.284,6.229,15.238c0,5.943-2.379,11.337-6.229,15.238c-3.852,3.902-9.16,6.313-15.035,6.313 c-5.877,0-11.187-2.41-15.037-6.313C2.337,32.846-0.042,27.452-0.042,21.509"
|
||||||
|
id="path2"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
d="M21.226,14.54c-3.793,0-6.877,3.112-6.877,6.969c0,3.842,3.084,6.969,6.877,6.969c3.803,0,6.875-3.127,6.875-6.969 C28.101,17.652,25.029,14.54,21.226,14.54 M13.419,14.67c0,0.621,0.493,1.123,1.105,1.123c0.613,0,1.107-0.502,1.107-1.123 c0-0.621-0.494-1.121-1.107-1.121C13.913,13.549,13.419,14.049,13.419,14.67 M11.829,27.201V15.805c0-2.112,1.696-3.83,3.78-3.83 h11.244c2.084,0,3.781,1.718,3.781,3.83v11.396c0,2.111-1.697,3.83-3.781,3.83H15.609C13.525,31.031,11.829,29.313,11.829,27.201 M10.57,15.805v11.396c0,2.804,2.259,5.106,5.039,5.106h11.244c2.767,0,5.039-2.303,5.039-5.106V15.805 c0-2.817-2.272-5.107-5.039-5.107H15.609C12.829,10.697,10.57,12.987,10.57,15.805 M21.226,27.021 c-3.004,0-5.453-2.469-5.453-5.513c0-3.055,2.449-5.525,5.453-5.525c3.014,0,5.451,2.471,5.451,5.525 C26.677,24.553,24.24,27.021,21.226,27.021"
|
||||||
|
id="path4"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 3.2 KiB |
BIN
img/kereso_icon.png
Normal file
|
After Width: | Height: | Size: 493 B |
58
img/kereso_icon.svg
Normal file
@@ -0,0 +1,58 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
version="1.1"
|
||||||
|
id="Layer_1"
|
||||||
|
x="0px"
|
||||||
|
y="0px"
|
||||||
|
width="45.332px"
|
||||||
|
height="44.654px"
|
||||||
|
viewBox="0 0 45.332 44.654"
|
||||||
|
enable-background="new 0 0 45.332 44.654"
|
||||||
|
xml:space="preserve"
|
||||||
|
sodipodi:docname="kereso_icon.svg"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
||||||
|
id="metadata13"><rdf:RDF><cc:Work
|
||||||
|
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||||
|
id="defs11" /><sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1612"
|
||||||
|
inkscape:window-height="1280"
|
||||||
|
id="namedview9"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="5.2850809"
|
||||||
|
inkscape:cx="22.666"
|
||||||
|
inkscape:cy="45.032423"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:current-layer="Layer_1" />
|
||||||
|
<g
|
||||||
|
id="g4"
|
||||||
|
style="fill:#ffffff;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="M18.548,5.871h-0.5v0.667v3v0.333h0.5c6.882,0,11.5,6.027,11.5,11.5v0.5h0.505h3h0.495v-0.5 C34.048,13.203,26.808,5.871,18.548,5.871z"
|
||||||
|
id="path2"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
d="M37.758,28.773c1.285-2.702,2.065-5.868,2.065-8.839c0-5.322-2.071-10.328-5.832-14.095C30.228,2.074,25.228,0,19.912,0 C14.595,0,9.595,2.074,5.831,5.839C2.071,9.606,0,14.612,0,19.934c0,5.324,2.071,10.33,5.831,14.096 c3.761,3.764,8.762,5.837,14.081,5.837c3.382,0,6.729-0.871,9.678-2.518l0.083-0.046l7.352,7.352l8.308-8.308L37.758,28.773z M29.913,35.069c-0.577,0.388-1.136,0.717-1.705,1.002l-0.081,0.041l-0.007-0.007c-2.563,1.305-5.325,1.967-8.208,1.967 c-4.842,0-9.39-1.884-12.807-5.305c-3.424-3.436-5.31-7.993-5.31-12.832c0-4.841,1.886-9.395,5.31-12.82 c3.424-3.428,7.973-5.316,12.807-5.316c4.831,0,9.383,1.888,12.818,5.316c3.417,3.419,5.299,7.973,5.299,12.82 c0,2.483-0.63,5.195-1.62,7.49l-0.004-0.004c-0.192,0.391-0.482,0.945-0.875,1.6l7.327,7.327l-5.833,5.833L29.913,35.069z"
|
||||||
|
id="path6"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.6 KiB |
BIN
img/naptar_icon.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
81
img/naptar_icon.svg
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Adobe Illustrator 15.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
version="1.1"
|
||||||
|
id="Layer_1"
|
||||||
|
x="0px"
|
||||||
|
y="0px"
|
||||||
|
width="38px"
|
||||||
|
height="43px"
|
||||||
|
viewBox="0 0 38 43"
|
||||||
|
enable-background="new 0 0 38 43"
|
||||||
|
xml:space="preserve"
|
||||||
|
sodipodi:docname="naptar_icon.svg"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
|
||||||
|
id="metadata23"><rdf:RDF><cc:Work
|
||||||
|
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||||
|
id="defs21" /><sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1699"
|
||||||
|
inkscape:window-height="1334"
|
||||||
|
id="namedview19"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="5.4883721"
|
||||||
|
inkscape:cx="24.466102"
|
||||||
|
inkscape:cy="-40.631356"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="27"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:current-layer="Layer_1" />
|
||||||
|
<g
|
||||||
|
id="g16"
|
||||||
|
style="fill:#ffffff;fill-opacity:1">
|
||||||
|
<path
|
||||||
|
d="M32.24,3H32V0h-2v3H8V0H6v3H5.401C2.322,3,0,5.184,0,8.372v28.893C0,40.451,2.322,43,5.401,43H32.24 c3.176,0,5.76-2.654,5.76-5.735V8.372C38,5.289,35.416,3,32.24,3z M5.401,5H6v1h2V5h22v1h2V5h0.24C34.394,5,36,6.311,36,8.372V11H2 V8.372C2,6.206,3.346,5,5.401,5z M32.24,41H5.401C3.346,41,2,39.429,2,37.265V13h34v24.265C36,39.324,34.394,41,32.24,41z"
|
||||||
|
id="path2"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
d="M4,27h7v-7H4V27z M5,22.007V21h5v5H9.379H5V22.007z"
|
||||||
|
id="path4"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
<rect
|
||||||
|
x="4.458"
|
||||||
|
y="31"
|
||||||
|
width="6"
|
||||||
|
height="6"
|
||||||
|
id="rect6"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
d="M15.5,27h7v-7h-7V27z M16.5,22.007V21h5v5h-1.336H16.5V22.007z"
|
||||||
|
id="path8"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
d="M15.5,38h7v-7h-7V38z M16.5,32.669V32h5v5h-1.336H16.5V32.669z"
|
||||||
|
id="path10"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
d="M27,27h7v-7h-7V27z M28,22.007V21h5v5h-1.052H28V22.007z"
|
||||||
|
id="path12"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
<path
|
||||||
|
d="M27,38h7v-7h-7V38z M28,32.669V32h5v5h-1.052H28V32.669z"
|
||||||
|
id="path14"
|
||||||
|
style="fill:#ffffff;fill-opacity:1" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 2.7 KiB |
BIN
img/transparent.png
Normal file
|
After Width: | Height: | Size: 89 B |
13
index.php
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<?php get_header();?>
|
||||||
|
|
||||||
|
<!-- section -->
|
||||||
|
<section id="content">
|
||||||
|
|
||||||
|
<?php get_template_part('loop');?>
|
||||||
|
|
||||||
|
<?php get_template_part('loadmore');?>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
<!-- /section -->
|
||||||
|
|
||||||
|
<?php get_footer();?>
|
||||||
2
js/lib/conditionizr-4.3.0.min.js
vendored
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
/*! Conditionizr v4.3.0 | (c) 2014 @toddmotto, @markgdyr | MIT license | conditionizr.com */
|
||||||
|
!function(a,b){"function"==typeof define&&define.amd?define([],b):"object"==typeof exports?module.exports=b:a.conditionizr=b()}(this,function(){"use strict";var a,b={},c=document.head||document.getElementsByTagName("head")[0],d=function(b,d,e){var f=e?b:a+b+("style"===d?".css":".js");switch(d){case"script":var g=document.createElement("script");g.src=f,c.appendChild(g);break;case"style":var h=document.createElement("link");h.href=f,h.rel="stylesheet",c.appendChild(h);break;case"class":document.documentElement.className+=" "+b}};return b.config=function(c){var e=c||{},f=e.tests;a=e.assets||"";for(var g in f){var h=g.toLowerCase();if(b[h])for(var i=f[g],j=i.length;j--;)d(h,i[j])}},b.add=function(a,c,e){var f=a.toLowerCase();if(b[f]=e(),b[f])for(var g=c.length;g--;)d(f,c[g])},b.on=function(a,c){var d=/^\!/;(b[a.toLowerCase()]||d.test(a)&&!b[a.replace(d,"")])&&c()},b.load=b.polyfill=function(a,c){for(var e=/\.js$/.test(a)?"script":"style",f=c.length;f--;)b[c[f].toLowerCase()]&&d(a,e,!0)},b});
|
||||||
2
js/lib/jquery-3.3.1.min.js
vendored
Normal file
72
js/lib/jquery.lettering.js
Normal file
@@ -0,0 +1,72 @@
|
|||||||
|
/*global jQuery */
|
||||||
|
/*!
|
||||||
|
* Lettering.JS 0.7.0
|
||||||
|
*
|
||||||
|
* Copyright 2010, Dave Rupert http://daverupert.com
|
||||||
|
* Released under the WTFPL license
|
||||||
|
* http://sam.zoy.org/wtfpl/
|
||||||
|
*
|
||||||
|
* Thanks to Paul Irish - http://paulirish.com - for the feedback.
|
||||||
|
*
|
||||||
|
* Date: Mon Sep 20 17:14:00 2010 -0600
|
||||||
|
*/
|
||||||
|
(function($){
|
||||||
|
function injector(t, splitter, klass, after) {
|
||||||
|
var text = t.text()
|
||||||
|
, a = text.split(splitter)
|
||||||
|
, inject = '';
|
||||||
|
if (a.length) {
|
||||||
|
$(a).each(function(i, item) {
|
||||||
|
inject += '<span class="'+klass+(i+1)+'" aria-hidden="true">'+item+'</span>'+after;
|
||||||
|
});
|
||||||
|
t.attr('aria-label',text)
|
||||||
|
.empty()
|
||||||
|
.append(inject)
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
var methods = {
|
||||||
|
init : function() {
|
||||||
|
|
||||||
|
return this.each(function() {
|
||||||
|
injector($(this), '', 'char', '');
|
||||||
|
});
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
words : function() {
|
||||||
|
|
||||||
|
return this.each(function() {
|
||||||
|
injector($(this), ' ', 'word', ' ');
|
||||||
|
});
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
|
lines : function() {
|
||||||
|
|
||||||
|
return this.each(function() {
|
||||||
|
var r = "eefec303079ad17405c889e092e105b0";
|
||||||
|
// Because it's hard to split a <br/> tag consistently across browsers,
|
||||||
|
// (*ahem* IE *ahem*), we replace all <br/> instances with an md5 hash
|
||||||
|
// (of the word "split"). If you're trying to use this plugin on that
|
||||||
|
// md5 hash string, it will fail because you're being ridiculous.
|
||||||
|
injector($(this).children("br").replaceWith(r).end(), r, 'line', '');
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
$.fn.lettering = function( method ) {
|
||||||
|
// Method calling logic
|
||||||
|
if ( method && methods[method] ) {
|
||||||
|
return methods[ method ].apply( this, [].slice.call( arguments, 1 ));
|
||||||
|
} else if ( method === 'letters' || ! method ) {
|
||||||
|
return methods.init.apply( this, [].slice.call( arguments, 0 ) ); // always pass an array
|
||||||
|
}
|
||||||
|
$.error( 'Method ' + method + ' does not exist on jQuery.lettering' );
|
||||||
|
return this;
|
||||||
|
};
|
||||||
|
|
||||||
|
})(jQuery);
|
||||||
7
js/lib/jquery.simpler-sidebar.min.js
vendored
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
/*! simpler-sidebar - A simple side nav in jQuery
|
||||||
|
* @version 2.2.5
|
||||||
|
* @link https://github.com/simple-sidebar/simpler-sidebar
|
||||||
|
* @copyright 2015 - 2018 Davide Di Criscito (https://github.com/dcdeiv)
|
||||||
|
* @license MIT AND GPL-2.0
|
||||||
|
*/
|
||||||
|
!function(e){"function"==typeof define&&define.amd?define(["jquery"],e):"object"==typeof module&&module.exports?module.exports=function(n,o){return void 0===o&&(o="undefined"!=typeof window?require("jquery"):require("jquery")(n)),e(o),o}:e(jQuery)}(function(q){q.fn.simplerSidebar=function(n){var I=q.extend(!0,{attr:"simplersidebar",top:0,gap:64,zIndex:3e3,sidebar:{width:300},animation:{duration:500,easing:"swing"},events:{on:{animation:{open:function(){},close:function(){},both:function(){}}},callbacks:{animation:{open:function(){},close:function(){},both:function(){},freezePage:!0}}},mask:{display:!0,css:{backgroundColor:"black",opacity:.5,filter:"Alpha(opacity=50)"}}},n);return this.each(function(){var n,o,e,t="data-"+I.attr,i="opened"===I.init?"opened":"closed",a=I.overflow?I.overflow:q("html").css("overflow"),s=I.overflow?I.overflow:q("body").css("overflow"),c="left"===I.align?"left":"right",d=I.animation.duration,r=I.animation.easing,l={},f=!0===I.events.callbacks.animation.freezePage,u=function(){q("body, html").css("overflow","hidden")},p=q(this),m=function(n){return n<I.sidebar.width+I.gap?n-I.gap:I.sidebar.width},b=function(){return p.attr(t)},h=function(n){p.attr(t,n)},w=q("<div>").attr(t,"mask"),v=q(I.selectors.trigger),y=I.selectors.quitter?I.selectors.quitter:"a",k=q(window).width(),g={animation:{open:function(){w.fadeIn(d),h("opened"),I.events.on.animation.open()},close:function(){w.fadeOut(d),h("closed"),I.events.on.animation.close()},both:function(){I.events.on.animation.both()}}},x={animation:{open:function(){f&&u(),I.events.callbacks.animation.open()},close:function(){f&&(q("html").css("overflow",a),q("body").css("overflow",s)),I.events.callbacks.animation.close()},both:function(){I.events.callbacks.animation.both()}}},z=function(){l[c]=-p.width(),p.animate(l,d,r,function(){x.animation.close(),x.animation.both()}),g.animation.close(),g.animation.both()};(n={position:"fixed",top:parseInt(I.top),bottom:0,width:m(k),zIndex:I.zIndex})[c]="closed"===i?-m(k):0,f&&"opened"===i&&u(),p.css(n).attr(t,i),(o={position:"fixed",top:parseInt(I.top),right:0,bottom:0,left:0,zIndex:I.zIndex-1,display:"none"}).display="opened"===i?"block":"none",e=q.extend(!0,o,I.mask.css),I.mask.display&&w.appendTo("body").css(e),v.click(function(){switch(b()){case"opened":z();break;case"closed":l[c]=0,p.animate(l,d,r,function(){x.animation.open(),x.animation.both()}),g.animation.open(),g.animation.both()}}),w.click(z),p.on("click",y,z),q(window).resize(function(){var n=q(window).width();p.css("width",m(n)),"closed"===b()&&p.css(c,-p.width())})})}});
|
||||||
1
js/lib/modernizr-2.7.1.min.js
vendored
Normal file
6
js/lib/snap-scroll.min.js
vendored
Normal file
39
js/myloadmore.js
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
jQuery(function($){ // use jQuery code inside this to avoid "$ is not defined" error
|
||||||
|
$('.misha_loadmore').click(function(){
|
||||||
|
|
||||||
|
var button = $(this),
|
||||||
|
data = {
|
||||||
|
'action': 'loadmore',
|
||||||
|
'query': misha_loadmore_params.posts, // that's how we get params from wp_localize_script() function
|
||||||
|
'page' : misha_loadmore_params.current_page
|
||||||
|
};
|
||||||
|
button.trigger("moreload-start")
|
||||||
|
|
||||||
|
|
||||||
|
$.ajax({ // you can also use $.post here
|
||||||
|
url : misha_loadmore_params.ajaxurl, // AJAX handler
|
||||||
|
data : data,
|
||||||
|
type : 'POST',
|
||||||
|
beforeSend : function ( xhr ) {
|
||||||
|
|
||||||
|
button.html('<p>Betöltés...</p>'); // change the button text, you can also add a preloader image
|
||||||
|
},
|
||||||
|
success : function( data ){
|
||||||
|
if( data ) {
|
||||||
|
|
||||||
|
button.html( '<a>Tovább</a>' ).before(data); // insert new posts
|
||||||
|
misha_loadmore_params.current_page++;
|
||||||
|
button.trigger("moreload-finish")
|
||||||
|
|
||||||
|
if ( misha_loadmore_params.current_page == misha_loadmore_params.max_page )
|
||||||
|
button.remove(); // if last page, remove the button
|
||||||
|
|
||||||
|
// you can also fire the "post-load" event here if you use a plugin that requires it
|
||||||
|
// $( document.body ).trigger( 'post-load' );
|
||||||
|
} else {
|
||||||
|
button.remove(); // if no data, remove the button as well
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
281
js/scripts.js
Normal file
@@ -0,0 +1,281 @@
|
|||||||
|
(function ($, root, undefined) {
|
||||||
|
|
||||||
|
$(function () {
|
||||||
|
|
||||||
|
'use strict';
|
||||||
|
|
||||||
|
// DOM ready, take it away
|
||||||
|
|
||||||
|
/* ========================================================================== */
|
||||||
|
/* VARIABLES */
|
||||||
|
/* ========================================================================== */
|
||||||
|
|
||||||
|
const vw = $(window).width()
|
||||||
|
const wow = window.outerWidth
|
||||||
|
console.log(vw, wow)
|
||||||
|
var isMobile
|
||||||
|
var isHome = false
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
if (wow < 769) {
|
||||||
|
isMobile = true
|
||||||
|
//mobile settings
|
||||||
|
$('.social-link').addClass('hidden')
|
||||||
|
|
||||||
|
} else {
|
||||||
|
isMobile = false
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($('body').hasClass("home")) {
|
||||||
|
isHome = true
|
||||||
|
}
|
||||||
|
|
||||||
|
var desktophomemargin = $(".header-1")[0].getBoundingClientRect().width
|
||||||
|
|
||||||
|
|
||||||
|
/* ========================================================================== */
|
||||||
|
/* FUNCTIONS */
|
||||||
|
/* ========================================================================== */
|
||||||
|
|
||||||
|
var focusSearch = function () {
|
||||||
|
|
||||||
|
$(".search-bar input").focus()
|
||||||
|
}
|
||||||
|
|
||||||
|
var rotateMenuButton = function () {
|
||||||
|
if ($(".menubutton button").hasClass("rotated")) {
|
||||||
|
$(".menubutton button").removeClass("rotated");
|
||||||
|
} else {
|
||||||
|
$(".menubutton button").addClass("rotated");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var showHideSocial = function () {
|
||||||
|
if (isMobile && $('.social-link').hasClass('hidden')) {
|
||||||
|
$('.social-link').removeClass('hidden')
|
||||||
|
} else if (isMobile) {
|
||||||
|
$('.social-link').addClass('hidden')
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function convertRemToPixels(rem) {
|
||||||
|
return rem * parseFloat(getComputedStyle(document.documentElement).fontSize);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ========================================================================== */
|
||||||
|
/* SEARCH */
|
||||||
|
/* ========================================================================== */
|
||||||
|
|
||||||
|
if (isMobile) {
|
||||||
|
$(".search-bar").prependTo("#sidebar-wrapper")
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ========================================================================== */
|
||||||
|
/* MENU */
|
||||||
|
/* ========================================================================== */
|
||||||
|
|
||||||
|
var menuWidth = wow
|
||||||
|
if (!isMobile) {
|
||||||
|
menuWidth = 420
|
||||||
|
}
|
||||||
|
|
||||||
|
$("#sidebar").simplerSidebar({
|
||||||
|
|
||||||
|
selectors: {
|
||||||
|
trigger: "#toggle-sidebar",
|
||||||
|
quitter: "#toggle-sidebar"
|
||||||
|
},
|
||||||
|
sidebar: {
|
||||||
|
width: menuWidth
|
||||||
|
},
|
||||||
|
mask: {
|
||||||
|
display: false,
|
||||||
|
css: {
|
||||||
|
backgroundColor: "black",
|
||||||
|
opacity: 1,
|
||||||
|
filter: "Alpha(opacity=100)" // IE opacity fix
|
||||||
|
}
|
||||||
|
},
|
||||||
|
gap: 0,
|
||||||
|
events: {
|
||||||
|
on: {
|
||||||
|
animation: {
|
||||||
|
both: rotateMenuButton
|
||||||
|
|
||||||
|
}
|
||||||
|
},
|
||||||
|
callbacks: {
|
||||||
|
animation: {
|
||||||
|
both: showHideSocial,
|
||||||
|
freezePage: false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
/* --------------------------------- Search --------------------------------- */
|
||||||
|
|
||||||
|
if (!isMobile) {
|
||||||
|
$(".search-box button").click(function (e) {
|
||||||
|
e.preventDefault()
|
||||||
|
var bar = $(this).next(".search-bar")
|
||||||
|
if (bar.hasClass("opensearch")) {
|
||||||
|
bar.stop().animate({ width: "0" }, 400, function () {
|
||||||
|
bar.hide().removeClass("opensearch")
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
bar.show().stop().animate({ width: "20rem" }, 400, function () {
|
||||||
|
bar.addClass("opensearch")
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
/* HOME */
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
|
|
||||||
|
/* ----------------------------------- css ---------------------------------- */
|
||||||
|
|
||||||
|
if (isHome & !isMobile) {
|
||||||
|
$('html').css({ overflowY: "hidden" })
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ----------------------------- Snap on mobile ----------------------------- */
|
||||||
|
|
||||||
|
if (isHome & isMobile) {
|
||||||
|
$("article.post").SnapScroll({
|
||||||
|
animateDuration: 400
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/* --------------------------------- To top --------------------------------- */
|
||||||
|
|
||||||
|
$(".totop>a").click(function (e) {
|
||||||
|
e.preventDefault()
|
||||||
|
$('html, body').stop().animate({ scrollTop: 0 }, 800);
|
||||||
|
})
|
||||||
|
|
||||||
|
/* ---------------------------- Scroll on desktop --------------------------- */
|
||||||
|
|
||||||
|
//scroll to the next or prev article
|
||||||
|
function homeScroll(target, direction) {
|
||||||
|
var nextelem;
|
||||||
|
|
||||||
|
if (direction == "next") {
|
||||||
|
nextelem = target.next()
|
||||||
|
} else {
|
||||||
|
nextelem = target.prev()
|
||||||
|
}
|
||||||
|
if (nextelem.length == 0) {
|
||||||
|
nextelem = target
|
||||||
|
}
|
||||||
|
|
||||||
|
// var offset = ($(nextelem).offset().left) - desktophomemargin
|
||||||
|
var offset = ($(nextelem).position().left) - desktophomemargin
|
||||||
|
console.log("scrolling to: " + nextelem.attr("id") + " - offset: " + offset)
|
||||||
|
$('html, body').stop().animate({ scrollLeft: offset }, 800);
|
||||||
|
return nextelem;
|
||||||
|
}
|
||||||
|
|
||||||
|
//extractDelta(e): extract the scroll length from an event
|
||||||
|
function extractDelta(e) {
|
||||||
|
if (e.wheelDelta) {
|
||||||
|
return e.wheelDelta;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (e.originalEvent.detail) {
|
||||||
|
return e.originalEvent.detail;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (e.originalEvent.deltaY) {
|
||||||
|
return e.originalEvent.deltaY * -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (e.originalEvent && e.originalEvent.wheelDelta) {
|
||||||
|
return e.originalEvent.wheelDelta;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var currElem = $('article:first-child')
|
||||||
|
|
||||||
|
//checking the current scroll location for refresh:
|
||||||
|
if (isHome & !isMobile) {
|
||||||
|
var articleWidth = $('article:first-child')[0].getBoundingClientRect().width
|
||||||
|
var currscroll = $('html').scrollLeft()
|
||||||
|
var scrollnr = Math.floor(currscroll / articleWidth) + 1
|
||||||
|
currElem = $('article:nth-child(' + scrollnr + ')')
|
||||||
|
console.log(currElem.attr("id"))
|
||||||
|
}
|
||||||
|
|
||||||
|
var scrolltimer = false;
|
||||||
|
$(window).on('wheel DOMMouseScroll', function (e) {
|
||||||
|
//e.preventDefault();
|
||||||
|
if (isHome & !isMobile) {
|
||||||
|
if (scrolltimer) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
scrolltimer = true;
|
||||||
|
setTimeout(() => {
|
||||||
|
scrolltimer = false;
|
||||||
|
}, 500);
|
||||||
|
|
||||||
|
var wd = extractDelta(e)
|
||||||
|
|
||||||
|
if (wd > 0) {
|
||||||
|
currElem = homeScroll(currElem, "prev")
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
currElem = homeScroll(currElem, "next")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
/* -------------------------- scroll click on home -------------------------- */
|
||||||
|
$(".header-scroll-left button").click(() => {
|
||||||
|
currElem = homeScroll(currElem, "prev")
|
||||||
|
})
|
||||||
|
$(".header-scroll-right button").click(() => {
|
||||||
|
currElem = homeScroll(currElem, "next")
|
||||||
|
})
|
||||||
|
|
||||||
|
/* -------------------------- loadmore: ajax loads -------------------------- */
|
||||||
|
|
||||||
|
$('.misha_loadmore').on("moreload-start", function () {
|
||||||
|
currElem = $(this).prev()
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
$('.misha_loadmore').on("moreload-finish", function () {
|
||||||
|
currElem = homeScroll(currElem, "next")
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
/* CIRCULAR TEXT */
|
||||||
|
/* -------------------------------------------------------------------------- */
|
||||||
|
|
||||||
|
var charnum = 0
|
||||||
|
$(".wrapper .header #tag-nav ul li a").each(function () {
|
||||||
|
let chars = $(this).html().length + 1
|
||||||
|
$(this).lettering()
|
||||||
|
$(this).children("span").each(function () {
|
||||||
|
let origClass = $(this).attr("class")
|
||||||
|
let origClassNum = parseInt(origClass.split("r")[1])
|
||||||
|
let newClassNum = origClassNum + charnum
|
||||||
|
$(this).removeClass(origClass).addClass("char" + newClassNum)
|
||||||
|
})
|
||||||
|
charnum += chars
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
})(jQuery, this);
|
||||||
199
languages/HTML5Blank.pot
Normal file
@@ -0,0 +1,199 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: dis-2019 WordPress Theme\n"
|
||||||
|
"POT-Creation-Date: 2013-09-18 00:26+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: Jürgen Rabe | www.egado.de <rabe@egado.de>\n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: Poedit 1.5.5\n"
|
||||||
|
"X-Poedit-SourceCharset: UTF-8\n"
|
||||||
|
"X-Poedit-KeywordsList: _e;__\n"
|
||||||
|
"X-Poedit-Basepath: .\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
"X-Poedit-SearchPath-1: ..\n"
|
||||||
|
|
||||||
|
#: ../404.php:9
|
||||||
|
msgid "Page not found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../404.php:11
|
||||||
|
msgid "Return home?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../archive.php:6
|
||||||
|
msgid "Archives"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../author.php:8
|
||||||
|
msgid "Author Archives for "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../author.php:14
|
||||||
|
msgid "About "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../author.php:41 ../loop.php:22 ../single.php:27
|
||||||
|
msgid "Published by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "Leave your thoughts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "1 Comment"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "% Comments"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../author.php:61 ../loop.php:39 ../page.php:31 ../single.php:53
|
||||||
|
#: ../template-demo.php:31
|
||||||
|
msgid "Sorry, nothing to display."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../category.php:6
|
||||||
|
msgid "Categories for"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../comments.php:3
|
||||||
|
msgid "Post is password protected. Enter the password to view any comments."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../comments.php:18
|
||||||
|
msgid "Comments are closed here."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../footer.php:6
|
||||||
|
msgid "Powered by"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../functions.php:133
|
||||||
|
msgid "Header Menu"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../functions.php:134
|
||||||
|
msgid "Sidebar Menu"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../functions.php:135
|
||||||
|
msgid "Extra Menu"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../functions.php:181
|
||||||
|
msgid "Widget Area 1"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../functions.php:182 ../functions.php:193
|
||||||
|
msgid "Description for this widget-area..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../functions.php:192
|
||||||
|
msgid "Widget Area 2"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../functions.php:258
|
||||||
|
msgid "View Article"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../functions.php:319
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite> <span class=\"says\">says:</span>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../functions.php:322
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../functions.php:328
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s at %2$s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../functions.php:328
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../functions.php:411 ../functions.php:412
|
||||||
|
msgid "dis-2019 Custom Post"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../functions.php:413
|
||||||
|
msgid "Add New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../functions.php:414
|
||||||
|
msgid "Add New dis-2019 Custom Post"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../functions.php:415
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../functions.php:416
|
||||||
|
msgid "Edit dis-2019 Custom Post"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../functions.php:417
|
||||||
|
msgid "New dis-2019 Custom Post"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../functions.php:418 ../functions.php:419
|
||||||
|
msgid "View dis-2019 Custom Post"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../functions.php:420
|
||||||
|
msgid "Search dis-2019 Custom Post"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../functions.php:421
|
||||||
|
msgid "No dis-2019 Custom Posts found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../functions.php:422
|
||||||
|
msgid "No dis-2019 Custom Posts found in Trash"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../index.php:6
|
||||||
|
msgid "Latest Posts"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../search.php:6
|
||||||
|
#, php-format
|
||||||
|
msgid "%s Search Results for "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../searchform.php:3
|
||||||
|
msgid "To search, type and hit enter."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../searchform.php:4
|
||||||
|
msgid "Search"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../single.php:33
|
||||||
|
msgid "Tags: "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../single.php:35
|
||||||
|
msgid "Categorised in: "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../single.php:37
|
||||||
|
msgid "This post was written by "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../tag.php:6
|
||||||
|
msgid "Tag Archive: "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: ../searchform.php:3
|
||||||
|
msgid "To search, type and hit enter."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "%s results for "
|
||||||
|
#~ msgstr "%s Ergebnisse für "
|
||||||
BIN
languages/de_DE.mo
Normal file
198
languages/de_DE.po
Normal file
@@ -0,0 +1,198 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: dis-2019 WordPress Theme\n"
|
||||||
|
"POT-Creation-Date: 2013-09-18 00:25+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: Jürgen Rabe | www.egado.de <rabe@egado.de>\n"
|
||||||
|
"Language-Team: Jürgen Rabe | www.egado.de <rabe@egado.de>\n"
|
||||||
|
"Language: German\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: Poedit 1.5.5\n"
|
||||||
|
"X-Poedit-SourceCharset: UTF-8\n"
|
||||||
|
"X-Poedit-KeywordsList: _e;__\n"
|
||||||
|
"X-Poedit-Basepath: .\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
"X-Poedit-SearchPath-1: ..\n"
|
||||||
|
|
||||||
|
#: ../404.php:9
|
||||||
|
msgid "Page not found"
|
||||||
|
msgstr "Fehler 404 – Die Seite wurde leider nicht gefunden."
|
||||||
|
|
||||||
|
#: ../404.php:11
|
||||||
|
msgid "Return home?"
|
||||||
|
msgstr "Zurück zur Startseite?"
|
||||||
|
|
||||||
|
#: ../archive.php:6
|
||||||
|
msgid "Archives"
|
||||||
|
msgstr "Archive"
|
||||||
|
|
||||||
|
#: ../author.php:8
|
||||||
|
msgid "Author Archives for "
|
||||||
|
msgstr "Autor-Archiv für "
|
||||||
|
|
||||||
|
#: ../author.php:14
|
||||||
|
msgid "About "
|
||||||
|
msgstr "Über "
|
||||||
|
|
||||||
|
#: ../author.php:41 ../loop.php:22 ../single.php:27
|
||||||
|
msgid "Published by"
|
||||||
|
msgstr "Veröffentlicht von"
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "Leave your thoughts"
|
||||||
|
msgstr "Schreibe einen Kommentar"
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "1 Comment"
|
||||||
|
msgstr "1 Kommentar"
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "% Comments"
|
||||||
|
msgstr "% Kommentare"
|
||||||
|
|
||||||
|
#: ../author.php:61 ../loop.php:39 ../page.php:31 ../single.php:53
|
||||||
|
#: ../template-demo.php:31
|
||||||
|
msgid "Sorry, nothing to display."
|
||||||
|
msgstr "Nichts gefunden, was den Suchkriterien entspricht."
|
||||||
|
|
||||||
|
#: ../category.php:6
|
||||||
|
msgid "Categories for"
|
||||||
|
msgstr "Kategorie-Archiv für"
|
||||||
|
|
||||||
|
#: ../comments.php:3
|
||||||
|
msgid "Post is password protected. Enter the password to view any comments."
|
||||||
|
msgstr ""
|
||||||
|
"Dieser Artikel ist passwortgeschützt. Um die Kommentare sehen zu können muss "
|
||||||
|
"das Passwort eingegeben werden."
|
||||||
|
|
||||||
|
#: ../comments.php:18
|
||||||
|
msgid "Comments are closed here."
|
||||||
|
msgstr "Kommentare sind geschlossen."
|
||||||
|
|
||||||
|
#: ../footer.php:6
|
||||||
|
msgid "Powered by"
|
||||||
|
msgstr "Betrieben mit"
|
||||||
|
|
||||||
|
#: ../functions.php:133
|
||||||
|
msgid "Header Menu"
|
||||||
|
msgstr "Kopfbereichs-Menü"
|
||||||
|
|
||||||
|
#: ../functions.php:134
|
||||||
|
msgid "Sidebar Menu"
|
||||||
|
msgstr "Seitenleisten-Menü"
|
||||||
|
|
||||||
|
#: ../functions.php:135
|
||||||
|
msgid "Extra Menu"
|
||||||
|
msgstr "Zusatz-Menü"
|
||||||
|
|
||||||
|
#: ../functions.php:181
|
||||||
|
msgid "Widget Area 1"
|
||||||
|
msgstr "Widget-Bereich 1"
|
||||||
|
|
||||||
|
#: ../functions.php:182 ../functions.php:193
|
||||||
|
msgid "Description for this widget-area..."
|
||||||
|
msgstr "Beschreibung für diesen Widget-Bereich…"
|
||||||
|
|
||||||
|
#: ../functions.php:192
|
||||||
|
msgid "Widget Area 2"
|
||||||
|
msgstr "Widget-Bereich 2"
|
||||||
|
|
||||||
|
#: ../functions.php:258
|
||||||
|
msgid "View Article"
|
||||||
|
msgstr "Artikel ansehen"
|
||||||
|
|
||||||
|
#: ../functions.php:319
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite> <span class=\"says\">says:</span>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite> <span class=\"says\">sagt:</span>"
|
||||||
|
|
||||||
|
#: ../functions.php:322
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "Dein Kommentar muss noch moderiert werden – Bitte hab etwas Geduld."
|
||||||
|
|
||||||
|
#: ../functions.php:328
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s at %2$s"
|
||||||
|
msgstr "%1$s um %2$s"
|
||||||
|
|
||||||
|
#: ../functions.php:328
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(Bearbeiten)"
|
||||||
|
|
||||||
|
#: ../functions.php:411 ../functions.php:412
|
||||||
|
msgid "dis-2019 Custom Post"
|
||||||
|
msgstr "dis-2019 Custom Post-Type"
|
||||||
|
|
||||||
|
#: ../functions.php:413
|
||||||
|
msgid "Add New"
|
||||||
|
msgstr "Neuen Artikel erstellen"
|
||||||
|
|
||||||
|
#: ../functions.php:414
|
||||||
|
msgid "Add New dis-2019 Custom Post"
|
||||||
|
msgstr "Neuen dis-2019 Custom Post erstellen"
|
||||||
|
|
||||||
|
#: ../functions.php:415
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "Bearbeiten"
|
||||||
|
|
||||||
|
#: ../functions.php:416
|
||||||
|
msgid "Edit dis-2019 Custom Post"
|
||||||
|
msgstr "dis-2019 Custom Post bearbeiten"
|
||||||
|
|
||||||
|
#: ../functions.php:417
|
||||||
|
msgid "New dis-2019 Custom Post"
|
||||||
|
msgstr "Neuer dis-2019 Custom Post"
|
||||||
|
|
||||||
|
#: ../functions.php:418 ../functions.php:419
|
||||||
|
msgid "View dis-2019 Custom Post"
|
||||||
|
msgstr "dis-2019 Custom Post ansehen"
|
||||||
|
|
||||||
|
#: ../functions.php:420
|
||||||
|
msgid "Search dis-2019 Custom Post"
|
||||||
|
msgstr "dis-2019 Custom Post suchen"
|
||||||
|
|
||||||
|
#: ../functions.php:421
|
||||||
|
msgid "No dis-2019 Custom Posts found"
|
||||||
|
msgstr "Keine dis-2019 Custom Posts gefunden"
|
||||||
|
|
||||||
|
#: ../functions.php:422
|
||||||
|
msgid "No dis-2019 Custom Posts found in Trash"
|
||||||
|
msgstr "Keine dis-2019 Custom Posts im Papierkorb gefunden"
|
||||||
|
|
||||||
|
#: ../index.php:6
|
||||||
|
msgid "Latest Posts"
|
||||||
|
msgstr "Letzte Artikel"
|
||||||
|
|
||||||
|
#: ../search.php:6
|
||||||
|
#, php-format
|
||||||
|
msgid "%s Search Results for "
|
||||||
|
msgstr "%s Suchergebnisse für "
|
||||||
|
|
||||||
|
#: ../searchform.php:3
|
||||||
|
msgid "To search, type and hit enter."
|
||||||
|
msgstr "Suchbegriff…"
|
||||||
|
|
||||||
|
#: ../searchform.php:4
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Suchen"
|
||||||
|
|
||||||
|
#: ../single.php:33
|
||||||
|
msgid "Tags: "
|
||||||
|
msgstr "Stichwörter: "
|
||||||
|
|
||||||
|
#: ../single.php:35
|
||||||
|
msgid "Categorised in: "
|
||||||
|
msgstr "Kategorisiert in: "
|
||||||
|
|
||||||
|
#: ../single.php:37
|
||||||
|
msgid "This post was written by "
|
||||||
|
msgstr "Dieser Artikel wurde verfasst von "
|
||||||
|
|
||||||
|
#: ../tag.php:6
|
||||||
|
msgid "Tag Archive: "
|
||||||
|
msgstr "Stichword-Archiv: "
|
||||||
|
|
||||||
|
#~ msgid "%s results for "
|
||||||
|
#~ msgstr "%s Ergebnisse für "
|
||||||
BIN
languages/es_CL.mo
Normal file
197
languages/es_CL.po
Normal file
@@ -0,0 +1,197 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: dis-2019 WordPress Theme\n"
|
||||||
|
"POT-Creation-Date: 2012-10-18 00:53+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: Fabián Núñez <fanuneza@gmail.com>\n"
|
||||||
|
"Language-Team: Ioan Virag | www.ioanvirag.com <ioan@ioanvirag.com>\n"
|
||||||
|
"Language: es_CL\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: Poedit 1.6.4\n"
|
||||||
|
"X-Poedit-SourceCharset: UTF-8\n"
|
||||||
|
"X-Poedit-KeywordsList: _e;__\n"
|
||||||
|
"X-Poedit-Basepath: .\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
"X-Poedit-SearchPath-1: ..\n"
|
||||||
|
|
||||||
|
#: ../404.php:9
|
||||||
|
msgid "Page not found"
|
||||||
|
msgstr "Página no encontrada"
|
||||||
|
|
||||||
|
#: ../404.php:10
|
||||||
|
msgid "Return home?"
|
||||||
|
msgstr "¿Regresar al Inicio?"
|
||||||
|
|
||||||
|
#: ../archive.php:6
|
||||||
|
msgid "Archives"
|
||||||
|
msgstr "Archivos"
|
||||||
|
|
||||||
|
#: ../author.php:8
|
||||||
|
msgid "Author Archives for "
|
||||||
|
msgstr "Archivos de autor de"
|
||||||
|
|
||||||
|
#: ../author.php:41 ../loop.php:22 ../single.php:27
|
||||||
|
msgid "Published by"
|
||||||
|
msgstr "Publicado por"
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "Leave your thoughts"
|
||||||
|
msgstr "Deja tus comentarios"
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "1 Comment"
|
||||||
|
msgstr "1 Comentario"
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "% Comments"
|
||||||
|
msgstr "% Comentarios"
|
||||||
|
|
||||||
|
#: ../author.php:61 ../loop.php:41 ../page.php:31 ../single.php:55
|
||||||
|
#: ../template-demo.php:33
|
||||||
|
msgid "Sorry, nothing to display."
|
||||||
|
msgstr "Disculpa, nada para mostrar."
|
||||||
|
|
||||||
|
#: ../category.php:6
|
||||||
|
msgid "Categories for"
|
||||||
|
msgstr "Categorías para"
|
||||||
|
|
||||||
|
#: ../comments.php:3
|
||||||
|
msgid "Post is password protected. Enter the password to view any comments."
|
||||||
|
msgstr "Entrada protegida. Introduzca la contraseña para ver los comentarios."
|
||||||
|
|
||||||
|
#: ../comments.php:18
|
||||||
|
msgid "Comments are closed here."
|
||||||
|
msgstr "Los comentarios están cerrados."
|
||||||
|
|
||||||
|
#: ../footer.php:6
|
||||||
|
msgid "Powered by"
|
||||||
|
msgstr "Desarrollado con"
|
||||||
|
|
||||||
|
#: ../functions.php:174
|
||||||
|
#, php-format
|
||||||
|
msgid "<span class=\"fn\">%s</span> <span class=\"says\">says:</span>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite> <span class=\"says\">dice:</span>"
|
||||||
|
|
||||||
|
#: ../functions.php:177
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "Su comentario espera moderación."
|
||||||
|
|
||||||
|
#: ../functions.php:184
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s at %2$s"
|
||||||
|
msgstr "%1$s en %2$s"
|
||||||
|
|
||||||
|
#: ../functions.php:184
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(Editar)"
|
||||||
|
|
||||||
|
#: ../functions.php:209
|
||||||
|
msgid "Header Menu"
|
||||||
|
msgstr "Menú de la cabecera"
|
||||||
|
|
||||||
|
#: ../functions.php:210
|
||||||
|
msgid "Sidebar Menu"
|
||||||
|
msgstr "Menú de la barra lateral"
|
||||||
|
|
||||||
|
#: ../functions.php:211
|
||||||
|
msgid "Extra Menu"
|
||||||
|
msgstr "Menú extra"
|
||||||
|
|
||||||
|
#: ../functions.php:257
|
||||||
|
msgid "Widget Area 1"
|
||||||
|
msgstr "Zona 1 de widgets"
|
||||||
|
|
||||||
|
#: ../functions.php:258 ../functions.php:269
|
||||||
|
msgid "Description for this widget-area..."
|
||||||
|
msgstr "Descripción para esta zona..."
|
||||||
|
|
||||||
|
#: ../functions.php:268
|
||||||
|
msgid "Widget Area 2"
|
||||||
|
msgstr "Zona 2 de widgets"
|
||||||
|
|
||||||
|
#: ../functions.php:333
|
||||||
|
msgid "View Article"
|
||||||
|
msgstr "Ver artículo"
|
||||||
|
|
||||||
|
#: ../functions.php:438 ../functions.php:439
|
||||||
|
msgid "dis-2019 Custom Post"
|
||||||
|
msgstr "Entradas personalizadas de dis-2019"
|
||||||
|
|
||||||
|
#: ../functions.php:440
|
||||||
|
msgid "Add New"
|
||||||
|
msgstr "Añadir nuevo"
|
||||||
|
|
||||||
|
#: ../functions.php:441
|
||||||
|
msgid "Add New dis-2019 Custom Post"
|
||||||
|
msgstr "Añadir entrada personalizada de dis-2019"
|
||||||
|
|
||||||
|
#: ../functions.php:442
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "Editar"
|
||||||
|
|
||||||
|
#: ../functions.php:443
|
||||||
|
msgid "Edit dis-2019 Custom Post"
|
||||||
|
msgstr "Editar entrada personalizada de dis-2019"
|
||||||
|
|
||||||
|
#: ../functions.php:444
|
||||||
|
msgid "New dis-2019 Custom Post"
|
||||||
|
msgstr "Nueva entrada personalizada de dis-2019"
|
||||||
|
|
||||||
|
#: ../functions.php:445 ../functions.php:446
|
||||||
|
msgid "View dis-2019 Custom Post"
|
||||||
|
msgstr "Ver entrada personalizada de dis-2019"
|
||||||
|
|
||||||
|
#: ../functions.php:447
|
||||||
|
msgid "Search dis-2019 Custom Post"
|
||||||
|
msgstr "Buscar entrada personalizada de dis-2019"
|
||||||
|
|
||||||
|
#: ../functions.php:448
|
||||||
|
msgid "No dis-2019 Custom Posts found"
|
||||||
|
msgstr "No se han encontrado entradas personalizadas de dis-2019"
|
||||||
|
|
||||||
|
#: ../functions.php:449
|
||||||
|
msgid "No dis-2019 Custom Posts found in Trash"
|
||||||
|
msgstr ""
|
||||||
|
"No se han encontrado entradas personalizadas de dis-2019 en la papelera"
|
||||||
|
|
||||||
|
#: ../index.php:6
|
||||||
|
msgid "Latest Posts"
|
||||||
|
msgstr "Últimas entradas"
|
||||||
|
|
||||||
|
#: ../search.php:6
|
||||||
|
#, php-format
|
||||||
|
msgid "%s Search Results for "
|
||||||
|
msgstr "%s resultados resultados para"
|
||||||
|
|
||||||
|
#: ../searchform.php:5
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Buscar"
|
||||||
|
|
||||||
|
#: ../single.php:35
|
||||||
|
msgid "Tags: "
|
||||||
|
msgstr "Etiquetas: "
|
||||||
|
|
||||||
|
#: ../single.php:37
|
||||||
|
msgid "Categorised in: "
|
||||||
|
msgstr "Categorizado en: "
|
||||||
|
|
||||||
|
#: ../single.php:39
|
||||||
|
msgid "This post was written by "
|
||||||
|
msgstr "Esta entrada fue escrita por"
|
||||||
|
|
||||||
|
#: ../tag.php:6
|
||||||
|
msgid "Tag Archive: "
|
||||||
|
msgstr "Archivo de etiquetas: "
|
||||||
|
|
||||||
|
#: ../searchform.php:3
|
||||||
|
msgid "To search, type and hit enter."
|
||||||
|
msgstr "Para buscar, escribe y presiona Enter"
|
||||||
|
|
||||||
|
#~ msgid "%s results for "
|
||||||
|
#~ msgstr "%s Ergebnisse für "
|
||||||
|
|
||||||
|
#~ msgid "About"
|
||||||
|
#~ msgstr "Acerca de"
|
||||||
BIN
languages/es_ES.mo
Normal file
193
languages/es_ES.po
Normal file
@@ -0,0 +1,193 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: dis-2019 WordPress Theme\n"
|
||||||
|
"POT-Creation-Date: 2012-10-18 00:53+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: Fabián Núñez <fanuneza@gmail.com>\n"
|
||||||
|
"Language-Team: Ioan Virag | www.ioanvirag.com <ioan@ioanvirag.com>\n"
|
||||||
|
"Language: es_ES\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: Poedit 1.6.4\n"
|
||||||
|
"X-Poedit-SourceCharset: UTF-8\n"
|
||||||
|
"X-Poedit-KeywordsList: _e;__\n"
|
||||||
|
"X-Poedit-Basepath: .\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
"X-Poedit-SearchPath-1: ..\n"
|
||||||
|
|
||||||
|
#: ../404.php:9
|
||||||
|
msgid "Page not found"
|
||||||
|
msgstr "Página no encontrada"
|
||||||
|
|
||||||
|
#: ../404.php:10
|
||||||
|
msgid "Return home?"
|
||||||
|
msgstr "¿Regresar al Inicio?"
|
||||||
|
|
||||||
|
#: ../archive.php:6
|
||||||
|
msgid "Archives"
|
||||||
|
msgstr "Archivos"
|
||||||
|
|
||||||
|
#: ../author.php:8
|
||||||
|
msgid "Author Archives for "
|
||||||
|
msgstr "Archivos de autor de"
|
||||||
|
|
||||||
|
#: ../author.php:41 ../loop.php:22 ../single.php:27
|
||||||
|
msgid "Published by"
|
||||||
|
msgstr "Publicado por"
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "Leave your thoughts"
|
||||||
|
msgstr "Deja tus comentarios"
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "1 Comment"
|
||||||
|
msgstr "1 Comentario"
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "% Comments"
|
||||||
|
msgstr "% Comentarios"
|
||||||
|
|
||||||
|
#: ../author.php:61 ../loop.php:41 ../page.php:31 ../single.php:55
|
||||||
|
#: ../template-demo.php:33
|
||||||
|
msgid "Sorry, nothing to display."
|
||||||
|
msgstr "Disculpa, nada para mostrar."
|
||||||
|
|
||||||
|
#: ../category.php:6
|
||||||
|
msgid "Categories for"
|
||||||
|
msgstr "Categorías para"
|
||||||
|
|
||||||
|
#: ../comments.php:3
|
||||||
|
msgid "Post is password protected. Enter the password to view any comments."
|
||||||
|
msgstr "Entrada protegida. Introduzca la contraseña para ver los comentarios."
|
||||||
|
|
||||||
|
#: ../comments.php:18
|
||||||
|
msgid "Comments are closed here."
|
||||||
|
msgstr "Los comentarios están cerrados."
|
||||||
|
|
||||||
|
#: ../footer.php:6
|
||||||
|
msgid "Powered by"
|
||||||
|
msgstr "Desarrollado con"
|
||||||
|
|
||||||
|
#: ../functions.php:174
|
||||||
|
#, php-format
|
||||||
|
msgid "<span class=\"fn\">%s</span> <span class=\"says\">says:</span>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite> <span class=\"says\">dice:</span>"
|
||||||
|
|
||||||
|
#: ../functions.php:177
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "Su comentario espera moderación."
|
||||||
|
|
||||||
|
#: ../functions.php:184
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s at %2$s"
|
||||||
|
msgstr "%1$s en %2$s"
|
||||||
|
|
||||||
|
#: ../functions.php:184
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(Editar)"
|
||||||
|
|
||||||
|
#: ../functions.php:209
|
||||||
|
msgid "Header Menu"
|
||||||
|
msgstr "Menú de la cabecera"
|
||||||
|
|
||||||
|
#: ../functions.php:210
|
||||||
|
msgid "Sidebar Menu"
|
||||||
|
msgstr "Menú de la barra lateral"
|
||||||
|
|
||||||
|
#: ../functions.php:211
|
||||||
|
msgid "Extra Menu"
|
||||||
|
msgstr "Menú extra"
|
||||||
|
|
||||||
|
#: ../functions.php:257
|
||||||
|
msgid "Widget Area 1"
|
||||||
|
msgstr "Zona 1 de widgets"
|
||||||
|
|
||||||
|
#: ../functions.php:258 ../functions.php:269
|
||||||
|
msgid "Description for this widget-area..."
|
||||||
|
msgstr "Descripción para esta zona..."
|
||||||
|
|
||||||
|
#: ../functions.php:268
|
||||||
|
msgid "Widget Area 2"
|
||||||
|
msgstr "Zona 2 de widgets"
|
||||||
|
|
||||||
|
#: ../functions.php:333
|
||||||
|
msgid "View Article"
|
||||||
|
msgstr "Ver artículo"
|
||||||
|
|
||||||
|
#: ../functions.php:438 ../functions.php:439
|
||||||
|
msgid "dis-2019 Custom Post"
|
||||||
|
msgstr "Entradas personalizadas de dis-2019"
|
||||||
|
|
||||||
|
#: ../functions.php:440
|
||||||
|
msgid "Add New"
|
||||||
|
msgstr "Añadir nuevo"
|
||||||
|
|
||||||
|
#: ../functions.php:441
|
||||||
|
msgid "Add New dis-2019 Custom Post"
|
||||||
|
msgstr "Añadir entrada personalizada de dis-2019"
|
||||||
|
|
||||||
|
#: ../functions.php:442
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "Editar"
|
||||||
|
|
||||||
|
#: ../functions.php:443
|
||||||
|
msgid "Edit dis-2019 Custom Post"
|
||||||
|
msgstr "Editar entrada personalizada de dis-2019"
|
||||||
|
|
||||||
|
#: ../functions.php:444
|
||||||
|
msgid "New dis-2019 Custom Post"
|
||||||
|
msgstr "Nueva entrada personalizada de dis-2019"
|
||||||
|
|
||||||
|
#: ../functions.php:445 ../functions.php:446
|
||||||
|
msgid "View dis-2019 Custom Post"
|
||||||
|
msgstr "Ver entrada personalizada de dis-2019"
|
||||||
|
|
||||||
|
#: ../functions.php:447
|
||||||
|
msgid "Search dis-2019 Custom Post"
|
||||||
|
msgstr "Buscar entrada personalizada de dis-2019"
|
||||||
|
|
||||||
|
#: ../functions.php:448
|
||||||
|
msgid "No dis-2019 Custom Posts found"
|
||||||
|
msgstr "No se han encontrado entradas personalizadas de dis-2019"
|
||||||
|
|
||||||
|
#: ../functions.php:449
|
||||||
|
msgid "No dis-2019 Custom Posts found in Trash"
|
||||||
|
msgstr ""
|
||||||
|
"No se han encontrado entradas personalizadas de dis-2019 en la papelera"
|
||||||
|
|
||||||
|
#: ../index.php:6
|
||||||
|
msgid "Latest Posts"
|
||||||
|
msgstr "Últimas entradas"
|
||||||
|
|
||||||
|
#: ../search.php:6
|
||||||
|
#, php-format
|
||||||
|
msgid "%s Search Results for "
|
||||||
|
msgstr "%s resultados resultados para"
|
||||||
|
|
||||||
|
#: ../searchform.php:5
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Buscar"
|
||||||
|
|
||||||
|
#: ../single.php:35
|
||||||
|
msgid "Tags: "
|
||||||
|
msgstr "Etiquetas: "
|
||||||
|
|
||||||
|
#: ../single.php:37
|
||||||
|
msgid "Categorised in: "
|
||||||
|
msgstr "Categorizado en: "
|
||||||
|
|
||||||
|
#: ../single.php:39
|
||||||
|
msgid "This post was written by "
|
||||||
|
msgstr "Esta entrada fue escrita por"
|
||||||
|
|
||||||
|
#: ../tag.php:6
|
||||||
|
msgid "Tag Archive: "
|
||||||
|
msgstr "Archivo de etiquetas: "
|
||||||
|
|
||||||
|
#: ../searchform.php:3
|
||||||
|
msgid "To search, type and hit enter."
|
||||||
|
msgstr "Para buscar, escribe y presiona Enter"
|
||||||
|
|
||||||
|
#~ msgid "%s results for "
|
||||||
|
#~ msgstr "%s Ergebnisse für "
|
||||||
BIN
languages/fr_FR.mo
Normal file
198
languages/fr_FR.po
Normal file
@@ -0,0 +1,198 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: dis-2019 WordPress Theme\n"
|
||||||
|
"POT-Creation-Date: 2014-01-08 00:08+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: Antoine Lorence <antoine.lorence@gmail.com>\n"
|
||||||
|
"Language-Team: Kevin Plattret <kevin@plattret.me>\n"
|
||||||
|
"Language: fr\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: Poedit 1.6.3\n"
|
||||||
|
"X-Poedit-SourceCharset: UTF-8\n"
|
||||||
|
"X-Poedit-KeywordsList: _e;__\n"
|
||||||
|
"X-Poedit-Basepath: .\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
"X-Poedit-SearchPath-1: ..\n"
|
||||||
|
|
||||||
|
#: ../404.php:9
|
||||||
|
msgid "Page not found"
|
||||||
|
msgstr "Page non trouvée"
|
||||||
|
|
||||||
|
#: ../404.php:11
|
||||||
|
msgid "Return home?"
|
||||||
|
msgstr "Retour à la page d'accueil ?"
|
||||||
|
|
||||||
|
#: ../archive.php:6
|
||||||
|
msgid "Archives"
|
||||||
|
msgstr "Archives"
|
||||||
|
|
||||||
|
#: ../author.php:8
|
||||||
|
msgid "Author Archives for "
|
||||||
|
msgstr "Archives de l'auteur "
|
||||||
|
|
||||||
|
#: ../author.php:14
|
||||||
|
msgid "About "
|
||||||
|
msgstr "À propos"
|
||||||
|
|
||||||
|
#: ../author.php:41 ../loop.php:22 ../single.php:27
|
||||||
|
msgid "Published by"
|
||||||
|
msgstr "Publié par"
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "Leave your thoughts"
|
||||||
|
msgstr "Laissez vos commentaires"
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "1 Comment"
|
||||||
|
msgstr "1 Commentaire"
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "% Comments"
|
||||||
|
msgstr "% Comentaires"
|
||||||
|
|
||||||
|
#: ../author.php:61 ../loop.php:39 ../page.php:31 ../single.php:53
|
||||||
|
#: ../template-demo.php:31
|
||||||
|
msgid "Sorry, nothing to display."
|
||||||
|
msgstr "Désolé, aucun contenu disponible."
|
||||||
|
|
||||||
|
#: ../category.php:6
|
||||||
|
msgid "Categories for "
|
||||||
|
msgstr "Catégories pour "
|
||||||
|
|
||||||
|
#: ../comments.php:3
|
||||||
|
msgid "Post is password protected. Enter the password to view any comments."
|
||||||
|
msgstr ""
|
||||||
|
"Cet article est protégé par un mot de passe. Merci d'entrer le mot de passe "
|
||||||
|
"pour voir les commentaires."
|
||||||
|
|
||||||
|
#: ../comments.php:18
|
||||||
|
msgid "Comments are closed here."
|
||||||
|
msgstr "Les commentaires sont fermés."
|
||||||
|
|
||||||
|
#: ../footer.php:6
|
||||||
|
msgid "Powered by"
|
||||||
|
msgstr "Propulsé par"
|
||||||
|
|
||||||
|
#: ../functions.php:133
|
||||||
|
msgid "Header Menu"
|
||||||
|
msgstr "Menu d'entête"
|
||||||
|
|
||||||
|
#: ../functions.php:134
|
||||||
|
msgid "Sidebar Menu"
|
||||||
|
msgstr "Menu de barre latérale"
|
||||||
|
|
||||||
|
#: ../functions.php:135
|
||||||
|
msgid "Extra Menu"
|
||||||
|
msgstr "Menu supplémentaire"
|
||||||
|
|
||||||
|
#: ../functions.php:181
|
||||||
|
msgid "Widget Area 1"
|
||||||
|
msgstr "Zone de widget 1"
|
||||||
|
|
||||||
|
#: ../functions.php:182 ../functions.php:193
|
||||||
|
msgid "Description for this widget-area..."
|
||||||
|
msgstr "Description pour cette zone à widget..."
|
||||||
|
|
||||||
|
#: ../functions.php:192
|
||||||
|
msgid "Widget Area 2"
|
||||||
|
msgstr "Zone de widget 2"
|
||||||
|
|
||||||
|
#: ../functions.php:258
|
||||||
|
msgid "View Article"
|
||||||
|
msgstr "Voir l'article"
|
||||||
|
|
||||||
|
#: ../functions.php:319
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite> <span class=\"says\">says:</span>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite> <span class=\"says\">dit:</span>"
|
||||||
|
|
||||||
|
#: ../functions.php:322
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "Votre commentaire est en attente de modération."
|
||||||
|
|
||||||
|
#: ../functions.php:328
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s at %2$s"
|
||||||
|
msgstr "%1$s à %2$s"
|
||||||
|
|
||||||
|
#: ../functions.php:328
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(Éditer)"
|
||||||
|
|
||||||
|
#: ../functions.php:411 ../functions.php:412
|
||||||
|
msgid "dis-2019 Custom Post"
|
||||||
|
msgstr "Article personnalisé"
|
||||||
|
|
||||||
|
#: ../functions.php:413
|
||||||
|
msgid "Add New"
|
||||||
|
msgstr "Ajouter nouveau"
|
||||||
|
|
||||||
|
#: ../functions.php:414
|
||||||
|
msgid "Add New dis-2019 Custom Post"
|
||||||
|
msgstr "Ajouter un article personnalisé"
|
||||||
|
|
||||||
|
#: ../functions.php:415
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "Éditer"
|
||||||
|
|
||||||
|
#: ../functions.php:416
|
||||||
|
msgid "Edit dis-2019 Custom Post"
|
||||||
|
msgstr "Éditer l'article personnalisé"
|
||||||
|
|
||||||
|
#: ../functions.php:417
|
||||||
|
msgid "New dis-2019 Custom Post"
|
||||||
|
msgstr "Nouvel article personnalisé"
|
||||||
|
|
||||||
|
#: ../functions.php:418 ../functions.php:419
|
||||||
|
msgid "View dis-2019 Custom Post"
|
||||||
|
msgstr "Voir l'article personnalisé"
|
||||||
|
|
||||||
|
#: ../functions.php:420
|
||||||
|
msgid "Search dis-2019 Custom Post"
|
||||||
|
msgstr "Rechercher un article personnalisé"
|
||||||
|
|
||||||
|
#: ../functions.php:421
|
||||||
|
msgid "No dis-2019 Custom Posts found"
|
||||||
|
msgstr "Aucun article personnalisé trouvé"
|
||||||
|
|
||||||
|
#: ../functions.php:422
|
||||||
|
msgid "No dis-2019 Custom Posts found in Trash"
|
||||||
|
msgstr "Aucun article personnalisé trouvé dans la corbeille"
|
||||||
|
|
||||||
|
#: ../index.php:6
|
||||||
|
msgid "Latest Posts"
|
||||||
|
msgstr "Articles récents"
|
||||||
|
|
||||||
|
#: ../search.php:6
|
||||||
|
#, php-format
|
||||||
|
msgid "%s Search Results for "
|
||||||
|
msgstr "%s Résultats de recherche pour "
|
||||||
|
|
||||||
|
#: ../searchform.php:3
|
||||||
|
msgid "To search, type and hit enter."
|
||||||
|
msgstr "Rechercher"
|
||||||
|
|
||||||
|
#: ../searchform.php:4
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Rechercher"
|
||||||
|
|
||||||
|
#: ../single.php:33
|
||||||
|
msgid "Tags: "
|
||||||
|
msgstr "Tags : "
|
||||||
|
|
||||||
|
#: ../single.php:35
|
||||||
|
msgid "Categorised in: "
|
||||||
|
msgstr "Classés dans :"
|
||||||
|
|
||||||
|
#: ../single.php:37
|
||||||
|
msgid "This post was written by "
|
||||||
|
msgstr "Cet article a été écrit par "
|
||||||
|
|
||||||
|
#: ../tag.php:6
|
||||||
|
msgid "Tag Archive: "
|
||||||
|
msgstr "Archives de tags : "
|
||||||
|
|
||||||
|
#~ msgid "%s results for "
|
||||||
|
#~ msgstr "%s résultats pour "
|
||||||
BIN
languages/hu_HU.mo
Normal file
198
languages/hu_HU.po
Normal file
@@ -0,0 +1,198 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: dis-2019 WordPress Theme\n"
|
||||||
|
"POT-Creation-Date: 2013-09-18 00:26+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: Sallay Arnold <arnold@sallay.info>\n"
|
||||||
|
"Language-Team: \n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: Poedit 1.6.5\n"
|
||||||
|
"X-Poedit-SourceCharset: UTF-8\n"
|
||||||
|
"X-Poedit-KeywordsList: _e;__\n"
|
||||||
|
"X-Poedit-Basepath: .\n"
|
||||||
|
"Language: hu_HU\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
"X-Poedit-SearchPath-1: ..\n"
|
||||||
|
|
||||||
|
#: ../404.php:9
|
||||||
|
msgid "Page not found"
|
||||||
|
msgstr "A keresett oldal nem található"
|
||||||
|
|
||||||
|
#: ../404.php:11
|
||||||
|
msgid "Return home?"
|
||||||
|
msgstr "Vissza a főoldalra?"
|
||||||
|
|
||||||
|
#: ../archive.php:6
|
||||||
|
msgid "Archives"
|
||||||
|
msgstr "Archívum"
|
||||||
|
|
||||||
|
#: ../author.php:8
|
||||||
|
msgid "Author Archives for "
|
||||||
|
msgstr "Szerkesztői archívum - "
|
||||||
|
|
||||||
|
#: ../author.php:14
|
||||||
|
msgid "About "
|
||||||
|
msgstr "Rólunk "
|
||||||
|
|
||||||
|
#: ../author.php:41 ../loop.php:22 ../single.php:27
|
||||||
|
msgid "Published by"
|
||||||
|
msgstr "Közzétette "
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "Leave your thoughts"
|
||||||
|
msgstr "Hozzászólás"
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "1 Comment"
|
||||||
|
msgstr "1 Hozzászólás"
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "% Comments"
|
||||||
|
msgstr "% Hozzászólás"
|
||||||
|
|
||||||
|
#: ../author.php:61 ../loop.php:39 ../page.php:31 ../single.php:53
|
||||||
|
#: ../template-demo.php:31
|
||||||
|
msgid "Sorry, nothing to display."
|
||||||
|
msgstr "Nincs tartalom."
|
||||||
|
|
||||||
|
#: ../category.php:6
|
||||||
|
msgid "Categories for"
|
||||||
|
msgstr "Kategória: "
|
||||||
|
|
||||||
|
#: ../comments.php:3
|
||||||
|
msgid "Post is password protected. Enter the password to view any comments."
|
||||||
|
msgstr ""
|
||||||
|
"A tartalom jelszóval védett. A jelszó megadása után minden hozzászólás "
|
||||||
|
"látható lesz."
|
||||||
|
|
||||||
|
#: ../comments.php:18
|
||||||
|
msgid "Comments are closed here."
|
||||||
|
msgstr "Hozzászólás zárolva."
|
||||||
|
|
||||||
|
#: ../footer.php:6
|
||||||
|
msgid "Powered by"
|
||||||
|
msgstr "Motor:"
|
||||||
|
|
||||||
|
#: ../functions.php:133
|
||||||
|
msgid "Header Menu"
|
||||||
|
msgstr "Fejléc Menü"
|
||||||
|
|
||||||
|
#: ../functions.php:134
|
||||||
|
msgid "Sidebar Menu"
|
||||||
|
msgstr "Oldalsáv Menü"
|
||||||
|
|
||||||
|
#: ../functions.php:135
|
||||||
|
msgid "Extra Menu"
|
||||||
|
msgstr "Extra Menü"
|
||||||
|
|
||||||
|
#: ../functions.php:181
|
||||||
|
msgid "Widget Area 1"
|
||||||
|
msgstr "Widget rész 1"
|
||||||
|
|
||||||
|
#: ../functions.php:182 ../functions.php:193
|
||||||
|
msgid "Description for this widget-area..."
|
||||||
|
msgstr "A widhet rész leírása..."
|
||||||
|
|
||||||
|
#: ../functions.php:192
|
||||||
|
msgid "Widget Area 2"
|
||||||
|
msgstr "Widget rész 2"
|
||||||
|
|
||||||
|
#: ../functions.php:258
|
||||||
|
msgid "View Article"
|
||||||
|
msgstr "Tartalom Megtekintése"
|
||||||
|
|
||||||
|
#: ../functions.php:319
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite> <span class=\"says\">says:</span>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite> <span class=\"says\">:</span>"
|
||||||
|
|
||||||
|
#: ../functions.php:322
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "A hozzászólás moderálásra vár."
|
||||||
|
|
||||||
|
#: ../functions.php:328
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s at %2$s"
|
||||||
|
msgstr "%1$s - %2$s"
|
||||||
|
|
||||||
|
#: ../functions.php:328
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(Szerkesztés)"
|
||||||
|
|
||||||
|
#: ../functions.php:411 ../functions.php:412
|
||||||
|
msgid "dis-2019 Custom Post"
|
||||||
|
msgstr "dis-2019 Egyedi Tartalom"
|
||||||
|
|
||||||
|
#: ../functions.php:413
|
||||||
|
msgid "Add New"
|
||||||
|
msgstr "Új hozzáadása"
|
||||||
|
|
||||||
|
#: ../functions.php:414
|
||||||
|
msgid "Add New dis-2019 Custom Post"
|
||||||
|
msgstr "Új egyedi dis-2019 tartalom hozzáadása"
|
||||||
|
|
||||||
|
#: ../functions.php:415
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "Szerkesztés"
|
||||||
|
|
||||||
|
#: ../functions.php:416
|
||||||
|
msgid "Edit dis-2019 Custom Post"
|
||||||
|
msgstr "dis-2019 egyedi tartalom szerkesztése"
|
||||||
|
|
||||||
|
#: ../functions.php:417
|
||||||
|
msgid "New dis-2019 Custom Post"
|
||||||
|
msgstr "Új dis-2019 egyedi tartalom"
|
||||||
|
|
||||||
|
#: ../functions.php:418 ../functions.php:419
|
||||||
|
msgid "View dis-2019 Custom Post"
|
||||||
|
msgstr "dis-2019 egyedi tartalom megtekintése"
|
||||||
|
|
||||||
|
#: ../functions.php:420
|
||||||
|
msgid "Search dis-2019 Custom Post"
|
||||||
|
msgstr "dis-2019 egyedi tartalomak keresése"
|
||||||
|
|
||||||
|
#: ../functions.php:421
|
||||||
|
msgid "No dis-2019 Custom Posts found"
|
||||||
|
msgstr "Nincs dis-2019 egyedi tartalom"
|
||||||
|
|
||||||
|
#: ../functions.php:422
|
||||||
|
msgid "No dis-2019 Custom Posts found in Trash"
|
||||||
|
msgstr "Nincs dis-2019 egyedi tartalom a kukában"
|
||||||
|
|
||||||
|
#: ../index.php:6
|
||||||
|
msgid "Latest Posts"
|
||||||
|
msgstr "Legfrissebb bejegyzések"
|
||||||
|
|
||||||
|
#: ../search.php:6
|
||||||
|
#, php-format
|
||||||
|
msgid "%s Search Results for "
|
||||||
|
msgstr "%s Találatok "
|
||||||
|
|
||||||
|
#: ../searchform.php:3
|
||||||
|
msgid "To search, type and hit enter."
|
||||||
|
msgstr "Keresési feltétel, majd [Enter]."
|
||||||
|
|
||||||
|
#: ../searchform.php:4
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Keresés"
|
||||||
|
|
||||||
|
#: ../single.php:33
|
||||||
|
msgid "Tags: "
|
||||||
|
msgstr "Címkék: "
|
||||||
|
|
||||||
|
#: ../single.php:35
|
||||||
|
msgid "Categorised in: "
|
||||||
|
msgstr "Kategória: "
|
||||||
|
|
||||||
|
#: ../single.php:37
|
||||||
|
msgid "This post was written by "
|
||||||
|
msgstr "Írta: "
|
||||||
|
|
||||||
|
#: ../tag.php:6
|
||||||
|
msgid "Tag Archive: "
|
||||||
|
msgstr "Archívim: "
|
||||||
|
|
||||||
|
#~ msgid "%s results for "
|
||||||
|
#~ msgstr "%s Ergebnisse für "
|
||||||
BIN
languages/it_IT.mo
Normal file
194
languages/it_IT.po
Normal file
@@ -0,0 +1,194 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: dis-2019 WordPress Theme\n"
|
||||||
|
"POT-Creation-Date: 2013-08-31 17:10+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: Mattia Accornero <hello@macco.me>\n"
|
||||||
|
"Language-Team: Mattia Accornero <hello@macco.me>\n"
|
||||||
|
"Language: Italiano\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: Poedit 1.5.7\n"
|
||||||
|
"X-Poedit-SourceCharset: UTF-8\n"
|
||||||
|
"X-Poedit-KeywordsList: _e;__\n"
|
||||||
|
"X-Poedit-Basepath: .\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
"X-Poedit-SearchPath-1: ..\n"
|
||||||
|
|
||||||
|
#: ../404.php:9
|
||||||
|
msgid "Page not found"
|
||||||
|
msgstr "Pagina non trovata"
|
||||||
|
|
||||||
|
#: ../404.php:11
|
||||||
|
msgid "Return home?"
|
||||||
|
msgstr "Tornare all'homepage?"
|
||||||
|
|
||||||
|
#: ../archive.php:6
|
||||||
|
msgid "Archives"
|
||||||
|
msgstr "Archivi"
|
||||||
|
|
||||||
|
#: ../author.php:8
|
||||||
|
msgid "Author Archives for "
|
||||||
|
msgstr "Archivio dell'autore "
|
||||||
|
|
||||||
|
#: ../author.php:14
|
||||||
|
msgid "About"
|
||||||
|
msgstr "Informazioni"
|
||||||
|
|
||||||
|
#: ../author.php:41 ../loop.php:22 ../single.php:27
|
||||||
|
msgid "Published by"
|
||||||
|
msgstr "Pubblicato da"
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "Leave your thoughts"
|
||||||
|
msgstr "Lascia il tuo commento"
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "1 Comment"
|
||||||
|
msgstr "1 Commento"
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "% Comments"
|
||||||
|
msgstr "% Commenti"
|
||||||
|
|
||||||
|
#: ../author.php:61 ../loop.php:39 ../page.php:31 ../single.php:53
|
||||||
|
#: ../template-demo.php:31
|
||||||
|
msgid "Sorry, nothing to display."
|
||||||
|
msgstr "Spiacenti, contenuto non disponibile."
|
||||||
|
|
||||||
|
#: ../category.php:6
|
||||||
|
msgid "Categories for"
|
||||||
|
msgstr "Categoria per"
|
||||||
|
|
||||||
|
#: ../comments.php:3
|
||||||
|
msgid "Post is password protected. Enter the password to view any comments."
|
||||||
|
msgstr ""
|
||||||
|
"Questo post è protetto da password. Inserisci la password per vedere i "
|
||||||
|
"commenti."
|
||||||
|
|
||||||
|
#: ../comments.php:18
|
||||||
|
msgid "Comments are closed here."
|
||||||
|
msgstr "Non è più possibile commentare."
|
||||||
|
|
||||||
|
#: ../footer.php:6
|
||||||
|
msgid "Powered by"
|
||||||
|
msgstr "Prodotto da"
|
||||||
|
|
||||||
|
#: ../functions.php:133
|
||||||
|
msgid "Header Menu"
|
||||||
|
msgstr "Menu di pagina"
|
||||||
|
|
||||||
|
#: ../functions.php:134
|
||||||
|
msgid "Sidebar Menu"
|
||||||
|
msgstr "Menu della spalla"
|
||||||
|
|
||||||
|
#: ../functions.php:135
|
||||||
|
msgid "Extra Menu"
|
||||||
|
msgstr "Menu extra"
|
||||||
|
|
||||||
|
#: ../functions.php:181
|
||||||
|
msgid "Widget Area 1"
|
||||||
|
msgstr "Area widget 1"
|
||||||
|
|
||||||
|
#: ../functions.php:182 ../functions.php:193
|
||||||
|
msgid "Description for this widget-area..."
|
||||||
|
msgstr "Descrizione per questa area widget..."
|
||||||
|
|
||||||
|
#: ../functions.php:192
|
||||||
|
msgid "Widget Area 2"
|
||||||
|
msgstr "Area widget 2"
|
||||||
|
|
||||||
|
#: ../functions.php:258
|
||||||
|
msgid "View Article"
|
||||||
|
msgstr "Mostra articolo"
|
||||||
|
|
||||||
|
#: ../functions.php:319
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite> <span class=\"says\">says:</span>"
|
||||||
|
msgstr "<span class=\"fn\">%s</span> <span class=\"says\">ha detto:</span>"
|
||||||
|
|
||||||
|
#: ../functions.php:322
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "Il tuo commento è in attesa di moderazione."
|
||||||
|
|
||||||
|
#: ../functions.php:328
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s at %2$s"
|
||||||
|
msgstr "%1$s a %2$s"
|
||||||
|
|
||||||
|
#: ../functions.php:328
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(Modifica)"
|
||||||
|
|
||||||
|
#: ../functions.php:411 ../functions.php:412
|
||||||
|
msgid "dis-2019 Custom Post"
|
||||||
|
msgstr "Articolo personalizzato"
|
||||||
|
|
||||||
|
#: ../functions.php:413
|
||||||
|
msgid "Add New"
|
||||||
|
msgstr "Aggiungi nuovo"
|
||||||
|
|
||||||
|
#: ../functions.php:414
|
||||||
|
msgid "Add New dis-2019 Custom Post"
|
||||||
|
msgstr "Aggiungi un nuovo articolo personalizzato"
|
||||||
|
|
||||||
|
#: ../functions.php:415
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "Modifica"
|
||||||
|
|
||||||
|
#: ../functions.php:416
|
||||||
|
msgid "Edit dis-2019 Custom Post"
|
||||||
|
msgstr "Modifica articolo personalizzato"
|
||||||
|
|
||||||
|
#: ../functions.php:417
|
||||||
|
msgid "New dis-2019 Custom Post"
|
||||||
|
msgstr "Nuovo articolo personalizzato"
|
||||||
|
|
||||||
|
#: ../functions.php:418 ../functions.php:419
|
||||||
|
msgid "View dis-2019 Custom Post"
|
||||||
|
msgstr "Mostra articolo personalizzato"
|
||||||
|
|
||||||
|
#: ../functions.php:420
|
||||||
|
msgid "Search dis-2019 Custom Post"
|
||||||
|
msgstr "Cerca articolo personalizzato"
|
||||||
|
|
||||||
|
#: ../functions.php:421
|
||||||
|
msgid "No dis-2019 Custom Posts found"
|
||||||
|
msgstr "Nessun articolo personalizzato trovato"
|
||||||
|
|
||||||
|
#: ../functions.php:422
|
||||||
|
msgid "No dis-2019 Custom Posts found in Trash"
|
||||||
|
msgstr "Nessun articolo personalizzato trovato nel cestino"
|
||||||
|
|
||||||
|
#: ../index.php:6
|
||||||
|
msgid "Latest Posts"
|
||||||
|
msgstr "Ultimi articoli"
|
||||||
|
|
||||||
|
#: ../search.php:6
|
||||||
|
#, php-format
|
||||||
|
msgid "%s Search Results for "
|
||||||
|
msgstr "%s Risultati di ricerca per "
|
||||||
|
|
||||||
|
#: ../searchform.php:4
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Cerca"
|
||||||
|
|
||||||
|
#: ../single.php:33
|
||||||
|
msgid "Tags: "
|
||||||
|
msgstr "Tag: "
|
||||||
|
|
||||||
|
#: ../single.php:35
|
||||||
|
msgid "Categorised in: "
|
||||||
|
msgstr "Categoria: "
|
||||||
|
|
||||||
|
#: ../single.php:37
|
||||||
|
msgid "This post was written by "
|
||||||
|
msgstr "Questo articolo è stato scritto da "
|
||||||
|
|
||||||
|
#: ../tag.php:6
|
||||||
|
msgid "Tag Archive: "
|
||||||
|
msgstr "Archivio tag: "
|
||||||
|
|
||||||
|
#~ msgid "%s results for "
|
||||||
|
#~ msgstr "%s risultati per "
|
||||||
BIN
languages/nl_NL.mo
Normal file
189
languages/nl_NL.po
Normal file
@@ -0,0 +1,189 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: dis-2019 WordPress Theme\n"
|
||||||
|
"POT-Creation-Date: 2013-12-5 10:50+0000\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: Frederik De Roover <frederik@spektrumdesign.be>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: Poedit 1.5.5\n"
|
||||||
|
"X-Poedit-SourceCharset: UTF-8\n"
|
||||||
|
"X-Poedit-KeywordsList: _e;__\n"
|
||||||
|
"X-Poedit-Basepath: .\n"
|
||||||
|
"Language: Nederlands\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
"X-Poedit-SearchPath-1: ..\n"
|
||||||
|
|
||||||
|
#: ../404.php:9
|
||||||
|
msgid "Page not found"
|
||||||
|
msgstr "Pagina niet gevonden"
|
||||||
|
|
||||||
|
#: ../404.php:10
|
||||||
|
msgid "Return home?"
|
||||||
|
msgstr "Terg naar home?"
|
||||||
|
|
||||||
|
#: ../archive.php:6
|
||||||
|
msgid "Archives"
|
||||||
|
msgstr "Archiven"
|
||||||
|
|
||||||
|
#: ../author.php:8
|
||||||
|
msgid "Author Archives for "
|
||||||
|
msgstr "Auteur archieven voor "
|
||||||
|
|
||||||
|
#: ../author.php:41 ../loop.php:22 ../single.php:27
|
||||||
|
msgid "Published by"
|
||||||
|
msgstr "Gepubliceerd door"
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "Leave your thoughts"
|
||||||
|
msgstr "Laat uw gedicht achter"
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "1 Comment"
|
||||||
|
msgstr "1 Commentaar"
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "% Comments"
|
||||||
|
msgstr "% Commentaren"
|
||||||
|
|
||||||
|
#: ../author.php:61 ../loop.php:41 ../page.php:31 ../single.php:55
|
||||||
|
#: ../template-demo.php:33
|
||||||
|
msgid "Sorry, nothing to display."
|
||||||
|
msgstr "Sorry, niets om weer te geven."
|
||||||
|
|
||||||
|
#: ../category.php:6
|
||||||
|
msgid "Categories for"
|
||||||
|
msgstr "Categoriën voor"
|
||||||
|
|
||||||
|
#: ../comments.php:3
|
||||||
|
msgid "Post is password protected. Enter the password to view any comments."
|
||||||
|
msgstr ""
|
||||||
|
"Dit bericht is beveiligd met een wachtwoord. Gelieve uw wachtwoord in te voeren "
|
||||||
|
|
||||||
|
#: ../comments.php:18
|
||||||
|
msgid "Comments are closed here."
|
||||||
|
msgstr "Commententaren zijn gesloten."
|
||||||
|
|
||||||
|
#: ../footer.php:6
|
||||||
|
msgid "Powered by"
|
||||||
|
msgstr "Aangedreven door"
|
||||||
|
|
||||||
|
#: ../functions.php:174
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite> <span class=\"says\">says:</span>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite> <span class=\"says\">zegt:</span>"
|
||||||
|
|
||||||
|
#: ../functions.php:177
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "Uw reactie is in afwachting van moderatie."
|
||||||
|
|
||||||
|
#: ../functions.php:184
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s at %2$s"
|
||||||
|
msgstr "%1$s bij %2$s"
|
||||||
|
|
||||||
|
#: ../functions.php:184
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(Aanpassen)"
|
||||||
|
|
||||||
|
#: ../functions.php:209
|
||||||
|
msgid "Header Menu"
|
||||||
|
msgstr "Hoofdmenu"
|
||||||
|
|
||||||
|
#: ../functions.php:210
|
||||||
|
msgid "Sidebar Menu"
|
||||||
|
msgstr "zijbalk Menu"
|
||||||
|
|
||||||
|
#: ../functions.php:211
|
||||||
|
msgid "Extra Menu"
|
||||||
|
msgstr "Extra Menu"
|
||||||
|
|
||||||
|
#: ../functions.php:257
|
||||||
|
msgid "Widget Area 1"
|
||||||
|
msgstr "Widget Zone 1"
|
||||||
|
|
||||||
|
#: ../functions.php:258 ../functions.php:269
|
||||||
|
msgid "Description for this widget-area..."
|
||||||
|
msgstr "Beschrijving voor deze widget zone..."
|
||||||
|
|
||||||
|
#: ../functions.php:268
|
||||||
|
msgid "Widget Area 2"
|
||||||
|
msgstr "Widget Zone 2"
|
||||||
|
|
||||||
|
#: ../functions.php:333
|
||||||
|
msgid "View Article"
|
||||||
|
msgstr "Bekijk Artikel"
|
||||||
|
|
||||||
|
#: ../functions.php:438 ../functions.php:439
|
||||||
|
msgid "dis-2019 Custom Post"
|
||||||
|
msgstr "Persoonlijk Bericht"
|
||||||
|
|
||||||
|
#: ../functions.php:440
|
||||||
|
msgid "Add New"
|
||||||
|
msgstr "Voeg een nieuw toe"
|
||||||
|
|
||||||
|
#: ../functions.php:441
|
||||||
|
msgid "Add New dis-2019 Custom Post"
|
||||||
|
msgstr "Voeg een nieuw persoonlijk bericht toe"
|
||||||
|
|
||||||
|
#: ../functions.php:442
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "Bewerken"
|
||||||
|
|
||||||
|
#: ../functions.php:443
|
||||||
|
msgid "Edit dis-2019 Custom Post"
|
||||||
|
msgstr "Bewerk het persoonlijk bericht"
|
||||||
|
|
||||||
|
#: ../functions.php:444
|
||||||
|
msgid "New dis-2019 Custom Post"
|
||||||
|
msgstr "Nieuw persoonlijk bericht"
|
||||||
|
|
||||||
|
#: ../functions.php:445 ../functions.php:446
|
||||||
|
msgid "View dis-2019 Custom Post"
|
||||||
|
msgstr "Bekijk berichten"
|
||||||
|
|
||||||
|
#: ../functions.php:447
|
||||||
|
msgid "Search dis-2019 Custom Post"
|
||||||
|
msgstr "Zoeken in berichten"
|
||||||
|
|
||||||
|
#: ../functions.php:448
|
||||||
|
msgid "No dis-2019 Custom Posts found"
|
||||||
|
msgstr "Geen Bericht gevonden"
|
||||||
|
|
||||||
|
#: ../functions.php:449
|
||||||
|
msgid "No dis-2019 Custom Posts found in Trash"
|
||||||
|
msgstr "Geen Bericht gevonden in de prullenbak"
|
||||||
|
|
||||||
|
#: ../index.php:6
|
||||||
|
msgid "Latest Posts"
|
||||||
|
msgstr "Laatste Berichten"
|
||||||
|
|
||||||
|
#: ../search.php:6
|
||||||
|
#, php-format
|
||||||
|
msgid "%s Search Results for "
|
||||||
|
msgstr "%s Zoekresultaten voor "
|
||||||
|
|
||||||
|
#: ../searchform.php:5
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Zoeken"
|
||||||
|
|
||||||
|
#: ../single.php:35
|
||||||
|
msgid "Tags: "
|
||||||
|
msgstr "Tags : "
|
||||||
|
|
||||||
|
#: ../single.php:37
|
||||||
|
msgid "Categorised in: "
|
||||||
|
msgstr "Gecategoriseerd in :"
|
||||||
|
|
||||||
|
#: ../single.php:39
|
||||||
|
msgid "This post was written by "
|
||||||
|
msgstr "Dit bericht is geschreven door "
|
||||||
|
|
||||||
|
#: ../tag.php:6
|
||||||
|
msgid "Tag Archive: "
|
||||||
|
msgstr "Tag Archieven : "
|
||||||
|
|
||||||
|
#~ msgid "%s results for "
|
||||||
|
#~ msgstr "%s resultaten voor "
|
||||||
BIN
languages/pt_BR.mo
Normal file
189
languages/pt_BR.po
Normal file
@@ -0,0 +1,189 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: dis-2019 WordPress Theme\n"
|
||||||
|
"POT-Creation-Date: 2012-10-18 00:53+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: wesllei henrique <wesllei.h@gmail.com>\n"
|
||||||
|
"Language-Team: Jürgen Rabe | www.egado.de <rabe@egado.de>\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"X-Generator: Poedit 1.5.5\n"
|
||||||
|
"X-Poedit-SourceCharset: UTF-8\n"
|
||||||
|
"X-Poedit-KeywordsList: _e;__\n"
|
||||||
|
"X-Poedit-Basepath: .\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
"X-Poedit-SearchPath-1: ..\n"
|
||||||
|
|
||||||
|
#: ../404.php:9
|
||||||
|
msgid "Page not found"
|
||||||
|
msgstr "Página não encontrada"
|
||||||
|
|
||||||
|
#: ../404.php:10
|
||||||
|
msgid "Return home?"
|
||||||
|
msgstr "Voltar para o início?"
|
||||||
|
|
||||||
|
#: ../archive.php:6
|
||||||
|
msgid "Archives"
|
||||||
|
msgstr "Arquivos"
|
||||||
|
|
||||||
|
#: ../author.php:8
|
||||||
|
msgid "Author Archives for "
|
||||||
|
msgstr "Arquivos de autor para"
|
||||||
|
|
||||||
|
#: ../author.php:41 ../loop.php:22 ../single.php:27
|
||||||
|
msgid "Published by"
|
||||||
|
msgstr "Publicado por"
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "Leave your thoughts"
|
||||||
|
msgstr "Deixe um comentário"
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "1 Comment"
|
||||||
|
msgstr "1 Comentário"
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "% Comments"
|
||||||
|
msgstr "% Comentários"
|
||||||
|
|
||||||
|
#: ../author.php:61 ../loop.php:41 ../page.php:31 ../single.php:55
|
||||||
|
#: ../template-demo.php:33
|
||||||
|
msgid "Sorry, nothing to display."
|
||||||
|
msgstr "Não encontraram nada que corresponda aos critérios de pesquisa."
|
||||||
|
|
||||||
|
#: ../category.php:6
|
||||||
|
msgid "Categories for"
|
||||||
|
msgstr "Arquivo para a categoria"
|
||||||
|
|
||||||
|
#: ../comments.php:3
|
||||||
|
msgid "Post is password protected. Enter the password to view any comments."
|
||||||
|
msgstr ""
|
||||||
|
"Este post é protegido por senha. Para ver os comentários, a senha deve ser "
|
||||||
|
"digitada."
|
||||||
|
|
||||||
|
#: ../comments.php:18
|
||||||
|
msgid "Comments are closed here."
|
||||||
|
msgstr "Comentários estão fechados."
|
||||||
|
|
||||||
|
#: ../footer.php:6
|
||||||
|
msgid "Powered by"
|
||||||
|
msgstr "Desenvolvido por"
|
||||||
|
|
||||||
|
#: ../functions.php:174
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite> <span class=\"says\">says:</span>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite> <span class=\"says\">sagt:</span>"
|
||||||
|
|
||||||
|
#: ../functions.php:177
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "Seu comentário está esperando por moderação."
|
||||||
|
|
||||||
|
#: ../functions.php:184
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s at %2$s"
|
||||||
|
msgstr "%1$s em %2$s"
|
||||||
|
|
||||||
|
#: ../functions.php:184
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(Editar)"
|
||||||
|
|
||||||
|
#: ../functions.php:209
|
||||||
|
msgid "Header Menu"
|
||||||
|
msgstr "Menu do cabeçalho"
|
||||||
|
|
||||||
|
#: ../functions.php:210
|
||||||
|
msgid "Sidebar Menu"
|
||||||
|
msgstr "Menu lateral"
|
||||||
|
|
||||||
|
#: ../functions.php:211
|
||||||
|
msgid "Extra Menu"
|
||||||
|
msgstr "Menu extra"
|
||||||
|
|
||||||
|
#: ../functions.php:257
|
||||||
|
msgid "Widget Area 1"
|
||||||
|
msgstr "Área do Widget 1"
|
||||||
|
|
||||||
|
#: ../functions.php:258 ../functions.php:269
|
||||||
|
msgid "Description for this widget-area..."
|
||||||
|
msgstr "Descrição para esta área de widgets ..."
|
||||||
|
|
||||||
|
#: ../functions.php:268
|
||||||
|
msgid "Widget Area 2"
|
||||||
|
msgstr "Área do Widget 2"
|
||||||
|
|
||||||
|
#: ../functions.php:333
|
||||||
|
msgid "View Article"
|
||||||
|
msgstr "Ver artigo"
|
||||||
|
|
||||||
|
#: ../functions.php:438 ../functions.php:439
|
||||||
|
msgid "dis-2019 Custom Post"
|
||||||
|
msgstr "dis-2019 Custom Post"
|
||||||
|
|
||||||
|
#: ../functions.php:440
|
||||||
|
msgid "Add New"
|
||||||
|
msgstr "Adicionar novo"
|
||||||
|
|
||||||
|
#: ../functions.php:441
|
||||||
|
msgid "Add New dis-2019 Custom Post"
|
||||||
|
msgstr "Adicionar novo dis-2019 Custom Post"
|
||||||
|
|
||||||
|
#: ../functions.php:442
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "Editar"
|
||||||
|
|
||||||
|
#: ../functions.php:443
|
||||||
|
msgid "Edit dis-2019 Custom Post"
|
||||||
|
msgstr "Editar dis-2019 Custom Post"
|
||||||
|
|
||||||
|
#: ../functions.php:444
|
||||||
|
msgid "New dis-2019 Custom Post"
|
||||||
|
msgstr "Novo dis-2019 Custom Post"
|
||||||
|
|
||||||
|
#: ../functions.php:445 ../functions.php:446
|
||||||
|
msgid "View dis-2019 Custom Post"
|
||||||
|
msgstr "Ver dis-2019 Custom Post"
|
||||||
|
|
||||||
|
#: ../functions.php:447
|
||||||
|
msgid "Search dis-2019 Custom Post"
|
||||||
|
msgstr "Pesquisar dis-2019 Custom Post"
|
||||||
|
|
||||||
|
#: ../functions.php:448
|
||||||
|
msgid "No dis-2019 Custom Posts found"
|
||||||
|
msgstr "Nenhum dis-2019 Custom Post encontrado"
|
||||||
|
|
||||||
|
#: ../functions.php:449
|
||||||
|
msgid "No dis-2019 Custom Posts found in Trash"
|
||||||
|
msgstr "Nenhum dis-2019 Custom Post na lixeira"
|
||||||
|
|
||||||
|
#: ../index.php:6
|
||||||
|
msgid "Latest Posts"
|
||||||
|
msgstr "Últimos Posts"
|
||||||
|
|
||||||
|
#: ../search.php:6
|
||||||
|
#, php-format
|
||||||
|
msgid "%s Search Results for "
|
||||||
|
msgstr "%s resultados ao pesquisar"
|
||||||
|
|
||||||
|
#: ../searchform.php:5
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Pesquisar"
|
||||||
|
|
||||||
|
#: ../single.php:35
|
||||||
|
msgid "Tags: "
|
||||||
|
msgstr "Tag: "
|
||||||
|
|
||||||
|
#: ../single.php:37
|
||||||
|
msgid "Categorised in: "
|
||||||
|
msgstr "Categorizados em: "
|
||||||
|
|
||||||
|
#: ../single.php:39
|
||||||
|
msgid "This post was written by "
|
||||||
|
msgstr "Este artigo foi escrito por"
|
||||||
|
|
||||||
|
#: ../tag.php:6
|
||||||
|
msgid "Tag Archive: "
|
||||||
|
msgstr "Arquivos da tag: "
|
||||||
|
|
||||||
|
#~ msgid "%s results for "
|
||||||
|
#~ msgstr "%s Ergebnisse für "
|
||||||
BIN
languages/ro_RO.mo
Normal file
190
languages/ro_RO.po
Normal file
@@ -0,0 +1,190 @@
|
|||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: dis-2019 WordPress Theme\n"
|
||||||
|
"POT-Creation-Date: 2012-10-18 00:53+0100\n"
|
||||||
|
"PO-Revision-Date: \n"
|
||||||
|
"Last-Translator: Ioan Virag <ioan@ioanvirag.com>\n"
|
||||||
|
"Language-Team: Ioan Virag | www.ioanvirag.com <ioan@ioanvirag.com>\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-SourceCharset: UTF-8\n"
|
||||||
|
"X-Poedit-KeywordsList: _e;__\n"
|
||||||
|
"X-Poedit-Basepath: .\n"
|
||||||
|
"Language: Română\n"
|
||||||
|
"X-Poedit-SearchPath-0: .\n"
|
||||||
|
"X-Poedit-SearchPath-1: ..\n"
|
||||||
|
|
||||||
|
#: ../404.php:9
|
||||||
|
msgid "Page not found"
|
||||||
|
msgstr "Pagina nu a fost găsită"
|
||||||
|
|
||||||
|
#: ../404.php:10
|
||||||
|
msgid "Return home?"
|
||||||
|
msgstr "Vă întoarceţi la prima pagină?"
|
||||||
|
|
||||||
|
#: ../archive.php:6
|
||||||
|
msgid "Archives"
|
||||||
|
msgstr "Arhive"
|
||||||
|
|
||||||
|
#: ../author.php:8
|
||||||
|
msgid "Author Archives for "
|
||||||
|
msgstr "Autor-Arhive pentru "
|
||||||
|
|
||||||
|
#: ../author.php:41 ../loop.php:22 ../single.php:27
|
||||||
|
msgid "Published by"
|
||||||
|
msgstr "Publicat de"
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "Leave your thoughts"
|
||||||
|
msgstr "Lasă un comentariu"
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "1 Comment"
|
||||||
|
msgstr "1 Comentariu"
|
||||||
|
|
||||||
|
#: ../author.php:42 ../loop.php:23 ../single.php:28
|
||||||
|
msgid "% Comments"
|
||||||
|
msgstr "% Comentarii"
|
||||||
|
|
||||||
|
#: ../author.php:61 ../loop.php:41 ../page.php:31 ../single.php:55
|
||||||
|
#: ../template-demo.php:33
|
||||||
|
msgid "Sorry, nothing to display."
|
||||||
|
msgstr "Ne pare rău, nu există nici un rezultat.."
|
||||||
|
|
||||||
|
#: ../category.php:6
|
||||||
|
msgid "Categories for"
|
||||||
|
msgstr "Categorii pentru"
|
||||||
|
|
||||||
|
#: ../comments.php:3
|
||||||
|
msgid "Post is password protected. Enter the password to view any comments."
|
||||||
|
msgstr ""
|
||||||
|
"Postarea necesită o parolă. Introduceţi parola pentru a vedea comentariile."
|
||||||
|
|
||||||
|
#: ../comments.php:18
|
||||||
|
msgid "Comments are closed here."
|
||||||
|
msgstr "Comentariile sunt închise."
|
||||||
|
|
||||||
|
#: ../footer.php:6
|
||||||
|
msgid "Powered by"
|
||||||
|
msgstr "Pus la dispoziţie de "
|
||||||
|
|
||||||
|
#: ../functions.php:174
|
||||||
|
#, php-format
|
||||||
|
msgid "<cite class=\"fn\">%s</cite> <span class=\"says\">says:</span>"
|
||||||
|
msgstr "<cite class=\"fn\">%s</cite> <span class=\"says\">spune:</span>"
|
||||||
|
|
||||||
|
#: ../functions.php:177
|
||||||
|
msgid "Your comment is awaiting moderation."
|
||||||
|
msgstr "Comentariul dumneavoastră a fost trimis pentru a fi moderat."
|
||||||
|
|
||||||
|
#: ../functions.php:184
|
||||||
|
#, php-format
|
||||||
|
msgid "%1$s at %2$s"
|
||||||
|
msgstr "%1$s la %2$s"
|
||||||
|
|
||||||
|
#: ../functions.php:184
|
||||||
|
msgid "(Edit)"
|
||||||
|
msgstr "(Editare)"
|
||||||
|
|
||||||
|
#: ../functions.php:209
|
||||||
|
msgid "Header Menu"
|
||||||
|
msgstr "Meniu Header"
|
||||||
|
|
||||||
|
#: ../functions.php:210
|
||||||
|
msgid "Sidebar Menu"
|
||||||
|
msgstr "Meniu Sidebar"
|
||||||
|
|
||||||
|
#: ../functions.php:211
|
||||||
|
msgid "Extra Menu"
|
||||||
|
msgstr "Meniu Extra"
|
||||||
|
|
||||||
|
#: ../functions.php:257
|
||||||
|
msgid "Widget Area 1"
|
||||||
|
msgstr "Zonă Widget 1"
|
||||||
|
|
||||||
|
#: ../functions.php:258 ../functions.php:269
|
||||||
|
msgid "Description for this widget-area..."
|
||||||
|
msgstr "Descriere pentru această zonă-widget..."
|
||||||
|
|
||||||
|
#: ../functions.php:268
|
||||||
|
msgid "Widget Area 2"
|
||||||
|
msgstr "Zonă Widget 2"
|
||||||
|
|
||||||
|
#: ../functions.php:333
|
||||||
|
msgid "View Article"
|
||||||
|
msgstr "Vezi Articol"
|
||||||
|
|
||||||
|
#: ../functions.php:438 ../functions.php:439
|
||||||
|
msgid "dis-2019 Custom Post"
|
||||||
|
msgstr "Tip de postare customizată dis-2019"
|
||||||
|
|
||||||
|
#: ../functions.php:440
|
||||||
|
msgid "Add New"
|
||||||
|
msgstr "Adaugă Nou"
|
||||||
|
|
||||||
|
#: ../functions.php:441
|
||||||
|
msgid "Add New dis-2019 Custom Post"
|
||||||
|
msgstr "Adaugă un nou tip de postare customizată dis-2019"
|
||||||
|
|
||||||
|
#: ../functions.php:442
|
||||||
|
msgid "Edit"
|
||||||
|
msgstr "Editare"
|
||||||
|
|
||||||
|
#: ../functions.php:443
|
||||||
|
msgid "Edit dis-2019 Custom Post"
|
||||||
|
msgstr "Editare postare customizată de tip dis-2019"
|
||||||
|
|
||||||
|
#: ../functions.php:444
|
||||||
|
msgid "New dis-2019 Custom Post"
|
||||||
|
msgstr "Nouă postare customizată de tip dis-2019"
|
||||||
|
|
||||||
|
#: ../functions.php:445 ../functions.php:446
|
||||||
|
msgid "View dis-2019 Custom Post"
|
||||||
|
msgstr "Vezi postare customizată de tip dis-2019"
|
||||||
|
|
||||||
|
#: ../functions.php:447
|
||||||
|
msgid "Search dis-2019 Custom Post"
|
||||||
|
msgstr "Caută postare customizată de tip dis-2019"
|
||||||
|
|
||||||
|
#: ../functions.php:448
|
||||||
|
msgid "No dis-2019 Custom Posts found"
|
||||||
|
msgstr "Nu s-a găsit nici o postare customizată de tip dis-2019"
|
||||||
|
|
||||||
|
#: ../functions.php:449
|
||||||
|
msgid "No dis-2019 Custom Posts found in Trash"
|
||||||
|
msgstr ""
|
||||||
|
"Nu s-a găsit nici o postare customizată de tip dis-2019 în coşul de gunoi"
|
||||||
|
|
||||||
|
#: ../index.php:6
|
||||||
|
msgid "Latest Posts"
|
||||||
|
msgstr "Ultima postare"
|
||||||
|
|
||||||
|
#: ../search.php:6
|
||||||
|
#, php-format
|
||||||
|
msgid "%s Search Results for "
|
||||||
|
msgstr "%s Rezultatele căutării pentru"
|
||||||
|
|
||||||
|
#: ../searchform.php:5
|
||||||
|
msgid "Search"
|
||||||
|
msgstr "Caută"
|
||||||
|
|
||||||
|
#: ../single.php:35
|
||||||
|
msgid "Tags: "
|
||||||
|
msgstr "Etichete: "
|
||||||
|
|
||||||
|
#: ../single.php:37
|
||||||
|
msgid "Categorised in: "
|
||||||
|
msgstr "Categorisit în: "
|
||||||
|
|
||||||
|
#: ../single.php:39
|
||||||
|
msgid "This post was written by "
|
||||||
|
msgstr "Acest articol a fost scris de "
|
||||||
|
|
||||||
|
#: ../tag.php:6
|
||||||
|
msgid "Tag Archive: "
|
||||||
|
msgstr "Arhivă-Etichete: "
|
||||||
|
|
||||||
|
#~ msgid "%s results for "
|
||||||
|
#~ msgstr "%s Ergebnisse für "
|
||||||