浏览代码

Change texts

customisations
alemart 1年前
父节点
当前提交
88b0717b2d

+ 1
- 1
README.md 查看文件

45
 
45
 
46
 ## About
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 查看文件

8
 {
8
 {
9
     if(!Martins.isSupported()) {
9
     if(!Martins.isSupported()) {
10
         throw new Error(
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
             'User agent: ' + navigator.userAgent
12
             'User agent: ' + navigator.userAgent
13
         );
13
         );
14
     }
14
     }

+ 1
- 1
demos/hello-three/demo.js 查看文件

107
     {
107
     {
108
         if(!Martins.isSupported()) {
108
         if(!Martins.isSupported()) {
109
             throw new Error(
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
                 'User agent: ' + navigator.userAgent
111
                 'User agent: ' + navigator.userAgent
112
             );
112
             );
113
         }
113
         }

+ 1
- 1
demos/hello-webgl/demo.js 查看文件

912
     {
912
     {
913
         if(!Martins.isSupported()) {
913
         if(!Martins.isSupported()) {
914
             throw new Error(
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
                 'User agent: ' + navigator.userAgent
916
                 'User agent: ' + navigator.userAgent
917
             );
917
             );
918
         }
918
         }

+ 1
- 1
demos/hello-world/demo.js 查看文件

23
     {
23
     {
24
         if(!Martins.isSupported()) {
24
         if(!Martins.isSupported()) {
25
             throw new Error(
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
                 'User agent: ' + navigator.userAgent
27
                 'User agent: ' + navigator.userAgent
28
             );
28
             );
29
         }
29
         }

+ 1
- 1
demos/touch-three/demo.js 查看文件

137
     {
137
     {
138
         if(!Martins.isSupported()) {
138
         if(!Martins.isSupported()) {
139
             throw new Error(
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
                 'User agent: ' + navigator.userAgent
141
                 'User agent: ' + navigator.userAgent
142
             );
142
             );
143
         }
143
         }

+ 4
- 4
docs/getting-started/activate-your-webcam.md 查看文件

11
 {
11
 {
12
     if(!Martins.isSupported()) {
12
     if(!Martins.isSupported()) {
13
         throw new Error(
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
             'User agent: ' + navigator.userAgent
15
             'User agent: ' + navigator.userAgent
16
         );
16
         );
17
     }
17
     }
156
 {
156
 {
157
     if(!Martins.isSupported()) {
157
     if(!Martins.isSupported()) {
158
         throw new Error(
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
             'User agent: ' + navigator.userAgent
160
             'User agent: ' + navigator.userAgent
161
         );
161
         );
162
     }
162
     }
202
 {
202
 {
203
     if(!Martins.isSupported()) {
203
     if(!Martins.isSupported()) {
204
         throw new Error(
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
             'User agent: ' + navigator.userAgent
206
             'User agent: ' + navigator.userAgent
207
         );
207
         );
208
     }
208
     }
256
 {
256
 {
257
     if(!Martins.isSupported()) {
257
     if(!Martins.isSupported()) {
258
         throw new Error(
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
             'User agent: ' + navigator.userAgent
260
             'User agent: ' + navigator.userAgent
261
         );
261
         );
262
     }
262
     }

+ 1
- 1
docs/getting-started/index.md 查看文件

33
 
33
 
34
 ## About
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 查看文件

13
 {
13
 {
14
     if(!Martins.isSupported()) {
14
     if(!Martins.isSupported()) {
15
         throw new Error(
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
             'User agent: ' + navigator.userAgent
17
             'User agent: ' + navigator.userAgent
18
         );
18
         );
19
     }
19
     }

+ 4
- 4
docs/getting-started/set-up-the-session.md 查看文件

34
     try {
34
     try {
35
         if(!Martins.isSupported()) {
35
         if(!Martins.isSupported()) {
36
             throw new Error(
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
                 'User agent: ' + navigator.userAgent
38
                 'User agent: ' + navigator.userAgent
39
             );
39
             );
40
         }
40
         }
65
     try {
65
     try {
66
         if(!Martins.isSupported()) {
66
         if(!Martins.isSupported()) {
67
             throw new Error(
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
                 'User agent: ' + navigator.userAgent
69
                 'User agent: ' + navigator.userAgent
70
             );
70
             );
71
         }
71
         }
99
     try {
99
     try {
100
         if(!Martins.isSupported()) {
100
         if(!Martins.isSupported()) {
101
             throw new Error(
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
                 'User agent: ' + navigator.userAgent
103
                 'User agent: ' + navigator.userAgent
104
             );
104
             );
105
         }
105
         }
162
 {
162
 {
163
     if(!Martins.isSupported()) {
163
     if(!Martins.isSupported()) {
164
         throw new Error(
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
             'User agent: ' + navigator.userAgent
166
             'User agent: ' + navigator.userAgent
167
         );
167
         );
168
     }
168
     }

+ 2
- 2
docs/getting-started/set-up-the-tracker.md 查看文件

139
     try {
139
     try {
140
         if(!Martins.isSupported()) {
140
         if(!Martins.isSupported()) {
141
             throw new Error(
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
                 'User agent: ' + navigator.userAgent
143
                 'User agent: ' + navigator.userAgent
144
             );
144
             );
145
         }
145
         }
180
     try {
180
     try {
181
         if(!Martins.isSupported()) {
181
         if(!Martins.isSupported()) {
182
             throw new Error(
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
                 'User agent: ' + navigator.userAgent
184
                 'User agent: ' + navigator.userAgent
185
             );
185
             );
186
         }
186
         }

正在加载...
取消
保存