fones 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
- data/.rspec +1 -0
- data/CHANGELOG.md +8 -0
- data/Gemfile +28 -0
- data/Gemfile.lock +108 -0
- data/LICENSE +20 -0
- data/README.md +61 -0
- data/Rakefile +54 -0
- data/VERSION +1 -0
- data/bin/fones +12 -0
- data/features/step_definitions/fones_steps.rb +38 -0
- data/features/support/env.rb +17 -0
- data/fones.gemspec +187 -0
- data/layouts/config/config.tt +19 -0
- data/layouts/default/css/_1030up.scss.erb +8 -0
- data/layouts/default/css/_1240up.scss.erb +8 -0
- data/layouts/default/css/_2x.scss.erb +40 -0
- data/layouts/default/css/_481up.scss.erb +109 -0
- data/layouts/default/css/_768up.scss.erb +280 -0
- data/layouts/default/css/_base.scss.erb +836 -0
- data/layouts/default/css/_grid.scss.erb +48 -0
- data/layouts/default/css/_header.scss.erb +18 -0
- data/layouts/default/css/_mixins.scss.erb +248 -0
- data/layouts/default/css/_normalize.scss.erb +536 -0
- data/layouts/default/css/_print.scss.erb +80 -0
- data/layouts/default/css/ie.scss.erb +52 -0
- data/layouts/default/css/login.scss.erb +65 -0
- data/layouts/default/css/style.css.scss.erb +111 -0
- data/layouts/default/functions/functions.php.erb +166 -0
- data/layouts/default/functions/library/admin.php.erb +131 -0
- data/layouts/default/functions/library/bones.php.erb +397 -0
- data/layouts/default/functions/library/custom-post-type.php.erb +122 -0
- data/layouts/default/functions/library/translation/README +18 -0
- data/layouts/default/functions/library/translation/da_DK.po +374 -0
- data/layouts/default/functions/library/translation/de_DE.po +385 -0
- data/layouts/default/functions/library/translation/default.po +372 -0
- data/layouts/default/functions/library/translation/es_ES.po +380 -0
- data/layouts/default/functions/library/translation/fr_FR.po +579 -0
- data/layouts/default/functions/library/translation/he_IL.po +382 -0
- data/layouts/default/functions/library/translation/hr.po +548 -0
- data/layouts/default/functions/library/translation/it_IT.po +376 -0
- data/layouts/default/functions/library/translation/ja.po +492 -0
- data/layouts/default/functions/library/translation/nb_NO.po +380 -0
- data/layouts/default/functions/library/translation/nl_NL.po +376 -0
- data/layouts/default/functions/library/translation/pl_PL.po +371 -0
- data/layouts/default/functions/library/translation/pt_PT.po +376 -0
- data/layouts/default/functions/library/translation/ru_RU.po +358 -0
- data/layouts/default/functions/library/translation/sv_SE.po +380 -0
- data/layouts/default/functions/library/translation/translation.php.erb +18 -0
- data/layouts/default/functions/library/translation/zh_CN.po +382 -0
- data/layouts/default/img/apple-icon-touch.png +0 -0
- data/layouts/default/img/custom-post-icon.png +0 -0
- data/layouts/default/img/favicon.ico +0 -0
- data/layouts/default/img/favicon.png +0 -0
- data/layouts/default/img/login-logo.png +0 -0
- data/layouts/default/img/nothing.gif +0 -0
- data/layouts/default/img/nothumb.gif +0 -0
- data/layouts/default/img/screenshot.png +0 -0
- data/layouts/default/img/win8-tile-icon.png +0 -0
- data/layouts/default/js/admin.js +1 -0
- data/layouts/default/js/libs/modernizr.custom.min.js +4 -0
- data/layouts/default/js/scripts.js +108 -0
- data/layouts/default/js/theme.js +2 -0
- data/layouts/default/templates/404.php.erb +43 -0
- data/layouts/default/templates/archive-custom_type.php.erb +73 -0
- data/layouts/default/templates/archive.php.erb +108 -0
- data/layouts/default/templates/attachment.php.erb +32 -0
- data/layouts/default/templates/comments.php.erb +121 -0
- data/layouts/default/templates/footer.php.erb +22 -0
- data/layouts/default/templates/header.php.erb +63 -0
- data/layouts/default/templates/index.php.erb +72 -0
- data/layouts/default/templates/page-custom.php.erb +66 -0
- data/layouts/default/templates/page.php.erb +60 -0
- data/layouts/default/templates/search.php.erb +71 -0
- data/layouts/default/templates/sidebar.php.erb +17 -0
- data/layouts/default/templates/single-custom_type.php.erb +78 -0
- data/layouts/default/templates/single.php.erb +61 -0
- data/layouts/default/templates/taxonomy-custom_cat.php.erb +87 -0
- data/lib/fones.rb +11 -0
- data/lib/forge/builder.rb +269 -0
- data/lib/forge/cli.rb +86 -0
- data/lib/forge/config.rb +61 -0
- data/lib/forge/engines.rb +12 -0
- data/lib/forge/error.rb +8 -0
- data/lib/forge/generator.rb +144 -0
- data/lib/forge/guard.rb +65 -0
- data/lib/forge/project.rb +162 -0
- data/lib/forge/version.rb +3 -0
- data/lib/guard/forge/assets.rb +31 -0
- data/lib/guard/forge/config.rb +34 -0
- data/lib/guard/forge/functions.rb +33 -0
- data/lib/guard/forge/templates.rb +28 -0
- data/pkg/fones-0.1.0.gem +0 -0
- data/spec/lib/forge/config_spec.rb +79 -0
- data/spec/lib/forge/project_spec.rb +34 -0
- data/spec/spec_helper.rb +13 -0
- metadata +437 -0
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
<?php
|
|
2
|
+
/* Bones Custom Post Type Example
|
|
3
|
+
This page walks you through creating
|
|
4
|
+
a custom post type and taxonomies. You
|
|
5
|
+
can edit this one or copy the following code
|
|
6
|
+
to create another one.
|
|
7
|
+
|
|
8
|
+
I put this in a separate file so as to
|
|
9
|
+
keep it organized. I find it easier to edit
|
|
10
|
+
and change things if they are concentrated
|
|
11
|
+
in their own file.
|
|
12
|
+
|
|
13
|
+
Developed by: Eddie Machado
|
|
14
|
+
URL: http://themble.com/bones/
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
// let's create the function for the custom type
|
|
19
|
+
function custom_post_example() {
|
|
20
|
+
// creating (registering) the custom type
|
|
21
|
+
register_post_type( 'custom_type', /* (http://codex.wordpress.org/Function_Reference/register_post_type) */
|
|
22
|
+
// let's now add all the options for this post type
|
|
23
|
+
array('labels' => array(
|
|
24
|
+
'name' => __('Custom Types', '<%= theme_id %>theme'), /* This is the Title of the Group */
|
|
25
|
+
'singular_name' => __('Custom Post', '<%= theme_id %>theme'), /* This is the individual type */
|
|
26
|
+
'all_items' => __('All Custom Posts', '<%= theme_id %>theme'), /* the all items menu item */
|
|
27
|
+
'add_new' => __('Add New', '<%= theme_id %>theme'), /* The add new menu item */
|
|
28
|
+
'add_new_item' => __('Add New Custom Type', '<%= theme_id %>theme'), /* Add New Display Title */
|
|
29
|
+
'edit' => __( 'Edit', '<%= theme_id %>theme' ), /* Edit Dialog */
|
|
30
|
+
'edit_item' => __('Edit Post Types', '<%= theme_id %>theme'), /* Edit Display Title */
|
|
31
|
+
'new_item' => __('New Post Type', '<%= theme_id %>theme'), /* New Display Title */
|
|
32
|
+
'view_item' => __('View Post Type', '<%= theme_id %>theme'), /* View Display Title */
|
|
33
|
+
'search_items' => __('Search Post Type', '<%= theme_id %>theme'), /* Search Custom Type Title */
|
|
34
|
+
'not_found' => __('Nothing found in the Database.', '<%= theme_id %>theme'), /* This displays if there are no entries yet */
|
|
35
|
+
'not_found_in_trash' => __('Nothing found in Trash', '<%= theme_id %>theme'), /* This displays if there is nothing in the trash */
|
|
36
|
+
'parent_item_colon' => ''
|
|
37
|
+
), /* end of arrays */
|
|
38
|
+
'description' => __( 'This is the example custom post type', '<%= theme_id %>theme' ), /* Custom Type Description */
|
|
39
|
+
'public' => true,
|
|
40
|
+
'publicly_queryable' => true,
|
|
41
|
+
'exclude_from_search' => false,
|
|
42
|
+
'show_ui' => true,
|
|
43
|
+
'query_var' => true,
|
|
44
|
+
'menu_position' => 8, /* this is what order you want it to appear in on the left hand side menu */
|
|
45
|
+
'menu_icon' => get_stylesheet_directory_uri() . '/img/custom-post-icon.png', /* the icon for the custom post type menu */
|
|
46
|
+
'rewrite' => array( 'slug' => 'custom_type', 'with_front' => false ), /* you can specify its url slug */
|
|
47
|
+
'has_archive' => 'custom_type', /* you can rename the slug here */
|
|
48
|
+
'capability_type' => 'post',
|
|
49
|
+
'hierarchical' => false,
|
|
50
|
+
/* the next one is important, it tells what's enabled in the post editor */
|
|
51
|
+
'supports' => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'trackbacks', 'custom-fields', 'comments', 'revisions', 'sticky')
|
|
52
|
+
) /* end of options */
|
|
53
|
+
); /* end of register post type */
|
|
54
|
+
|
|
55
|
+
/* this adds your post categories to your custom post type */
|
|
56
|
+
register_taxonomy_for_object_type('category', 'custom_type');
|
|
57
|
+
/* this adds your post tags to your custom post type */
|
|
58
|
+
register_taxonomy_for_object_type('post_tag', 'custom_type');
|
|
59
|
+
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
// adding the function to the Wordpress init
|
|
63
|
+
add_action( 'init', 'custom_post_example');
|
|
64
|
+
|
|
65
|
+
/*
|
|
66
|
+
for more information on taxonomies, go here:
|
|
67
|
+
http://codex.wordpress.org/Function_Reference/register_taxonomy
|
|
68
|
+
*/
|
|
69
|
+
|
|
70
|
+
// now let's add custom categories (these act like categories)
|
|
71
|
+
register_taxonomy( 'custom_cat',
|
|
72
|
+
array('custom_type'), /* if you change the name of register_post_type( 'custom_type', then you have to change this */
|
|
73
|
+
array('hierarchical' => true, /* if this is true, it acts like categories */
|
|
74
|
+
'labels' => array(
|
|
75
|
+
'name' => __( 'Custom Categories', '<%= theme_id %>theme' ), /* name of the custom taxonomy */
|
|
76
|
+
'singular_name' => __( 'Custom Category', '<%= theme_id %>theme' ), /* single taxonomy name */
|
|
77
|
+
'search_items' => __( 'Search Custom Categories', '<%= theme_id %>theme' ), /* search title for taxomony */
|
|
78
|
+
'all_items' => __( 'All Custom Categories', '<%= theme_id %>theme' ), /* all title for taxonomies */
|
|
79
|
+
'parent_item' => __( 'Parent Custom Category', '<%= theme_id %>theme' ), /* parent title for taxonomy */
|
|
80
|
+
'parent_item_colon' => __( 'Parent Custom Category:', '<%= theme_id %>theme' ), /* parent taxonomy title */
|
|
81
|
+
'edit_item' => __( 'Edit Custom Category', '<%= theme_id %>theme' ), /* edit custom taxonomy title */
|
|
82
|
+
'update_item' => __( 'Update Custom Category', '<%= theme_id %>theme' ), /* update title for taxonomy */
|
|
83
|
+
'add_new_item' => __( 'Add New Custom Category', '<%= theme_id %>theme' ), /* add new title for taxonomy */
|
|
84
|
+
'new_item_name' => __( 'New Custom Category Name', '<%= theme_id %>theme' ) /* name title for taxonomy */
|
|
85
|
+
),
|
|
86
|
+
'show_admin_column' => true,
|
|
87
|
+
'show_ui' => true,
|
|
88
|
+
'query_var' => true,
|
|
89
|
+
'rewrite' => array( 'slug' => 'custom-slug' ),
|
|
90
|
+
)
|
|
91
|
+
);
|
|
92
|
+
|
|
93
|
+
// now let's add custom tags (these act like categories)
|
|
94
|
+
register_taxonomy( 'custom_tag',
|
|
95
|
+
array('custom_type'), /* if you change the name of register_post_type( 'custom_type', then you have to change this */
|
|
96
|
+
array('hierarchical' => false, /* if this is false, it acts like tags */
|
|
97
|
+
'labels' => array(
|
|
98
|
+
'name' => __( 'Custom Tags', '<%= theme_id %>theme' ), /* name of the custom taxonomy */
|
|
99
|
+
'singular_name' => __( 'Custom Tag', '<%= theme_id %>theme' ), /* single taxonomy name */
|
|
100
|
+
'search_items' => __( 'Search Custom Tags', '<%= theme_id %>theme' ), /* search title for taxomony */
|
|
101
|
+
'all_items' => __( 'All Custom Tags', '<%= theme_id %>theme' ), /* all title for taxonomies */
|
|
102
|
+
'parent_item' => __( 'Parent Custom Tag', '<%= theme_id %>theme' ), /* parent title for taxonomy */
|
|
103
|
+
'parent_item_colon' => __( 'Parent Custom Tag:', '<%= theme_id %>theme' ), /* parent taxonomy title */
|
|
104
|
+
'edit_item' => __( 'Edit Custom Tag', '<%= theme_id %>theme' ), /* edit custom taxonomy title */
|
|
105
|
+
'update_item' => __( 'Update Custom Tag', '<%= theme_id %>theme' ), /* update title for taxonomy */
|
|
106
|
+
'add_new_item' => __( 'Add New Custom Tag', '<%= theme_id %>theme' ), /* add new title for taxonomy */
|
|
107
|
+
'new_item_name' => __( 'New Custom Tag Name', '<%= theme_id %>theme' ) /* name title for taxonomy */
|
|
108
|
+
),
|
|
109
|
+
'show_admin_column' => true,
|
|
110
|
+
'show_ui' => true,
|
|
111
|
+
'query_var' => true,
|
|
112
|
+
)
|
|
113
|
+
);
|
|
114
|
+
|
|
115
|
+
/*
|
|
116
|
+
looking for custom meta boxes?
|
|
117
|
+
check out this fantastic tool:
|
|
118
|
+
https://github.com/jaredatch/Custom-Metaboxes-and-Fields-for-WordPress
|
|
119
|
+
*/
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
?>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
## bones / languages
|
|
2
|
+
|
|
3
|
+
**This folder contains the language-files for the bones framework.**
|
|
4
|
+
|
|
5
|
+
A function in `functions.php` identifies the LOCALE (e.g. da_DK) of your WordPress installation. If there is a language-file in `languages/` named accordingly (e.g. `da_DK.mo`), bones will use it. Fallback is English.
|
|
6
|
+
|
|
7
|
+
### How to translate bones to your language
|
|
8
|
+
|
|
9
|
+
1 Make a copy of `default.po` an change the filename to your LOCALE.po (e.g. `da_DK.mo`)
|
|
10
|
+
2 Use [poedit](http://www.poedit.net/ "home of poedit") to edit your po-file.
|
|
11
|
+
3 When saving your po-file, poedit will create/update a corresponding mo-file.
|
|
12
|
+
4 Please commit both your po- and mo-file.
|
|
13
|
+
|
|
14
|
+
### More
|
|
15
|
+
|
|
16
|
+
http://codex.wordpress.org/I18n_for_WordPress_Developers
|
|
17
|
+
|
|
18
|
+
http://www.wdmac.com/how-to-create-a-po-language-translation#more-631
|
|
@@ -0,0 +1,374 @@
|
|
|
1
|
+
msgid ""
|
|
2
|
+
msgstr ""
|
|
3
|
+
"Project-Id-Version: wp theme bones\n"
|
|
4
|
+
"Report-Msgid-Bugs-To: \n"
|
|
5
|
+
"POT-Creation-Date: 2012-03-02 22:11+0100\n"
|
|
6
|
+
"PO-Revision-Date: \n"
|
|
7
|
+
"Language-Team: fulgor <frag.fulgor@gmail.com>\n"
|
|
8
|
+
"Language-Team: fulgor <frag.fulgor@gmail.com>\n"
|
|
9
|
+
"MIME-Version: 1.0\n"
|
|
10
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
|
11
|
+
"Content-Transfer-Encoding: 8bit\n"
|
|
12
|
+
"X-Poedit-SourceCharset: utf-8\n"
|
|
13
|
+
"X-Poedit-KeywordsList: __;_e;_n\n"
|
|
14
|
+
"X-Poedit-Basepath: /home/fulgor/GIT/bones\n"
|
|
15
|
+
"Last-Translator: \n"
|
|
16
|
+
"X-Generator: Poedit 1.5.4\n"
|
|
17
|
+
"X-Poedit-SearchPath-0: /home/fulgor/GIT/bones\n"
|
|
18
|
+
|
|
19
|
+
#: comments.php:12
|
|
20
|
+
msgid "This post is password protected. Enter the password to view comments."
|
|
21
|
+
msgstr ""
|
|
22
|
+
"Dette indlæg er kodeordsbeskyttet. Skriv kodeordet for at se kommentarer."
|
|
23
|
+
|
|
24
|
+
#: comments.php:23
|
|
25
|
+
msgid "Response"
|
|
26
|
+
msgstr "Svar"
|
|
27
|
+
|
|
28
|
+
#: comments.php:24
|
|
29
|
+
msgid "Responses"
|
|
30
|
+
msgstr "Svar"
|
|
31
|
+
|
|
32
|
+
#: comments.php:25
|
|
33
|
+
msgid "One"
|
|
34
|
+
msgstr "En"
|
|
35
|
+
|
|
36
|
+
#: comments.php:26
|
|
37
|
+
msgid "No"
|
|
38
|
+
msgstr "Nej"
|
|
39
|
+
|
|
40
|
+
#: comments.php:32
|
|
41
|
+
msgid "to"
|
|
42
|
+
msgstr "til"
|
|
43
|
+
|
|
44
|
+
#: comments.php:59
|
|
45
|
+
msgid "Comments are closed."
|
|
46
|
+
msgstr "Der er lukket for kommentarer."
|
|
47
|
+
|
|
48
|
+
#: comments.php:70
|
|
49
|
+
msgid "Leave a Reply"
|
|
50
|
+
msgstr "Efterlad et svar"
|
|
51
|
+
|
|
52
|
+
#: comments.php:70
|
|
53
|
+
#, php-format
|
|
54
|
+
msgid "Leave a Reply to %s"
|
|
55
|
+
msgstr "Efterlad et svar til %s"
|
|
56
|
+
|
|
57
|
+
#: comments.php:78
|
|
58
|
+
msgid "You must be"
|
|
59
|
+
msgstr "Du skal være"
|
|
60
|
+
|
|
61
|
+
#: comments.php:78
|
|
62
|
+
msgid "logged in"
|
|
63
|
+
msgstr "logget ind"
|
|
64
|
+
|
|
65
|
+
#: comments.php:78
|
|
66
|
+
msgid "to post a comment"
|
|
67
|
+
msgstr "for at kunne kommentere"
|
|
68
|
+
|
|
69
|
+
#: comments.php:86
|
|
70
|
+
msgid "Logged in as"
|
|
71
|
+
msgstr "Logget ind som"
|
|
72
|
+
|
|
73
|
+
#: comments.php:86
|
|
74
|
+
msgid "Log out of this account"
|
|
75
|
+
msgstr "Log ud af denne konto"
|
|
76
|
+
|
|
77
|
+
#: comments.php:86
|
|
78
|
+
msgid "Log out"
|
|
79
|
+
msgstr "Log ud"
|
|
80
|
+
|
|
81
|
+
#: comments.php:93
|
|
82
|
+
msgid "Name"
|
|
83
|
+
msgstr "Navn"
|
|
84
|
+
|
|
85
|
+
#: comments.php:93 comments.php:98
|
|
86
|
+
msgid "(required)"
|
|
87
|
+
msgstr "(obligatorisk)"
|
|
88
|
+
|
|
89
|
+
#: comments.php:94
|
|
90
|
+
msgid "Your Name"
|
|
91
|
+
msgstr "Dit navn"
|
|
92
|
+
|
|
93
|
+
#: comments.php:98
|
|
94
|
+
msgid "Email"
|
|
95
|
+
msgstr "Email"
|
|
96
|
+
|
|
97
|
+
#: comments.php:99
|
|
98
|
+
msgid "Your Email"
|
|
99
|
+
msgstr "Din Email"
|
|
100
|
+
|
|
101
|
+
#: comments.php:100
|
|
102
|
+
msgid "will not be published"
|
|
103
|
+
msgstr "vil ikke blive offentliggjort"
|
|
104
|
+
|
|
105
|
+
#: comments.php:104
|
|
106
|
+
msgid "Website"
|
|
107
|
+
msgstr "Webside"
|
|
108
|
+
|
|
109
|
+
#: comments.php:105
|
|
110
|
+
msgid "Your Website"
|
|
111
|
+
msgstr "Din Webside"
|
|
112
|
+
|
|
113
|
+
#: comments.php:112
|
|
114
|
+
msgid "Your Comment Here..."
|
|
115
|
+
msgstr "Din Kommentar her…"
|
|
116
|
+
|
|
117
|
+
#: comments.php:115
|
|
118
|
+
msgid "Submit Comment"
|
|
119
|
+
msgstr "Indsend Kommentar"
|
|
120
|
+
|
|
121
|
+
#: comments.php:120
|
|
122
|
+
msgid "You can use these tags"
|
|
123
|
+
msgstr "Du kan anvende disse tags"
|
|
124
|
+
|
|
125
|
+
#: header.php:23
|
|
126
|
+
#, php-format
|
|
127
|
+
msgid "Page %s"
|
|
128
|
+
msgstr "Side %s"
|
|
129
|
+
|
|
130
|
+
#: taxonomy-custom_cat.php:22 archive.php:9
|
|
131
|
+
msgid "Posts Categorized:"
|
|
132
|
+
msgstr "Kategoriserede Indlæg:"
|
|
133
|
+
|
|
134
|
+
#: taxonomy-custom_cat.php:32 embed-post_meta.php:1 single-custom_type.php:30
|
|
135
|
+
msgid "Posted"
|
|
136
|
+
msgstr "Skrevet"
|
|
137
|
+
|
|
138
|
+
#: taxonomy-custom_cat.php:32 embed-post_meta.php:1 single-custom_type.php:30
|
|
139
|
+
msgid "by"
|
|
140
|
+
msgstr "af"
|
|
141
|
+
|
|
142
|
+
#: taxonomy-custom_cat.php:32 embed-post_meta.php:1 single-custom_type.php:30
|
|
143
|
+
msgid "filed under"
|
|
144
|
+
msgstr "sorteret under"
|
|
145
|
+
|
|
146
|
+
#: taxonomy-custom_cat.php:41
|
|
147
|
+
msgid "Read more"
|
|
148
|
+
msgstr "Læs mere"
|
|
149
|
+
|
|
150
|
+
#: functions.php:103
|
|
151
|
+
msgid "(Edit)"
|
|
152
|
+
msgstr "(Rediger)"
|
|
153
|
+
|
|
154
|
+
#: functions.php:107
|
|
155
|
+
msgid "Your comment is awaiting moderation."
|
|
156
|
+
msgstr "Din kommentar afventer moderation."
|
|
157
|
+
|
|
158
|
+
#: functions.php:124
|
|
159
|
+
msgid "Search for:"
|
|
160
|
+
msgstr "Søg efter:"
|
|
161
|
+
|
|
162
|
+
#: functions.php:125
|
|
163
|
+
msgid "Search the Site..."
|
|
164
|
+
msgstr "Søg på siden…"
|
|
165
|
+
|
|
166
|
+
#: 404.php:11
|
|
167
|
+
msgid "Epic 404 - Article Not Found"
|
|
168
|
+
msgstr "Episk 404 - Emne Blev Ikke Fundet"
|
|
169
|
+
|
|
170
|
+
#: 404.php:17
|
|
171
|
+
msgid ""
|
|
172
|
+
"The article you were looking for was not found, but maybe try looking again!"
|
|
173
|
+
msgstr ""
|
|
174
|
+
"Det emne, du ledte efter blev ikke fundet, men prøv måske at lede igen!"
|
|
175
|
+
|
|
176
|
+
#: search.php:7
|
|
177
|
+
msgid "Search Results for:"
|
|
178
|
+
msgstr "Søgeresultater for:"
|
|
179
|
+
|
|
180
|
+
#: search.php:23
|
|
181
|
+
msgid "Read more on"
|
|
182
|
+
msgstr "Læs mere på"
|
|
183
|
+
|
|
184
|
+
#: archive.php:13
|
|
185
|
+
msgid "Posts Tagged:"
|
|
186
|
+
msgstr "Taggede Indlæg:"
|
|
187
|
+
|
|
188
|
+
#: archive.php:17 author.php:8
|
|
189
|
+
msgid "Posts By:"
|
|
190
|
+
msgstr "Indlæg Af:"
|
|
191
|
+
|
|
192
|
+
#: archive.php:21
|
|
193
|
+
msgid "Daily Archives:"
|
|
194
|
+
msgstr "Daglige Arkiver:"
|
|
195
|
+
|
|
196
|
+
#: archive.php:25
|
|
197
|
+
msgid "Monthly Archives:"
|
|
198
|
+
msgstr "Månedlige Arkiver:"
|
|
199
|
+
|
|
200
|
+
#: archive.php:29
|
|
201
|
+
msgid "Yearly Archives:"
|
|
202
|
+
msgstr "Årlige Arkiver:"
|
|
203
|
+
|
|
204
|
+
#: single-custom_type.php:43
|
|
205
|
+
msgid "Custom Tags"
|
|
206
|
+
msgstr "Brugerdefinerede Tags"
|
|
207
|
+
|
|
208
|
+
#: embed-tags.php:3
|
|
209
|
+
msgid "Tag"
|
|
210
|
+
msgstr "Tag"
|
|
211
|
+
|
|
212
|
+
#: embed-tags.php:3
|
|
213
|
+
msgid "Tags"
|
|
214
|
+
msgstr "Tags"
|
|
215
|
+
|
|
216
|
+
#: image.php:20
|
|
217
|
+
msgid "Read the rest of this entry"
|
|
218
|
+
msgstr "Læs resten af dette indlæg"
|
|
219
|
+
|
|
220
|
+
#: image.php:38
|
|
221
|
+
msgid "Sorry, no attachments matched your criteria."
|
|
222
|
+
msgstr "Beklager, ingen vedhæftninger matchede dine kriterier."
|
|
223
|
+
|
|
224
|
+
#: embed-prev_next.php:3
|
|
225
|
+
msgid "« Older Entries"
|
|
226
|
+
msgstr "« Ældre Indlæg"
|
|
227
|
+
|
|
228
|
+
#: embed-prev_next.php:4
|
|
229
|
+
msgid "Newer Entries »"
|
|
230
|
+
msgstr "Nyere Indlæg »"
|
|
231
|
+
|
|
232
|
+
#: footer.php:9
|
|
233
|
+
msgid "is powered by"
|
|
234
|
+
msgstr "drives af"
|
|
235
|
+
|
|
236
|
+
#: embed-not_found.php:3
|
|
237
|
+
msgid "Not Found"
|
|
238
|
+
msgstr "Ikke Fundet"
|
|
239
|
+
|
|
240
|
+
#: embed-not_found.php:6
|
|
241
|
+
msgid "Sorry, but the requested resource was not found on this site."
|
|
242
|
+
msgstr "Beklager, men det søgte emne blev ikke fundet på denne side."
|
|
243
|
+
|
|
244
|
+
#: sidebar.php:15
|
|
245
|
+
msgid "Please activate some Widgets."
|
|
246
|
+
msgstr "Aktiver venligst nogle Widgets."
|
|
247
|
+
|
|
248
|
+
#: library/bones.php:52
|
|
249
|
+
msgid "Read more »"
|
|
250
|
+
msgstr "Læs mere »"
|
|
251
|
+
|
|
252
|
+
#: library/custom-post-type.php:24
|
|
253
|
+
msgid "Custom Types"
|
|
254
|
+
msgstr "Brugerdefinerede Typer:"
|
|
255
|
+
|
|
256
|
+
#: library/custom-post-type.php:25
|
|
257
|
+
msgid "Custom Post"
|
|
258
|
+
msgstr "Brugerdefineret Indlæg"
|
|
259
|
+
|
|
260
|
+
#: library/custom-post-type.php:26
|
|
261
|
+
msgid "Add New"
|
|
262
|
+
msgstr "Tilføj Nyt"
|
|
263
|
+
|
|
264
|
+
#: library/custom-post-type.php:27
|
|
265
|
+
msgid "Add New Custom Type"
|
|
266
|
+
msgstr "Tilføj Ny Brugerdefineret Type"
|
|
267
|
+
|
|
268
|
+
#: library/custom-post-type.php:28
|
|
269
|
+
msgid "Edit"
|
|
270
|
+
msgstr "Rediger"
|
|
271
|
+
|
|
272
|
+
#: library/custom-post-type.php:29
|
|
273
|
+
msgid "Edit Post Types"
|
|
274
|
+
msgstr "Rediger Indlæg Typer"
|
|
275
|
+
|
|
276
|
+
#: library/custom-post-type.php:30
|
|
277
|
+
msgid "New Post Type"
|
|
278
|
+
msgstr "Ny Indlæg Type"
|
|
279
|
+
|
|
280
|
+
#: library/custom-post-type.php:31
|
|
281
|
+
msgid "View Post Type"
|
|
282
|
+
msgstr "Se Indlæg Type "
|
|
283
|
+
|
|
284
|
+
#: library/custom-post-type.php:32
|
|
285
|
+
msgid "Search Post Type"
|
|
286
|
+
msgstr "Søg Indlæg Type"
|
|
287
|
+
|
|
288
|
+
#: library/custom-post-type.php:33
|
|
289
|
+
msgid "Nothing found in the Database."
|
|
290
|
+
msgstr "Intet fundet i Databasen."
|
|
291
|
+
|
|
292
|
+
#: library/custom-post-type.php:34
|
|
293
|
+
msgid "Nothing found in Trash"
|
|
294
|
+
msgstr "Intet fundet i Papirkurven"
|
|
295
|
+
|
|
296
|
+
#: library/custom-post-type.php:37
|
|
297
|
+
msgid "This is the example custom post type"
|
|
298
|
+
msgstr "Dette er et ekempel på en brugerdefineret indlæg type."
|
|
299
|
+
|
|
300
|
+
#: library/custom-post-type.php:73
|
|
301
|
+
msgid "Custom Categories"
|
|
302
|
+
msgstr "Brugerdefinerede Kategorier"
|
|
303
|
+
|
|
304
|
+
#: library/custom-post-type.php:74
|
|
305
|
+
msgid "Custom Category"
|
|
306
|
+
msgstr "Brugerdefineret Kategori"
|
|
307
|
+
|
|
308
|
+
#: library/custom-post-type.php:75
|
|
309
|
+
msgid "Search Custom Categories"
|
|
310
|
+
msgstr "Søg Brugerdefinerede Kategorier"
|
|
311
|
+
|
|
312
|
+
#: library/custom-post-type.php:76
|
|
313
|
+
msgid "All Custom Categories"
|
|
314
|
+
msgstr "Alle Brugerdefinerede Kategorier"
|
|
315
|
+
|
|
316
|
+
#: library/custom-post-type.php:77
|
|
317
|
+
msgid "Parent Custom Category"
|
|
318
|
+
msgstr "Forældre Brugerdefineret Kategori"
|
|
319
|
+
|
|
320
|
+
#: library/custom-post-type.php:78
|
|
321
|
+
msgid "Parent Custom Category:"
|
|
322
|
+
msgstr "Forældre Brugerdefineret Kategori:"
|
|
323
|
+
|
|
324
|
+
#: library/custom-post-type.php:79
|
|
325
|
+
msgid "Edit Custom Category"
|
|
326
|
+
msgstr "Rediger Brugerdefineret Kategori"
|
|
327
|
+
|
|
328
|
+
#: library/custom-post-type.php:80
|
|
329
|
+
msgid "Update Custom Category"
|
|
330
|
+
msgstr "Updater brugerdefineret Kategori"
|
|
331
|
+
|
|
332
|
+
#: library/custom-post-type.php:81
|
|
333
|
+
msgid "Add New Custom Category"
|
|
334
|
+
msgstr "Tilføj Nyt Brugerdefineret Kategori"
|
|
335
|
+
|
|
336
|
+
#: library/custom-post-type.php:82
|
|
337
|
+
msgid "New Custom Category Name"
|
|
338
|
+
msgstr "Nyt Brugerdefineret Kategori Navn"
|
|
339
|
+
|
|
340
|
+
#: library/custom-post-type.php:95
|
|
341
|
+
msgid "Custom Tag"
|
|
342
|
+
msgstr "Brugerdefineret Tag"
|
|
343
|
+
|
|
344
|
+
#: library/custom-post-type.php:96
|
|
345
|
+
msgid "Search Custom Tags"
|
|
346
|
+
msgstr "Søg Brugerdefinerede Tags"
|
|
347
|
+
|
|
348
|
+
#: library/custom-post-type.php:97
|
|
349
|
+
msgid "All Custom Tags"
|
|
350
|
+
msgstr "Alle Brugerdefinerede Tags"
|
|
351
|
+
|
|
352
|
+
#: library/custom-post-type.php:98
|
|
353
|
+
msgid "Parent Custom Tag"
|
|
354
|
+
msgstr "Forældre Brugerdefineret Tag"
|
|
355
|
+
|
|
356
|
+
#: library/custom-post-type.php:99
|
|
357
|
+
msgid "Parent Custom Tag:"
|
|
358
|
+
msgstr "Forældre Brugerdefineret Tag:"
|
|
359
|
+
|
|
360
|
+
#: library/custom-post-type.php:100
|
|
361
|
+
msgid "Edit Custom Tag"
|
|
362
|
+
msgstr "Rediger Brugerdefineret Tag"
|
|
363
|
+
|
|
364
|
+
#: library/custom-post-type.php:101
|
|
365
|
+
msgid "Update Custom Tag"
|
|
366
|
+
msgstr "Opdater Brugerdefineret Tag"
|
|
367
|
+
|
|
368
|
+
#: library/custom-post-type.php:102
|
|
369
|
+
msgid "Add New Custom Tag"
|
|
370
|
+
msgstr "Tilføj Nyt Brugerdefineret Tag"
|
|
371
|
+
|
|
372
|
+
#: library/custom-post-type.php:103
|
|
373
|
+
msgid "New Custom Tag Name"
|
|
374
|
+
msgstr "Nyt Brugerdefineret Tag Navn"
|