root/trunk/includes/table_fields.inc.php

Revision 1, 4.6 KB (checked in by anonymous, 7 years ago)

initial import

Line 
1<?php
2/****************************************************** Open .node ***
3 * Description:   
4 * Status:        Stable.
5 * Author:        Alexandre Dath <alexandre@dotnode.com>
6 * $Id$
7 *
8 * Copyright (C) 2005 Alexandre Dath <alexandre@dotnode.com>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software Foundation,
22 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 ******************** http://opensource.ikse.net/projects/dotnode ***/
24
25$table_fields['user'] = array(
26    'fname'=>_('First name'),
27    'lname'=>_('Last name'),
28    'nick'=>_('Nickname'),
29    'lang'=>_('Language'));
30
31$table_fields['user_general'] = array(
32    'description'=>_('About me'),
33    'relationship_status'=>_('Relationship status'),
34    'birthday'=>_('Birthday'),
35    'here_for'=>_('I\'m interested in'),
36    'children'=>_('Children'),
37    'gender'=>_('Gender'),
38    'fashion'=>_('Fashion'),
39    'smoking'=>_('Smoking'),
40    'drinking'=>_('Drinking'),
41    'living'=>_('Living'),
42    'web'=>_('Web') );
43
44$table_fields['user_professional'] = array(
45    '6nergies_url' => _('6nergies_profile_address'),
46    'occupation' => _('Occupation'),
47    'industry' => _('Industry'),
48    'company' => _('Company name'),
49    'web' => _('Web'),
50    'title' => _('Title'),
51    'description' => _('Job description'),
52    'email' => _('Work email'),
53    'phone' => _('Work phone') );
54
55$table_fields['user_personal'] = array(
56    'headline' => _('Headline'),
57    'notice' => _('First thing you will notice<br />about me'),
58    'size' => _('Size (in cm)'),
59    'eye' => _('Eye color'),
60    'hair' => _('Hair color'),
61    'body_art' => _('Body art'),
62    'best_feature' => _('Best feature'),
63    'things_i_cant_live_without' => _('Things I can\'t live without'),
64    'ideal_match' => _('Describe your ideal match') );
65
66$table_fields['user_interests'] = array(
67    'passions' => _('Passions'),
68    'sports' => _('Sports'),
69    'activities' => _('Activities'),
70    'favorite_books' => _('Favorite books'),
71    'favorite_music' => _('Favorite music'),
72    'favorite_tvshow' => _('Favorite TV shows'),
73    'favorite_movies' => _('Favorite movies'),
74    'favorite_cuisines' => _('Favorite cuisines') );
75
76$table_fields['user_contact'] = array(
77        'email' => _('Email'),
78        'email2' => _('Email (2)'),
79        'email3' => _('Email (3)'),
80        'email4' => _('Email (4)'),
81        'im' => _('Main IM'),
82        'im_type' => _('IM Type'),
83        'im2' => _('Secondary IM'),
84        'im2_type' => _('IM(2) Type'),
85    'phone' => _('Phone'),
86    'cell_phone' => _('Cell phone'),
87    'address' => _('Address'),
88    'zip' => _('Zip'),
89    'city' => _('City'),
90    'country' => _('Country') );
91
92$table_fields['user_schools'] = array (
93    'year' => _('Year'),
94    'name' => _('Name'),
95    'city' => _('City'),
96    'country' => _('Country') );
97
98$table_fields['album'] = array (
99        'caption' => _('Caption') );
100
101$table_fields['bookmarks'] = array (
102        'link' => _('Link'),
103    'comment' => _('Comment') );
104
105
106$table_fields['blog'] = array (
107        'title' => _('Title'),
108        'chapeau' => _('Chapeau'),
109    'ticket' => _('Ticket'),
110    'id_cat' => _('Categorie'),
111    'date' => _('Date'),
112    'status' => _('Status') );
113
114$table_fields['blog_categorie'] = array (
115        'name' => _('Name'),
116        'comment' => _('Comment') );
117
118$table_fields['blog_comment'] = array (
119        'title' => _('Title'),
120        'comment' => _('Comment') );
121
122$table_fields['settings'] = array (
123    'new_friend_notifications' => _('New friends notifications'),
124    'new_friend_approval' => _('New friend approval'),
125    'new_blog_comment' => _('New blog comment'),
126        'messages_sent_directly_to_me' => _('Messages sent directly to me'),
127        'messages_sent_to_friends' => _('Messages send to friends'),
128        'messages_sent_to_friends_of_friends' => _('Messages send to friends of friends'),
129        'messages_sent_to_communities' => _('Messages send to my communities'),
130        'birthday_reminder' => _('Birthday remember'),
131    'publish' => _('Publish personal profil'),
132    'dotpage_css' => '.page style (CSS)',
133        'invitation_message' => _('Invitation message') );
134
135$table_fields['communities'] = array (
136    'id_cat' => 'id_cat',
137    'name' => 'name',
138    'description' => 'description',
139    'moderated' => 'moderated',
140    'country' => 'country' );
141   
142?>
Note: See TracBrowser for help on using the browser.