summaryrefslogtreecommitdiff
path: root/docroot/data
diff options
context:
space:
mode:
Diffstat (limited to 'docroot/data')
-rwxr-xr-xdocroot/data/card_tables.js63
-rwxr-xr-xdocroot/data/persist_chips.js3
-rwxr-xr-xdocroot/data/strings.en.js122
3 files changed, 188 insertions, 0 deletions
diff --git a/docroot/data/card_tables.js b/docroot/data/card_tables.js
new file mode 100755
index 0000000..6b33ed7
--- /dev/null
+++ b/docroot/data/card_tables.js
@@ -0,0 +1,63 @@
1/*
2 * Material Experience - Card Tables Data File
3 *
4 * EYEMG - Interactive Media Group
5 * Created by Mike Crute (mcrute@eyemg.com)
6 * Updated by Mike Crute (mcrute@eyemg.com) on 9/26/07
7 *
8 * Data file for the card tables. This allows us the flexibility
9 * to add or remove tables at a later date. Note that each table
10 * id should correspond to a compose card type ID otherwise
11 * no data will be loaded.
12 */
13
14[
15 {
16 tid: 'home',
17 name: 'Home',
18 color: SME.colors.grey,
19 decorate: true
20 },
21
22 {
23 tid: 'inspiration',
24 name: 'Inspiration',
25 color: SME.colors.brown,
26 decorate: true
27 },
28
29 {
30 tid: 'exploration',
31 name: 'Exploration',
32 color: SME.colors.red,
33 decorate: true
34 },
35
36 {
37 tid: 'close-up',
38 name: 'Close-Up',
39 color: SME.colors.orange,
40 decorate: true
41 },
42
43 {
44 tid: 'making_it',
45 name: 'Making It',
46 color: SME.colors.blue,
47 decorate: true
48 },
49
50 {
51 tid: 'info-samples',
52 name: 'Info & Samples',
53 color: SME.colors.green,
54 decorate: true
55 },
56
57 {
58 tid: 'preview',
59 name: 'Preview',
60 color: SME.colors.grey,
61 decorate: false
62 }
63] \ No newline at end of file
diff --git a/docroot/data/persist_chips.js b/docroot/data/persist_chips.js
new file mode 100755
index 0000000..84c3e59
--- /dev/null
+++ b/docroot/data/persist_chips.js
@@ -0,0 +1,3 @@
1[
2
3] \ No newline at end of file
diff --git a/docroot/data/strings.en.js b/docroot/data/strings.en.js
new file mode 100755
index 0000000..c9a1faf
--- /dev/null
+++ b/docroot/data/strings.en.js
@@ -0,0 +1,122 @@
1/*
2 * Material Experience - English Strings File
3 *
4 * EYEMG - Interactive Media Group
5 * Created by Mike Crute (mcrute@eyemg.com) on 9/26/07
6 * Updated by Mike Crute (mcrute@eyemg.com) on 9/26/07
7 *
8 * This strings file is the foundation for internationalization of the
9 * Material Experience website. These strings can be changed to anything
10 * and those changes will be reflected in the interface. Be careful, you
11 * can also potentially seriously break things. Follow the rules and
12 * comments.
13 *
14 * Note that as of this writing full internationalization is not fully
15 * implemented and won't be till the client requests it, I anticipate
16 * this happening some day so here we are with a strings file.
17 *
18 * Rules:
19 * Quoting -- if you need to use quotes, either single or double make sure
20 * you vary your quoting, 'this won't' work you need "this'll work"
21 *
22 * HTML -- some strings can contain HTML, don't go crazy, constrain your
23 * HTML to line breaks or you will breaks and maybe images or
24 * you will break things.
25 *
26 * Doubt -- if your not sure what effect your changes will have ASK SOMEBODY
27 * don't just make changes and hope things work
28 *
29 * Unicode -- sure, you can use unicode, just make sure you save the file with
30 * the appropriate character set. No BOM please.
31 *
32 * Comment -- leave the comments alone, and change the updated by comment at the
33 * top of this file when you make changes.
34 */
35
36var Strings =
37{
38 //
39 // LANGUAGE FILE METADATA
40 //
41 // Language of the String File and version of the site this is for
42 // Neither of these are used yet but set them anyhow since they
43 // may be used later on. Use C-style locale codes for the language.
44 //
45 // Stars are perfectly acceptable in the version field but will only
46 // be matched to 3 places.
47 language : 'en_us',
48 version : '1.*',
49
50 //
51 // APPLICATION TITLE
52 //
53 // Displayed in the browser title bar
54 appTitle: 'Material Experience',
55
56 //
57 // WINDOW SIZE ERROR
58 //
59 // Displayed once when the window size is smaller than the minimum size
60 windowSize : "Your window size is smaller than the recommended 1024x768 resolution.<br/>" +
61 "Some items may be positioned outside the viewable area.",
62
63 //
64 // DATA LOADERS
65 //
66 // Displayed whenever an AJAX call is made and while it is waiting to load
67 loadingNoAnim : "Loading Data...",
68 loadingAnim : "Loading Data <img src='images/loader.gif'/>",
69
70 //
71 // PRINTING ERRORS
72 //
73 cantPrint : "Sorry Can't Print", // Displayed if the browser doesn't support printing
74 printClose : "Do you want to close this window?", // Displayed before we auto/close the print window
75
76 //
77 // CARD DATA ERRORS
78 //
79 // Displayed within a card when it fails to load correctly
80 cardErrorTitle : "Card Error",
81 cardErrorText : "We're very sorry, there was an error loading this card. Please try again later.",
82
83 //
84 // AJAX ERRORS
85 //
86 // Displayed when an AJAX call fails.
87 ajaxError : "Some Data Could Not Be Loaded.<br/> We're sorry, please refresh this page.",
88
89 //
90 // CARD BUTTON LABELS
91 //
92 // Labels shown next to the buttons in the card
93 addToSketchbook : "Add to Sketchbook",
94 sendToFriend : "Send to a Friend",
95 printCard : "Print this Card",
96 myHistory : "My History",
97 closeCard : "Close Card",
98
99 //
100 // CARD CONTENT
101 //
102 // Static content within the card that is hard-coded
103 moreInfo : "More Information",
104 skipButton : "Skip this Card",
105
106 //
107 // SKETCHBOOK ERRORS AND CONFIRMATIONS
108 //
109 // Confirmations and errors for sketchbook actions
110 sketchbook : "Sketchbook",
111 alreadyAddedSB : "Card already exists in your sketchbook.",
112 addedSketchbook : "Added to Sketchbook",
113 addedGuestSB : "Added to Guest Sketchbook<br/>Please visit the sketchbook to log in and save your items.",
114
115 //
116 // UTILITY BOX LINKS
117 //
118 // Links at the top right of the interface.
119 pleaseLogin : "Please Log In",
120 manageAccount : "Manage My Account",
121 logout : "Log Out"
122}; \ No newline at end of file