-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstrings.js
72 lines (68 loc) · 2.31 KB
/
strings.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
const strings = {
// Mobile-specific notes
defaultNotesMobile: [
'long-press a note to delete it!',
'double-tap to edit notes!',
'long-press on canvas to create new note!',
'tap a note to change its color'
],
positionsMobile: [
{ top: '-420px', left: '0%' },
{ top: '-350px', left: '80%' },
{ top: '0px', left: '0%' },
{ top: '-200px', left: '80%' }
],
colorsMobile: [
'#FFCCCC', // Light red
'#CCFFCC', // Light green
'#CCCCFF', // Light blue
'#FFBF00' // Amber
],
// Desktop-specific notes in landscape mode
defaultNotesDesktopLandscape: [
'Right-click on canvas\n to create a new note!',
'Double-click to edit notes!',
'Press c to clear all notes',
'Right click on this note to delete it\n or drag to toilet-roll',
'Ask us about creating a\n customized postbaby for you!\n\nmarkraidc@gmail.com'
],
positionsDesktopLandscape: [
{ top: '-480%', left: '10%' },
{ top: '-200%', left: '70%' },
{ top: '-200%', left: '10%' },
{ top: '-400%', left: '70%' },
{ top: '-60%', left: '40%' }
],
colorsDesktopLandscape: [
'#FFD700', // Gold
'#ADFF2F', // GreenYellow
'#1E90FF', // DodgerBlue
'#FF69B4', // HotPink
'#FF8C00' // DarkOrange
],
// Desktop-specific notes in portrait mode
defaultNotesDesktopPortrait: [
'Right-click on canvas\n to create a new note!',
'Double-click to edit notes!',
'Press c to clear all notes',
'Right click on this note to delete it!',
'Ask us about creating a\n customized postbaby for you!'
],
positionsDesktopPortrait: [
{ top: '-100%', left: '10%' },
{ top: '-90%', left: '60%' },
{ top: '-30%', left: '-5%' },
{ top: '-50%', left: '75%' },
{ top: '3%', left: '35%' }
],
colorsDesktopPortrait: [
'#FFA07A', // LightSalmon
'#98FB98', // PaleGreen
'#87CEFA', // LightSkyBlue
'#DDA0DD', // Plum
'#F4A460' // SandyBrown
],
// Confirmation modal texts
confirmDeleteItemText: "Are you sure you want to delete this item?",
confirmDeleteAllItemsText: "Are you sure you want to delete ALL items?"
};