10 | ".__("Name", "bepro-listings")."
11 | ".__("Type", "bepro-listings")."
12 | ".__("Image", "bepro-listings")."
13 | ".__("Address", "bepro-listings")."
14 | ".__("Notices", "bepro-listings")."
15 | ".__("Status", "bepro-listings")."
16 | ".__("Actions", "bepro-listings")."
17 |
18 | ";
19 |
20 | foreach($items as $item){
21 | $notice = "None";
22 | $post_status = (($item->post_status == "publish")? __("Published","bepro-listings"):__("Pending","bepro-listings"));
23 | $order_status = $item->order_status;
24 |
25 | if(!empty($data["require_payment"]) && ($post_status == "Published")){
26 | if(@$item->order_status && ($item->order_status!= 1)){
27 | $notice = __("Payment Issue","bepro-listings");
28 | }else{
29 | $notice = __("Expires:","bepro-listings")." ".((empty($item->expires) || ($item->expires == "0000-00-00 00:00:00"))? __("Never","bepro-listings"):date("M, d Y", strtotime($item->expires)));
30 | }
31 | }else if(!empty($data["require_payment"]) && ($post_status == "Pending")){
32 | if($order_status == 1){
33 | $notice = __("Paid: Processing","bepro-listings");
34 | }else if($order_status == 2){
35 | $notice = __("Pay: Required","bepro-listings");
36 | }else if($order_status == 3){
37 | $notice = __("Pay: Failed","bepro-listings");
38 | }else{
39 | $notice = __("Options: Missing","bepro-listings");
40 | }
41 | }
42 | echo "
43 |
44 | ".$item->post_title."
45 | ".get_the_term_list($item->post_id, 'bepro_listing_types', '', ', ','')."
46 | ".((has_post_thumbnail( $item->post_id ))?"Yes":"No")."
47 | ".((isset($item->lat) && isset($item->lon))?"Valid":"Not Valid")."
48 | ".$notice."
49 | ".$post_status."
50 | ";
51 |
52 | if($post_status == "Published"){
53 | echo "".__("View", "bepro-listings")." ";
54 | }else if((@$order_status) && ($order_status != 1)){
55 | echo __("Pay","bepro-listings");
56 | }else if(empty($item->bl_order_id) && ($post_status != "publish") && !empty($data["require_payment"])){
57 | echo $data["currency_sign"]."???";
58 | }else{
59 | echo __("Wait", "bepro-listings");
60 | }
61 | if((!function_exists("bp_is_my_profile")) ||($bp->displayed_user->id == $bp->loggedin_user->id) || ($data["buddypress"] == false))echo " | ".__("Edit", "bepro-listings")." | ".__("Delete", "bepro-listings")." ";
62 | echo "
63 |
64 | ";
65 | }
66 | }else{
67 | echo "";
68 | if(function_exists("bp_is_my_profile") && @bp_is_my_profile()){
69 | echo "".__("No Live listings created", "bepro-listings")." ";
70 | }else{
71 | echo "".__("No live listings for this user", "bepro-listings")." ";
72 | }
73 | }
74 | echo "
";
75 | ?>
--------------------------------------------------------------------------------
/bepro_listings_api.php:
--------------------------------------------------------------------------------
1 | action;
11 | foreach($request->records as $listing){
12 | switch($action){
13 | case "update":
14 | $response .= $this->update($listing);
15 | break;
16 | case "delete":
17 | $response .= $this->delete($listing);
18 | break;
19 | default:
20 | $response .= "5 ";
21 | }
22 | }
23 | echo $response;
24 | }
25 |
26 | function update($listings){
27 | if(!$listings->listing->item_name) return "3 ";
28 | $data = get_option("bepro_listings");
29 | $_POST["save_bepro_listing"] = 1;
30 | $response_text = "";
31 |
32 | try{
33 | foreach($listings->listing as $listing){
34 | $_POST["bepro_post_id"] = @(string)$listing->id;
35 | $_POST["item_name"] = @(string)$listing->item_name;
36 | $_POST["content"] = @(string)$listing->content;
37 | $_POST["categories"] = @(string)$listing->categories;
38 |
39 | if(@$data["show_cost"]){
40 | $_POST["cost"] = @(string)$listing->cost;
41 | }
42 |
43 | if(@$data["show_con"]){
44 | $_POST["first_name"] = @(string)$listing->first_name;
45 | $_POST["last_name"] = @(string)$listing->last_name;
46 | $_POST["email"] = @(string)$listing->email;
47 | $_POST["phone"] = @(string)$listing->phone;
48 | $_POST["website"] = @(string)$listing->website;
49 | }
50 |
51 | if(@$data["show_geo"]){
52 | $_POST["address_line1"] = @(string)$listing->address_line1;
53 | $_POST["city"] = @(string)$listing->city;
54 | $_POST["postcode"] = @(string)$listing->postcode;
55 | $_POST["state"] = @(string)$listing->state;
56 | $_POST["country"] = @(string)$listing->country;
57 | $_POST["lat"] = @(string)$listing->lat;
58 | $_POST["lon"] = @(string)$listing->lon;
59 | }
60 |
61 | if(@$data["show_img"]){
62 | $_POST["photo"] = @$listing->photo;
63 | }
64 | $result = bepro_listings_save(false, true);
65 | if(is_numeric($result))
66 | $response_text .= "".$result." ";
67 |
68 |
69 | }
70 | return "0 ".$response_text." ";
71 | }catch(Exception $e){
72 | return "6 ".@$listing->id." ".@$listing->item_name." ";
73 | }
74 | }
75 |
76 | function delete($listings){
77 | if(!$listings->listing->id) return "4 ";
78 | if((string)$listings->listing->id == "*"){
79 | try{
80 | $all_listings = get_posts(array('post_type' => 'bepro_listings', 'posts_per_page'=>-1,
81 | 'numberposts'=>-1));
82 | foreach($all_listings as $del_listing){
83 | wp_delete_post($del_listing->ID, true);
84 | }
85 | return "0 ".((string)$listing->listing->id)." ";
86 | }catch(Exception $e){
87 | return "6 ";
88 | }
89 | }else if(is_numeric((string)$listings->listing->id)){
90 | $removed = array();
91 | try{
92 | foreach($listings->listing as $listing){
93 | if(@(string)$listing->id && wp_delete_post((string)$listing->id, true)){
94 | $removed[] = (string)$listing->id;
95 | }
96 | }
97 | $return_listings = "";
98 | foreach($removed as $remove){
99 | $return_listings .= "".$remove." ";
100 | }
101 |
102 | return "0 ".$return_listings." ";
103 | }catch(Exception $e){
104 | return "6 ";
105 | }
106 | }
107 | }
108 | }
109 | ?>
--------------------------------------------------------------------------------
/css/easy-responsive-tabs.css:
--------------------------------------------------------------------------------
1 | body {
2 | margin: 0px;
3 | padding: 0px;
4 | background: #f5f5f5;
5 | font-family: 'Segoe UI';
6 | }
7 | ul.resp-tabs-list, p {
8 | margin: 0px;
9 | padding: 0px;
10 | }
11 |
12 | .resp-tabs-list li {
13 | font-weight: 600;
14 | font-size: 13px;
15 | display: inline-block;
16 | padding: 13px 15px;
17 | margin: 0;
18 | list-style: none;
19 | cursor: pointer;
20 | float: left;
21 | }
22 |
23 | .resp-tabs-container {
24 | padding: 0px;
25 | background-color: #fff;
26 | clear: left;
27 | }
28 |
29 | h2.resp-accordion {
30 | cursor: pointer;
31 | padding: 5px;
32 | display: none;
33 | }
34 |
35 | .resp-tab-content {
36 | display: none;
37 | padding: 15px;
38 | }
39 |
40 | .resp-tab-active {
41 | border: 1px solid #c1c1c1;
42 | border-bottom: none;
43 | margin-bottom: -1px !important;
44 | padding: 12px 14px 14px 14px !important;
45 | }
46 |
47 | .resp-tab-active {
48 | border-bottom: none;
49 | background-color: #fff;
50 | }
51 |
52 | .resp-content-active, .resp-accordion-active {
53 | display: block;
54 | }
55 |
56 | .resp-tab-content {
57 | border: 1px solid #c1c1c1;
58 | }
59 |
60 | h2.resp-accordion {
61 | font-size: 13px;
62 | border: 1px solid #c1c1c1;
63 | border-top: 0px solid #c1c1c1;
64 | margin: 0px;
65 | padding: 10px 15px;
66 | }
67 |
68 | h2.resp-tab-active {
69 | border-bottom: 0px solid #c1c1c1 !important;
70 | margin-bottom: 0px !important;
71 | padding: 10px 15px !important;
72 | }
73 |
74 | h2.resp-tab-title:last-child {
75 | border-bottom: 12px solid #c1c1c1 !important;
76 | background: blue;
77 | }
78 | /*-----------Vertical tabs-----------*/
79 | .resp-vtabs ul.resp-tabs-list {
80 | float: left;
81 | width: 30%;
82 | padding:0;
83 | }
84 | .frontend_bepro_listings_vert_tabs{
85 | clear:left;
86 | }
87 |
88 | .resp-vtabs .resp-tabs-list li {
89 | display: block;
90 | padding: 15px 15px !important;
91 | margin: 0;
92 | cursor: pointer;
93 | float: none;
94 | }
95 |
96 | .resp-vtabs .resp-tabs-container {
97 | padding: 0px;
98 | background-color: #fff;
99 | border: 1px solid #c1c1c1;
100 | float: left;
101 | width: 68%;
102 | min-height: 250px;
103 | border-radius: 4px;
104 | clear: none;
105 | }
106 |
107 | .resp-vtabs .resp-tab-content {
108 | border: none;
109 | }
110 |
111 | .resp-vtabs li.resp-tab-active {
112 | border: 1px solid #c1c1c1;
113 | border-right: none;
114 | background-color: #fff;
115 | position: relative;
116 | z-index: 1;
117 | margin-right: -1px !important;
118 | padding: 14px 15px 15px 14px !important;
119 | }
120 |
121 | .resp-arrow {
122 | width: 0;
123 | height: 0;
124 | float: right;
125 | margin-top: 3px;
126 | border-left: 6px solid transparent;
127 | border-right: 6px solid transparent;
128 | border-top: 12px solid #c1c1c1;
129 | }
130 |
131 | h2.resp-tab-active span.resp-arrow {
132 | border: none;
133 | border-left: 6px solid transparent;
134 | border-right: 6px solid transparent;
135 | border-bottom: 12px solid #9B9797;
136 | }
137 |
138 | /*-----------Accordion styles-----------*/
139 | h2.resp-tab-active {
140 | background: #DBDBDB !important;
141 | }
142 | .resp-easy-accordion h2.resp-accordion {
143 | display: block;
144 | }
145 | .resp-easy-accordion .resp-tab-content {
146 | border: 1px solid #c1c1c1;
147 | }
148 |
149 | .resp-easy-accordion .resp-tab-content:last-child {
150 | border-bottom: 1px solid #c1c1c1 !important;
151 | }
152 |
153 | .resp-jfit {
154 | width: 100%;
155 | margin: 0px;
156 | }
157 |
158 | .resp-tab-content-active {
159 | display: block;
160 | }
161 |
162 | h2.resp-accordion:first-child {
163 | border-top: 1px solid #c1c1c1 !important;
164 | }
165 |
166 | /*Here your can change the breakpoint to set the accordion, when screen resolution changed*/
167 | @media only screen and (max-width: 768px) {
168 | ul.resp-tabs-list {
169 | display: none;
170 | }
171 |
172 | h2.resp-accordion {
173 | display: block;
174 | }
175 |
176 | .resp-vtabs .resp-tab-content {
177 | border: 1px solid #C1C1C1;
178 | }
179 |
180 | .resp-vtabs .resp-tabs-container {
181 | border: none;
182 | float: none;
183 | width: 100%;
184 | min-height: initial;
185 | clear: none;
186 | }
187 | .resp-accordion-closed {
188 | display:none !important;
189 | }
190 | .resp-vtabs .resp-tab-content:last-child {
191 | border-bottom: 1px solid #c1c1c1 !important;
192 | }
193 | }
194 |
--------------------------------------------------------------------------------
/admin/meta/gallery_meta.php:
--------------------------------------------------------------------------------
1 | ID);
23 | $post_thumbnail_id = get_post_thumbnail_id( $post->ID );
24 | if(($keys = array_keys($attachments, $post_thumbnail_id)) !== false)
25 | foreach($keys as $key)
26 | unset($attachments[$key]);
27 |
28 | ?>
29 |
30 |
31 |
36 | ' . wp_get_attachment_image( $attachment_id, 'thumbnail' ) . '
37 |
40 | ';
41 | }
42 | }
43 | ?>
44 |
45 |
46 |
" />
47 |
48 |
49 |
50 |
51 |
52 | get_row("SELECT cost FROM ".$wpdb->prefix.BEPRO_LISTINGS_TABLE_NAME." WHERE post_id =".$post->ID);
59 | ?>
60 | :
61 |
62 | ';
67 | }
68 |
69 | public static function contact_details_meta($post) {
70 | global $wpdb;
71 | $listing = $wpdb->get_row("SELECT * FROM ".$wpdb->prefix.BEPRO_LISTINGS_TABLE_NAME." WHERE post_id =".$post->ID);
72 | echo '
73 | '.__("First Name","bepro-listings").'
74 | '.__("Last Name","bepro-listings").'
75 | '.__("Phone","bepro-listings").'
76 | '.__("Email","bepro-listings").'
77 | '.__("Website","bepro-listings").'
78 | ';
79 | $data = get_option("bepro_listings");
80 | if(isset($data["require_payment"]) && ($data["require_payment"] > 0)){
81 | echo 'Expire Date ';
82 | }
83 | }
84 |
85 | public static function geographic_details_meta($post) {
86 | global $wpdb;
87 | $listing = $wpdb->get_row("SELECT * FROM ".$wpdb->prefix.BEPRO_LISTINGS_TABLE_NAME." WHERE post_id =".$post->ID);
88 |
89 | echo '
90 | '.__("Lat","bepro-listings").'
91 | '.__("Lon","bepro-listings").'
92 | '.__("Address","bepro-listings").'
93 | '.__("City","bepro-listings").'
94 | '.__("State","bepro-listings").'
95 | '.__("Country","bepro-listings").'
96 | '.__("Postcode","bepro-listings").'
97 | ';
98 | }
99 |
100 | /**
101 | * Save meta box data
102 | */
103 | public static function save( $post_id, $post ) {
104 | if(!is_admin()) return;
105 | $post_thumbnail_id = get_post_thumbnail_id( $post_id );
106 | $raw_old_images = get_children(array('post_parent'=>$post_id), ARRAY_A);
107 | unset($raw_old_images[$post_thumbnail_id]);
108 | $old_images = array_keys($raw_old_images);
109 | $new_images = empty($_POST['listing_image_gallery'])? array():explode( ',', addslashes( $_POST['listing_image_gallery'] ) );
110 |
111 | global $wpdb;
112 | if(!empty($new_images)){
113 | $diff = array_diff($old_images, $new_images);
114 |
115 | //unattach
116 | foreach($diff as $del_this)
117 | $wpdb->update($wpdb->posts, array('post_parent'=>0), array('id'=>$del_this, 'post_type'=>'attachment'));
118 |
119 |
120 | //save new
121 | foreach($new_images as $add_this)
122 | $wpdb->update($wpdb->posts, array('post_parent'=>$post_id), array('id'=>$add_this, 'post_type'=>'attachment'));
123 |
124 |
125 | //save order of images
126 | $attachment_ids = array_filter( $new_images );
127 | update_post_meta( $post_id, '_listing_image_gallery', implode( ',', $attachment_ids ) );
128 | }else{
129 | //unattach
130 | foreach($old_images as $del_this)
131 | $wpdb->update($wpdb->posts, array('post_parent'=>0), array('id'=>$del_this, 'post_type'=>'attachment'));
132 | }
133 | }
134 | }
--------------------------------------------------------------------------------
/admin/bepro_listings_widgets.php:
--------------------------------------------------------------------------------
1 | .
17 | */
18 |
19 | class BL_Search_Filter_Widget extends WP_Widget {
20 |
21 | function BL_Search_Filter_Widget() {
22 | // Instantiate the parent object
23 | parent::__construct( false, 'Search Filter' );
24 | }
25 |
26 | function widget( $args, $instance ) {
27 | // Widget output
28 | $data = get_option('filter_search_widget');
29 | $data["echo_this"] = true;
30 | echo $args['before_widget'];
31 | echo $args['before_title'] .__("Filter Listings", "bepro-listings"). $args['after_title'];
32 | echo Bepro_listings::search_filter_options($data);
33 | echo $args['after_widget'];
34 | }
35 |
36 | function update( $new_instance, $old_instance ) {
37 | // Save widget options
38 | if ($_POST["id_base"] == "bl_search_filter_widget"){
39 | $data['listing_page'] = attribute_escape($_POST['listing_page']);
40 | update_option('filter_search_widget', $data);
41 | do_action("bl_save_search_widget_action");
42 | echo 'success';
43 | }
44 | }
45 |
46 | function form( $instance ) {
47 | // Output admin widget options form
48 | $data = get_option('filter_search_widget');
49 | ?>
50 | Listing Page url
52 |
87 | Size
88 | >Select One
89 | >1
90 | >2
91 | >3
92 | >4
93 |
94 | $num_posts, "post_type" => "bepro_listings",'tax_query' =>
118 | array(array(
119 | 'taxonomy' => 'bepro_listing_types',
120 | 'terms' => $cat
121 | ))
122 | ));
123 | else
124 | $r = new WP_Query(array("posts_per_page" => $num_posts, "post_type" => "bepro_listings"));
125 |
126 | if ( $r->have_posts() ) {
127 |
128 | echo $before_widget;
129 |
130 | if ( $title )
131 | echo $before_title . $title . $after_title;
132 |
133 | $check = apply_filters("bl_recent_widget_override", array(), $r);
134 | if(empty($check)){
135 | echo '';
148 | }else{
149 | echo $check;
150 | }
151 | echo $after_widget;
152 | }
153 | echo $args['after_widget'];
154 | }
155 |
156 | function update( $new_instance, $old_instance ) {
157 | // Save widget options
158 | if ($_POST["id_base"] == "bl_recent_listings_widget"){
159 | $data['heading'] = attribute_escape($_POST['heading']);
160 | $data['num'] = attribute_escape($_POST['num']);
161 | $data['bepro_cat'] = attribute_escape($_POST['bepro_cat']);
162 | update_option('bepro_recent_widget', $data);
163 | echo "success";
164 | }
165 | }
166 |
167 | function form( $instance ) {
168 | // Output admin widget options form
169 | $data = get_option('bepro_recent_widget');
170 | ?>
171 | Heading
172 | Category 'All','selected' => (@$data["bepro_cat"]),'name' => 'bepro_cat','taxonomy' => 'bepro_listing_types') ); ?>
173 | Num Listings
174 | >Select One
175 | >1
176 | >2
177 | >3
178 | >4
179 | >5
180 |
181 |
192 |
--------------------------------------------------------------------------------
/bepro_listings_profile.php:
--------------------------------------------------------------------------------
1 | ID );
6 | $return_text = "";
7 | if(!is_user_logged_in()){
8 | $return_text .= "".__("You need to be Logged In to see your Listings.", "bepro-listings")."
";
9 | $args = array(
10 | 'echo' => true,
11 | 'redirect' => $current_url,
12 | 'form_id' => 'loginform',
13 | 'label_username' => __( 'Username' ),
14 | 'label_password' => __( 'Password' ),
15 | 'label_remember' => __( 'Remember Me' ),
16 | 'label_log_in' => __( 'Log In' ),
17 | 'id_username' => 'user_login',
18 | 'id_password' => 'user_pass',
19 | 'id_remember' => 'rememberme',
20 | 'id_submit' => 'wp-submit',
21 | 'remember' => true,
22 | 'value_username' => NULL,
23 | 'value_remember' => false
24 | );
25 | wp_login_form($args);
26 | return;
27 | }
28 |
29 | $types = listing_types();
30 | $current_user = wp_get_current_user();
31 | $user_id = $current_user->id;
32 |
33 | if(isset($_POST["save_bepro_listing"]) && !empty($_POST["save_bepro_listing"])){
34 | $success = false;
35 | $success = bepro_listings_save();
36 | if($success){
37 | $success_message = apply_filters("bepro_form_success_message","Listing Successfully Saved");
38 | $message = "".__($success_message,"bepro-listings")." ";
39 | }else{
40 | $fail_message = apply_filters("bepro_form_fail_message",__("Issue saving your listing. Please contact the website administrator","bepro-listings"));
41 | $message = "".__($fail_message,"bepro-listings")." ";
42 | }
43 |
44 | $current_user = wp_get_current_user();
45 | $current_url = get_permalink( $post->ID );
46 | echo "".$message." ";
47 | }
48 |
49 | if(!empty($_GET["bl_manage"])){
50 | if(!empty($_GET["bl_id"])){
51 | bl_profile_update_listing_content();
52 | }else{
53 | bl_profile_add_listing_content();
54 | }
55 | }else{
56 | $data = get_option("bepro_listings");
57 | // get records
58 | if(@$data["require_payment"]){
59 | $items = $wpdb->get_results("SELECT geo.*, orders.status as order_status, orders.expires, wp_posts.post_title, wp_posts.post_status FROM ".$wpdb->prefix.BEPRO_LISTINGS_TABLE_NAME." as geo
60 | LEFT JOIN ".$wpdb->prefix."posts as wp_posts on wp_posts.ID = geo.post_id
61 | LEFT JOIN ".BEPRO_LISTINGS_ORDERS_TABLE_NAME." AS orders on orders.bl_order_id = geo.bl_order_id WHERE wp_posts.post_status != 'trash' AND wp_posts.post_author = ".$user_id);
62 | }else{
63 | $items = $wpdb->get_results("SELECT geo.*, wp_posts.post_title, wp_posts.post_status FROM ".$wpdb->prefix.BEPRO_LISTINGS_TABLE_NAME." as geo
64 | LEFT JOIN ".$wpdb->prefix."posts as wp_posts on wp_posts.ID = geo.post_id WHERE wp_posts.post_status != 'trash' AND wp_posts.post_author = ".$user_id);
65 | }
66 |
67 | $listing_url = "?bl_manage=1&bl_id=";
68 | $add_listing_button = "".__("Add a Listing")."
";
69 |
70 | //allow addons to override create listing button
71 | $return_text .= apply_filters("bl_change_add_listing_button", $add_listing_button, $listing_url);
72 |
73 | //allow addons to change profile template
74 | $bl_my_list_template = apply_filters("bl_change_my_list_template",dirname( __FILE__ ) . '/templates/list.php', $items);
75 |
76 | ob_start();
77 | require( $bl_my_list_template );
78 | $return_text .= ob_get_clean();
79 | return $return_text;
80 | }
81 | }
82 |
83 | function bl_profile_update_listing_content(){
84 | global $wpdb, $post;
85 | $bl_id = is_numeric($_GET["bl_id"])? $_GET["bl_id"]:"0";
86 | $data = get_option("bepro_listings");
87 | //get information
88 | $item = $wpdb->get_row("SELECT * FROM ".$wpdb->prefix.BEPRO_LISTINGS_TABLE_NAME." WHERE id = ".$bl_id);
89 |
90 | if(!$item) return;
91 |
92 | $post_data = get_post($item->post_id);
93 | //get categories
94 | $raw_categories = listing_types_by_post($item->post_id);
95 | $categories = array();
96 | if($raw_categories){
97 | foreach($raw_categories as $category) {
98 | $categories[$category->term_id] = $category->term_id;
99 | }
100 | }
101 | $args = array(
102 | 'numberposts' => -1,
103 | 'post_parent' => $item->post_id,
104 | 'post_type' => 'attachment'
105 | );
106 | //get images
107 | $attachments = get_posts($args);
108 | $thunmbnails = array();
109 | $file_icons = array("application/pdf" => "document.png", "text/plain" => "text.png", "text/csv" => "spreadsheet.png","application/rar" => "archive.png", "application/x-tar" => "archive.png", "application/zip" => "archive.png", "application/x-gzip" => "archive.png","application/x-7z-compressed" => "archive.png","application/msword" => "document.png","application/vnd.oasis.opendocument.text" => "document.png","application/vnd.oasis.opendocument.presentation" => "text.png","application/vnd.oasis.opendocument.spreadsheet" => "interactive.png","application/vnd.oasis.opendocument.graphics" => "interactive.png", "application/vnd.oasis.opendocument.chart" => "spreadsheet.png","application/wordperfect" => "document.png", "video/x-ms-asf" => "video.png", "video/x-ms-wmv" => "video.png", "video/x-ms-wmx" => "video.png", "video/x-ms-wm" => "video.png", "video/avi" => "video.png", "video/divx" => "video.png","video/x-flv" => "video.png", "video/quicktime" => "video.png", "video/mpeg" => "video.png", "video/mp4" => "video.png", "video/ogg" => "video.png", "video/webm" => "video.png", "video/x-matroska" => "video.png");
110 | if($attachments){
111 | foreach ($attachments as $attachment) {
112 | $image = wp_get_attachment_image_src($attachment->ID,'thumbnail', false);
113 | if(!$image){
114 | $p_type = get_post_mime_type($attachment->ID);
115 | $f_type = empty($file_icons[$p_type])? "text.png":$file_icons[$p_type];
116 | $image[0] = get_bloginfo("wpurl")."/wp-includes/images/crystal/".$f_type;
117 | }
118 | $image[4] = $attachment->ID;
119 | $image[5] = basename ( get_attached_file( $attachment->ID ) );
120 | $thunmbnails[] = $image;
121 | }
122 | }
123 |
124 | //get settings
125 | $data = get_option("bepro_listings");
126 | $default_user_id = $data["default_user_id"];
127 | $num_images = $data["num_images"];
128 | $validate = $data["validate_form"];
129 | $show_cost = $data["show_cost"];
130 | $show_con = $data["show_con"];
131 | $show_geo = $data["show_geo"];
132 | $cat_drop = $data["cat_drop"];
133 |
134 | $listing_url = "?bl_manage=1&bl_id=";
135 | $url = get_permalink( $post->ID );
136 | if(!empty($_POST["save_bepro_listing"])){
137 | echo "".__("Return to List","bepro-listings")."
";
138 | }else{
139 | echo "".__("Cancel","bepro-listings")."
";
140 | }
141 |
142 | $frontend_form = dirname( __FILE__ )."/templates/form.php";
143 | $frontend_form = apply_filters("bl_change_upload_form", $frontend_form);
144 | if($frontend_form)
145 | require( $frontend_form);
146 | }
147 |
148 | function bl_profile_add_listing_content(){
149 | global $post;
150 | //get settings
151 | $data = get_option("bepro_listings");
152 | $default_user_id = $data["default_user_id"];
153 | $num_images = $data["num_images"];
154 | $validate = $data["validate_form"];
155 | $show_cost = $data["show_cost"];
156 | $show_con = $data["show_con"];
157 | $show_geo = $data["show_geo"];
158 |
159 | $listing_url = "?bl_manage=1&bl_id=";
160 | $url = get_permalink( $post->ID );
161 | if(!empty($_POST["save_bepro_listing"])){
162 | echo "".__("Return to My List","bepro-listings")."
";
163 | }else{
164 | echo "".__("Cancel","bepro-listings")."
";
165 | }
166 |
167 | $frontend_form = dirname( __FILE__ )."/templates/form.php";
168 | $frontend_form = apply_filters("bl_change_upload_form", $frontend_form);
169 | if($frontend_form)
170 | require( $frontend_form );
171 | }
172 |
173 | ?>
--------------------------------------------------------------------------------
/templates/form.php:
--------------------------------------------------------------------------------
1 |
7 |
49 | ';
50 | }
51 |
52 | echo '
53 | ';
173 | ?>
--------------------------------------------------------------------------------
/js/easyResponsiveTabs.js:
--------------------------------------------------------------------------------
1 | // Easy Responsive Tabs Plugin
2 | // Author: Samson.Onna
3 | (function ($) {
4 | $.fn.extend({
5 | easyResponsiveTabs: function (options) {
6 | //Set the default values, use comma to separate the settings, example:
7 | var defaults = {
8 | type: 'default', //default, vertical, accordion;
9 | width: 'auto',
10 | fit: true,
11 | closed: false,
12 | activate: function(){}
13 | }
14 | //Variables
15 | var options = $.extend(defaults, options);
16 | var opt = options, jtype = opt.type, jfit = opt.fit, jwidth = opt.width, vtabs = 'vertical', accord = 'accordion';
17 | var hash = window.location.hash;
18 | var historyApi = !!(window.history && history.replaceState);
19 |
20 | //Events
21 | $(this).bind('tabactivate', function(e, currentTab) {
22 | if(typeof options.activate === 'function') {
23 | options.activate.call(currentTab, e)
24 | }
25 | });
26 |
27 | //Main function
28 | this.each(function () {
29 | var $respTabs = $(this);
30 | var $respTabsList = $respTabs.find('ul.resp-tabs-list');
31 | var respTabsId = $respTabs.attr('id');
32 | $respTabs.find('ul.resp-tabs-list li').addClass('resp-tab-item');
33 | $respTabs.css({
34 | 'display': 'block',
35 | 'width': jwidth
36 | });
37 |
38 | $respTabs.find('.resp-tabs-container > div').addClass('resp-tab-content');
39 | jtab_options();
40 | //Properties Function
41 | function jtab_options() {
42 | if (jtype == vtabs) {
43 | $respTabs.addClass('resp-vtabs');
44 | }
45 | if (jfit == true) {
46 | $respTabs.css({ width: '100%', margin: '0px' });
47 | }
48 | if (jtype == accord) {
49 | $respTabs.addClass('resp-easy-accordion');
50 | $respTabs.find('.resp-tabs-list').css('display', 'none');
51 | }
52 | }
53 |
54 | //Assigning the h2 markup to accordion title
55 | var $tabItemh2;
56 | $respTabs.find('.resp-tab-content').before(" ");
57 |
58 | var itemCount = 0;
59 | $respTabs.find('.resp-accordion').each(function () {
60 | $tabItemh2 = $(this);
61 | var $tabItem = $respTabs.find('.resp-tab-item:eq(' + itemCount + ')');
62 | var $accItem = $respTabs.find('.resp-accordion:eq(' + itemCount + ')');
63 | $accItem.append($tabItem.html());
64 | $accItem.data($tabItem.data());
65 | $tabItemh2.attr('aria-controls', 'tab_item-' + (itemCount));
66 | itemCount++;
67 | });
68 |
69 | //Assigning the 'aria-controls' to Tab items
70 | var count = 0,
71 | $tabContent;
72 | $respTabs.find('.resp-tab-item').each(function () {
73 | $tabItem = $(this);
74 | $tabItem.attr('aria-controls', 'tab_item-' + (count));
75 | $tabItem.attr('role', 'tab');
76 |
77 | //Assigning the 'aria-labelledby' attr to tab-content
78 | var tabcount = 0;
79 | $respTabs.find('.resp-tab-content').each(function () {
80 | $tabContent = $(this);
81 | $tabContent.attr('aria-labelledby', 'tab_item-' + (tabcount));
82 | tabcount++;
83 | });
84 | count++;
85 | });
86 |
87 | // Show correct content area
88 | var tabNum = 0;
89 | if(hash!='') {
90 | var matches = hash.match(new RegExp(respTabsId+"([0-9]+)"));
91 | if (matches!==null && matches.length===2) {
92 | tabNum = parseInt(matches[1],10)-1;
93 | if (tabNum > count) {
94 | tabNum = 0;
95 | }
96 | }
97 | }
98 |
99 | //Active correct tab
100 | $($respTabs.find('.resp-tab-item')[tabNum]).addClass('resp-tab-active');
101 |
102 | //keep closed if option = 'closed' or option is 'accordion' and the element is in accordion mode
103 | if(options.closed !== true && !(options.closed === 'accordion' && !$respTabsList.is(':visible')) && !(options.closed === 'tabs' && $respTabsList.is(':visible'))) {
104 | $($respTabs.find('.resp-accordion')[tabNum]).addClass('resp-tab-active');
105 | $($respTabs.find('.resp-tab-content')[tabNum]).addClass('resp-tab-content-active').attr('style', 'display:block');
106 | }
107 | //assign proper classes for when tabs mode is activated before making a selection in accordion mode
108 | else {
109 | $($respTabs.find('.resp-tab-content')[tabNum]).addClass('resp-tab-content-active resp-accordion-closed')
110 | }
111 |
112 | //Tab Click action function
113 | $respTabs.find("[role=tab]").each(function () {
114 |
115 | var $currentTab = $(this);
116 | $currentTab.click(function () {
117 |
118 | var $currentTab = $(this);
119 | var $tabAria = $currentTab.attr('aria-controls');
120 |
121 | if ($currentTab.hasClass('resp-accordion') && $currentTab.hasClass('resp-tab-active')) {
122 | $respTabs.find('.resp-tab-content-active').slideUp('', function () { $(this).addClass('resp-accordion-closed'); });
123 | $currentTab.removeClass('resp-tab-active');
124 | return false;
125 | }
126 | if (!$currentTab.hasClass('resp-tab-active') && $currentTab.hasClass('resp-accordion')) {
127 | $respTabs.find('.resp-tab-active').removeClass('resp-tab-active');
128 | $respTabs.find('.resp-tab-content-active').slideUp().removeClass('resp-tab-content-active resp-accordion-closed');
129 | $respTabs.find("[aria-controls=" + $tabAria + "]").addClass('resp-tab-active');
130 |
131 | $respTabs.find('.resp-tab-content[aria-labelledby = ' + $tabAria + ']').slideDown().addClass('resp-tab-content-active');
132 | } else {
133 | $respTabs.find('.resp-tab-active').removeClass('resp-tab-active');
134 | $respTabs.find('.resp-tab-content-active').removeAttr('style').removeClass('resp-tab-content-active').removeClass('resp-accordion-closed');
135 | $respTabs.find("[aria-controls=" + $tabAria + "]").addClass('resp-tab-active');
136 | $respTabs.find('.resp-tab-content[aria-labelledby = ' + $tabAria + ']').addClass('resp-tab-content-active').attr('style', 'display:block');
137 | }
138 | //Trigger tab activation event
139 | $currentTab.trigger('tabactivate', $currentTab);
140 |
141 | //Update Browser History
142 | if(historyApi) {
143 | var currentHash = window.location.hash;
144 | var newHash = respTabsId+(parseInt($tabAria.substring(9),10)+1).toString();
145 | if (currentHash!="") {
146 | var re = new RegExp(respTabsId+"[0-9]+");
147 | if (currentHash.match(re)!=null) {
148 | newHash = currentHash.replace(re,newHash);
149 | }
150 | else {
151 | newHash = currentHash+"|"+newHash;
152 | }
153 | }
154 | else {
155 | newHash = '#'+newHash;
156 | }
157 |
158 | history.replaceState(null,null,newHash);
159 | }
160 | });
161 |
162 | });
163 |
164 | //Window resize function
165 | $(window).resize(function () {
166 | $respTabs.find('.resp-accordion-closed').removeAttr('style');
167 | });
168 | });
169 | }
170 | });
171 | })(jQuery);
172 |
173 |
--------------------------------------------------------------------------------
/css/bepro_listings.css:
--------------------------------------------------------------------------------
1 | /*
2 | This file is part of BePro Listings.
3 |
4 | BePro Listings is free software: you can redistribute it and/or modify
5 | it under the terms of the GNU General Public License as published by
6 | the Free Software Foundation, either version 3 of the License, or
7 | (at your option) any later version.
8 |
9 | BePro Listings is distributed in the hope that it will be useful,
10 | but WITHOUT ANY WARRANTY; without even the implied warranty of
11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 | GNU General Public License for more details.
13 |
14 | You should have received a copy of the GNU General Public License
15 | along with BePro Listings. If not, see .
16 | */
17 | /* bepro listings widgets */
18 | .recent_listings_widget li{
19 | margin-bottom:5px;
20 | }
21 | .sidebar_recent_imgs img{
22 | width:25%;
23 | height:25%;
24 | }
25 | .ui-datepicker-header{
26 | background:#000;
27 | color:#fff;
28 | }
29 | .ui-datepicker .ui-state-disabled .ui-state-default{
30 | background:green;
31 | color: #fff;
32 | }
33 |
34 | /* bepro listings map */
35 | #secondary #map{
36 | height: 250px;
37 | width: 250px;
38 | display: block;
39 | margin: auto;
40 | }#map { background: url(../images/noResultsMap.jpg); width:100%;}
41 | .result_map_1{
42 | height: 120px;
43 | display: block;
44 | margin: auto;
45 | }
46 | .result_map_2{
47 | height: 250px;
48 | display: block;
49 | margin: auto;
50 | }
51 | .result_map_3{
52 | height: 350px;
53 | display: block;
54 | margin: auto;
55 | }
56 | .result_map_4{
57 | height: 350px;
58 | display: block;
59 | margin: auto;
60 | }
61 | .marker_title{
62 | clear:both;
63 | display:block;
64 | }
65 | .marker_img{
66 | float:left;
67 | }
68 | .marker_detais{
69 | float: right;
70 | width:135px;
71 | }
72 | .marker_links{
73 | clear: right;
74 | float: right;
75 | }
76 | /* listing layout */
77 | #shortcode_list{
78 | clear:left;
79 | }
80 | .bepro_listing_desc{
81 | display:block;
82 | clear:left;
83 | white-space: pre-line;
84 | }
85 | .bepro_listing_info div{
86 | margin: 5px 0;
87 | padding: 0 5px;
88 | }
89 | .bepro_listing_info{
90 | display: block;
91 | float: left;
92 | clear: left;
93 | margin: 0 0 20px 0;
94 | }
95 | .item_cost{
96 | width:100%;
97 | display:block;
98 | clear:both;
99 | }
100 | #bpl_page_location_tab{
101 | float:left;
102 | width:30%;
103 | }
104 | #page_details_map_wrap{
105 | width:69%;
106 | float:left;
107 | }
108 | .bepro_address_info{
109 | width:100%;
110 | display:block;
111 | clear:both;
112 | }
113 | .item_contactinfo{
114 | width:100%;
115 | display:block;
116 | clear:both;
117 | }
118 | .bepro_listing_gallery{
119 | display: block;
120 | }
121 | .single-bepro_listings h3{
122 | display:block;
123 | clear:left;
124 | }
125 |
126 | .bepro_listing_category_section{
127 | clear:left;
128 | }
129 | /*Details page*/
130 |
131 | .bl_succsss_message{
132 | font-weight: bold;
133 | text-decoration: underline;
134 | color: green;
135 | }
136 | .bl_fail_message{
137 | font-weight: bold;
138 | text-decoration: underline;
139 | color: red;
140 | }
141 | .bepro_listings_tabs{
142 | clear:both;
143 | }
144 |
145 | .bepro_listings_tabs ul.tabs {
146 | list-style: none;
147 | padding: 0 0 0 1em;
148 | margin: 0 0 1.618em;
149 | overflow: hidden;
150 | position: relative;
151 | }
152 | .bepro_listings_tabs ul.tabs li.active {
153 | background: #fff;
154 | z-index: 2;
155 | border-bottom-color: #fff;
156 | }
157 |
158 | .bepro_listings_tabs ul.tabs li {
159 | border: 1px solid #e0dadf;
160 | background: #f7f6f7;
161 | background: -webkit-gradient(linear,left top,left bottom,from(#f7f6f7),to(#e0dadf));
162 | background: -webkit-linear-gradient(#f7f6f7,#e0dadf);
163 | background: -moz-linear-gradient(center top,#f7f6f7 0,#e0dadf 100%);
164 | background: -moz-gradient(center top,#f7f6f7 0,#e0dadf 100%);
165 | display: inline-block;
166 | position: relative;
167 | z-index: 0;
168 | -webkit-border-top-left-radius: 4px;
169 | -webkit-border-top-right-radius: 4px;
170 | -moz-border-radius-topleft: 4px;
171 | -moz-border-radius-topright: 4px;
172 | border-top-left-radius: 4px;
173 | border-top-right-radius: 4px;
174 | box-shadow: 0 3px 3px rgba(0,0,0,0.2),inset 0 1px 0 rgba(255,255,255,0.6);
175 | margin: 0 -5px;
176 | padding: 0 1em;
177 | }
178 |
179 | .bepro_listings_tabs ul.tabs:before {
180 | position: absolute;
181 | content: " ";
182 | width: 100%;
183 | bottom: 0;
184 | left: 0;
185 | border-bottom: 1px solid #e0dadf;
186 | z-index: 1;
187 | }
188 | .bepro_listings_tabs ul.tabs li a {
189 | display: inline-block;
190 | padding: .5em 0;
191 | font-weight: bold;
192 | color: #5e5e5e;
193 | text-shadow: 0 1px 0 rgba(255,255,255,0.8);
194 | text-decoration: none;
195 | }
196 | #tab-map{
197 | height:350px;
198 | }
199 | .bl_clear_heading{clear:left;}
200 | .frontend_bepro_listings_tabs #page_details_map_wrap{
201 | width:70%;
202 | height:350px;
203 | position:absolute;
204 | }
205 | .frontend_bepro_listings_vert_tabs #page_details_map{
206 | width:100%;
207 | height:300px;
208 | }
209 | .frontend_bepro_listings_tabs.ui-tabs {display:block;clear:both;width:98%;}
210 | .ui-tabs-vertical { width: 55em; }
211 | .ui-tabs-vertical .ui-tabs-nav { padding: .2em .1em .2em .2em; float: left; width: 20%; }
212 | .ui-tabs-vertical .ui-tabs-nav li { clear: left; width: 100%; border-bottom-width: 1px !important; border-right-width: 0 !important; margin: 0 -1px .2em 0; }
213 | .ui-tabs-vertical .ui-tabs-nav li a { display:block; }
214 | .ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active { padding-bottom: 0; padding-right: .1em; border-right-width: 1px; border-right-width: 1px; }
215 | .ui-tabs-vertical .ui-tabs-panel { padding: 0; margin:0;float: right; width: 40em;width:70%}
216 | /* Cat Listing layout */
217 | .cat_lists{
218 | float:left;
219 | clear:both;
220 | width: 100%;
221 | }
222 | .cat_list_item{
223 | float:left;
224 | width:185px;
225 | margin-left: 10px;
226 | margin-top: 10px;
227 | }
228 | .cat_list_item div{
229 | float:left;
230 | width:185px;
231 | clear:both;
232 | }
233 | .cat_list_item img{
234 | float:left;
235 | width:185px;
236 | height: 175px;
237 | clear:both;
238 | }
239 | .cat_list_item .cat_desc{ }
240 | .cat_list_item .cat_head{
241 | background-color: #dfdfdf;
242 | padding: 5px 5px;
243 | width:175px;
244 | clear:both;
245 | display:block;
246 | }
247 | .cat_list_item ul li{
248 | list-style-type:none;
249 | }
250 | /* form layout */
251 | #bepro_create_listings_form input[type="submit"],#bepro_create_listings_form hr{
252 | clear:left;
253 | }
254 | .chosen-container {
255 | min-width: 150px;
256 | }
257 | #bepro_listings_package_tabs{
258 | margin-bottom:10px;
259 | }
260 | .bl_package_options_table td:nth-child(2){width:36%}
261 | .package_option{float: left;
262 | width: 45%;
263 | border: 1px solid;
264 | margin-left: 5px;
265 | padding: 5px;}
266 | .form_label{
267 | display:block;
268 | }
269 |
270 | .form_heading{
271 |
272 | width:225px;
273 |
274 | margin-right:10px;
275 |
276 | display:block;
277 |
278 | font-weight:bold;
279 |
280 | margin: 10px 0;
281 |
282 | text-decoration:underline;
283 |
284 | }
285 | .bepro_form_section{
286 | border-bottom: 1px dashed;
287 | margin: 5px 0;
288 | padding: 10px;
289 | width: 70%;
290 | }
291 | .bepro_form_cat{
292 | margin:0 5px;
293 | float:left;
294 | height: 70px;
295 | max-width:150px;
296 | text-align: center;
297 | }
298 | .bepro_form_cat input[type="checkbox"]{
299 | display:block;
300 | margin:auto;
301 | }
302 | .label_sep{
303 | clear: both;
304 | display: block;
305 | font-weight: bold;
306 | margin: 5px 0;
307 | text-align: center;
308 | }
309 | .filter_search_form_shortcode .label_sep{
310 | clear: none;
311 | float: left;
312 | display: inline;
313 | margin: 0 5px;
314 | }
315 | .filter_search_form_shortcode .form_label{
316 | display: inline;
317 | }
318 | .filter_search_form_shortcode div{
319 | clear: none;
320 | float: left;
321 | display: inline;
322 | margin: 0 5px;
323 | height: 40px;
324 | }
325 | .filter_search_form_shortcode select{
326 | width:auto;
327 | }
328 | .filter_search_form_shortcode{
329 | border: 1px solid;
330 | float: left;
331 | padding: 10px;
332 | width:98%;
333 | }
334 | .error{
335 | display:block;
336 | }
337 | .add_listing_form_info #content{
338 | width:100%;
339 | margin:0;
340 | }
341 | .filter_search_form input[type=checkbox]{
342 | margin:0;
343 | }
344 | .filter_search_form .searchcheckbox{
345 | margin-left:5px;
346 | }
347 | .filter_search_form input[type=checkbox].sub_cat_checkbox_1{
348 | margin-left:10px;
349 | }
350 | .filter_search_form input[type=checkbox].sub_cat_checkbox_2{
351 | margin-left:20px;
352 | }
353 | .filter_search_form input[type=checkbox].sub_cat_checkbox_3{
354 | margin-left:30px;
355 | }
356 | /* Category listings results */
357 |
358 | #listings_area h3{
359 | font-size: 22px;
360 | text-decoration: underline;
361 | }
362 | #listings_area .cat_lists{
363 | margin:10px 0;
364 | float: left;
365 | }
366 | /* buddypress */
367 |
368 | #classified_listings_table td{
369 | border:1px solid #CCC;
370 | }
371 | #classified_listings_table tr td:last-child{
372 | width:24%;
373 | }
374 | #classified_listings_table{margin:10px 0}
375 | #bl_payment_required_table{margin:10px 0;}
376 | #bl_hide_bp_create_menu{
377 | display:none !important;
378 | }
379 | /* Paging */
380 | .paging{
381 | float:right;
382 | }
383 | .paging a{
384 | border-radius: 3px;
385 | -webkit-border-radius: 3px;
386 | -moz-border-radius: 3px;
387 | padding: 2px 4px;
388 | margin: 2px 5px;
389 | }
390 | .paging a:hover,.paging a.selected{
391 | background-color: grey;
392 | color: #fff;
393 | }
394 |
395 | /*footer */
396 | #bepro_lisings_footer{
397 | text-align: center;
398 | }
399 |
400 | /* general */
401 | .bl_shortcode_selected{
402 | display:none;
403 | }
--------------------------------------------------------------------------------
/languages/bepro-listings-en_EN.po:
--------------------------------------------------------------------------------
1 | # Translation for BePro Listings
2 | # Copyright (C) 2012 Beyond Programs LTD (beyondprograms.com)
3 | # This file is distributed under the same license as BePro Listings.
4 | # BePro Software Team , 2012.
5 | msgid ""
6 | msgstr ""
7 | "Project-Id-Version: BePro Listings Translation 1.0\n"
8 | "Report-Msgid-Bugs-To: translate-devel@lists.sourceforge.net\n"
9 | "POT-Creation-Date: 2012-09-14 16:20+0200\n"
10 | "PO-Revision-Date: 2015-04-18 09:04-0400\n"
11 | "Last-Translator: BePro Software Team \n"
12 | "Language-Team: bepro software\n"
13 | "Language: es\n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18 | "X-Generator: Poedit 1.5.7\n"
19 |
20 | msgid "Item Information"
21 | msgstr "Item Information"
22 |
23 | #: bepro_listings_frontend.php:321
24 | msgid "Item Name"
25 | msgstr "Item Name"
26 |
27 | #: bepro_listings_frontend.php:322
28 | msgid "Cost"
29 | msgstr "Cost"
30 |
31 | #: bepro_listings_frontend.php:323
32 | msgid "Description"
33 | msgstr "Description"
34 |
35 | #: bepro_listings_frontend.php:334
36 | msgid "Image"
37 | msgstr "Image"
38 |
39 | #: bepro_listings_frontend.php:324
40 | msgid "Categories"
41 | msgstr "Categories"
42 |
43 | #: bepro_listings_frontend.php:345
44 | msgid "Contact Information"
45 | msgstr "Contact Information"
46 |
47 | #: bepro_listings_frontend.php:346
48 | msgid "First Name"
49 | msgstr "First Name"
50 |
51 | #: bepro_listings_frontend.php:347
52 | msgid "Last Name"
53 | msgstr "Last Name"
54 |
55 | #: bepro_listings_frontend.php:348
56 | msgid "Email"
57 | msgstr "Email"
58 |
59 | #: bepro_listings_frontend.php:349
60 | msgid "Phone"
61 | msgstr "Phone"
62 |
63 | #: bepro_listings_frontend.php:350
64 | msgid "Website"
65 | msgstr "Website"
66 |
67 | #: bepro_listings_frontend.php:356
68 | msgid "Location Information"
69 | msgstr "Location Information"
70 |
71 | #: bepro_listings_frontend.php:357
72 | msgid "Address"
73 | msgstr "Address"
74 |
75 | #: bepro_listings_frontend.php:358
76 | msgid "City"
77 | msgstr "City"
78 |
79 | #: bepro_listings_frontend.php:359
80 | msgid "State"
81 | msgstr "State"
82 |
83 | #: bepro_listings_frontend.php:360
84 | msgid "Country"
85 | msgstr "Country"
86 |
87 | #: bepro_listings_frontend.php:361
88 | msgid "Zip / Postal"
89 | msgstr "Zip / Postal"
90 |
91 | msgid "Filter Listings"
92 | msgstr "Filter Listings"
93 |
94 | msgid "Listings Map"
95 | msgstr "Listings Map"
96 |
97 | #: bepro_listings.php:261
98 | msgid "From"
99 | msgstr "From"
100 |
101 | #: bepro_listings.php:261
102 | msgid "To"
103 | msgstr "To"
104 |
105 | #: bepro_listings.php:264
106 | msgid "Date Range"
107 | msgstr "Date Range"
108 |
109 | #: bepro_listings.php:261
110 | msgid "Price Range"
111 | msgstr "Price Range"
112 |
113 | #: bepro_listings.php:268
114 | msgid "Refine Search"
115 | msgstr "Refine Search"
116 |
117 | #: bepro_listings.php:248
118 | msgid "Distance"
119 | msgstr "Distance"
120 |
121 | #: bepro_listings.php:79
122 | msgid "Where"
123 | msgstr "Where"
124 |
125 | #: bepro_listings.php:82
126 | msgid "Name"
127 | msgstr "Name"
128 |
129 | #: bepro_listings.php:85
130 | msgid "Search Listings"
131 | msgstr "Search Listings"
132 |
133 | #: bepro_listings_frontend.php:370
134 | msgid "Username"
135 | msgstr "Username"
136 |
137 | #: bepro_listings_frontend.php:371
138 | msgid "Password"
139 | msgstr "Password"
140 |
141 | #: bepro_listings_frontend.php:369
142 | msgid "Login / Register"
143 | msgstr "Login / Register"
144 |
145 | #: bepro_listings_frontend.php:375
146 | msgid "Create Listing"
147 | msgstr "Create Listing"
148 |
149 | #: bepro_listings.php:234
150 | msgid "Listing Types"
151 | msgstr "Listing Types"
152 |
153 | #: bepro_listings.php:276
154 | msgid "Free"
155 | msgstr "Free"
156 |
157 | #: bepro_listings.php:278
158 | msgid "Please Contact"
159 | msgstr "Please Contact"
160 |
161 | #: bepro_listings.php:285
162 | msgid "View Map"
163 | msgstr "View Map"
164 |
165 | #: ------------Admin Area---------------- bepro_listings_admin.php:258
166 | msgid "Show Cost"
167 | msgstr "Show Cost"
168 |
169 | #: bepro_listings_admin.php:259
170 | msgid "Show Contact"
171 | msgstr "Show Contact"
172 |
173 | #: bepro_listings_admin.php:260
174 | msgid "Show Geography"
175 | msgstr "Show Geography"
176 |
177 | #: bepro_listings_admin.php:261
178 | msgid "# Of Images"
179 | msgstr "# Of Images"
180 |
181 | #: bepro_listings_admin.php:274
182 | msgid "Validate Form"
183 | msgstr "Validate Form"
184 |
185 | #: bepro_listings_admin.php:275
186 | msgid "Default User Id"
187 | msgstr "Default User Id"
188 |
189 | #: bepro_listings_admin.php:276
190 | msgid "Success Message"
191 | msgstr "Success Message"
192 |
193 | #: bepro_listings_admin.php:279
194 | msgid "Default Listing Image"
195 | msgstr "Default Listing Image"
196 |
197 | #: bepro_listings_admin.php:280
198 | msgid "Default # Listings"
199 | msgstr "Default # Listings"
200 |
201 | #: bepro_listings_admin.php:288
202 | msgid "Default Search Distance (Mi)"
203 | msgstr "Default Search Distance (Mi)"
204 |
205 | #: bepro_listings_admin.php:299
206 | msgid "Gallery Size"
207 | msgstr "Gallery Size"
208 |
209 | #: bepro_listings_admin.php:305
210 | msgid "Show Details"
211 | msgstr "Show Details"
212 |
213 | #: bepro_listings_admin.php:306
214 | msgid "Show Content"
215 | msgstr "Show Content"
216 |
217 | #: bepro_listings_admin.php:319
218 | msgid "Our Link in your footer?"
219 | msgstr "Our Link in your footer?"
220 |
221 | #: templates\tabs\tab-comments.php:10
222 | msgid "Comments"
223 | msgstr "Comments"
224 |
225 | #: bepro_listings_frontend.php:729
226 | msgid "Details"
227 | msgstr "Details"
228 |
229 | #: bepro_listings_admin.php:613
230 | msgid "# Of Uploads"
231 | msgstr "# Of Uploads"
232 |
233 | #: bepro_listings_admin.php:625
234 | msgid "Category Heading"
235 | msgstr "Category Heading"
236 |
237 | #: bepro_listings_admin.php:626
238 | msgid "Category Empty"
239 | msgstr "Category Empty"
240 |
241 | #: bepro_listings_admin.php:627
242 | msgid "Category Singular"
243 | msgstr "Category Singular"
244 |
245 | #: bepro_listings_admin.php:628
246 | msgid "Days until Listings Expire?"
247 | msgstr "Days until Listings Expire?"
248 |
249 | #: bepro_listings_admin.php:633
250 | msgid "Default Status"
251 | msgstr "Default Status"
252 |
253 | #: bepro_listings_admin.php:638
254 | msgid "Fail Message"
255 | msgstr "Fail Message"
256 |
257 | #: bepro_listings_admin.php:639
258 | msgid "Required Categories"
259 | msgstr "Required Categories"
260 |
261 | #: bepro_listings_admin.php:640
262 | msgid "Exclude Categories"
263 | msgstr "Exclude Categories"
264 |
265 | #: bepro_listings_admin.php:644
266 | msgid "How Links Open"
267 | msgstr "How Links Open"
268 |
269 | #: bepro_listings_admin.php:650
270 | msgid "Ajax On?"
271 | msgstr "Ajax On?"
272 |
273 | #: bepro_listings_admin.php:671
274 | msgid "Name Search"
275 | msgstr "Name Search"
276 |
277 | #: bepro_listings_admin.php:677
278 | msgid "Title Length"
279 | msgstr "Title Length"
280 |
281 | #: bepro_listings_admin.php:678
282 | msgid "Details Link Text"
283 | msgstr "Details Link Text"
284 |
285 | #: bepro_listings_admin.php:679
286 | msgid "Show Website Link?"
287 | msgstr "Show Website Link?"
288 |
289 | #: bepro_listings_admin.php:680
290 | msgid "Currency Sign?"
291 | msgstr "Currency Sign?"
292 |
293 | #: bepro_listings_admin.php:681
294 | msgid "Show Date filter?"
295 | msgstr "Show Date filter?"
296 |
297 | #: bepro_listings_admin.php:691
298 | msgid "# Gallery Columns"
299 | msgstr "# Gallery Columns"
300 |
301 | #: bepro_listings_admin.php:697
302 | msgid "Links on Details"
303 | msgstr "Links on Details"
304 |
305 | #: bepro_listings_admin.php:698
306 | msgid "Protect Contact"
307 | msgstr "Protect Contact"
308 |
309 | #: bepro_listings_admin.php:700
310 | msgid "Tab Direction"
311 | msgstr "Tab Direction"
312 |
313 | #: bepro_listings_admin.php:706
314 | msgid "Query Type"
315 | msgstr "Query Type"
316 |
317 | #: bepro_listings_admin.php:716
318 | msgid "CSV File"
319 | msgstr "CSV File"
320 |
321 | #: bepro_listings_admin.php:717
322 | msgid "Delimiter"
323 | msgstr "Delimiter"
324 |
325 | #: bepro_listings_admin.php:732
326 | msgid "Accept Payments?"
327 | msgstr "Accept Payments?"
328 |
329 | #: bepro_listings_admin.php:740
330 | msgid "Publish after confirm Paid?"
331 | msgstr "Publish after confirm Paid?"
332 |
333 | #: ------------Front end---------------- templates/list.php:6
334 | msgid "My Item Listings"
335 | msgstr "My Item Listings"
336 |
337 | msgid "Status"
338 | msgstr "Status"
339 |
340 | msgid "Notices"
341 | msgstr "Notices"
342 |
343 | msgid "Actions"
344 | msgstr "Actions"
345 |
346 | #: templates/list.php:32
347 | msgid "View"
348 | msgstr "View"
349 |
350 | #: templates/list.php:32
351 | msgid "Edit"
352 | msgstr "Edit"
353 |
354 | #: templates/list.php:32
355 | msgid "Delete"
356 | msgstr "Delete"
357 |
358 | #: templates/list.php:22
359 | msgid "Expires"
360 | msgstr "Expires"
361 |
362 | #: templates/list.php:32
363 | msgid "Pay"
364 | msgstr "Expires"
365 |
366 | #: templates/list.php:50
367 | msgid "Wait"
368 | msgstr "Wait"
369 |
370 | #: templates/list.php:60
371 | msgid "No Live listings created"
372 | msgstr "No Live listings created"
373 |
374 | #: templates/list.php:62
375 | msgid "No live listings for this user"
376 | msgstr "No live listings for this user"
377 |
378 | #: ------------DASHBOARD---------------- admin/bepro_listings_dashboard.php:
379 | #: #BePro_Edits admin/bepro_listings_wizard.php:6
380 | msgid "Welcome to BePro Listings!"
381 | msgstr "Welcome to BePro Listings!"
382 |
383 | #: admin/bepro_listings_wizard.php:12
384 | msgid ""
385 | "Congratulations, you are now using the latest version of BePro Listings. "
386 | "With lots of ways to customize, this software is ideal for creating your "
387 | "custom directory listing needs. This page shows the new features packaged "
388 | "with the plugin."
389 | msgstr ""
390 | "Congratulations, you are now using the latest version of BePro Listings. "
391 | "With lots of ways to customize, this software is ideal for creating your "
392 | "custom directory listing needs. This page shows the new features packaged "
393 | "with the plugin."
394 |
395 | #: admin/bepro_listings_wizard.php:17
396 | msgid "What's New"
397 | msgstr "What's New"
398 |
399 | #: admin/bepro_listings_wizard.php:22
400 | msgid "You are using"
401 | msgstr "You are using"
402 |
403 | #: admin/bepro_listings_wizard.php:22
404 | msgid "BePro Listings Version:"
405 | msgstr "BePro Listings Version:"
406 |
407 | #: ------------INSTALLATION WIZARD----------------
408 | #: admin/bepro_listings_wizard.php admin/bepro_listings_wizard.php:6
409 | msgid "BePro Listings INSTALLATION WIZARD"
410 | msgstr "BePro Listings INSTALLATION WIZARD"
411 |
412 | #: admin/bepro_listings_wizard.php:7
413 | msgid "Use the following steps to help you setup BePro Listings. Otherwise,"
414 | msgstr "Use the following steps to help you setup BePro Listings. Otherwise,"
415 |
416 | #: admin/bepro_listings_wizard.php:7
417 | msgid "Click Here"
418 | msgstr "Click Here"
419 |
420 | #: admin/bepro_listings_wizard.php:7
421 | msgid "to skip"
422 | msgstr "to skip"
423 |
424 | #: admin/bepro_listings_wizard.php:47
425 | msgid "STEP 1: CREATE WORDPRESS PAGES"
426 | msgstr "STEP 1: CREATE WORDPRESS PAGES"
427 |
--------------------------------------------------------------------------------
/languages/bepro-listings-pt_PT.po:
--------------------------------------------------------------------------------
1 | # Translation for BePro Listings
2 | # Copyright (C) 2012 Beyond Programs LTD (beyondprograms.com)
3 | # This file is distributed under the same license as BePro Listings.
4 | # BePro Software Team , 2012.
5 | msgid ""
6 | msgstr ""
7 | "Project-Id-Version: BePro Listings Translation 1.0\n"
8 | "Report-Msgid-Bugs-To: translate-devel@lists.sourceforge.net\n"
9 | "POT-Creation-Date: 2012-09-14 16:20+0200\n"
10 | "PO-Revision-Date: 2015-04-18 09:04-0400\n"
11 | "Last-Translator: \n"
12 | "Language-Team: bepro software\n"
13 | "MIME-Version: 1.0\n"
14 | "Content-Type: text/plain; charset=UTF-8\n"
15 | "Content-Transfer-Encoding: 8bit\n"
16 | "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17 | "X-Generator: Poedit 1.5.7\n"
18 | "Language: pt_PT\n"
19 |
20 | msgid "Item Information"
21 | msgstr "Informação do Item"
22 |
23 | #: bepro_listings_frontend.php:321
24 | msgid "Item Name"
25 | msgstr "Nome do Item"
26 |
27 | #: bepro_listings_frontend.php:322
28 | msgid "Cost"
29 | msgstr "Valor"
30 |
31 | #: bepro_listings_frontend.php:323
32 | msgid "Description"
33 | msgstr "Descrição"
34 |
35 | #: bepro_listings_frontend.php:334
36 | msgid "Image"
37 | msgstr "Imagem"
38 |
39 | #: bepro_listings_frontend.php:324
40 | msgid "Categories"
41 | msgstr "Categorias"
42 |
43 | #: bepro_listings_frontend.php:345
44 | msgid "Contact Information"
45 | msgstr "Informação de Contato"
46 |
47 | #: bepro_listings_frontend.php:346
48 | msgid "First Name"
49 | msgstr "Nome"
50 |
51 | #: bepro_listings_frontend.php:347
52 | msgid "Last Name"
53 | msgstr "Sobrenome"
54 |
55 | #: bepro_listings_frontend.php:348
56 | msgid "Email"
57 | msgstr "Email"
58 |
59 | #: bepro_listings_frontend.php:349
60 | msgid "Phone"
61 | msgstr "Telefone"
62 |
63 | #: bepro_listings_frontend.php:350
64 | msgid "Website"
65 | msgstr "Website"
66 |
67 | #: bepro_listings_frontend.php:356
68 | msgid "Location Information"
69 | msgstr "Localização"
70 |
71 | #: bepro_listings_frontend.php:357
72 | msgid "Address"
73 | msgstr "Morada"
74 |
75 | #: bepro_listings_frontend.php:358
76 | msgid "City"
77 | msgstr "Cidade"
78 |
79 | #: bepro_listings_frontend.php:359
80 | msgid "State"
81 | msgstr "Distrito"
82 |
83 | #: bepro_listings_frontend.php:360
84 | msgid "Country"
85 | msgstr "País"
86 |
87 | #: bepro_listings_frontend.php:361
88 | msgid "Zip / Postal"
89 | msgstr "Código Postal"
90 |
91 | msgid "Filter Listings"
92 | msgstr "Listagem de Filtro"
93 |
94 | msgid "Listings Map"
95 | msgstr "Listagem de Mapa"
96 |
97 | #: bepro_listings.php:261
98 | msgid "From"
99 | msgstr "De"
100 |
101 | #: bepro_listings.php:261
102 | msgid "To"
103 | msgstr "Para"
104 |
105 | #: bepro_listings.php:264
106 | msgid "Date Range"
107 | msgstr "Intervalo de Data"
108 |
109 | #: bepro_listings.php:261
110 | msgid "Price Range"
111 | msgstr "Intervalo de Preço"
112 |
113 | #: bepro_listings.php:268
114 | msgid "Refine Search"
115 | msgstr "Refinar a pesquiza"
116 |
117 | #: bepro_listings.php:248
118 | msgid "Distance"
119 | msgstr "Distância"
120 |
121 | #: bepro_listings.php:79
122 | msgid "Where"
123 | msgstr "Onde"
124 |
125 | #: bepro_listings.php:82
126 | msgid "Name"
127 | msgstr "Nome"
128 |
129 | #: bepro_listings.php:85
130 | msgid "Search Listings"
131 | msgstr "Listagem de Pesquisa"
132 |
133 | #: bepro_listings_frontend.php:370
134 | msgid "Username"
135 | msgstr "Utilizador"
136 |
137 | #: bepro_listings_frontend.php:371
138 | msgid "Password"
139 | msgstr "Password"
140 |
141 | #: bepro_listings_frontend.php:369
142 | msgid "Login / Register"
143 | msgstr "Login / Registo"
144 |
145 | #: bepro_listings_frontend.php:375
146 | msgid "Create Listing"
147 | msgstr "Criar Listagem"
148 |
149 | #: bepro_listings.php:234
150 | msgid "Listing Types"
151 | msgstr "Tipos de listagem"
152 |
153 | #: bepro_listings.php:276
154 | msgid "Free"
155 | msgstr "Gratuito"
156 |
157 | #: bepro_listings.php:278
158 | msgid "Please Contact"
159 | msgstr "Por favor contate"
160 |
161 | #: bepro_listings.php:285
162 | msgid "View Map"
163 | msgstr "Ver Mapa"
164 |
165 | #: ------------Admin Area---------------- bepro_listings_admin.php:258
166 | msgid "Show Cost"
167 | msgstr "Mostrar Valor"
168 |
169 | #: bepro_listings_admin.php:259
170 | msgid "Show Contact"
171 | msgstr "Mostrar Contato"
172 |
173 | #: bepro_listings_admin.php:260
174 | msgid "Show Geography"
175 | msgstr "Mostrar Geografia"
176 |
177 | #: bepro_listings_admin.php:261
178 | msgid "# Of Images"
179 | msgstr "# de Imagens"
180 |
181 | #: bepro_listings_admin.php:274
182 | msgid "Validate Form"
183 | msgstr "Validar Formulário"
184 |
185 | #: bepro_listings_admin.php:275
186 | msgid "Default User Id"
187 | msgstr "ID de Utilizador por Omissão"
188 |
189 | #: bepro_listings_admin.php:276
190 | msgid "Success Message"
191 | msgstr "Mensagem de Sucesso"
192 |
193 | #: bepro_listings_admin.php:279
194 | msgid "Default Listing Image"
195 | msgstr "Listagem de Imagem Padrão"
196 |
197 | #: bepro_listings_admin.php:280
198 | msgid "Default # Listings"
199 | msgstr "Listagem # Padrão"
200 |
201 | #: bepro_listings_admin.php:288
202 | msgid "Default Search Distance (Mi)"
203 | msgstr "Pesquisa de Distância Padrão (Milhas)"
204 |
205 | #: bepro_listings_admin.php:299
206 | msgid "Gallery Size"
207 | msgstr "Tamanho da Galeria"
208 |
209 | #: bepro_listings_admin.php:305
210 | msgid "Show Details"
211 | msgstr "Mostrar Detalhes"
212 |
213 | #: bepro_listings_admin.php:306
214 | msgid "Show Content"
215 | msgstr "Mostrar Conteúdo"
216 |
217 | #: bepro_listings_admin.php:319
218 | msgid "Our Link in your footer?"
219 | msgstr "O nosso link no Rodapé?"
220 |
221 | #: templates\tabs\tab-comments.php:10
222 | msgid "Comments"
223 | msgstr "Comentários"
224 |
225 | #: bepro_listings_frontend.php:729
226 | msgid "Details"
227 | msgstr "Detalhes"
228 |
229 | #: bepro_listings_admin.php:613
230 | msgid "# Of Uploads"
231 | msgstr "# De Uploads"
232 |
233 | #: bepro_listings_admin.php:625
234 | msgid "Category Heading"
235 | msgstr "Categoria posição"
236 |
237 | #: bepro_listings_admin.php:626
238 | msgid "Category Empty"
239 | msgstr "Categoria vazia"
240 |
241 | #: bepro_listings_admin.php:627
242 | msgid "Category Singular"
243 | msgstr "Categoria Singular"
244 |
245 | #: bepro_listings_admin.php:628
246 | msgid "Days until Listings Expire?"
247 | msgstr "Dias até expirarem as listas?"
248 |
249 | #: bepro_listings_admin.php:633
250 | msgid "Default Status"
251 | msgstr "Status de padrão"
252 |
253 | #: bepro_listings_admin.php:638
254 | msgid "Fail Message"
255 | msgstr "Mensagem de falha"
256 |
257 | #: bepro_listings_admin.php:639
258 | msgid "Required Categories"
259 | msgstr "Categorias necessárias"
260 |
261 | #: bepro_listings_admin.php:640
262 | msgid "Exclude Categories"
263 | msgstr "Excluir categorias"
264 |
265 | #: bepro_listings_admin.php:644
266 | msgid "How Links Open"
267 | msgstr "Como abrem Links"
268 |
269 | #: bepro_listings_admin.php:650
270 | msgid "Ajax On?"
271 | msgstr "Ajax na?"
272 |
273 | #: bepro_listings_admin.php:671
274 | msgid "Name Search"
275 | msgstr "Pesquisa de nomes"
276 |
277 | #: bepro_listings_admin.php:677
278 | msgid "Title Length"
279 | msgstr "Comprimento do título"
280 |
281 | #: bepro_listings_admin.php:678
282 | msgid "Details Link Text"
283 | msgstr "Texto de Link detalhes"
284 |
285 | #: bepro_listings_admin.php:679
286 | msgid "Show Website Link?"
287 | msgstr "Mostrar o Link do site?"
288 |
289 | #: bepro_listings_admin.php:680
290 | msgid "Currency Sign?"
291 | msgstr "Sinal de moeda?"
292 |
293 | #: bepro_listings_admin.php:681
294 | msgid "Show Date filter?"
295 | msgstr "Filtro de data show?"
296 |
297 | #: bepro_listings_admin.php:691
298 | msgid "# Gallery Columns"
299 | msgstr "# Galeria colunas"
300 |
301 | #: bepro_listings_admin.php:697
302 | msgid "Links on Details"
303 | msgstr "Links em detalhes"
304 |
305 | #: bepro_listings_admin.php:698
306 | msgid "Protect Contact"
307 | msgstr "Proteger o contato"
308 |
309 | #: bepro_listings_admin.php:700
310 | msgid "Tab Direction"
311 | msgstr "Guia de direção"
312 |
313 | #: bepro_listings_admin.php:706
314 | msgid "Query Type"
315 | msgstr "Tipo de consulta"
316 |
317 | #: bepro_listings_admin.php:716
318 | msgid "CSV File"
319 | msgstr "Arquivo CSV"
320 |
321 | #: bepro_listings_admin.php:717
322 | msgid "Delimiter"
323 | msgstr "Delimitador"
324 |
325 | #: bepro_listings_admin.php:732
326 | msgid "Accept Payments?"
327 | msgstr "Aceitar pagamentos?"
328 |
329 | #: bepro_listings_admin.php:740
330 | msgid "Publish after confirm Paid?"
331 | msgstr "Publicar após confirma o pagamento?"
332 |
333 | #: ------------Front end---------------- templates/list.php:6
334 | msgid "My Item Listings"
335 | msgstr "Minhas listas de Item"
336 |
337 | msgid "Status"
338 | msgstr "Status"
339 |
340 | msgid "Notices"
341 | msgstr "Avisos"
342 |
343 | msgid "Actions"
344 | msgstr "Ações"
345 |
346 | #: templates/list.php:32
347 | msgid "View"
348 | msgstr "Vista"
349 |
350 | #: templates/list.php:32
351 | msgid "Edit"
352 | msgstr "Editar"
353 |
354 | #: templates/list.php:32
355 | msgid "Delete"
356 | msgstr "Excluir"
357 |
358 | #: templates/list.php:22
359 | msgid "Expires"
360 | msgstr "Expira"
361 |
362 | #: templates/list.php:32
363 | msgid "Pay"
364 | msgstr "Pagar"
365 |
366 | #: templates/list.php:50
367 | msgid "Wait"
368 | msgstr "Esperar"
369 |
370 | #: templates/list.php:60
371 | msgid "No Live listings created"
372 | msgstr "Sem anúncios ao vivo criados"
373 |
374 | #: templates/list.php:62
375 | msgid "No live listings for this user"
376 | msgstr "Não há anúncios ao vivo para este usuário"
377 |
378 | #: ------------DASHBOARD---------------- admin/bepro_listings_dashboard.php
379 | #: admin/bepro_listings_wizard.php:6
380 | msgid "Welcome to BePro Listings!"
381 | msgstr "Bem-vindo ao BePro Listings!"
382 |
383 | #: admin/bepro_listings_wizard.php:12
384 | msgid ""
385 | "Congratulations, you are now using the latest version of BePro Listings. "
386 | "With lots of ways to customize, this software is ideal for creating your "
387 | "custom directory listing needs. This page shows the new features packaged "
388 | "with the plugin."
389 | msgstr ""
390 | "Parabéns, você agora está usando a versão mais recente de BePro Listings. "
391 | "Com muitas maneiras de personalizar, este software é ideal para criar o "
392 | "diretório personalizado lista de necessidades. Esta página mostra os novos "
393 | "recursos, embalados com o plugin."
394 |
395 | #: admin/bepro_listings_wizard.php:17
396 | msgid "What's New"
397 | msgstr "O que há de novo"
398 |
399 | #: admin/bepro_listings_wizard.php:22
400 | msgid "You are using"
401 | msgstr "Você está usando"
402 |
403 | #: admin/bepro_listings_wizard.php:22
404 | msgid "BePro Listings Version:"
405 | msgstr "BePro Listings Versão:"
406 |
407 | #: ------------INSTALLATION WIZARD----------------
408 | #: admin/bepro_listings_wizard.php admin/bepro_listings_wizard.php:6
409 | msgid "BePro Listings INSTALLATION WIZARD"
410 | msgstr "BePro Listings ASSISTENTE DE INSTALAÇÃO"
411 |
412 | #: admin/bepro_listings_wizard.php:7
413 | msgid "Use the following steps to help you setup BePro Listings. Otherwise,"
414 | msgstr ""
415 | "Use as seguintes etapas para ajudá-lo, as listas de BePro Listings. Caso "
416 | "contrário,"
417 |
418 | #: admin/bepro_listings_wizard.php:7
419 | msgid "Click Here"
420 | msgstr "Clique aqui"
421 |
422 | #: admin/bepro_listings_wizard.php:7
423 | msgid "to skip"
424 | msgstr "para ignorar a"
425 |
426 | #: admin/bepro_listings_wizard.php:47
427 | msgid "STEP 1: CREATE WORDPRESS PAGES"
428 | msgstr "ETAPA 1: CRIAR PÁGINAS DE WORDPRESS"
429 |
--------------------------------------------------------------------------------
/languages/bepro-listings-es_ES.po:
--------------------------------------------------------------------------------
1 | # Translation for BePro Listings
2 | # Copyright (C) 2012 Beyond Programs LTD (beyondprograms.com)
3 | # This file is distributed under the same license as BePro Listings.
4 | # BePro Software Team , 2012.
5 | msgid ""
6 | msgstr ""
7 | "Project-Id-Version: BePro Listings Translation 1.0\n"
8 | "Report-Msgid-Bugs-To: translate-devel@lists.sourceforge.net\n"
9 | "POT-Creation-Date: 2012-09-14 16:20+0200\n"
10 | "PO-Revision-Date: 2015-04-18 09:04-0400\n"
11 | "Last-Translator: BePro Software Team \n"
12 | "Language-Team: bepro software\n"
13 | "Language: es\n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18 | "X-Generator: Poedit 1.5.7\n"
19 |
20 | msgid "Item Information"
21 | msgstr "Información de elemento"
22 |
23 | #: bepro_listings_frontend.php:321
24 | msgid "Item Name"
25 | msgstr "Nombre del elemento"
26 |
27 | #: bepro_listings_frontend.php:322
28 | msgid "Cost"
29 | msgstr "Costo"
30 |
31 | #: bepro_listings_frontend.php:323
32 | msgid "Description"
33 | msgstr "Descripción"
34 |
35 | #: bepro_listings_frontend.php:334
36 | msgid "Image"
37 | msgstr "Imagen"
38 |
39 | #: bepro_listings_frontend.php:324
40 | msgid "Categories"
41 | msgstr "Categorías"
42 |
43 | #: bepro_listings_frontend.php:345
44 | msgid "Contact Information"
45 | msgstr "Información de contacto"
46 |
47 | #: bepro_listings_frontend.php:346
48 | msgid "First Name"
49 | msgstr "Primer nombre"
50 |
51 | #: bepro_listings_frontend.php:347
52 | msgid "Last Name"
53 | msgstr "Apellido"
54 |
55 | #: bepro_listings_frontend.php:348
56 | msgid "Email"
57 | msgstr "Correo electrónico"
58 |
59 | #: bepro_listings_frontend.php:349
60 | msgid "Phone"
61 | msgstr "Teléfono"
62 |
63 | #: bepro_listings_frontend.php:350
64 | msgid "Website"
65 | msgstr "Sitio Web"
66 |
67 | #: bepro_listings_frontend.php:356
68 | msgid "Location Information"
69 | msgstr "Información de ubicación"
70 |
71 | #: bepro_listings_frontend.php:357
72 | msgid "Address"
73 | msgstr "Dirección"
74 |
75 | #: bepro_listings_frontend.php:358
76 | msgid "City"
77 | msgstr "Ciudad"
78 |
79 | #: bepro_listings_frontend.php:359
80 | msgid "State"
81 | msgstr "Estado"
82 |
83 | #: bepro_listings_frontend.php:360
84 | msgid "Country"
85 | msgstr "País"
86 |
87 | #: bepro_listings_frontend.php:361
88 | msgid "Zip / Postal"
89 | msgstr "Zip / Postal"
90 |
91 | msgid "Filter Listings"
92 | msgstr "Anuncios de filtro"
93 |
94 | msgid "Listings Map"
95 | msgstr "Mapa de anuncios"
96 |
97 | #: bepro_listings.php:261
98 | msgid "From"
99 | msgstr "De"
100 |
101 | #: bepro_listings.php:261
102 | msgid "To"
103 | msgstr "Para"
104 |
105 | #: bepro_listings.php:264
106 | msgid "Date Range"
107 | msgstr "Intervalo de fechas"
108 |
109 | #: bepro_listings.php:261
110 | msgid "Price Range"
111 | msgstr "Rango de precios"
112 |
113 | #: bepro_listings.php:268
114 | msgid "Refine Search"
115 | msgstr "Afinar la búsqueda"
116 |
117 | #: bepro_listings.php:248
118 | msgid "Distance"
119 | msgstr "Distancia"
120 |
121 | #: bepro_listings.php:79
122 | msgid "Where"
123 | msgstr "Donde"
124 |
125 | #: bepro_listings.php:82
126 | msgid "Name"
127 | msgstr "Nombre"
128 |
129 | #: bepro_listings.php:85
130 | msgid "Search Listings"
131 | msgstr "Anuncios de búsqueda"
132 |
133 | #: bepro_listings_frontend.php:370
134 | msgid "Username"
135 | msgstr "Nombre de usuario"
136 |
137 | #: bepro_listings_frontend.php:371
138 | msgid "Password"
139 | msgstr "Contraseña"
140 |
141 | #: bepro_listings_frontend.php:369
142 | msgid "Login / Register"
143 | msgstr "Inicio de sesión / Registro"
144 |
145 | #: bepro_listings_frontend.php:375
146 | msgid "Create Listing"
147 | msgstr "Crear anuncio"
148 |
149 | #: bepro_listings.php:234
150 | msgid "Listing Types"
151 | msgstr "Tipos de anuncio"
152 |
153 | #: bepro_listings.php:276
154 | msgid "Free"
155 | msgstr "Libre"
156 |
157 | #: bepro_listings.php:278
158 | msgid "Please Contact"
159 | msgstr "Por favor contacto"
160 |
161 | #: bepro_listings.php:285
162 | msgid "View Map"
163 | msgstr "Vista de mapa"
164 |
165 | #: ------------Admin Area---------------- bepro_listings_admin.php:258
166 | msgid "Show Cost"
167 | msgstr "Mostrar coste"
168 |
169 | #: bepro_listings_admin.php:259
170 | msgid "Show Contact"
171 | msgstr "Mostrar contacto"
172 |
173 | #: bepro_listings_admin.php:260
174 | msgid "Show Geography"
175 | msgstr "Mostrar Geografía"
176 |
177 | #: bepro_listings_admin.php:261
178 | msgid "# Of Images"
179 | msgstr "# de imágenes"
180 |
181 | #: bepro_listings_admin.php:274
182 | msgid "Validate Form"
183 | msgstr "Validar formulario"
184 |
185 | #: bepro_listings_admin.php:275
186 | msgid "Default User Id"
187 | msgstr "Default User Id"
188 |
189 | #: bepro_listings_admin.php:276
190 | msgid "Success Message"
191 | msgstr "Mensaje de éxito"
192 |
193 | #: bepro_listings_admin.php:279
194 | msgid "Default Listing Image"
195 | msgstr "Imagen de la lista"
196 |
197 | #: bepro_listings_admin.php:280
198 | msgid "Default # Listings"
199 | msgstr "Default # anuncios"
200 |
201 | #: bepro_listings_admin.php:288
202 | msgid "Default Search Distance (Mi)"
203 | msgstr "Distancia de búsqueda (Mi)"
204 |
205 | #: bepro_listings_admin.php:299
206 | msgid "Gallery Size"
207 | msgstr "Tamaño de la Galería"
208 |
209 | #: bepro_listings_admin.php:305
210 | msgid "Show Details"
211 | msgstr "Mostrar detalles"
212 |
213 | #: bepro_listings_admin.php:306
214 | msgid "Show Content"
215 | msgstr "Mostrar contenido"
216 |
217 | #: bepro_listings_admin.php:319
218 | msgid "Our Link in your footer?"
219 | msgstr "¿Nuestro enlace bajo del página?"
220 |
221 | #: templates\tabs\tab-comments.php:10
222 | msgid "Comments"
223 | msgstr "Comentarios"
224 |
225 | #: bepro_listings_frontend.php:729
226 | msgid "Details"
227 | msgstr "Detalles"
228 |
229 | #: bepro_listings_admin.php:613
230 | msgid "# Of Uploads"
231 | msgstr "# De cargas"
232 |
233 | #: bepro_listings_admin.php:625
234 | msgid "Category Heading"
235 | msgstr "Título de la categoría"
236 |
237 | #: bepro_listings_admin.php:626
238 | msgid "Category Empty"
239 | msgstr "Categoría vacía"
240 |
241 | #: bepro_listings_admin.php:627
242 | msgid "Category Singular"
243 | msgstr "Categoría Singular"
244 |
245 | #: bepro_listings_admin.php:628
246 | msgid "Days until Listings Expire?"
247 | msgstr "¿Días hasta anuncios expiran?"
248 |
249 | #: bepro_listings_admin.php:633
250 | msgid "Default Status"
251 | msgstr "Statut par défautaEstado predeterminado"
252 |
253 | #: bepro_listings_admin.php:638
254 | msgid "Fail Message"
255 | msgstr "Dejar mensaje"
256 |
257 | #: bepro_listings_admin.php:639
258 | msgid "Required Categories"
259 | msgstr "Categorías requiere"
260 |
261 | #: bepro_listings_admin.php:640
262 | msgid "Exclude Categories"
263 | msgstr "Excluir categorías"
264 |
265 | #: bepro_listings_admin.php:644
266 | msgid "How Links Open"
267 | msgstr "¿Cómo abran enlaces"
268 |
269 | #: bepro_listings_admin.php:650
270 | msgid "Ajax On?"
271 | msgstr "¿Ajax en?"
272 |
273 | #: bepro_listings_admin.php:671
274 | msgid "Name Search"
275 | msgstr "Búsqueda de nombres"
276 |
277 | #: bepro_listings_admin.php:677
278 | msgid "Title Length"
279 | msgstr "Título duración"
280 |
281 | #: bepro_listings_admin.php:678
282 | msgid "Details Link Text"
283 | msgstr "Texto de enlace de datos"
284 |
285 | #: bepro_listings_admin.php:679
286 | msgid "Show Website Link?"
287 | msgstr "¿Enlace al sitio web Mostrar?"
288 |
289 | #: bepro_listings_admin.php:680
290 | msgid "Currency Sign?"
291 | msgstr "¿Signo de moneda?"
292 |
293 | #: bepro_listings_admin.php:681
294 | msgid "Show Date filter?"
295 | msgstr "¿Un filtro de fecha Mostrar?"
296 |
297 | #: bepro_listings_admin.php:691
298 | msgid "# Gallery Columns"
299 | msgstr "# Galería columnas"
300 |
301 | #: bepro_listings_admin.php:697
302 | msgid "Links on Details"
303 | msgstr "Enlaces sobre información"
304 |
305 | #: bepro_listings_admin.php:698
306 | msgid "Protect Contact"
307 | msgstr "Proteger contacto"
308 |
309 | #: bepro_listings_admin.php:700
310 | msgid "Tab Direction"
311 | msgstr "Pestaña dirección"
312 |
313 | #: bepro_listings_admin.php:706
314 | msgid "Query Type"
315 | msgstr "Tipo de consulta"
316 |
317 | #: bepro_listings_admin.php:716
318 | msgid "CSV File"
319 | msgstr "Archivo CSV"
320 |
321 | #: bepro_listings_admin.php:717
322 | msgid "Delimiter"
323 | msgstr "Delimitador"
324 |
325 | #: bepro_listings_admin.php:732
326 | msgid "Accept Payments?"
327 | msgstr "¿Aceptar pagos?"
328 |
329 | #: bepro_listings_admin.php:740
330 | msgid "Publish after confirm Paid?"
331 | msgstr "¿Publicar después confirmar pago?"
332 |
333 | #: ------------Front end---------------- templates/list.php:6
334 | msgid "My Item Listings"
335 | msgstr "Mis anuncios"
336 |
337 | msgid "Status"
338 | msgstr "Estado"
339 |
340 | msgid "Notices"
341 | msgstr "Avisos"
342 |
343 | msgid "Actions"
344 | msgstr "Acciones"
345 |
346 | #: templates/list.php:32
347 | msgid "View"
348 | msgstr "Vista"
349 |
350 | #: templates/list.php:32
351 | msgid "Edit"
352 | msgstr "Editar"
353 |
354 | #: templates/list.php:32
355 | msgid "Delete"
356 | msgstr "Borrar"
357 |
358 | #: templates/list.php:22
359 | msgid "Expires"
360 | msgstr "Expira"
361 |
362 | #: templates/list.php:32
363 | msgid "Pay"
364 | msgstr "Pagar"
365 |
366 | #: templates/list.php:50
367 | msgid "Wait"
368 | msgstr "Espera"
369 |
370 | #: templates/list.php:60
371 | msgid "No Live listings created"
372 | msgstr "No hay anuncios vivos creados"
373 |
374 | #: templates/list.php:62
375 | msgid "No live listings for this user"
376 | msgstr "No hay anuncios de este usuario vivos"
377 |
378 | #: ------------DASHBOARD---------------- admin/bepro_listings_dashboard.php:
379 | #: #BePro_Edits admin/bepro_listings_wizard.php:6
380 | msgid "Welcome to BePro Listings!"
381 | msgstr "¡ Bienvenido a BePro Listings!"
382 |
383 | #: admin/bepro_listings_wizard.php:12
384 | msgid ""
385 | "Congratulations, you are now using the latest version of BePro Listings. "
386 | "With lots of ways to customize, this software is ideal for creating your "
387 | "custom directory listing needs. This page shows the new features packaged "
388 | "with the plugin."
389 | msgstr ""
390 | "Felicitaciones, ahora está utilizando la última versión de BePro Listings. "
391 | "Con un montón de maneras de personalizar, este software es ideal para crear "
392 | "el directorio personalizado de listado de necesidades. Esta página muestra "
393 | "las nuevas características de empaquetado con el plugin."
394 |
395 | #: admin/bepro_listings_wizard.php:17
396 | msgid "What's New"
397 | msgstr "Que nuevo"
398 |
399 | #: admin/bepro_listings_wizard.php:22
400 | msgid "You are using"
401 | msgstr "Usted está usando"
402 |
403 | #: admin/bepro_listings_wizard.php:22
404 | msgid "BePro Listings Version:"
405 | msgstr "BePro Listings Versión:"
406 |
407 | #: ------------INSTALLATION WIZARD----------------
408 | #: admin/bepro_listings_wizard.php admin/bepro_listings_wizard.php:6
409 | msgid "BePro Listings INSTALLATION WIZARD"
410 | msgstr "BePro Listings ASISTENTE DE INSTALACIÓN"
411 |
412 | #: admin/bepro_listings_wizard.php:7
413 | msgid "Use the following steps to help you setup BePro Listings. Otherwise,"
414 | msgstr ""
415 | "Utilice los pasos siguientes para ayudarle a configurar BePro Listings. De "
416 | "lo contrario,"
417 |
418 | #: admin/bepro_listings_wizard.php:7
419 | msgid "Click Here"
420 | msgstr "Haga clic aquí"
421 |
422 | #: admin/bepro_listings_wizard.php:7
423 | msgid "to skip"
424 | msgstr "para saltar"
425 |
426 | #: admin/bepro_listings_wizard.php:47
427 | msgid "STEP 1: CREATE WORDPRESS PAGES"
428 | msgstr "PASO 1: CREAR PÁGINAS DE WORDPRESS"
429 |
--------------------------------------------------------------------------------
/bepro-listings-bp.php:
--------------------------------------------------------------------------------
1 | displayed_user->id;
14 |
15 | // get records
16 | $data = get_option("bepro_listings");
17 | if(@$data["require_payment"]){
18 | $items = $wpdb->get_results("SELECT geo.*, orders.status as order_status, orders.expires, wp_posts.post_title, wp_posts.post_status FROM ".$wpdb->prefix.BEPRO_LISTINGS_TABLE_NAME." as geo
19 | LEFT JOIN ".$wpdb->prefix."posts as wp_posts on wp_posts.ID = geo.post_id
20 | LEFT JOIN ".BEPRO_LISTINGS_ORDERS_TABLE_NAME." AS orders on orders.bl_order_id = geo.bl_order_id WHERE wp_posts.post_status != 'trash' AND wp_posts.post_author = ".$user_id);
21 | }else{
22 | $items = $wpdb->get_results("SELECT geo.*, wp_posts.post_title, wp_posts.post_status FROM ".$wpdb->prefix.BEPRO_LISTINGS_TABLE_NAME." as geo
23 | LEFT JOIN ".$wpdb->prefix."posts as wp_posts on wp_posts.ID = geo.post_id WHERE wp_posts.post_status != 'trash' AND wp_posts.post_author = ".$user_id);
24 | }
25 |
26 | $listing_url = $bp->loggedin_user->domain.$bp->current_component."/".BEPRO_LISTINGS_CREATE_SLUG."/";
27 |
28 | //allow addons to override create listing button. The default for buddypress is to not have a button
29 | $add_new_button = apply_filters("bl_change_add_listing_button", false, $listing_url);
30 | if($add_new_button && bp_is_my_profile())
31 | echo $add_new_button;
32 |
33 | //allow addons to change profile template
34 | $bl_my_list_template = apply_filters("bl_change_my_list_template",dirname( __FILE__ ) . '/templates/list.php', $items);
35 | if($bl_my_list_template)
36 | require( $bl_my_list_template );
37 | }
38 |
39 | function show_visitor_profile($template, $items){
40 | $ids = array();
41 | foreach($items as $item){
42 | $ids[] = $item->post_id;
43 | }
44 | echo "My Listings ";
45 | if((sizeof($ids) > 0) && ($ids[0] != NULL)){
46 | echo do_shortcode("[display_listings l_ids='".implode(",", $ids)."' type='2' show_paging=1]");
47 | }else{
48 | echo "".__("No live listings for this user","bepro-listings")."
";
49 | }
50 | echo "
";
51 | return "";
52 | }
53 |
54 | function create_listings() {
55 | global $wpdb, $bp;
56 | $current_user = wp_get_current_user();
57 |
58 | //categories
59 |
60 | $user_ID = $bp->displayed_user->id;
61 | if(isset($_POST["save_bepro_listing"]) && !empty($_POST["save_bepro_listing"])){
62 | $success = false;
63 | $success = bepro_listings_save();
64 | if($success)
65 | $message = urlencode(__("Success saving listing","bepro-listings"));
66 | else
67 | $message = urlencode(__("Error saving listing","bepro-listings"));
68 | $current_user = wp_get_current_user();
69 | $bp_profile_link = bp_core_get_user_domain( $bp->displayed_user->id);
70 | wp_redirect($bp_profile_link . BEPRO_LISTINGS_SLUG ."?message=".$message);
71 | exit;
72 |
73 | }elseif(isset($bp->action_variables[0]) && ($bp->current_action == BEPRO_LISTINGS_CREATE_SLUG)){
74 | add_action( 'bp_template_content', 'update_listing_content' );
75 | }else{
76 | add_action( 'bp_template_content', 'create_listing_content' );
77 | }
78 | bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) );
79 | }
80 |
81 | function create_listing_content(){
82 | global $bp;
83 | //get settings
84 | $data = get_option("bepro_listings");
85 | $default_user_id = $data["default_user_id"];
86 | $num_images = $data["num_images"];
87 | $validate = $data["validate_form"];
88 | $show_cost = $data["show_cost"];
89 | $show_con = $data["show_con"];
90 | $show_geo = $data["show_geo"];
91 |
92 | $listing_url = $bp->loggedin_user->domain.$bp->current_component;
93 | $frontend_form = dirname( __FILE__ )."/templates/form.php";
94 | $frontend_form = apply_filters("bl_change_upload_form", $frontend_form);
95 | if($frontend_form)
96 | require( $frontend_form );
97 | }
98 |
99 | function update_listing_content(){
100 | global $wpdb, $bp, $post;
101 | $data = get_option("bepro_listings");
102 | $listing_url = $bp->loggedin_user->domain.$bp->current_component."/";
103 | //get information
104 | $item = $wpdb->get_row("SELECT * FROM ".$wpdb->prefix.BEPRO_LISTINGS_TABLE_NAME." WHERE id = ".$bp->action_variables[0]);
105 | if(!$item){
106 | header("Location: ".$listing_url."?message=Listing Does not exist");
107 | exit;
108 | }
109 | $post_data = get_post($item->post_id);
110 | $user_id = get_current_user_id();
111 | if($post_data->post_author != $user_id){
112 | header("Location: ".$listing_url."?message=".__("You do not own this listing","bepro-listings"));
113 | exit;
114 | }
115 | //get categories
116 | $raw_categories = listing_types_by_post($item->post_id);
117 | $categories = array();
118 | if($raw_categories){
119 | foreach($raw_categories as $category) {
120 | $categories[$category->term_id] = $category->term_id;
121 | }
122 | }
123 | $args = array(
124 | 'numberposts' => -1,
125 | 'post_parent' => $item->post_id,
126 | 'post_type' => 'attachment'
127 | );
128 | //get images
129 | $attachments = get_posts($args);
130 | $thunmbnails = array();
131 | $file_icons = array("application/pdf" => "document.png", "text/plain" => "text.png", "text/csv" => "spreadsheet.png","application/rar" => "archive.png", "application/x-tar" => "archive.png", "application/zip" => "archive.png", "application/x-gzip" => "archive.png","application/x-7z-compressed" => "archive.png","application/msword" => "document.png","application/vnd.oasis.opendocument.text" => "document.png","application/vnd.oasis.opendocument.presentation" => "text.png","application/vnd.oasis.opendocument.spreadsheet" => "interactive.png","application/vnd.oasis.opendocument.graphics" => "interactive.png", "application/vnd.oasis.opendocument.chart" => "spreadsheet.png","application/wordperfect" => "document.png", "video/x-ms-asf" => "video.png", "video/x-ms-wmv" => "video.png", "video/x-ms-wmx" => "video.png", "video/x-ms-wm" => "video.png", "video/avi" => "video.png", "video/divx" => "video.png","video/x-flv" => "video.png", "video/quicktime" => "video.png", "video/mpeg" => "video.png", "video/mp4" => "video.png", "video/ogg" => "video.png", "video/webm" => "video.png", "video/x-matroska" => "video.png");
132 | if($attachments){
133 | foreach ($attachments as $attachment) {
134 | $image = wp_get_attachment_image_src($attachment->ID,'thumbnail', false);
135 | if(!$image){
136 | $p_type = get_post_mime_type($attachment->ID);
137 | $f_type = empty($file_icons[$p_type])? "text.png":$file_icons[$p_type];
138 | $image[0] = get_bloginfo("wpurl")."/wp-includes/images/crystal/".$f_type;
139 | }
140 | $image[4] = $attachment->ID;
141 | $image[5] = basename ( get_attached_file( $attachment->ID ) );
142 | $thunmbnails[] = $image;
143 | }
144 | }
145 |
146 | //get settings
147 | $data = get_option("bepro_listings");
148 | $default_user_id = $data["default_user_id"];
149 | $num_images = $data["num_images"];
150 | $validate = $data["validate_form"];
151 | $show_cost = $data["show_cost"];
152 | $show_con = $data["show_con"];
153 | $show_geo = $data["show_geo"];
154 | $cat_drop = $data["cat_drop"];
155 |
156 | $siteNo = $bp->groups->current_group->id;
157 | $listing_url = $bp->loggedin_user->domain.BEPRO_LISTINGS_SLUG."/";
158 |
159 | $frontend_form = dirname( __FILE__ )."/templates/form.php";
160 | $frontend_form = apply_filters("bl_change_upload_form", $frontend_form);
161 | if($frontend_form)
162 | require( $frontend_form );
163 | }
164 |
165 | /**
166 | * Get the current view type when the item type is 'group'
167 | *
168 | * @package BuddyPress Docs
169 | * @since 1.0-beta
170 | */
171 | function get_current_view( ) {
172 | global $bp;
173 |
174 | if ( empty( $bp->action_variables[0] ) ) {
175 | // An empty $bp->action_variables[0] means that you're looking at a list
176 | $view = 'list';
177 | } else if ( $bp->action_variables[0] == "create" ) {
178 | // Create new doc
179 | $view = 'create';
180 | } else if ( !empty( $bp->action_variables[1] ) && $bp->action_variables[1] == "edit" ) {
181 | // Create new doc
182 | $view = 'edit';
183 | }
184 |
185 |
186 | return $view;
187 | }
188 |
189 | // Set up Cutsom BP navigation
190 | function bepro_listings_nav() {
191 | global $bp;
192 | $settings_link = $bp->loggedin_user->domain . BEPRO_LISTINGS_SLUG. '/';
193 |
194 | bp_core_new_nav_item( array(
195 | 'name' => __( BEPRO_LISTINGS_SLUG, 'buddypress' ),
196 | 'slug' => BEPRO_LISTINGS_SLUG,
197 | 'position' => 20,
198 | 'default_subnav_slug' => 'List',
199 | 'screen_function' => 'display_item_list'
200 | ) );
201 |
202 | bp_core_new_subnav_item( array( 'name' => __( BEPRO_LISTINGS_LIST_SLUG, 'buddypress' ), 'slug' => BEPRO_LISTINGS_LIST_SLUG, 'parent_url' => $settings_link, 'parent_slug' => BEPRO_LISTINGS_SLUG, 'screen_function' => 'display_item_list', 'position' => 10) );
203 |
204 | //if there is a 3rd party plugin which takes over the creation of listings, then don't show the button
205 | $add_new_button = apply_filters("bl_change_add_listing_button", false, $listing_url);
206 | $item_css_id = "";
207 | if($add_new_button){
208 | $item_css_id = "bl_hide_bp_create_menu";
209 | }
210 |
211 | bp_core_new_subnav_item( array( 'name' => __( BEPRO_LISTINGS_CREATE_SLUG, 'buddypress' ), 'slug' => BEPRO_LISTINGS_CREATE_SLUG, 'parent_url' => $settings_link, 'parent_slug' => BEPRO_LISTINGS_SLUG, 'screen_function' => 'create_listings', 'position' => false, 'user_has_access' => bp_is_my_profile(), 'item_css_id' => $item_css_id) );
212 |
213 |
214 | // Change the order of menu items
215 | $bp->bp_nav[BEPRO_LISTINGS_SLUG]['position'] = 100;
216 | bepro_listings_nav_count();
217 |
218 | }
219 |
220 | function bepro_listings_nav_count() {
221 | global $bp, $wpdb;
222 |
223 | $user_id = $bp->displayed_user->id;
224 | // This will probably only work on BP 1.3+
225 | if ( !empty( $bp->bp_nav[BEPRO_LISTINGS_SLUG]) && $user_id && (is_numeric($user_id))) {
226 | $current_tab_name = $bp->bp_nav[BEPRO_LISTINGS_SLUG]['name'];
227 |
228 | $item_count = $wpdb->get_row("SELECT count(*) as item_count FROM ".$wpdb->prefix.BEPRO_LISTINGS_TABLE_NAME." as geo
229 | LEFT JOIN ".$wpdb->prefix."posts as wp_posts on wp_posts.ID = geo.post_id WHERE wp_posts.post_status != 'trash' AND wp_posts.post_author = ".$user_id);
230 |
231 | if($item_count) $item_count = $item_count->item_count;
232 |
233 | $bp->bp_nav[BEPRO_LISTINGS_SLUG]['name'] = sprintf( __( '%s %d ', BEPRO_LISTINGS_SLUG ), $current_tab_name, $item_count );
234 | }
235 | }
236 |
237 | bepro_listings_nav();
238 |
239 | function bepro_listings_bp_activity_publish( $post_types ) {
240 | $post_types[] = 'bepro_listings';
241 | return $post_types;
242 | }
243 |
244 | function bepro_listings_bp_activity_action( $activity_action, $post, $post_permalink ) {
245 | global $bp;
246 | if( $post->post_type == 'bepro_listings' ) {
247 | if ( is_multisite() )
248 | $activity_action = sprintf( __( '%1$s created a new listing, %2$s, on the site %3$s', 'bepro_listings' ), bp_core_get_userlink( (int) $post->post_author ), '' . $post->post_title . '', '' . get_blog_option( $blog_id, 'blogname' ) . '' );
249 | else
250 | $activity_action = sprintf( __( '%1$s created a new listing, %2$s', 'bepro_listings' ), bp_core_get_userlink( (int) $post->post_author ), '' . $post->post_title . '' );
251 |
252 | }
253 |
254 | return $activity_action;
255 | }
256 |
257 | ?>
258 |
--------------------------------------------------------------------------------
/languages/bepro-listings-fr_FR.po:
--------------------------------------------------------------------------------
1 | # Translation for BePro Listings
2 | # Copyright (C) 2012 Beyond Programs LTD (beyondprograms.com)
3 | # This file is distributed under the same license as BePro Listings.
4 | # BePro Software Team , 2012.
5 | msgid ""
6 | msgstr ""
7 | "Project-Id-Version: BePro Listings Translation 1.0\n"
8 | "Report-Msgid-Bugs-To: translate-devel@lists.sourceforge.net\n"
9 | "POT-Creation-Date: 2012-09-14 16:20+0200\n"
10 | "PO-Revision-Date: 2015-07-07 00:20-0300\n"
11 | "Last-Translator: David MT \n"
12 | "Language-Team: bepro software\n"
13 | "Language: fr\n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18 | "X-Generator: Poedit 1.8.2\n"
19 |
20 | msgid "Item Information"
21 | msgstr "Élément Information"
22 |
23 | #: wpGoogleMaps.php:882
24 | msgid "Item Name"
25 | msgstr "Nom de l'élément"
26 |
27 | #: wpGoogleMaps.php:882
28 | msgid "Cost"
29 | msgstr "Coût"
30 |
31 | msgid "Description"
32 | msgstr "Description"
33 |
34 | msgid "Image"
35 | msgstr "Image"
36 |
37 | msgid "Categories"
38 | msgstr "Catégories"
39 |
40 | msgid "Contact Information"
41 | msgstr "Information de contact"
42 |
43 | msgid "First Name"
44 | msgstr "Prénom"
45 |
46 | msgid "Last Name"
47 | msgstr "Nom"
48 |
49 | msgid "Email"
50 | msgstr "Courrier électronique"
51 |
52 | msgid "Phone"
53 | msgstr "Téléphone"
54 |
55 | msgid "Website"
56 | msgstr "Site web"
57 |
58 | msgid "Location Information"
59 | msgstr "Information de contact"
60 |
61 | msgid "Address"
62 | msgstr "l'adresse"
63 |
64 | msgid "City"
65 | msgstr "Ville"
66 |
67 | msgid "State"
68 | msgstr "Etat"
69 |
70 | msgid "Country"
71 | msgstr "Pays"
72 |
73 | msgid "Zip / Postal"
74 | msgstr "Code postal"
75 |
76 | msgid "Filter Map"
77 | msgstr "Type de filtre"
78 |
79 | msgid "Listings Map"
80 | msgstr "Carte des listes"
81 |
82 | msgid "From"
83 | msgstr "De"
84 |
85 | msgid "To"
86 | msgstr "À"
87 |
88 | msgid "Date Range"
89 | msgstr "Plage de date"
90 |
91 | msgid "Price Range"
92 | msgstr "Prix"
93 |
94 | msgid "Distance"
95 | msgstr "Distance"
96 |
97 | msgid "Where"
98 | msgstr "Lieu"
99 |
100 | msgid "Name"
101 | msgstr "Nom"
102 |
103 | #: bepro_listings.php:85
104 | msgid "Search Listings"
105 | msgstr "Rechercher"
106 |
107 | #: bepro_listings_frontend.php:370
108 | msgid "Username"
109 | msgstr "Nom d'utilisateur"
110 |
111 | #: bepro_listings_frontend.php:371
112 | msgid "Password"
113 | msgstr "Mot de passe"
114 |
115 | #: bepro_listings_frontend.php:369
116 | msgid "Login / Register"
117 | msgstr "Connexion / Inscription"
118 |
119 | #: bepro_listings_frontend.php:375
120 | msgid "Create Listing"
121 | msgstr "Créer une annonce"
122 |
123 | #: bepro_listings.php:234
124 | msgid "Listing Types"
125 | msgstr "Types d'annonces"
126 |
127 | #: bepro_listings.php:276
128 | msgid "Free"
129 | msgstr "Gratuit"
130 |
131 | #: bepro_listings.php:278
132 | msgid "Please Contact"
133 | msgstr "S'il vous plaît contacter"
134 |
135 | #: bepro_listings.php:285
136 | msgid "View Map"
137 | msgstr "Voir la carte"
138 |
139 | #: ------------Admin Area---------------- bepro_listings_admin.php:258
140 | msgid "Show Cost"
141 | msgstr "Indiquer le coût"
142 |
143 | #: bepro_listings_admin.php:725 #BePro_Edits
144 | msgid "Documentation"
145 | msgstr "Documentation"
146 |
147 | #: bepro_listings_admin.php:725
148 | msgid "Forums"
149 | msgstr "Forums"
150 |
151 | #: bepro_listings_admin.php:259
152 | msgid "Show Contact"
153 | msgstr "Afficher le contact"
154 |
155 | #: bepro_listings_admin.php:260
156 | msgid "Show Geography"
157 | msgstr "Afficher le graphique "
158 |
159 | #: bepro_listings_admin.php:261
160 | msgid "# Of Images"
161 | msgstr "# d'Images"
162 |
163 | #: bepro_listings_admin.php:274
164 | msgid "Validate Form"
165 | msgstr "Valider le formulaire"
166 |
167 | #: bepro_listings_admin.php:275
168 | msgid "Default User Id"
169 | msgstr "Id utilisateur par défaut"
170 |
171 | #: bepro_listings_admin.php:276
172 | msgid "Success Message"
173 | msgstr "Message de réussite"
174 |
175 | #: bepro_listings_admin.php:279
176 | msgid "Default Listing Image"
177 | msgstr "Image de liste par défaut"
178 |
179 | #: bepro_listings_admin.php:280
180 | msgid "Default # Listings"
181 | msgstr "Annonces # par défaut"
182 |
183 | #: bepro_listings_admin.php:288
184 | msgid "Default Search Distance (Mi)"
185 | msgstr "Distance de recherche (Mi)"
186 |
187 | #: bepro_listings_admin.php:299
188 | msgid "Gallery Size"
189 | msgstr "Taille de la galerie"
190 |
191 | #: bepro_listings_admin.php:305
192 | msgid "Show Details"
193 | msgstr "Afficher les détails"
194 |
195 | #: bepro_listings_admin.php:306
196 | msgid "Show Content"
197 | msgstr "Afficher le contenu"
198 |
199 | #: bepro_listings_admin.php:319
200 | msgid "Our Link in your footer?"
201 | msgstr "Notre lien à votre pied de page ?"
202 |
203 | #: bepro_listings_admin.php:575
204 | msgid "General"
205 | msgstr "Generale"
206 |
207 | #: bepro_listings_admin.php:576
208 | msgid "Forms"
209 | msgstr "Formulaires"
210 |
211 | #: bepro_listings_admin.php:577
212 | msgid "Search/Listings"
213 | msgstr "Recherche/Entreprises"
214 |
215 | #: bepro_listings_admin.php:578
216 | msgid "Page/Post"
217 | msgstr "Page/Publier"
218 |
219 | #: bepro_listings_admin.php:579
220 | msgid "Map"
221 | msgstr "Map"
222 |
223 | #: bepro_listings_admin.php:580
224 | msgid "3rd Party"
225 | msgstr "3ème partie"
226 |
227 | #: bepro_listings_admin.php:581
228 | msgid "CSV Upload"
229 | msgstr "CSV Upload"
230 |
231 | #: bepro_listings_admin.php:582
232 | msgid "Payments"
233 | msgstr "Paiements"
234 |
235 | #: bepro_listings_admin.php:583
236 | msgid "Support"
237 | msgstr "Support"
238 |
239 | #: templates\tabs\tab-comments.php:10
240 | msgid "Comments"
241 | msgstr "Commentaires"
242 |
243 | #: bepro_listings_frontend.php:729
244 | msgid "Details"
245 | msgstr "Détails"
246 |
247 | #: bepro_listings_admin.php:613
248 | msgid "# Of Uploads"
249 | msgstr "Nbre d'Uploads"
250 |
251 | #: bepro_listings_admin.php:625
252 | msgid "Category Heading"
253 | msgstr "Titre de la catégorie"
254 |
255 | #: bepro_listings_admin.php:626
256 | msgid "Category Empty"
257 | msgstr "Catégorie vide"
258 |
259 | #: bepro_listings_admin.php:627
260 | msgid "Category Singular"
261 | msgstr "Catégorie singulier"
262 |
263 | #: bepro_listings_admin.php:628
264 | msgid "Days until Listings Expire?"
265 | msgstr "Jours jusqu'à l'expiration des annonces?"
266 |
267 | #: bepro_listings_admin.php:633
268 | msgid "Default Status"
269 | msgstr "Statut par défaut"
270 |
271 | #: bepro_listings_admin.php:638
272 | msgid "Fail Message"
273 | msgstr "Pas de Message"
274 |
275 | #: bepro_listings_admin.php:639
276 | msgid "Required Categories"
277 | msgstr "Catégories requises"
278 |
279 | #: bepro_listings_admin.php:640
280 | msgid "Exclude Categories"
281 | msgstr "Exclure des catégories"
282 |
283 | #: bepro_listings_admin.php:644
284 | msgid "How Links Open"
285 | msgstr "Comment ouvrent les liens"
286 |
287 | #: bepro_listings_admin.php:650
288 | msgid "Ajax On?"
289 | msgstr "Activé Ajax ?"
290 |
291 | #: bepro_listings_admin.php:671
292 | msgid "Name Search"
293 | msgstr "Recherche par nom"
294 |
295 | #: bepro_listings_admin.php:677
296 | msgid "Title Length"
297 | msgstr "Longueur du titre"
298 |
299 | #: bepro_listings_admin.php:678
300 | msgid "Details Link Text"
301 | msgstr "Détails Texte du lien"
302 |
303 | #: bepro_listings_admin.php:679
304 | msgid "Show Website Link?"
305 | msgstr "Montrer le lien de site Web?"
306 |
307 | #: bepro_listings_admin.php:680
308 | msgid "Currency Sign?"
309 | msgstr "Symbole de devise?"
310 |
311 | #: bepro_listings_admin.php:681
312 | msgid "Show Date filter?"
313 | msgstr "Afficher le filtre Date?"
314 |
315 | #: bepro_listings_admin.php:691
316 | msgid "# Gallery Columns"
317 | msgstr "# Galerie colonnes"
318 |
319 | #: bepro_listings_admin.php:697
320 | msgid "Links on Details"
321 | msgstr "Liens sur les détails"
322 |
323 | #: bepro_listings_admin.php:698
324 | msgid "Protect Contact"
325 | msgstr "Protéger le Contact"
326 |
327 | #: bepro_listings_admin.php:700
328 | msgid "Tab Direction"
329 | msgstr "Onglet orientation"
330 |
331 | #: bepro_listings_admin.php:706
332 | msgid "Query Type"
333 | msgstr "Type de requête"
334 |
335 | #: bepro_listings_admin.php:716
336 | msgid "CSV File"
337 | msgstr "Fichier CSV"
338 |
339 | #: bepro_listings_admin.php:717
340 | msgid "Delimiter"
341 | msgstr "Séparateur"
342 |
343 | #: bepro_listings_admin.php:732
344 | msgid "Accept Payments?"
345 | msgstr "Accepter les paiements?"
346 |
347 | #: bepro_listings_admin.php:740
348 | msgid "Publish after confirm Paid?"
349 | msgstr "Publiez après confirmation du paiement ?"
350 |
351 | #: ------------Front end---------------- templates/list.php:6
352 | msgid "My Item Listings"
353 | msgstr "Mes listes"
354 |
355 | msgid "Status"
356 | msgstr "Statut"
357 |
358 | msgid "Notices"
359 | msgstr "Avis"
360 |
361 | msgid "Actions"
362 | msgstr "Actions"
363 |
364 | #: templates/list.php:32
365 | msgid "View"
366 | msgstr "Voir"
367 |
368 | #: templates/list.php:32
369 | msgid "Edit"
370 | msgstr "Editer"
371 |
372 | #: templates/list.php:32
373 | msgid "Delete"
374 | msgstr "Supprimer"
375 |
376 | #: templates/list.php:22
377 | msgid "Expires"
378 | msgstr "Expire"
379 |
380 | #: templates/list.php:32
381 | msgid "Pay"
382 | msgstr "Payer"
383 |
384 | #: templates/list.php:50
385 | msgid "Wait"
386 | msgstr "Attendre"
387 |
388 | #: templates/list.php:60
389 | msgid "No Live listings created"
390 | msgstr "Aucune annonce créés"
391 |
392 | #: templates/list.php:62
393 | msgid "No live listings for this user"
394 | msgstr "Pas d'annonces pour cet utilisateur"
395 |
396 | #: ------------DASHBOARD---------------- admin/bepro_listings_dashboard.php:
397 | #: #BePro_Edits admin/bepro_listings_wizard.php:6
398 | msgid "Welcome to BePro Listings!"
399 | msgstr "Bienvenue chez BePro Listings!"
400 |
401 | #: admin/bepro_listings_wizard.php:12
402 | msgid ""
403 | "Congratulations, you are now using the latest version of BePro Listings. "
404 | "With lots of ways to customize, this software is ideal for creating your "
405 | "custom directory listing needs. This page shows the new features packaged "
406 | "with the plugin."
407 | msgstr ""
408 | "Félicitations, vous utilisez actuellement la dernière version de BePro "
409 | "Listings. Avec beaucoup de façons de personnaliser, ce logiciel est idéal "
410 | "pour créer votre répertoire personnalisé, liste des besoins. Cette page "
411 | "montre les nouvelles fonctionnalités empaquetées avec le plugin."
412 |
413 | #: admin/bepro_listings_wizard.php:17
414 | msgid "What's New"
415 | msgstr "Quoi de neuf"
416 |
417 | #: admin/bepro_listings_wizard.php:22
418 | msgid "You are using"
419 | msgstr "Vous utilisez"
420 |
421 | #: admin/bepro_listings_wizard.php:22
422 | msgid "BePro Listings Version:"
423 | msgstr "BePro Listings Version:"
424 |
425 | #: ------------INSTALLATION WIZARD----------------
426 | #: admin/bepro_listings_wizard.php admin/bepro_listings_wizard.php:6
427 | msgid "BePro Listings INSTALLATION WIZARD"
428 | msgstr "BePro annonces Assistant INSTALLATION"
429 |
430 | #: admin/bepro_listings_wizard.php:7
431 | msgid "Use the following steps to help you setup BePro Listings. Otherwise,"
432 | msgstr ""
433 | "Utilisez les étapes suivantes pour aider vous d'installation BePro Listings. "
434 | "Dans le cas contraire,"
435 |
436 | #: admin/bepro_listings_wizard.php:7
437 | msgid "Click Here"
438 | msgstr "Cliquez ici"
439 |
440 | #: admin/bepro_listings_wizard.php:7
441 | msgid "to skip"
442 | msgstr "pour passer"
443 |
444 | #: admin/bepro_listings_wizard.php:47
445 | msgid "STEP 1: CREATE WORDPRESS PAGES"
446 | msgstr "ÉTAPE 1: CRÉER DES PAGES DE WORDPRESS"
447 |
--------------------------------------------------------------------------------
/languages/bepro-listings-nb_NO.po:
--------------------------------------------------------------------------------
1 | # Translation for BePro Listings
2 | # Copyright (C) 2012 Beyond Programs LTD (beyondprograms.com)
3 | # This file is distributed under the same license as BePro Listings.
4 | # BePro Software Team , 2012.
5 | msgid ""
6 | msgstr ""
7 | "Project-Id-Version: BePro Listings Translation 1.0\n"
8 | "Report-Msgid-Bugs-To: translate-devel@lists.sourceforge.net\n"
9 | "POT-Creation-Date: 2012-09-14 16:20+0200\n"
10 | "PO-Revision-Date: 2015-04-18 09:13-0400\n"
11 | "Last-Translator: \n"
12 | "Language-Team: bepro software\n"
13 | "MIME-Version: 1.0\n"
14 | "Content-Type: text/plain; charset=UTF-8\n"
15 | "Content-Transfer-Encoding: 8bit\n"
16 | "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17 | "X-Generator: Poedit 1.5.7\n"
18 | "Language: pt_PT\n"
19 |
20 | msgid "Item Information"
21 | msgstr "Vareinformasjon"
22 |
23 | #: bepro_listings_frontend.php:321
24 | msgid "Item Name"
25 | msgstr "Elementnavn"
26 |
27 | #: bepro_listings_frontend.php:322
28 | msgid "Cost"
29 | msgstr "Kostnader"
30 |
31 | #: bepro_listings_frontend.php:323
32 | msgid "Description"
33 | msgstr "Beskrivelse"
34 |
35 | #: bepro_listings_frontend.php:334
36 | msgid "Image"
37 | msgstr "Bilde"
38 |
39 | #: bepro_listings_frontend.php:324
40 | msgid "Categories"
41 | msgstr "Kategorier"
42 |
43 | #: bepro_listings_frontend.php:345
44 | msgid "Contact Information"
45 | msgstr "Kontaktinformasjon"
46 |
47 | #: bepro_listings_frontend.php:346
48 | msgid "First Name"
49 | msgstr "Fornavn"
50 |
51 | #: bepro_listings_frontend.php:347
52 | msgid "Last Name"
53 | msgstr "Etternavn"
54 |
55 | #: bepro_listings_frontend.php:348
56 | msgid "Email"
57 | msgstr "E-post"
58 |
59 | #: bepro_listings_frontend.php:349
60 | msgid "Phone"
61 | msgstr "Telefon"
62 |
63 | #: bepro_listings_frontend.php:350
64 | msgid "Website"
65 | msgstr "Nettsted"
66 |
67 | #: bepro_listings_frontend.php:356
68 | msgid "Location Information"
69 | msgstr "Stedsinformasjon"
70 |
71 | #: bepro_listings_frontend.php:357
72 | msgid "Address"
73 | msgstr "Adresse"
74 |
75 | #: bepro_listings_frontend.php:358
76 | msgid "City"
77 | msgstr "Byen"
78 |
79 | #: bepro_listings_frontend.php:359
80 | msgid "State"
81 | msgstr "Tilstand"
82 |
83 | #: bepro_listings_frontend.php:360
84 | msgid "Country"
85 | msgstr "Land"
86 |
87 | #: bepro_listings_frontend.php:361
88 | msgid "Zip / Postal"
89 | msgstr "Zip- / postnummer"
90 |
91 | msgid "Filter Listings"
92 | msgstr "Filtrere oppføringer"
93 |
94 | msgid "Listings Map"
95 | msgstr "Oppføringer kart"
96 |
97 | #: bepro_listings.php:261
98 | msgid "From"
99 | msgstr "Fra"
100 |
101 | #: bepro_listings.php:261
102 | msgid "To"
103 | msgstr "Til"
104 |
105 | #: bepro_listings.php:264
106 | msgid "Date Range"
107 | msgstr "Datointervall"
108 |
109 | #: bepro_listings.php:261
110 | msgid "Price Range"
111 | msgstr "Prisklasse"
112 |
113 | #: bepro_listings.php:268
114 | msgid "Refine Search"
115 | msgstr "Søket"
116 |
117 | #: bepro_listings.php:248
118 | msgid "Distance"
119 | msgstr "Avstand"
120 |
121 | #: bepro_listings.php:79
122 | msgid "Where"
123 | msgstr "Hvor"
124 |
125 | #: bepro_listings.php:82
126 | msgid "Name"
127 | msgstr "navn"
128 |
129 | #: bepro_listings.php:85
130 | msgid "Search Listings"
131 | msgstr "Suche Inserate"
132 |
133 | #: bepro_listings_frontend.php:370
134 | msgid "Username"
135 | msgstr "Brukernavn"
136 |
137 | #: bepro_listings_frontend.php:371
138 | msgid "Password"
139 | msgstr "Passord"
140 |
141 | #: bepro_listings_frontend.php:369
142 | msgid "Login / Register"
143 | msgstr "Logg inn / Registrer"
144 |
145 | #: bepro_listings_frontend.php:375
146 | msgid "Create Listing"
147 | msgstr "Lag liste"
148 |
149 | #: bepro_listings.php:234
150 | msgid "Listing Types"
151 | msgstr "Viser typer"
152 |
153 | #: bepro_listings.php:276
154 | msgid "Free"
155 | msgstr "Gratis"
156 |
157 | #: bepro_listings.php:278
158 | msgid "Please Contact"
159 | msgstr "Kontakt"
160 |
161 | #: bepro_listings.php:285
162 | msgid "View Map"
163 | msgstr "Vis kart"
164 |
165 | #: ------------Admin Area---------------- bepro_listings_admin.php:258
166 | msgid "Show Cost"
167 | msgstr "Vis Cost"
168 |
169 | #: bepro_listings_admin.php:259
170 | msgid "Show Contact"
171 | msgstr "Vis kontakt"
172 |
173 | #: bepro_listings_admin.php:260
174 | msgid "Show Geography"
175 | msgstr "Vis geografi"
176 |
177 | #: bepro_listings_admin.php:261
178 | msgid "# Of Images"
179 | msgstr "Antall bilder"
180 |
181 | #: bepro_listings_admin.php:274
182 | msgid "Validate Form"
183 | msgstr "Validere skjemaet"
184 |
185 | #: bepro_listings_admin.php:275
186 | msgid "Default User Id"
187 | msgstr "Standard bruker-Id"
188 |
189 | #: bepro_listings_admin.php:276
190 | msgid "Success Message"
191 | msgstr "Melding"
192 |
193 | #: bepro_listings_admin.php:279
194 | msgid "Default Listing Image"
195 | msgstr "Standardbildet for liste"
196 |
197 | #: bepro_listings_admin.php:280
198 | msgid "Default # Listings"
199 | msgstr "Standard # oppføringer"
200 |
201 | #: bepro_listings_admin.php:288
202 | msgid "Default Search Distance (Mi)"
203 | msgstr "Søk standardavstanden (Mi)"
204 |
205 | #: bepro_listings_admin.php:299
206 | msgid "Gallery Size"
207 | msgstr "Galleri størrelse"
208 |
209 | #: bepro_listings_admin.php:305
210 | msgid "Show Details"
211 | msgstr "Vis detaljer"
212 |
213 | #: bepro_listings_admin.php:306
214 | msgid "Show Content"
215 | msgstr "Vis innhold"
216 |
217 | #: bepro_listings_admin.php:319
218 | msgid "Our Link in your footer?"
219 | msgstr "Vår Link i bunnteksten?"
220 |
221 | #: bepro_listings_admin.php:575
222 | msgid "General"
223 | msgstr "Generelt"
224 |
225 | #: bepro_listings_admin.php:576
226 | msgid "Forms"
227 | msgstr "Skjemaer"
228 |
229 | #: bepro_listings_admin.php:577
230 | msgid "Search/Listings"
231 | msgstr "Søk/oppføringer"
232 |
233 | #: bepro_listings_admin.php:578
234 | msgid "Page/Post"
235 | msgstr "siden/innlegg"
236 |
237 | #: bepro_listings_admin.php:579
238 | msgid "Map"
239 | msgstr "Kart"
240 |
241 | #: bepro_listings_admin.php:580
242 | msgid "3rd Party"
243 | msgstr "tredjepart"
244 |
245 | #: bepro_listings_admin.php:581
246 | msgid "CSV Upload"
247 | msgstr "CSV opplasting"
248 |
249 | #: bepro_listings_admin.php:582
250 | msgid "Payments"
251 | msgstr "Betalinger"
252 |
253 | #: bepro_listings_admin.php:583
254 | msgid "Support"
255 | msgstr "Støtte"
256 |
257 | #: templates\tabs\tab-comments.php:10
258 | msgid "Comments"
259 | msgstr "Kommentarer"
260 |
261 | #: bepro_listings_frontend.php:729
262 | msgid "Details"
263 | msgstr "Detaljer"
264 |
265 | #: bepro_listings_admin.php:613
266 | msgid "# Of Uploads"
267 | msgstr "# Av opplastinger"
268 |
269 | #: bepro_listings_admin.php:625
270 | msgid "Category Heading"
271 | msgstr "Kategorioverskriften"
272 |
273 | #: bepro_listings_admin.php:626
274 | msgid "Category Empty"
275 | msgstr "Kategorien tom"
276 |
277 | #: bepro_listings_admin.php:627
278 | msgid "Category Singular"
279 | msgstr "Kategori entall"
280 |
281 | #: bepro_listings_admin.php:628
282 | msgid "Days until Listings Expire?"
283 | msgstr "Dager inntil oppføringer utløper?"
284 |
285 | #: bepro_listings_admin.php:633
286 | msgid "Default Status"
287 | msgstr "Standardstatus"
288 |
289 | #: bepro_listings_admin.php:638
290 | msgid "Fail Message"
291 | msgstr "Mislykkes melding"
292 |
293 | #: bepro_listings_admin.php:639
294 | msgid "Required Categories"
295 | msgstr "Nødvendig kategorier"
296 |
297 | #: bepro_listings_admin.php:640
298 | msgid "Exclude Categories"
299 | msgstr "Utelukke kategorier"
300 |
301 | #: bepro_listings_admin.php:644
302 | msgid "How Links Open"
303 | msgstr "Hvor åpnes"
304 |
305 | #: bepro_listings_admin.php:650
306 | msgid "Ajax On?"
307 | msgstr "Ajax på?"
308 |
309 | #: bepro_listings_admin.php:671
310 | msgid "Name Search"
311 | msgstr "Navnsøk"
312 |
313 | #: bepro_listings_admin.php:677
314 | msgid "Title Length"
315 | msgstr "Tittelen lengde"
316 |
317 | #: bepro_listings_admin.php:678
318 | msgid "Details Link Text"
319 | msgstr "Detaljer koblingsteksten"
320 |
321 | #: bepro_listings_admin.php:679
322 | msgid "Show Website Link?"
323 | msgstr "Vis nettsted?"
324 |
325 | #: bepro_listings_admin.php:680
326 | msgid "Currency Sign?"
327 | msgstr "Valuta tegn?"
328 |
329 | #: bepro_listings_admin.php:681
330 | msgid "Show Date filter?"
331 | msgstr "Vis Datofilter?"
332 |
333 | #: bepro_listings_admin.php:691
334 | msgid "# Gallery Columns"
335 | msgstr "# Galleri kolonner"
336 |
337 | #: bepro_listings_admin.php:697
338 | msgid "Links on Details"
339 | msgstr "Koblinger på detaljer"
340 |
341 | #: bepro_listings_admin.php:698
342 | msgid "Protect Contact"
343 | msgstr "Beskytte kontakt"
344 |
345 | #: bepro_listings_admin.php:700
346 | msgid "Tab Direction"
347 | msgstr "Tabulatorretningen"
348 |
349 | #: bepro_listings_admin.php:706
350 | msgid "Query Type"
351 | msgstr "Spørringstype"
352 |
353 | #: bepro_listings_admin.php:716
354 | msgid "CSV File"
355 | msgstr "CSV-fil"
356 |
357 | #: bepro_listings_admin.php:717
358 | msgid "Delimiter"
359 | msgstr "Skilletegn"
360 |
361 | #: bepro_listings_admin.php:732
362 | msgid "Accept Payments?"
363 | msgstr "Godta betalinger?"
364 |
365 | #: bepro_listings_admin.php:740
366 | msgid "Publish after confirm Paid?"
367 | msgstr "Publisere etter bekrefte betalt?"
368 |
369 | #: ------------Front end---------------- templates/list.php:6
370 | msgid "My Item Listings"
371 | msgstr "Min elementet reiseaktører"
372 |
373 | msgid "Status"
374 | msgstr "Status"
375 |
376 | msgid "Notices"
377 | msgstr "Merknader"
378 |
379 | msgid "Actions"
380 | msgstr "Handlinger"
381 |
382 | #: templates/list.php:32
383 | msgid "View"
384 | msgstr "Vis"
385 |
386 | #: templates/list.php:32
387 | msgid "Edit"
388 | msgstr "Rediger"
389 |
390 | #: templates/list.php:32
391 | msgid "Delete"
392 | msgstr "Slette"
393 |
394 | #: templates/list.php:22
395 | msgid "Expires"
396 | msgstr "Utløper"
397 |
398 | #: templates/list.php:32
399 | msgid "Pay"
400 | msgstr "Betale"
401 |
402 | #: templates/list.php:50
403 | msgid "Wait"
404 | msgstr "vent"
405 |
406 | #: templates/list.php:60
407 | msgid "No Live listings created"
408 | msgstr "Ingen Live oppføringer opprettet"
409 |
410 | #: templates/list.php:62
411 | msgid "No live listings for this user"
412 | msgstr "Ingen live oppføringer for denne brukeren"
413 |
414 | #: ------------DASHBOARD---------------- admin/bepro_listings_dashboard.php:
415 | #: #BePro_Edits admin/bepro_listings_wizard.php:6
416 | msgid "Welcome to BePro Listings!"
417 | msgstr "Velkommen til BePro Listings!"
418 |
419 | #: admin/bepro_listings_wizard.php:12
420 | msgid ""
421 | "Congratulations, you are now using the latest version of BePro Listings. "
422 | "With lots of ways to customize, this software is ideal for creating your "
423 | "custom directory listing needs. This page shows the new features packaged "
424 | "with the plugin."
425 | msgstr ""
426 | "Gratulerer, bruker du nå den nyeste versjonen av BePro Listings. Mange måter "
427 | "å tilpasse, er denne programvaren ideelt for å lage din egendefinerte "
428 | "mappevisning behov. Denne siden viser de nye funksjonene pakket med plugg."
429 |
430 | #: admin/bepro_listings_wizard.php:17
431 | msgid "What's New"
432 | msgstr "Noe nytt"
433 |
434 | #: admin/bepro_listings_wizard.php:22
435 | msgid "You are using"
436 | msgstr "Du bruker"
437 |
438 | #: admin/bepro_listings_wizard.php:22
439 | msgid "BePro Listings Version:"
440 | msgstr "BePro Listings versjon:"
441 |
442 | #: ------------INSTALLATION WIZARD----------------
443 | #: admin/bepro_listings_wizard.php admin/bepro_listings_wizard.php:6
444 | msgid "BePro Listings INSTALLATION WIZARD"
445 | msgstr "BePro Listings INSTALLASJONSVEIVISEREN"
446 |
447 | #: admin/bepro_listings_wizard.php:7
448 | msgid "Use the following steps to help you setup BePro Listings. Otherwise,"
449 | msgstr "Bruk fremgangsmåten nedenfor til å setup BePro Listings. Ellers"
450 |
451 | #: admin/bepro_listings_wizard.php:7
452 | msgid "Click Here"
453 | msgstr "Klikk her"
454 |
455 | #: admin/bepro_listings_wizard.php:7
456 | msgid "to skip"
457 | msgstr "å hoppe"
458 |
459 | #: admin/bepro_listings_wizard.php:47
460 | msgid "STEP 1: CREATE WORDPRESS PAGES"
461 | msgstr "TRINN 1: OPPRETTE WORDPRESS SIDER"
462 |
--------------------------------------------------------------------------------
/languages/bepro-listings-sv_SE.po:
--------------------------------------------------------------------------------
1 | # Translation for BePro Listings
2 | # Copyright (C) 2012 Beyond Programs LTD (beyondprograms.com)
3 | # This file is distributed under the same license as BePro Listings.
4 | # BePro Software Team , 2012.
5 | msgid ""
6 | msgstr ""
7 | "Project-Id-Version: BePro Listings Translation 1.0\n"
8 | "Report-Msgid-Bugs-To: translate-devel@lists.sourceforge.net\n"
9 | "POT-Creation-Date: 2012-09-14 16:20+0200\n"
10 | "PO-Revision-Date: 2015-04-18 09:03-0400\n"
11 | "Last-Translator: Borisa Djuraskovic \n"
12 | "Language-Team: BePro Software\n"
13 | "Language: en\n"
14 | "MIME-Version: 1.0\n"
15 | "Content-Type: text/plain; charset=UTF-8\n"
16 | "Content-Transfer-Encoding: 8bit\n"
17 | "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18 | "X-Generator: Poedit 1.5.7\n"
19 |
20 | msgid "Item Information"
21 | msgstr "Artikelinformation"
22 |
23 | #: bepro_listings_frontend.php:321
24 | msgid "Item Name"
25 | msgstr "Artikelnamn"
26 |
27 | #: bepro_listings_frontend.php:322
28 | msgid "Cost"
29 | msgstr "kostnad"
30 |
31 | #: bepro_listings_frontend.php:323
32 | msgid "Description"
33 | msgstr "Beskrivning"
34 |
35 | #: bepro_listings_frontend.php:334
36 | msgid "Image"
37 | msgstr "Bild"
38 |
39 | #: bepro_listings_frontend.php:324
40 | msgid "Categories"
41 | msgstr "Kategorier"
42 |
43 | #: bepro_listings_frontend.php:345
44 | msgid "Contact Information"
45 | msgstr "Kontaktinformation"
46 |
47 | #: bepro_listings_frontend.php:346
48 | msgid "First Name"
49 | msgstr "Förnamn"
50 |
51 | #: bepro_listings_frontend.php:347
52 | msgid "Last Name"
53 | msgstr "Efternamn"
54 |
55 | #: bepro_listings_frontend.php:348
56 | msgid "Email"
57 | msgstr "E-post"
58 |
59 | #: bepro_listings_frontend.php:349
60 | msgid "Phone"
61 | msgstr "Telefon"
62 |
63 | #: bepro_listings_frontend.php:350
64 | msgid "Website"
65 | msgstr "Hemsida"
66 |
67 | #: bepro_listings_frontend.php:356
68 | msgid "Location Information"
69 | msgstr "Platsinformation"
70 |
71 | #: bepro_listings_frontend.php:357
72 | msgid "Address"
73 | msgstr "Adress"
74 |
75 | #: bepro_listings_frontend.php:358
76 | msgid "City"
77 | msgstr "Staden"
78 |
79 | #: bepro_listings_frontend.php:359
80 | msgid "State"
81 | msgstr "Staten"
82 |
83 | #: bepro_listings_frontend.php:360
84 | msgid "Country"
85 | msgstr "Land"
86 |
87 | #: bepro_listings_frontend.php:361
88 | msgid "Zip / Postal"
89 | msgstr "Zip / postnummer"
90 |
91 | msgid "Filter Listings"
92 | msgstr "Filtrera listor"
93 |
94 | msgid "Listings Map"
95 | msgstr "Listor karta"
96 |
97 | #: bepro_listings.php:261
98 | msgid "From"
99 | msgstr "Från"
100 |
101 | #: bepro_listings.php:261
102 | msgid "To"
103 | msgstr "Till"
104 |
105 | #: bepro_listings.php:264
106 | msgid "Date Range"
107 | msgstr "Datumintervall"
108 |
109 | #: bepro_listings.php:261
110 | msgid "Price Range"
111 | msgstr "Prisklass"
112 |
113 | #: bepro_listings.php:268
114 | msgid "Refine Search"
115 | msgstr "Förfina sökning"
116 |
117 | #: bepro_listings.php:248
118 | msgid "Distance"
119 | msgstr "Avstånd"
120 |
121 | #: bepro_listings.php:79
122 | msgid "Where"
123 | msgstr "GdeDär"
124 |
125 | #: bepro_listings.php:82
126 | msgid "Name"
127 | msgstr "Namn"
128 |
129 | #: bepro_listings.php:85
130 | msgid "Search Listings"
131 | msgstr "Suche Inserate"
132 |
133 | #: bepro_listings_frontend.php:370
134 | msgid "Username"
135 | msgstr "Användarnamn"
136 |
137 | #: bepro_listings_frontend.php:371
138 | msgid "Password"
139 | msgstr "Lösenord"
140 |
141 | #: bepro_listings_frontend.php:369
142 | msgid "Login / Register"
143 | msgstr "Logga in / registrera dig"
144 |
145 | #: bepro_listings_frontend.php:375
146 | msgid "Create Listing"
147 | msgstr "Skapa notering"
148 |
149 | #: bepro_listings.php:234
150 | msgid "Listing Types"
151 | msgstr "Förteckning över typer"
152 |
153 | #: bepro_listings.php:276
154 | msgid "Free"
155 | msgstr "gratis"
156 |
157 | #: bepro_listings.php:278
158 | msgid "Please Contact"
159 | msgstr "Kontakta"
160 |
161 | #: bepro_listings.php:285
162 | msgid "View Map"
163 | msgstr "Visa karta"
164 |
165 | #: ------------Admin Area---------------- bepro_listings_admin.php:258
166 | msgid "Show Cost"
167 | msgstr "Visa kostnaden"
168 |
169 | #: bepro_listings_admin.php:259
170 | msgid "Show Contact"
171 | msgstr "Visa kontakt"
172 |
173 | #: bepro_listings_admin.php:260
174 | msgid "Show Geography"
175 | msgstr "Visa geografi"
176 |
177 | #: bepro_listings_admin.php:261
178 | msgid "# Of Images"
179 | msgstr "# Bilder"
180 |
181 | #: bepro_listings_admin.php:274
182 | msgid "Validate Form"
183 | msgstr "Validera formulär"
184 |
185 | #: bepro_listings_admin.php:275
186 | msgid "Default User Id"
187 | msgstr "Standard användar-Id"
188 |
189 | #: bepro_listings_admin.php:276
190 | msgid "Success Message"
191 | msgstr "Meddelande"
192 |
193 | #: bepro_listings_admin.php:279
194 | msgid "Default Listing Image"
195 | msgstr "Standard lista bilden"
196 |
197 | #: bepro_listings_admin.php:280
198 | msgid "Default # Listings"
199 | msgstr "# Programtablåerna"
200 |
201 | #: bepro_listings_admin.php:288
202 | msgid "Default Search Distance (Mi)"
203 | msgstr "Standard Sök avstånd (Mi)"
204 |
205 | #: bepro_listings_admin.php:299
206 | msgid "Gallery Size"
207 | msgstr "Galleri storlek"
208 |
209 | #: bepro_listings_admin.php:305
210 | msgid "Show Details"
211 | msgstr "Visa Detaljer"
212 |
213 | #: bepro_listings_admin.php:306
214 | msgid "Show Content"
215 | msgstr "Visa innehåll"
216 |
217 | #: bepro_listings_admin.php:319
218 | msgid "Our Link in your footer?"
219 | msgstr "Vår länk i sidfoten?"
220 |
221 | #: bepro_listings_admin.php:575
222 | msgid "General"
223 | msgstr "Generale"
224 |
225 | #: bepro_listings_admin.php:576
226 | msgid "Forms"
227 | msgstr "Forme"
228 |
229 | #: bepro_listings_admin.php:577
230 | msgid "Search/Listings"
231 | msgstr "Ricerca/Inserzioni"
232 |
233 | #: bepro_listings_admin.php:578
234 | msgid "Page/Post"
235 | msgstr "Pagina/Post"
236 |
237 | #: bepro_listings_admin.php:579
238 | msgid "Map"
239 | msgstr "Mappa"
240 |
241 | #: bepro_listings_admin.php:580
242 | msgid "3rd Party"
243 | msgstr "3a parte"
244 |
245 | #: bepro_listings_admin.php:581
246 | msgid "CSV Upload"
247 | msgstr "CSV Upload"
248 |
249 | #: bepro_listings_admin.php:582
250 | msgid "Payments"
251 | msgstr "Pagamenti"
252 |
253 | #: bepro_listings_admin.php:583
254 | msgid "Support"
255 | msgstr "Supporto"
256 |
257 | #: templates\tabs\tab-comments.php:10
258 | msgid "Comments"
259 | msgstr "Kommentarer"
260 |
261 | #: bepro_listings_frontend.php:729
262 | msgid "Details"
263 | msgstr "Detaljer"
264 |
265 | #: bepro_listings_admin.php:613
266 | msgid "# Of Uploads"
267 | msgstr "# Av uppladdningar"
268 |
269 | #: bepro_listings_admin.php:625
270 | msgid "Category Heading"
271 | msgstr "Kategorirubriken"
272 |
273 | #: bepro_listings_admin.php:626
274 | msgid "Category Empty"
275 | msgstr "Kategori tomt"
276 |
277 | #: bepro_listings_admin.php:627
278 | msgid "Category Singular"
279 | msgstr "Kategori Singular"
280 |
281 | #: bepro_listings_admin.php:628
282 | msgid "Days until Listings Expire?"
283 | msgstr "Dagar tills listor löper ut?"
284 |
285 | #: bepro_listings_admin.php:633
286 | msgid "Default Status"
287 | msgstr "Standardstatus"
288 |
289 | #: bepro_listings_admin.php:638
290 | msgid "Fail Message"
291 | msgstr "Misslyckas meddelande"
292 |
293 | #: bepro_listings_admin.php:639
294 | msgid "Required Categories"
295 | msgstr "Krävs kategorier"
296 |
297 | #: bepro_listings_admin.php:640
298 | msgid "Exclude Categories"
299 | msgstr "Utesluta kategorier"
300 |
301 | #: bepro_listings_admin.php:644
302 | msgid "How Links Open"
303 | msgstr "Hur länkar öppnas"
304 |
305 | #: bepro_listings_admin.php:650
306 | msgid "Ajax On?"
307 | msgstr "Ajax på?"
308 |
309 | #: bepro_listings_admin.php:671
310 | msgid "Name Search"
311 | msgstr "Namn Sök"
312 |
313 | #: bepro_listings_admin.php:677
314 | msgid "Title Length"
315 | msgstr "Titel längd"
316 |
317 | #: bepro_listings_admin.php:678
318 | msgid "Details Link Text"
319 | msgstr "Detaljer länktext"
320 |
321 | #: bepro_listings_admin.php:679
322 | msgid "Show Website Link?"
323 | msgstr "Visa webbplatslänk?"
324 |
325 | #: bepro_listings_admin.php:680
326 | msgid "Currency Sign?"
327 | msgstr "Valuta tecken?"
328 |
329 | #: bepro_listings_admin.php:681
330 | msgid "Show Date filter?"
331 | msgstr "Visa Datumfilter?"
332 |
333 | #: bepro_listings_admin.php:691
334 | msgid "# Gallery Columns"
335 | msgstr "# Gallery kolumner"
336 |
337 | #: bepro_listings_admin.php:697
338 | msgid "Links on Details"
339 | msgstr "Länkar på Detaljer"
340 |
341 | #: bepro_listings_admin.php:698
342 | msgid "Protect Contact"
343 | msgstr "Skydda kontakt"
344 |
345 | #: bepro_listings_admin.php:700
346 | msgid "Tab Direction"
347 | msgstr "Fliken riktning"
348 |
349 | #: bepro_listings_admin.php:706
350 | msgid "Query Type"
351 | msgstr "Frågetyp"
352 |
353 | #: bepro_listings_admin.php:716
354 | msgid "CSV File"
355 | msgstr "CSV-fil"
356 |
357 | #: bepro_listings_admin.php:717
358 | msgid "Delimiter"
359 | msgstr "Avgränsare"
360 |
361 | #: bepro_listings_admin.php:732
362 | msgid "Accept Payments?"
363 | msgstr "Acceptera betalningar?"
364 |
365 | #: bepro_listings_admin.php:740
366 | msgid "Publish after confirm Paid?"
367 | msgstr "Publicera efter bekräfta betald?"
368 |
369 | #: ------------Front end---------------- templates/list.php:6
370 | msgid "My Item Listings"
371 | msgstr "Min post listor"
372 |
373 | msgid "Status"
374 | msgstr "Status"
375 |
376 | msgid "Notices"
377 | msgstr "Meddelanden"
378 |
379 | msgid "Actions"
380 | msgstr "Åtgärder"
381 |
382 | #: templates/list.php:32
383 | msgid "View"
384 | msgstr "Visa"
385 |
386 | #: templates/list.php:32
387 | msgid "Edit"
388 | msgstr "Redigera"
389 |
390 | #: templates/list.php:32
391 | msgid "Delete"
392 | msgstr "Ta bort"
393 |
394 | #: templates/list.php:22
395 | msgid "Expires"
396 | msgstr "Upphör att gälla"
397 |
398 | #: templates/list.php:32
399 | msgid "Pay"
400 | msgstr "Betala"
401 |
402 | #: templates/list.php:50
403 | msgid "Wait"
404 | msgstr "AttendreVänta"
405 |
406 | #: templates/list.php:60
407 | msgid "No Live listings created"
408 | msgstr "Inga levande listor skapade"
409 |
410 | #: templates/list.php:62
411 | msgid "No live listings for this user"
412 | msgstr "Inga levande listor för den här användaren"
413 |
414 | #: ------------DASHBOARD---------------- admin/bepro_listings_dashboard.php:
415 | #: #BePro_Edits admin/bepro_listings_wizard.php:6
416 | msgid "Welcome to BePro Listings!"
417 | msgstr "Välkommen till BePro Listings!"
418 |
419 | #: admin/bepro_listings_wizard.php:12
420 | msgid ""
421 | "Congratulations, you are now using the latest version of BePro Listings. "
422 | "With lots of ways to customize, this software is ideal for creating your "
423 | "custom directory listing needs. This page shows the new features packaged "
424 | "with the plugin."
425 | msgstr ""
426 | "Grattis, använder du nu den senaste versionen av BePro Listings. Med massor "
427 | "av sätt att anpassa, är denna programvara perfekt för att skapa din egen "
428 | "kataloglista behov. Den här sidan visar de nya funktioner förpackade med "
429 | "plugin."
430 |
431 | #: admin/bepro_listings_wizard.php:17
432 | msgid "What's New"
433 | msgstr "Vad är det senaste"
434 |
435 | #: admin/bepro_listings_wizard.php:22
436 | msgid "You are using"
437 | msgstr "Du använder"
438 |
439 | #: admin/bepro_listings_wizard.php:22
440 | msgid "BePro Listings Version:"
441 | msgstr "BePro Listings Version:"
442 |
443 | #: ------------INSTALLATION WIZARD----------------
444 | #: admin/bepro_listings_wizard.php admin/bepro_listings_wizard.php:6
445 | msgid "BePro Listings INSTALLATION WIZARD"
446 | msgstr "BePro Listings INSTALLATIONSGUIDEN"
447 |
448 | #: admin/bepro_listings_wizard.php:7
449 | msgid "Use the following steps to help you setup BePro Listings. Otherwise,"
450 | msgstr "Använd följande steg för att hjälpa dig setup BePro Listings. Annars"
451 |
452 | #: admin/bepro_listings_wizard.php:7
453 | msgid "Click Here"
454 | msgstr "Klicka här"
455 |
456 | #: admin/bepro_listings_wizard.php:7
457 | msgid "to skip"
458 | msgstr "att hoppa över"
459 |
460 | #: admin/bepro_listings_wizard.php:47
461 | msgid "STEP 1: CREATE WORDPRESS PAGES"
462 | msgstr "STEG 1: SKAPA WORDPRESS SIDOR"
463 |
--------------------------------------------------------------------------------
/languages/bepro-listings-nl_NL.po:
--------------------------------------------------------------------------------
1 | # Translation for BePro Listings
2 | # Copyright (C) 2012 Beyond Programs LTD (beyondprograms.com)
3 | # This file is distributed under the same license as BePro Listings.
4 | # BePro Software Team , 2012.
5 | msgid ""
6 | msgstr ""
7 | "Project-Id-Version: BePro Listings Translation 1.0\n"
8 | "Report-Msgid-Bugs-To: translate-devel@lists.sourceforge.net\n"
9 | "POT-Creation-Date: 2012-09-14 16:20+0200\n"
10 | "PO-Revision-Date: 2015-04-18 09:15-0400\n"
11 | "Last-Translator: \n"
12 | "Language-Team: bepro software\n"
13 | "MIME-Version: 1.0\n"
14 | "Content-Type: text/plain; charset=UTF-8\n"
15 | "Content-Transfer-Encoding: 8bit\n"
16 | "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17 | "X-Generator: Poedit 1.5.7\n"
18 | "Language: pt_PT\n"
19 |
20 | msgid "Item Information"
21 | msgstr "Objectgegevens"
22 |
23 | #: bepro_listings_frontend.php:321
24 | msgid "Item Name"
25 | msgstr "Itemnaam"
26 |
27 | #: bepro_listings_frontend.php:322
28 | msgid "Cost"
29 | msgstr "Kosten"
30 |
31 | #: bepro_listings_frontend.php:323
32 | msgid "Description"
33 | msgstr "Beschrijving"
34 |
35 | #: bepro_listings_frontend.php:334
36 | msgid "Image"
37 | msgstr "Afbeelding"
38 |
39 | #: bepro_listings_frontend.php:324
40 | msgid "Categories"
41 | msgstr "Categorieën"
42 |
43 | #: bepro_listings_frontend.php:345
44 | msgid "Contact Information"
45 | msgstr "Contact informatie"
46 |
47 | #: bepro_listings_frontend.php:346
48 | msgid "First Name"
49 | msgstr "Voornaam"
50 |
51 | #: bepro_listings_frontend.php:347
52 | msgid "Last Name"
53 | msgstr "Achternaam"
54 |
55 | #: bepro_listings_frontend.php:348
56 | msgid "Email"
57 | msgstr "E-mail"
58 |
59 | #: bepro_listings_frontend.php:349
60 | msgid "Phone"
61 | msgstr "Telefoon"
62 |
63 | #: bepro_listings_frontend.php:350
64 | msgid "Website"
65 | msgstr "Website"
66 |
67 | #: bepro_listings_frontend.php:356
68 | msgid "Location Information"
69 | msgstr "Locatie-informatie"
70 |
71 | #: bepro_listings_frontend.php:357
72 | msgid "Address"
73 | msgstr "Adres"
74 |
75 | #: bepro_listings_frontend.php:358
76 | msgid "City"
77 | msgstr "Stad"
78 |
79 | #: bepro_listings_frontend.php:359
80 | msgid "State"
81 | msgstr "Staat"
82 |
83 | #: bepro_listings_frontend.php:360
84 | msgid "Country"
85 | msgstr "Land"
86 |
87 | #: bepro_listings_frontend.php:361
88 | msgid "Zip / Postal"
89 | msgstr "Zip / Postal"
90 |
91 | msgid "Filter Listings"
92 | msgstr "Filter aanbiedingen"
93 |
94 | msgid "Listings Map"
95 | msgstr "Aanbiedingen kaart"
96 |
97 | #: bepro_listings.php:261
98 | msgid "From"
99 | msgstr "Van"
100 |
101 | #: bepro_listings.php:261
102 | msgid "To"
103 | msgstr "Aan"
104 |
105 | #: bepro_listings.php:264
106 | msgid "Date Range"
107 | msgstr "Datumbereik"
108 |
109 | #: bepro_listings.php:261
110 | msgid "Price Range"
111 | msgstr "Prijsklasse"
112 |
113 | #: bepro_listings.php:268
114 | msgid "Refine Search"
115 | msgstr "Zoekopdracht verfijnen"
116 |
117 | #: bepro_listings.php:248
118 | msgid "Distance"
119 | msgstr "Afstand"
120 |
121 | #: bepro_listings.php:79
122 | msgid "Where"
123 | msgstr "Waar"
124 |
125 | #: bepro_listings.php:82
126 | msgid "Name"
127 | msgstr "Naam"
128 |
129 | #: bepro_listings.php:85
130 | msgid "Search Listings"
131 | msgstr "Zoek woningen"
132 |
133 | #: bepro_listings_frontend.php:370
134 | msgid "Username"
135 | msgstr "Gebruikersnaam"
136 |
137 | #: bepro_listings_frontend.php:371
138 | msgid "Password"
139 | msgstr "Wachtwoord"
140 |
141 | #: bepro_listings_frontend.php:369
142 | msgid "Login / Register"
143 | msgstr "Inloggen / registreren"
144 |
145 | #: bepro_listings_frontend.php:375
146 | msgid "Create Listing"
147 | msgstr "Aanbieding maken"
148 |
149 | #: bepro_listings.php:234
150 | msgid "Listing Types"
151 | msgstr "Aanbieding typen"
152 |
153 | #: bepro_listings.php:276
154 | msgid "Free"
155 | msgstr "Gratis"
156 |
157 | #: bepro_listings.php:278
158 | msgid "Please Contact"
159 | msgstr "Neem contact op met"
160 |
161 | #: bepro_listings.php:285
162 | msgid "View Map"
163 | msgstr "Bekijk de kaart"
164 |
165 | #: ------------Admin Area---------------- bepro_listings_admin.php:258
166 | msgid "Show Cost"
167 | msgstr "Toon kosten"
168 |
169 | #: bepro_listings_admin.php:259
170 | msgid "Show Contact"
171 | msgstr "Toon Contact"
172 |
173 | #: bepro_listings_admin.php:260
174 | msgid "Show Geography"
175 | msgstr "Toon Geografie"
176 |
177 | #: bepro_listings_admin.php:261
178 | msgid "# Of Images"
179 | msgstr "# Van beelden"
180 |
181 | #: bepro_listings_admin.php:274
182 | msgid "Validate Form"
183 | msgstr "Formulier valideren"
184 |
185 | #: bepro_listings_admin.php:275
186 | msgid "Default User Id"
187 | msgstr "Standaard gebruikers-Id"
188 |
189 | #: bepro_listings_admin.php:276
190 | msgid "Success Message"
191 | msgstr "Succes bericht"
192 |
193 | #: bepro_listings_admin.php:279
194 | msgid "Default Listing Image"
195 | msgstr "Aanbieding standaardafbeelding"
196 |
197 | #: bepro_listings_admin.php:280
198 | msgid "Default # Listings"
199 | msgstr "Standaard # aanbiedingen"
200 |
201 | #: bepro_listings_admin.php:288
202 | msgid "Default Search Distance (Mi)"
203 | msgstr "Zoek standaardafstand (Mi)"
204 |
205 | #: bepro_listings_admin.php:299
206 | msgid "Gallery Size"
207 | msgstr "Galerie grootte"
208 |
209 | #: bepro_listings_admin.php:305
210 | msgid "Show Details"
211 | msgstr "Details weergeven"
212 |
213 | #: bepro_listings_admin.php:306
214 | msgid "Show Content"
215 | msgstr "Inhoud weergeven"
216 |
217 | #: bepro_listings_admin.php:319
218 | msgid "Our Link in your footer?"
219 | msgstr "Onze Link in je footer?"
220 |
221 | #: bepro_listings_admin.php:575
222 | msgid "General"
223 | msgstr "Algemene"
224 |
225 | #: bepro_listings_admin.php:576
226 | msgid "Forms"
227 | msgstr "Formulieren"
228 |
229 | #: bepro_listings_admin.php:577
230 | msgid "Search/Listings"
231 | msgstr "Zoek/aanbiedingen"
232 |
233 | #: bepro_listings_admin.php:578
234 | msgid "Page/Post"
235 | msgstr "Pagina/Post"
236 |
237 | #: bepro_listings_admin.php:579
238 | msgid "Map"
239 | msgstr "Kaart"
240 |
241 | #: bepro_listings_admin.php:580
242 | msgid "3rd Party"
243 | msgstr "3de partij"
244 |
245 | #: bepro_listings_admin.php:581
246 | msgid "CSV Upload"
247 | msgstr "CSV-Upload"
248 |
249 | #: bepro_listings_admin.php:582
250 | msgid "Payments"
251 | msgstr "Betalingen"
252 |
253 | #: bepro_listings_admin.php:583
254 | msgid "Support"
255 | msgstr "Ondersteuning"
256 |
257 | #: templates\tabs\tab-comments.php:10
258 | msgid "Comments"
259 | msgstr "Opmerkingen"
260 |
261 | #: bepro_listings_frontend.php:729
262 | msgid "Details"
263 | msgstr "Details"
264 |
265 | #: bepro_listings_admin.php:613
266 | msgid "# Of Uploads"
267 | msgstr "# Voor Uploads"
268 |
269 | #: bepro_listings_admin.php:625
270 | msgid "Category Heading"
271 | msgstr "Categorie Rubriek"
272 |
273 | #: bepro_listings_admin.php:626
274 | msgid "Category Empty"
275 | msgstr "Categorie lege"
276 |
277 | #: bepro_listings_admin.php:627
278 | msgid "Category Singular"
279 | msgstr "Categorie Singular"
280 |
281 | #: bepro_listings_admin.php:628
282 | msgid "Days until Listings Expire?"
283 | msgstr "Dagen tot aanbiedingen aflopen?"
284 |
285 | #: bepro_listings_admin.php:633
286 | msgid "Default Status"
287 | msgstr "Standaardstatus"
288 |
289 | #: bepro_listings_admin.php:638
290 | msgid "Fail Message"
291 | msgstr "Bericht mislukt"
292 |
293 | #: bepro_listings_admin.php:639
294 | msgid "Required Categories"
295 | msgstr "Vereiste Categorieën"
296 |
297 | #: bepro_listings_admin.php:640
298 | msgid "Exclude Categories"
299 | msgstr "Categorieën uit te sluiten"
300 |
301 | #: bepro_listings_admin.php:644
302 | msgid "How Links Open"
303 | msgstr "Hoe Links openen"
304 |
305 | #: bepro_listings_admin.php:650
306 | msgid "Ajax On?"
307 | msgstr "Ajax op?"
308 |
309 | #: bepro_listings_admin.php:671
310 | msgid "Name Search"
311 | msgstr "Zoeken op naam"
312 |
313 | #: bepro_listings_admin.php:677
314 | msgid "Title Length"
315 | msgstr "Titel lengte"
316 |
317 | #: bepro_listings_admin.php:678
318 | msgid "Details Link Text"
319 | msgstr "Details Koppelingstekst"
320 |
321 | #: bepro_listings_admin.php:679
322 | msgid "Show Website Link?"
323 | msgstr "Websitelink Toon?"
324 |
325 | #: bepro_listings_admin.php:680
326 | msgid "Currency Sign?"
327 | msgstr "Valutateken?"
328 |
329 | #: bepro_listings_admin.php:681
330 | msgid "Show Date filter?"
331 | msgstr "Toon Datumfilter?"
332 |
333 | #: bepro_listings_admin.php:691
334 | msgid "# Gallery Columns"
335 | msgstr "# Galerie kolommen"
336 |
337 | #: bepro_listings_admin.php:697
338 | msgid "Links on Details"
339 | msgstr "Links op Details"
340 |
341 | #: bepro_listings_admin.php:698
342 | msgid "Protect Contact"
343 | msgstr "Beschermen van Contact"
344 |
345 | #: bepro_listings_admin.php:700
346 | msgid "Tab Direction"
347 | msgstr "Tabblad richting"
348 |
349 | #: bepro_listings_admin.php:706
350 | msgid "Query Type"
351 | msgstr "Query Type"
352 |
353 | #: bepro_listings_admin.php:716
354 | msgid "CSV File"
355 | msgstr "CSV-bestand"
356 |
357 | #: bepro_listings_admin.php:717
358 | msgid "Delimiter"
359 | msgstr "Scheidingsteken"
360 |
361 | #: bepro_listings_admin.php:732
362 | msgid "Accept Payments?"
363 | msgstr "Betalingen accepteren?"
364 |
365 | #: bepro_listings_admin.php:740
366 | msgid "Publish after confirm Paid?"
367 | msgstr "Publiceren na bevestigen betaald?"
368 |
369 | #: ------------Front end---------------- templates/list.php:6
370 | msgid "My Item Listings"
371 | msgstr "Mijn aanbiedingen"
372 |
373 | msgid "Status"
374 | msgstr "Status"
375 |
376 | msgid "Notices"
377 | msgstr "Aankondigingen"
378 |
379 | msgid "Actions"
380 | msgstr "Acties"
381 |
382 | #: templates/list.php:32
383 | msgid "View"
384 | msgstr "Weergave"
385 |
386 | #: templates/list.php:32
387 | msgid "Edit"
388 | msgstr "Bewerken"
389 |
390 | #: templates/list.php:32
391 | msgid "Delete"
392 | msgstr "Verwijderen"
393 |
394 | #: templates/list.php:22
395 | msgid "Expires"
396 | msgstr "Verloopt"
397 |
398 | #: templates/list.php:32
399 | msgid "Pay"
400 | msgstr "Betalen"
401 |
402 | #: templates/list.php:50
403 | msgid "Wait"
404 | msgstr "Wachten"
405 |
406 | #: templates/list.php:60
407 | msgid "No Live listings created"
408 | msgstr "Geen Live aanbiedingen gemaakt"
409 |
410 | #: templates/list.php:62
411 | msgid "No live listings for this user"
412 | msgstr "Geen levende aanbiedingen voor deze gebruiker"
413 |
414 | #: ------------DASHBOARD---------------- admin/bepro_listings_dashboard.php:
415 | #: #BePro_Edits admin/bepro_listings_wizard.php:6
416 | msgid "Welcome to BePro Listings!"
417 | msgstr "Welkom bij BePro Listings!"
418 |
419 | #: admin/bepro_listings_wizard.php:12
420 | msgid ""
421 | "Congratulations, you are now using the latest version of BePro Listings. "
422 | "With lots of ways to customize, this software is ideal for creating your "
423 | "custom directory listing needs. This page shows the new features packaged "
424 | "with the plugin."
425 | msgstr ""
426 | "Gefeliciteerd, u nu gebruikt de nieuwste versie van BePro Listings. Met een "
427 | "heleboel manieren om aan te passen, is deze software ideaal voor het maken "
428 | "van uw aangepaste folderlijst behoeften. Deze pagina toont de nieuwe "
429 | "functionaliteiten verpakt met de plugin."
430 |
431 | #: admin/bepro_listings_wizard.php:17
432 | msgid "What's New"
433 | msgstr "Wat is er nieuw"
434 |
435 | #: admin/bepro_listings_wizard.php:22
436 | msgid "You are using"
437 | msgstr "U gebruikt"
438 |
439 | #: admin/bepro_listings_wizard.php:22
440 | msgid "BePro Listings Version:"
441 | msgstr "BePro Listngs Versie:"
442 |
443 | #: ------------INSTALLATION WIZARD----------------
444 | #: admin/bepro_listings_wizard.php admin/bepro_listings_wizard.php:6
445 | msgid "BePro Listings INSTALLATION WIZARD"
446 | msgstr "BePro Listings INSTALLATIEWIZARD"
447 |
448 | #: admin/bepro_listings_wizard.php:7
449 | msgid "Use the following steps to help you setup BePro Listings. Otherwise,"
450 | msgstr "Met de volgende stappen kunt u setup BePro Lisitngs. Anders,"
451 |
452 | #: admin/bepro_listings_wizard.php:7
453 | msgid "Click Here"
454 | msgstr "Klik hier"
455 |
456 | #: admin/bepro_listings_wizard.php:7
457 | msgid "to skip"
458 | msgstr "overslaan"
459 |
460 | #: admin/bepro_listings_wizard.php:47
461 | msgid "STEP 1: CREATE WORDPRESS PAGES"
462 | msgstr "STAP 1: MAAK WORDPRESS PAGINA 'S"
463 |
--------------------------------------------------------------------------------
/languages/bepro-listings-pl_PL.po:
--------------------------------------------------------------------------------
1 | # Translation for BePro Listings
2 | # Copyright (C) 2012 Beyond Programs LTD (beyondprograms.com)
3 | # This file is distributed under the same license as BePro Listings.
4 | # BePro Software Team , 2012.
5 | msgid ""
6 | msgstr ""
7 | "Project-Id-Version: BePro Listings Translation 1.0\n"
8 | "Report-Msgid-Bugs-To: translate-devel@lists.sourceforge.net\n"
9 | "POT-Creation-Date: 2012-09-14 16:20+0200\n"
10 | "PO-Revision-Date: 2015-04-18 09:06-0400\n"
11 | "Last-Translator: \n"
12 | "Language-Team: bepro software\n"
13 | "MIME-Version: 1.0\n"
14 | "Content-Type: text/plain; charset=UTF-8\n"
15 | "Content-Transfer-Encoding: 8bit\n"
16 | "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17 | "X-Generator: Poedit 1.5.7\n"
18 | "Language: pt_PT\n"
19 |
20 | msgid "Item Information"
21 | msgstr "Informacje o przedmiocie"
22 |
23 | #: bepro_listings_frontend.php:321
24 | msgid "Item Name"
25 | msgstr "Nazwa elementu"
26 |
27 | #: bepro_listings_frontend.php:322
28 | msgid "Cost"
29 | msgstr "Koszt"
30 |
31 | #: bepro_listings_frontend.php:323
32 | msgid "Description"
33 | msgstr "Opis"
34 |
35 | #: bepro_listings_frontend.php:334
36 | msgid "Image"
37 | msgstr "Obraz"
38 |
39 | #: bepro_listings_frontend.php:324
40 | msgid "Categories"
41 | msgstr "Kategorie"
42 |
43 | #: bepro_listings_frontend.php:345
44 | msgid "Contact Information"
45 | msgstr "Informacje kontaktowe"
46 |
47 | #: bepro_listings_frontend.php:346
48 | msgid "First Name"
49 | msgstr "Imię"
50 |
51 | #: bepro_listings_frontend.php:347
52 | msgid "Last Name"
53 | msgstr "Nazwisko"
54 |
55 | #: bepro_listings_frontend.php:348
56 | msgid "Email"
57 | msgstr "Adres e-mail"
58 |
59 | #: bepro_listings_frontend.php:349
60 | msgid "Phone"
61 | msgstr "Telefon"
62 |
63 | #: bepro_listings_frontend.php:350
64 | msgid "Website"
65 | msgstr "Strona internetowa"
66 |
67 | #: bepro_listings_frontend.php:356
68 | msgid "Location Information"
69 | msgstr "Informacje o lokalizacji"
70 |
71 | #: bepro_listings_frontend.php:357
72 | msgid "Address"
73 | msgstr "Adres"
74 |
75 | #: bepro_listings_frontend.php:358
76 | msgid "City"
77 | msgstr "Miasto"
78 |
79 | #: bepro_listings_frontend.php:359
80 | msgid "State"
81 | msgstr "Państwa"
82 |
83 | #: bepro_listings_frontend.php:360
84 | msgid "Country"
85 | msgstr "Kraju"
86 |
87 | #: bepro_listings_frontend.php:361
88 | msgid "Zip / Postal"
89 | msgstr "Zip / pocztowy"
90 |
91 | msgid "Filter Listings"
92 | msgstr "Filtr oferty"
93 |
94 | msgid "Listings Map"
95 | msgstr "Mapa oferty"
96 |
97 | #: bepro_listings.php:261
98 | msgid "From"
99 | msgstr "Od"
100 |
101 | #: bepro_listings.php:261
102 | msgid "To"
103 | msgstr "Do"
104 |
105 | #: bepro_listings.php:264
106 | msgid "Date Range"
107 | msgstr "Zakres dat"
108 |
109 | #: bepro_listings.php:261
110 | msgid "Price Range"
111 | msgstr "Przedział cenowy"
112 |
113 | #: bepro_listings.php:268
114 | msgid "Refine Search"
115 | msgstr "Uściślij wyszukiwanie"
116 |
117 | #: bepro_listings.php:248
118 | msgid "Distance"
119 | msgstr "Odległość"
120 |
121 | #: bepro_listings.php:79
122 | msgid "Where"
123 | msgstr "Gdzie"
124 |
125 | #: bepro_listings.php:82
126 | msgid "Name"
127 | msgstr "Nazwa"
128 |
129 | #: bepro_listings.php:85
130 | msgid "Search Listings"
131 | msgstr "Szukaj oferty"
132 |
133 | #: bepro_listings_frontend.php:370
134 | msgid "Username"
135 | msgstr "Nazwa użytkownika"
136 |
137 | #: bepro_listings_frontend.php:371
138 | msgid "Password"
139 | msgstr "Hasło"
140 |
141 | #: bepro_listings_frontend.php:369
142 | msgid "Login / Register"
143 | msgstr "Zaloguj się / Zarejestruj się"
144 |
145 | #: bepro_listings_frontend.php:375
146 | msgid "Create Listing"
147 | msgstr "Tworzenie aukcji"
148 |
149 | #: bepro_listings.php:234
150 | msgid "Listing Types"
151 | msgstr "Lista typów"
152 |
153 | #: bepro_listings.php:276
154 | msgid "Free"
155 | msgstr "Darmowe"
156 |
157 | #: bepro_listings.php:278
158 | msgid "Please Contact"
159 | msgstr "Prosimy o kontakt"
160 |
161 | #: bepro_listings.php:285
162 | msgid "View Map"
163 | msgstr "Pokaż mapę"
164 |
165 | #: ------------Admin Area---------------- bepro_listings_admin.php:258
166 | msgid "Show Cost"
167 | msgstr "Pokaż koszt"
168 |
169 | #: bepro_listings_admin.php:259
170 | msgid "Show Contact"
171 | msgstr "Pokaż kontakt"
172 |
173 | #: bepro_listings_admin.php:260
174 | msgid "Show Geography"
175 | msgstr "Pokaż Geografia"
176 |
177 | #: bepro_listings_admin.php:261
178 | msgid "# Of Images"
179 | msgstr "# Zdjęcia"
180 |
181 | #: bepro_listings_admin.php:274
182 | msgid "Validate Form"
183 | msgstr "Walidacji formularza"
184 |
185 | #: bepro_listings_admin.php:275
186 | msgid "Default User Id"
187 | msgstr "Domyślny identyfikator użytkownika"
188 |
189 | #: bepro_listings_admin.php:276
190 | msgid "Success Message"
191 | msgstr "Komunikat o sukcesie"
192 |
193 | #: bepro_listings_admin.php:279
194 | msgid "Default Listing Image"
195 | msgstr "Domyślne wyświetlanie obrazu"
196 |
197 | #: bepro_listings_admin.php:280
198 | msgid "Default # Listings"
199 | msgstr "Domyślnie # oferty"
200 |
201 | #: bepro_listings_admin.php:288
202 | msgid "Default Search Distance (Mi)"
203 | msgstr "Domyślnie Szukaj odległości (Mi)"
204 |
205 | #: bepro_listings_admin.php:299
206 | msgid "Gallery Size"
207 | msgstr "Galeria rozmiar"
208 |
209 | #: bepro_listings_admin.php:305
210 | msgid "Show Details"
211 | msgstr "Pokaż szczegóły"
212 |
213 | #: bepro_listings_admin.php:306
214 | msgid "Show Content"
215 | msgstr "Pokaż zawartość"
216 |
217 | #: bepro_listings_admin.php:319
218 | msgid "Our Link in your footer?"
219 | msgstr "Nasz Link w swojej stopce?"
220 |
221 | #: bepro_listings_admin.php:575
222 | msgid "General"
223 | msgstr "Ogólne"
224 |
225 | #: bepro_listings_admin.php:576
226 | msgid "Forms"
227 | msgstr "Formy"
228 |
229 | #: bepro_listings_admin.php:577
230 | msgid "Search/Listings"
231 | msgstr "Szukaj/oferty"
232 |
233 | #: bepro_listings_admin.php:578
234 | msgid "Page/Post"
235 | msgstr "Strona/Post"
236 |
237 | #: bepro_listings_admin.php:579
238 | msgid "Map"
239 | msgstr "Mapa"
240 |
241 | #: bepro_listings_admin.php:580
242 | msgid "3rd Party"
243 | msgstr "3rd party"
244 |
245 | #: bepro_listings_admin.php:581
246 | msgid "CSV Upload"
247 | msgstr "Wyślij pliki CSV"
248 |
249 | #: bepro_listings_admin.php:582
250 | msgid "Payments"
251 | msgstr "Płatności"
252 |
253 | #: bepro_listings_admin.php:583
254 | msgid "Support"
255 | msgstr "Wsparcie"
256 |
257 | #: templates\tabs\tab-comments.php:10
258 | msgid "Comments"
259 | msgstr "Komentarze"
260 |
261 | #: bepro_listings_frontend.php:729
262 | msgid "Details"
263 | msgstr "Szczegóły"
264 |
265 | #: bepro_listings_admin.php:613
266 | msgid "# Of Uploads"
267 | msgstr "# Przesyłania"
268 |
269 | #: bepro_listings_admin.php:625
270 | msgid "Category Heading"
271 | msgstr "Nagłówek kategorii"
272 |
273 | #: bepro_listings_admin.php:626
274 | msgid "Category Empty"
275 | msgstr "Kategoria pusty"
276 |
277 | #: bepro_listings_admin.php:627
278 | msgid "Category Singular"
279 | msgstr "Pojedynczej kategorii"
280 |
281 | #: bepro_listings_admin.php:628
282 | msgid "Days until Listings Expire?"
283 | msgstr "Dni, do czasu wygaśnięcia oferty?"
284 |
285 | #: bepro_listings_admin.php:633
286 | msgid "Default Status"
287 | msgstr "Domyślny stan"
288 |
289 | #: bepro_listings_admin.php:638
290 | msgid "Fail Message"
291 | msgstr "Niepowodzenie wiadomość"
292 |
293 | #: bepro_listings_admin.php:639
294 | msgid "Required Categories"
295 | msgstr "Wymagane Kategorie"
296 |
297 | #: bepro_listings_admin.php:640
298 | msgid "Exclude Categories"
299 | msgstr "Wyklucza Kategorie"
300 |
301 | #: bepro_listings_admin.php:644
302 | msgid "How Links Open"
303 | msgstr "Jak otworzyć linki"
304 |
305 | #: bepro_listings_admin.php:650
306 | msgid "Ajax On?"
307 | msgstr "AJAX na?"
308 |
309 | #: bepro_listings_admin.php:671
310 | msgid "Name Search"
311 | msgstr "Nazwa wyszukiwania"
312 |
313 | #: bepro_listings_admin.php:677
314 | msgid "Title Length"
315 | msgstr "Długość tytuł"
316 |
317 | #: bepro_listings_admin.php:678
318 | msgid "Details Link Text"
319 | msgstr "Szczegóły Link Text"
320 |
321 | #: bepro_listings_admin.php:679
322 | msgid "Show Website Link?"
323 | msgstr "Pokaż na stronie Link?"
324 |
325 | #: bepro_listings_admin.php:680
326 | msgid "Currency Sign?"
327 | msgstr "Znak waluty?"
328 |
329 | #: bepro_listings_admin.php:681
330 | msgid "Show Date filter?"
331 | msgstr "Pokaż filtr daty?"
332 |
333 | #: bepro_listings_admin.php:691
334 | msgid "# Gallery Columns"
335 | msgstr "# Galeria kolumny"
336 |
337 | #: bepro_listings_admin.php:697
338 | msgid "Links on Details"
339 | msgstr "Linki na szczegóły"
340 |
341 | #: bepro_listings_admin.php:698
342 | msgid "Protect Contact"
343 | msgstr "Chronić kontakt"
344 |
345 | #: bepro_listings_admin.php:700
346 | msgid "Tab Direction"
347 | msgstr "Kierunek tabulatorów"
348 |
349 | #: bepro_listings_admin.php:706
350 | msgid "Query Type"
351 | msgstr "Typ kwerendy"
352 |
353 | #: bepro_listings_admin.php:716
354 | msgid "CSV File"
355 | msgstr "Pliku CSV"
356 |
357 | #: bepro_listings_admin.php:717
358 | msgid "Delimiter"
359 | msgstr "Ogranicznik"
360 |
361 | #: bepro_listings_admin.php:732
362 | msgid "Accept Payments?"
363 | msgstr "Akceptujemy płatności?"
364 |
365 | #: bepro_listings_admin.php:740
366 | msgid "Publish after confirm Paid?"
367 | msgstr "Publikować po potwierdzenie płatny?"
368 |
369 | #: ------------Front end---------------- templates/list.php:6
370 | msgid "My Item Listings"
371 | msgstr "Moje aukcje przedmiotów"
372 |
373 | msgid "Status"
374 | msgstr "Stan"
375 |
376 | msgid "Notices"
377 | msgstr "Ogłoszenia"
378 |
379 | msgid "Actions"
380 | msgstr "Działania"
381 |
382 | #: templates/list.php:32
383 | msgid "View"
384 | msgstr "Widok"
385 |
386 | #: templates/list.php:32
387 | msgid "Edit"
388 | msgstr "Edycja"
389 |
390 | #: templates/list.php:32
391 | msgid "Delete"
392 | msgstr "SupprimerUsuń"
393 |
394 | #: templates/list.php:22
395 | msgid "Expires"
396 | msgstr "Wygasa"
397 |
398 | #: templates/list.php:32
399 | msgid "Pay"
400 | msgstr "Zapłacić"
401 |
402 | #: templates/list.php:50
403 | msgid "Wait"
404 | msgstr "AttendreCzekać"
405 |
406 | #: templates/list.php:60
407 | msgid "No Live listings created"
408 | msgstr "Nie oferty Live stworzony"
409 |
410 | #: templates/list.php:62
411 | msgid "No live listings for this user"
412 | msgstr "Nie żyć aukcji tego użytkownika"
413 |
414 | #: ------------DASHBOARD---------------- admin/bepro_listings_dashboard.php:
415 | #: #BePro_Edits admin/bepro_listings_wizard.php:6
416 | msgid "Welcome to BePro Listings!"
417 | msgstr "Witamy BePro Listings!"
418 |
419 | #: admin/bepro_listings_wizard.php:12
420 | msgid ""
421 | "Congratulations, you are now using the latest version of BePro Listings. "
422 | "With lots of ways to customize, this software is ideal for creating your "
423 | "custom directory listing needs. This page shows the new features packaged "
424 | "with the plugin."
425 | msgstr ""
426 | "Gratulacje teraz używasz najnowszej wersji kształtowników oferty. Z wielu "
427 | "sposobów, aby dostosować to oprogramowanie jest idealny do tworzenia "
428 | "katalogu niestandardowe listy potrzeb. Na tej stronie przedstawiono nowe "
429 | "funkcje pakowane z pluginem."
430 |
431 | #: admin/bepro_listings_wizard.php:17
432 | msgid "What's New"
433 | msgstr "Co to jest nowy"
434 |
435 | #: admin/bepro_listings_wizard.php:22
436 | msgid "You are using"
437 | msgstr "Używasz"
438 |
439 | #: admin/bepro_listings_wizard.php:22
440 | msgid "BePro Listings Version:"
441 | msgstr "BePro Listings Wersji:"
442 |
443 | #: ------------INSTALLATION WIZARD----------------
444 | #: admin/bepro_listings_wizard.php admin/bepro_listings_wizard.php:6
445 | msgid "BePro Listings INSTALLATION WIZARD"
446 | msgstr "BePro Listings Kreatora instalacji"
447 |
448 | #: admin/bepro_listings_wizard.php:7
449 | msgid "Use the following steps to help you setup BePro Listings. Otherwise,"
450 | msgstr ""
451 | "Wykonaj następujące kroki, aby pomóc w instalacji BePro Listings. W "
452 | "przeciwnym razie,"
453 |
454 | #: admin/bepro_listings_wizard.php:7
455 | msgid "Click Here"
456 | msgstr "Kliknij tutaj"
457 |
458 | #: admin/bepro_listings_wizard.php:7
459 | msgid "to skip"
460 | msgstr "Aby pominąć"
461 |
462 | #: admin/bepro_listings_wizard.php:47
463 | msgid "STEP 1: CREATE WORDPRESS PAGES"
464 | msgstr "KROK 1: TWORZENIE STRON WORDPRESS"
465 |
--------------------------------------------------------------------------------
/languages/bepro-listings-de_DE.po:
--------------------------------------------------------------------------------
1 | # Translation for BePro Listings
2 | # Copyright (C) 2012 Beyond Programs LTD (beyondprograms.com)
3 | # This file is distributed under the same license as BePro Listings.
4 | # BePro Software Team , 2012.
5 | msgid ""
6 | msgstr ""
7 | "Project-Id-Version: BePro Listings Translation 1.0\n"
8 | "Report-Msgid-Bugs-To: translate-devel@lists.sourceforge.net\n"
9 | "POT-Creation-Date: 2012-09-14 16:20+0200\n"
10 | "PO-Revision-Date: 2015-04-18 09:03-0400\n"
11 | "Last-Translator: \n"
12 | "Language-Team: bepro software\n"
13 | "MIME-Version: 1.0\n"
14 | "Content-Type: text/plain; charset=UTF-8\n"
15 | "Content-Transfer-Encoding: 8bit\n"
16 | "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17 | "X-Generator: Poedit 1.5.7\n"
18 | "Language: pt_PT\n"
19 |
20 | msgid "Item Information"
21 | msgstr "Artikelinformationen"
22 |
23 | #: bepro_listings_frontend.php:321
24 | msgid "Item Name"
25 | msgstr "Name des Elements"
26 |
27 | #: bepro_listings_frontend.php:322
28 | msgid "Cost"
29 | msgstr "Kosten"
30 |
31 | #: bepro_listings_frontend.php:323
32 | msgid "Description"
33 | msgstr "Beschreibung"
34 |
35 | #: bepro_listings_frontend.php:334
36 | msgid "Image"
37 | msgstr "Bild"
38 |
39 | #: bepro_listings_frontend.php:324
40 | msgid "Categories"
41 | msgstr "Kategorien"
42 |
43 | #: bepro_listings_frontend.php:345
44 | msgid "Contact Information"
45 | msgstr "Kontaktinformationen"
46 |
47 | #: bepro_listings_frontend.php:346
48 | msgid "First Name"
49 | msgstr "Vorname"
50 |
51 | #: bepro_listings_frontend.php:347
52 | msgid "Last Name"
53 | msgstr "Nachname"
54 |
55 | #: bepro_listings_frontend.php:348
56 | msgid "Email"
57 | msgstr "E-Mail"
58 |
59 | #: bepro_listings_frontend.php:349
60 | msgid "Phone"
61 | msgstr "Telefon"
62 |
63 | #: bepro_listings_frontend.php:350
64 | msgid "Website"
65 | msgstr "Webseite"
66 |
67 | #: bepro_listings_frontend.php:356
68 | msgid "Location Information"
69 | msgstr "Standortinformationen"
70 |
71 | #: bepro_listings_frontend.php:357
72 | msgid "Address"
73 | msgstr "Adresse"
74 |
75 | #: bepro_listings_frontend.php:358
76 | msgid "City"
77 | msgstr "Stadt"
78 |
79 | #: bepro_listings_frontend.php:359
80 | msgid "State"
81 | msgstr "Zustand"
82 |
83 | #: bepro_listings_frontend.php:360
84 | msgid "Country"
85 | msgstr "Land"
86 |
87 | #: bepro_listings_frontend.php:361
88 | msgid "Zip / Postal"
89 | msgstr "Zip / Postal"
90 |
91 | msgid "Filter Listings"
92 | msgstr "Filter-Angebote"
93 |
94 | msgid "Listings Map"
95 | msgstr "Inserate anzeigen"
96 |
97 | #: bepro_listings.php:261
98 | msgid "From"
99 | msgstr "Von"
100 |
101 | #: bepro_listings.php:261
102 | msgid "To"
103 | msgstr "An"
104 |
105 | #: bepro_listings.php:264
106 | msgid "Date Range"
107 | msgstr "Datumsbereich"
108 |
109 | #: bepro_listings.php:261
110 | msgid "Price Range"
111 | msgstr "Preisspanne"
112 |
113 | #: bepro_listings.php:268
114 | msgid "Refine Search"
115 | msgstr "Suche verfeinern"
116 |
117 | #: bepro_listings.php:248
118 | msgid "Distance"
119 | msgstr "Distanz"
120 |
121 | #: bepro_listings.php:79
122 | msgid "Where"
123 | msgstr "Wo"
124 |
125 | #: bepro_listings.php:82
126 | msgid "Name"
127 | msgstr "Name"
128 |
129 | #: bepro_listings.php:85
130 | msgid "Search Listings"
131 | msgstr "Suche Inserate"
132 |
133 | #: bepro_listings_frontend.php:370
134 | msgid "Username"
135 | msgstr "Benutzername"
136 |
137 | #: bepro_listings_frontend.php:371
138 | msgid "Password"
139 | msgstr "Passwort"
140 |
141 | #: bepro_listings_frontend.php:369
142 | msgid "Login / Register"
143 | msgstr "Login / Registrieren"
144 |
145 | #: bepro_listings_frontend.php:375
146 | msgid "Create Listing"
147 | msgstr "Liste erstellen"
148 |
149 | #: bepro_listings.php:234
150 | msgid "Listing Types"
151 | msgstr "Liste-Arten"
152 |
153 | #: bepro_listings.php:276
154 | msgid "Free"
155 | msgstr "Kostenlose"
156 |
157 | #: bepro_listings.php:278
158 | msgid "Please Contact"
159 | msgstr "Bitte kontaktieren Sie"
160 |
161 | #: bepro_listings.php:285
162 | msgid "View Map"
163 | msgstr "Karte anzeigen"
164 |
165 | #: ------------Admin Area---------------- bepro_listings_admin.php:258
166 | msgid "Show Cost"
167 | msgstr "Kosten anzeigen"
168 |
169 | #: bepro_listings_admin.php:259
170 | msgid "Show Contact"
171 | msgstr "Karte Kontakt"
172 |
173 | #: bepro_listings_admin.php:260
174 | msgid "Show Geography"
175 | msgstr "Karte-Geographie"
176 |
177 | #: bepro_listings_admin.php:261
178 | msgid "# Of Images"
179 | msgstr "Anzahl der Bilder"
180 |
181 | #: bepro_listings_admin.php:274
182 | msgid "Validate Form"
183 | msgstr "Formular validieren"
184 |
185 | #: bepro_listings_admin.php:275
186 | msgid "Default User Id"
187 | msgstr "Standard-Benutzer-Id"
188 |
189 | #: bepro_listings_admin.php:276
190 | msgid "Success Message"
191 | msgstr "Erfolgsmeldung"
192 |
193 | #: bepro_listings_admin.php:279
194 | msgid "Default Listing Image"
195 | msgstr "Standard-Listing-Bild"
196 |
197 | #: bepro_listings_admin.php:280
198 | msgid "Default # Listings"
199 | msgstr "Standard # Kleinanzeigen"
200 |
201 | #: bepro_listings_admin.php:288
202 | msgid "Default Search Distance (Mi)"
203 | msgstr "Suche Standardabstand (Mi)"
204 |
205 | #: bepro_listings_admin.php:299
206 | msgid "Gallery Size"
207 | msgstr "Galerie-Größe"
208 |
209 | #: bepro_listings_admin.php:305
210 | msgid "Show Details"
211 | msgstr "Details anzeigen"
212 |
213 | #: bepro_listings_admin.php:306
214 | msgid "Show Content"
215 | msgstr "Inhalt anzeigen"
216 |
217 | #: bepro_listings_admin.php:319
218 | msgid "Our Link in your footer?"
219 | msgstr "Unseren Link in der Fußzeile?"
220 |
221 | #: bepro_listings_admin.php:575
222 | msgid "General"
223 | msgstr "Generale"
224 |
225 | #: bepro_listings_admin.php:576
226 | msgid "Forms"
227 | msgstr "Forme"
228 |
229 | #: bepro_listings_admin.php:577
230 | msgid "Search/Listings"
231 | msgstr "Ricerca/Inserzioni"
232 |
233 | #: bepro_listings_admin.php:578
234 | msgid "Page/Post"
235 | msgstr "Pagina/Post"
236 |
237 | #: bepro_listings_admin.php:579
238 | msgid "Map"
239 | msgstr "Mappa"
240 |
241 | #: bepro_listings_admin.php:580
242 | msgid "3rd Party"
243 | msgstr "3a parte"
244 |
245 | #: bepro_listings_admin.php:581
246 | msgid "CSV Upload"
247 | msgstr "CSV Upload"
248 |
249 | #: bepro_listings_admin.php:582
250 | msgid "Payments"
251 | msgstr "Pagamenti"
252 |
253 | #: bepro_listings_admin.php:583
254 | msgid "Support"
255 | msgstr "Supporto"
256 |
257 | #: templates\tabs\tab-comments.php:10
258 | msgid "Comments"
259 | msgstr "Commentaires"
260 |
261 | #: bepro_listings_frontend.php:729
262 | msgid "Details"
263 | msgstr "Informationen"
264 |
265 | #: bepro_listings_admin.php:613
266 | msgid "# Of Uploads"
267 | msgstr "Anzahl der Uploads"
268 |
269 | #: bepro_listings_admin.php:625
270 | msgid "Category Heading"
271 | msgstr "Titre de la catégorieKategorieüberschrift"
272 |
273 | #: bepro_listings_admin.php:626
274 | msgid "Category Empty"
275 | msgstr "Kategorie leer"
276 |
277 | #: bepro_listings_admin.php:627
278 | msgid "Category Singular"
279 | msgstr "Kategorie Singular"
280 |
281 | #: bepro_listings_admin.php:628
282 | msgid "Days until Listings Expire?"
283 | msgstr "Tage, bis Angebote ablaufen?"
284 |
285 | #: bepro_listings_admin.php:633
286 | msgid "Default Status"
287 | msgstr "Standardstatus"
288 |
289 | #: bepro_listings_admin.php:638
290 | msgid "Fail Message"
291 | msgstr "Fehler Meldung"
292 |
293 | #: bepro_listings_admin.php:639
294 | msgid "Required Categories"
295 | msgstr "Erforderliche Kategorien"
296 |
297 | #: bepro_listings_admin.php:640
298 | msgid "Exclude Categories"
299 | msgstr "Kategorien ausschließen"
300 |
301 | #: bepro_listings_admin.php:644
302 | msgid "How Links Open"
303 | msgstr "Wie Links öffnen"
304 |
305 | #: bepro_listings_admin.php:650
306 | msgid "Ajax On?"
307 | msgstr "AJAX auf?"
308 |
309 | #: bepro_listings_admin.php:671
310 | msgid "Name Search"
311 | msgstr "Namensuche"
312 |
313 | #: bepro_listings_admin.php:677
314 | msgid "Title Length"
315 | msgstr "Titel Länge"
316 |
317 | #: bepro_listings_admin.php:678
318 | msgid "Details Link Text"
319 | msgstr "Informationen Link-Text"
320 |
321 | #: bepro_listings_admin.php:679
322 | msgid "Show Website Link?"
323 | msgstr "Zeigen Website Link?"
324 |
325 | #: bepro_listings_admin.php:680
326 | msgid "Currency Sign?"
327 | msgstr "Währungssymbol?"
328 |
329 | #: bepro_listings_admin.php:681
330 | msgid "Show Date filter?"
331 | msgstr "Zeigen Datumsfilter?"
332 |
333 | #: bepro_listings_admin.php:691
334 | msgid "# Gallery Columns"
335 | msgstr "# Galerie Spalten"
336 |
337 | #: bepro_listings_admin.php:697
338 | msgid "Links on Details"
339 | msgstr "Links auf Details"
340 |
341 | #: bepro_listings_admin.php:698
342 | msgid "Protect Contact"
343 | msgstr "Schutz-Kontakt"
344 |
345 | #: bepro_listings_admin.php:700
346 | msgid "Tab Direction"
347 | msgstr "Tabstopps"
348 |
349 | #: bepro_listings_admin.php:706
350 | msgid "Query Type"
351 | msgstr "Art der Anfrage"
352 |
353 | #: bepro_listings_admin.php:716
354 | msgid "CSV File"
355 | msgstr "CSV-Datei"
356 |
357 | #: bepro_listings_admin.php:717
358 | msgid "Delimiter"
359 | msgstr "Trennzeichen"
360 |
361 | #: bepro_listings_admin.php:732
362 | msgid "Accept Payments?"
363 | msgstr "Akzeptieren Zahlungen?"
364 |
365 | #: bepro_listings_admin.php:740
366 | msgid "Publish after confirm Paid?"
367 | msgstr "Veröffentlichen nach bestätigen bezahlt?"
368 |
369 | #: ------------Front end---------------- templates/list.php:6
370 | msgid "My Item Listings"
371 | msgstr "Meine Artikel-angeboten"
372 |
373 | msgid "Status"
374 | msgstr "Status"
375 |
376 | msgid "Notices"
377 | msgstr "Hinweise"
378 |
379 | msgid "Actions"
380 | msgstr "Aktionen"
381 |
382 | #: templates/list.php:32
383 | msgid "View"
384 | msgstr "Ansicht"
385 |
386 | #: templates/list.php:32
387 | msgid "Edit"
388 | msgstr "Bearbeiten"
389 |
390 | #: templates/list.php:32
391 | msgid "Delete"
392 | msgstr "Löschen"
393 |
394 | #: templates/list.php:22
395 | msgid "Expires"
396 | msgstr "Gültig bis"
397 |
398 | #: templates/list.php:32
399 | msgid "Pay"
400 | msgstr "Zahlen"
401 |
402 | #: templates/list.php:50
403 | msgid "Wait"
404 | msgstr "Warten"
405 |
406 | #: templates/list.php:60
407 | msgid "No Live listings created"
408 | msgstr "Keine Live-Angebote erstellt wurden"
409 |
410 | #: templates/list.php:62
411 | msgid "No live listings for this user"
412 | msgstr "Keine live-Programmlisten für diesen Benutzer"
413 |
414 | #: ------------DASHBOARD---------------- admin/bepro_listings_dashboard.php:
415 | #: #BePro_Edits admin/bepro_listings_wizard.php:6
416 | msgid "Welcome to BePro Listings!"
417 | msgstr "Välkommen till BePro Listings!"
418 |
419 | #: admin/bepro_listings_wizard.php:12
420 | msgid ""
421 | "Congratulations, you are now using the latest version of BePro Listings. "
422 | "With lots of ways to customize, this software is ideal for creating your "
423 | "custom directory listing needs. This page shows the new features packaged "
424 | "with the plugin."
425 | msgstr ""
426 | "Grattis, använder du nu den senaste versionen av BePro Listings. Med massor "
427 | "av sätt att anpassa, är denna programvara perfekt för att skapa din egen "
428 | "kataloglista behov. Den här sidan visar de nya funktioner förpackade med "
429 | "plugin."
430 |
431 | #: admin/bepro_listings_wizard.php:17
432 | msgid "What's New"
433 | msgstr "Was ist neu"
434 |
435 | #: admin/bepro_listings_wizard.php:22
436 | msgid "You are using"
437 | msgstr "Sie verwenden"
438 |
439 | #: admin/bepro_listings_wizard.php:22
440 | msgid "BePro Listings Version:"
441 | msgstr "BePro Listings Version:"
442 |
443 | #: ------------INSTALLATION WIZARD----------------
444 | #: admin/bepro_listings_wizard.php admin/bepro_listings_wizard.php:6
445 | msgid "BePro Listings INSTALLATION WIZARD"
446 | msgstr "BePro Listings INSTALLATIONS-ASSISTENT"
447 |
448 | #: admin/bepro_listings_wizard.php:7
449 | msgid "Use the following steps to help you setup BePro Listings. Otherwise,"
450 | msgstr ""
451 | "Verwenden Sie die folgenden Schritte aus, um Sie Setup BePro Listings. "
452 | "Andernfalls"
453 |
454 | #: admin/bepro_listings_wizard.php:7
455 | msgid "Click Here"
456 | msgstr "Klicken Sie hier"
457 |
458 | #: admin/bepro_listings_wizard.php:7
459 | msgid "to skip"
460 | msgstr "überspringen"
461 |
462 | #: admin/bepro_listings_wizard.php:47
463 | msgid "STEP 1: CREATE WORDPRESS PAGES"
464 | msgstr "SCHRITT 1: ERSTELLEN SIE WORDPRESS-SEITEN"
465 |
--------------------------------------------------------------------------------