Ver código fonte

Change texts

customisations
alemart 1 ano atrás
pai
commit
88b0717b2d

+ 1
- 1
README.md Ver arquivo

@@ -45,4 +45,4 @@ MARTINS.js requires WebGL2 and WebAssembly.
45 45
 
46 46
 ## About
47 47
 
48
-MARTINS.js is free and open-source software developed by [Alexandre Martins](https://github.com/alemart) and released under the [LGPL](LICENSE.md). It is based on [Speedy Vision](https://github.com/alemart/speedy-vision).
48
+MARTINS.js is developed by [Alexandre Martins](https://github.com/alemart) and released under the [LGPL](LICENSE.md). It is based on [Speedy Vision](https://github.com/alemart/speedy-vision).

+ 1
- 1
demos/hello-aframe/demo.js Ver arquivo

@@ -8,7 +8,7 @@ async function startARSession(canvas)
8 8
 {
9 9
     if(!Martins.isSupported()) {
10 10
         throw new Error(
11
-            'This device is not compatible with AR.\n\n' +
11
+            'This device is not compatible with this AR experience.\n\n' +
12 12
             'User agent: ' + navigator.userAgent
13 13
         );
14 14
     }

+ 1
- 1
demos/hello-three/demo.js Ver arquivo

@@ -107,7 +107,7 @@ window.addEventListener('load', () => {
107 107
     {
108 108
         if(!Martins.isSupported()) {
109 109
             throw new Error(
110
-                'This device is not compatible with AR.\n\n' +
110
+                'This device is not compatible with this AR experience.\n\n' +
111 111
                 'User agent: ' + navigator.userAgent
112 112
             );
113 113
         }

+ 1
- 1
demos/hello-webgl/demo.js Ver arquivo

@@ -912,7 +912,7 @@ window.addEventListener('load', async function() {
912 912
     {
913 913
         if(!Martins.isSupported()) {
914 914
             throw new Error(
915
-                'This device is not compatible with AR.\n\n' +
915
+                'This device is not compatible with this AR experience.\n\n' +
916 916
                 'User agent: ' + navigator.userAgent
917 917
             );
918 918
         }

+ 1
- 1
demos/hello-world/demo.js Ver arquivo

@@ -23,7 +23,7 @@ window.addEventListener('load', async function() {
23 23
     {
24 24
         if(!Martins.isSupported()) {
25 25
             throw new Error(
26
-                'This device is not compatible with AR.\n\n' +
26
+                'This device is not compatible with this AR experience.\n\n' +
27 27
                 'User agent: ' + navigator.userAgent
28 28
             );
29 29
         }

+ 1
- 1
demos/touch-three/demo.js Ver arquivo

@@ -137,7 +137,7 @@ window.addEventListener('load', () => {
137 137
     {
138 138
         if(!Martins.isSupported()) {
139 139
             throw new Error(
140
-                'This device is not compatible with AR.\n\n' +
140
+                'This device is not compatible with this AR experience.\n\n' +
141 141
                 'User agent: ' + navigator.userAgent
142 142
             );
143 143
         }

+ 4
- 4
docs/getting-started/activate-your-webcam.md Ver arquivo

@@ -11,7 +11,7 @@ async function startARSession()
11 11
 {
12 12
     if(!Martins.isSupported()) {
13 13
         throw new Error(
14
-            'This device is not compatible with AR.\n\n' +
14
+            'This device is not compatible with this AR experience.\n\n' +
15 15
             'User agent: ' + navigator.userAgent
16 16
         );
17 17
     }
@@ -156,7 +156,7 @@ async function startARSession()
156 156
 {
157 157
     if(!Martins.isSupported()) {
158 158
         throw new Error(
159
-            'This device is not compatible with AR.\n\n' +
159
+            'This device is not compatible with this AR experience.\n\n' +
160 160
             'User agent: ' + navigator.userAgent
161 161
         );
162 162
     }
@@ -202,7 +202,7 @@ async function startARSession()
202 202
 {
203 203
     if(!Martins.isSupported()) {
204 204
         throw new Error(
205
-            'This device is not compatible with AR.\n\n' +
205
+            'This device is not compatible with this AR experience.\n\n' +
206 206
             'User agent: ' + navigator.userAgent
207 207
         );
208 208
     }
@@ -256,7 +256,7 @@ async function startARSession()
256 256
 {
257 257
     if(!Martins.isSupported()) {
258 258
         throw new Error(
259
-            'This device is not compatible with AR.\n\n' +
259
+            'This device is not compatible with this AR experience.\n\n' +
260 260
             'User agent: ' + navigator.userAgent
261 261
         );
262 262
     }

+ 1
- 1
docs/getting-started/index.md Ver arquivo

@@ -33,4 +33,4 @@ MARTINS.js requires WebGL2 and WebAssembly.
33 33
 
34 34
 ## About
35 35
 
36
-MARTINS.js is free and open-source software developed by [Alexandre Martins](https://github.com/alemart) and released under the [LGPL](../license.md). It is based on [Speedy Vision](https://github.com/alemart/speedy-vision).
36
+MARTINS.js is developed by [Alexandre Martins](https://github.com/alemart) and released under the [LGPL](../license.md). It is based on [Speedy Vision](https://github.com/alemart/speedy-vision).

+ 1
- 1
docs/getting-started/next-steps.md Ver arquivo

@@ -13,7 +13,7 @@ async function startARSession()
13 13
 {
14 14
     if(!Martins.isSupported()) {
15 15
         throw new Error(
16
-            'This device is not compatible with AR.\n\n' +
16
+            'This device is not compatible with this AR experience.\n\n' +
17 17
             'User agent: ' + navigator.userAgent
18 18
         );
19 19
     }

+ 4
- 4
docs/getting-started/set-up-the-session.md Ver arquivo

@@ -34,7 +34,7 @@ window.onload = async function()
34 34
     try {
35 35
         if(!Martins.isSupported()) {
36 36
             throw new Error(
37
-                'This device is not compatible with AR.\n\n' +
37
+                'This device is not compatible with this AR experience.\n\n' +
38 38
                 'User agent: ' + navigator.userAgent
39 39
             );
40 40
         }
@@ -65,7 +65,7 @@ window.onload = async function()
65 65
     try {
66 66
         if(!Martins.isSupported()) {
67 67
             throw new Error(
68
-                'This device is not compatible with AR.\n\n' +
68
+                'This device is not compatible with this AR experience.\n\n' +
69 69
                 'User agent: ' + navigator.userAgent
70 70
             );
71 71
         }
@@ -99,7 +99,7 @@ window.onload = async function()
99 99
     try {
100 100
         if(!Martins.isSupported()) {
101 101
             throw new Error(
102
-                'This device is not compatible with AR.\n\n' +
102
+                'This device is not compatible with this AR experience.\n\n' +
103 103
                 'User agent: ' + navigator.userAgent
104 104
             );
105 105
         }
@@ -162,7 +162,7 @@ async function startARSession()
162 162
 {
163 163
     if(!Martins.isSupported()) {
164 164
         throw new Error(
165
-            'This device is not compatible with AR.\n\n' +
165
+            'This device is not compatible with this AR experience.\n\n' +
166 166
             'User agent: ' + navigator.userAgent
167 167
         );
168 168
     }

+ 2
- 2
docs/getting-started/set-up-the-tracker.md Ver arquivo

@@ -139,7 +139,7 @@ window.onload = async function()
139 139
     try {
140 140
         if(!Martins.isSupported()) {
141 141
             throw new Error(
142
-                'This device is not compatible with AR.\n\n' +
142
+                'This device is not compatible with this AR experience.\n\n' +
143 143
                 'User agent: ' + navigator.userAgent
144 144
             );
145 145
         }
@@ -180,7 +180,7 @@ window.onload = async function()
180 180
     try {
181 181
         if(!Martins.isSupported()) {
182 182
             throw new Error(
183
-                'This device is not compatible with AR.\n\n' +
183
+                'This device is not compatible with this AR experience.\n\n' +
184 184
                 'User agent: ' + navigator.userAgent
185 185
             );
186 186
         }

Carregando…
Cancelar
Salvar