-
Notifications
You must be signed in to change notification settings - Fork 1
/
script.js
377 lines (370 loc) · 10.7 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
angular.module('galleryApp', [])
.controller('galleryController', function() {
var gallery = this;
gallery.language = "en";
gallery.title = {
en: "Projects",
ro: "Proiecte"
};
gallery.description = {
en: "a list of projects in which I participate or participated",
ro: "o listă de proiecte la care particip sau am participat"
};
gallery.complete = {
ro: "Realizat",
en: "Complete"
};
gallery.languages = [
{
short: "ro",
text: "Română"
},
{
short: "en",
text: "English"
}
];
gallery.change_language = function(language) {
gallery.language = language;
console.log(language);
};
// EDIT HERE
gallery.items = [
{
id: '10.02.2019 - present',
img: './Latest/happywords.png',
done: 10,
title: {
ro: "happywords.net",
en: "happywords.net"
},
text: {
ro: "site wordpress",
en: "Vanilla JavaScript website"
},
url: "https://happywords.net/"
},
{
id: '27.06.2017 - present',
img: 'https://ghitab.github.io/esther/Latest/00.png',
done: 27,
title: {
ro: "Estera",
en: "Esther"
},
text: {
ro: "carte de colorat",
en: "coloring book"
},
url: "https://ghitab.github.io/esther/"
},
{
id: '20.05.2016 - present',
img: 'http://ghitab.github.io/jonah-illustrated-book/Latest/01.png',
done: 50,
title: {
ro: "Iona",
en: "Jonah"
},
text: {
ro: "carte ilustrată pentru copii",
en: "illustrated book for kids"
},
url: "http://ghitab.github.io/jonah-illustrated-book/"
},
{
id: '12.02.2017 - 15.02.2018',
img: 'https://ghitab.github.io/miracles-of-jesus/Latest/00.png',
done: 100,
title: {
ro: "Minunile lui Isus",
en: "Miracles of Jesus"
},
text: {
ro: "carte de colorat",
en: "coloring book"
},
url: "https://ghitab.github.io/miracles-of-jesus/"
},
{
id: '2017',
img: 'http://i.imgur.com/DM0YvZu.png',
done: 100,
title: {
ro: "Implementat design pentru EEA Copernicus In Situ",
en: "Implemented design for EEA Copernicus In Situ"
},
text: {
ro: "Bootstrap, CSS. E folosit aici: http://insitu.copernicus.eu/library/fact-sheets",
en: "Bootstrap, CSS. It is used here: http://insitu.copernicus.eu/library/fact-sheets"
},
url: "https://ghitab.github.io/insitu-fact-sheet-design/"
},
{
id: '2016',
img: 'http://i.imgur.com/iVExoF6.png',
done: 100,
title: {
ro: "Culori mai frumoase",
en: "Beautify colors"
},
text: {
ro: "paletă drăguță de culori derivată din culorile alese de tine",
en: "nice palette from given colors"
},
url: "https://ghitab.github.io/beautify-colors/"
},
{
id: '2015',
img: 'http://i.imgur.com/vfsRtCY.jpg',
done: 100,
title: {
ro: "Ghicește numărul (joc)",
en: "Guess my number (game)"
},
text: {
ro: "jquery, ghicește numărul din 4 cifre",
en: "jquery, guess the 4 digits number"
},
url: "http://ghitab.github.io/guess-my-number/"
},
{
id: '2015',
img: 'http://i.imgur.com/qA8Wv3m.png',
done: 100,
title: {
ro: "Generator de cuvinte încurcate ascunse (joc)",
en: "Word Search Maker (game)"
},
text: {
ro: "angularjs, jquery, generează joc de căutare de cuvinte",
en: "angularjs, jquery, create your own game with hidden words"
},
url: "https://github.com/Voluntari-Noi/crossword-puzzle-generator"
},
{
id: '2014',
img: 'http://www.farulsperantei.ro/wp-content/uploads/Colorat-Moise-353x516.jpg',
done: 100,
title: {
ro: "Moise, copilul de pe Nil",
en: "Moses"
},
text: {
ro: "carte de colorat",
en: "coloring book"
},
url: "http://www.farulsperantei.ro/produs/moise-copilul-de-pe-nil/"
},
{
id: '2013-2014',
img: 'https://images-na.ssl-images-amazon.com/images/I/51zcXMjkIoL._SX258_BO1,204,203,200_.jpg',
done: 100,
title: {
ro: "Balada unui greier mic",
en: "Balada unui greier mic"
},
text: {
ro: "ilustrații color, pictură digitală",
en: "illustrations, digital painting"
},
url: "https://www.amazon.co.uk/BALADA-UNUI-GREIER-GEORGE-TOPIRCEANU/dp/6068500039"
},
{
id: '2013',
img: 'http://www.farulsperantei.ro/wp-content/uploads/Cop-Conflict-353x516.jpg',
done: 100,
title: {
ro: "Corectură carte (română)",
en: "Book correction (romanian)"
},
text: {
ro: "Conflict și biruință - Davi Paes Silva. Am citit-o și am trimis la editură greșelile găsite, înainte de a fi publicată în română.",
en: "Conflict and victory - Davi Paes Silva. I read it and sent to the publishing house the errors before they published it in romanian."
},
url: "http://www.farulsperantei.ro/produs/conflict-si-biruinta/"
},
{
id: '2013',
img: 'http://www.farulsperantei.ro/wp-content/uploads/Istoria-MR-366x516.jpg',
done: 100,
title: {
ro: "Corectură carte (română)",
en: "Book correction (romanian)"
},
text: {
ro: "Istoria Mișcării de Reformă a Adventiștilor de Ziua a Șaptea - Alfons Balbach. Am citit-o și am trimis la editură greșelile găsite, înainte de a fi publicată în română.",
en: "History of the Seventh Day Adventist Reform Movement - Alfons Balbach. I read it and sent to the publishing house the errors before they published it in romanian."
},
url: "http://www.farulsperantei.ro/produs/istoria-miscarii-de-reforma/"
},
{
id: '2013',
img: 'Latest/retete.png',
done: 100,
title: {
ro: "Copertă de carte - design",
en: "Book cover design"
},
text: {
ro: "design copertă carte și câteva pagini interior pentru cartea cu rețete vegetariene a Restaurantului Vegetarian Cris Oradea",
en: "book cover design (also for some pages) for Restaurant Vegetarian Cris Oradea"
},
url: "http://www.restvegan.ro/shop/retete-vegetariene/"
},
{
id: '2013',
img: 'Latest/condeiul.jpg',
done: 100,
title: {
ro: "Condeiul fermecat",
en: "Condeiul fermecat"
},
text: {
ro: "caiet de caligrafie (desene și text caligrafic pentru exerciții)",
en: "calligraphy notebook (drawings and calligraphic text for exercises)"
},
url: "#"
},
{
id: '2010-2013',
img: 'Latest/desenez-net.png',
done: 100,
title: {
ro: "www.desenez.net",
en: "www.desenez.net"
},
text: {
ro: "PHP, MySQL, programare web",
en: "PHP, MySQL, web development"
},
url: "http://www.desenez.net"
},
{
id: '2013',
img: 'http://www.farulsperantei.ro/wp-content/uploads/Desen-Isaac-2013-363x516.jpg',
done: 100,
title: {
ro: "Isaac",
en: "Isaac"
},
text: {
ro: "carte de colorat",
en: "coloring book"
},
url: "http://www.farulsperantei.ro/produs/isaac/"
},
{
id: '2013',
img: 'http://www.farulsperantei.ro/wp-content/uploads/Cop_Babel-355x516.jpg',
done: 100,
title: {
ro: "Turnul Babel",
en: "Tower of Babel"
},
text: {
ro: "carte de colorat",
en: "coloring book"
},
url: "http://www.farulsperantei.ro/produs/turnul-babel/"
},
{
id: '2013',
img: 'http://i.imgur.com/wP4x0W3.png',
done: 100,
title: {
ro: "Puzzle (joc)",
en: "Puzzle (game)"
},
text: {
ro: "Joc cu numere, javascript",
en: "Game with numbers, javascript"
},
url: "http://ghitab.github.io/Puzzle/"
},
{
id: '2011',
img: 'Latest/drumul.jpg',
done: 100,
title: {
ro: "Pe drumul înțelepților",
en: "Pe drumul înțelepților"
},
text: {
ro: "ilustrații",
en: "illustrations"
},
url: "#"
},
{
id: '2010',
img: 'http://www.farulsperantei.ro/wp-content/uploads/Rebeca-358x516.jpg',
done: 100,
title: {
ro: "Rebeca",
en: "Rebecca"
},
text: {
ro: "carte de colorat",
en: "coloring book"
},
url: "http://www.farulsperantei.ro/produs/carte-de-colorat-rebeca/"
},
{
id: '2010',
img: 'http://www.farulsperantei.ro/wp-content/uploads/Potopul-356x516.jpg',
done: 100,
title: {
ro: "Potopul lui Noe",
en: "Noah"
},
text: {
ro: "carte de colorat",
en: "coloring book"
},
url: "http://www.farulsperantei.ro/produs/potopul-lui-noe/"
},
{
id: '2009-2010',
img: 'http://www.farulsperantei.ro/wp-content/uploads/Proverbe-356x516.jpg',
done: 100,
title: {
ro: "Cartea Proverbelor",
en: "Proverbs"
},
text: {
ro: "carte de colorat",
en: "coloring book"
},
url: "http://www.farulsperantei.ro/produs/cartea-proverbelor/"
},
{
id: '2009',
img: 'Latest/dor_de_tara_preview.jpg',
done: 100,
title: {
ro: "Dor de țară",
en: "Dor de țară"
},
text: {
ro: "muzică creștină, CD",
en: "christian music, CD"
},
url: "http://aievea.net/dor-de-tara"
},
{
id: '05.2006',
img: 'Latest/pribeag.jpg',
done: 100,
title: {
ro: "Pribeag",
en: "Pribeag"
},
text: {
ro: "muzică creștină, CD",
en: "christian music, CD"
},
url: "http://www.aievea.net/ghita-bizau-pribeag"
}
];
});