Skip to content

Commit 0f6edd0

Browse files
committed
update "broken" link in translated files #215
1 parent 529fb9f commit 0f6edd0

File tree

5 files changed

+24
-24
lines changed

5 files changed

+24
-24
lines changed

ES.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Abre el **Editor de secuencia de comandos...** haciendo click en "**Herramientas
5151

5252
![2 script-editor](https://cloud.githubusercontent.com/assets/194400/10559732/8db2b9f6-74ef-11e5-8bf2-de286f079929.png)
5353

54-
Aquí está una *instantánea* del script que necesitas (*en este punto del ejercicio*): [google-script-just-email.js](https://raw.githubusercontent.com/nelsonic/html-form-send-email-via-google-script-without-server/1d1c6727f69dec64a6b7f6bd6ff0dd72d0374210/google-script-just-email.js)
54+
Aquí está una *instantánea* del script que necesitas (*en este punto del ejercicio*): [google-script-just-email.js](https://raw.githubusercontent.com/nelsonic/learn-to-send-email-via-google-script-html-no-server/1d1c6727f69dec64a6b7f6bd6ff0dd72d0374210/google-script-just-email.js)
5555

5656
### 3. Establecer el `TO_ADDRESS` en el Script
5757

@@ -135,7 +135,7 @@ Actualiza el `index.html` para incluir el siguiente archivo JavaScript al *final
135135

136136
```js
137137
<script data-cfasync="false" type="text/javascript"
138-
src="https://cdn.rawgit.com/dwyl/html-form-send-email-via-google-script-without-server/master/form-submission-handler.js"></script>
138+
src="https://cdn.rawgit.com/dwyl/learn-to-send-email-via-google-script-html-no-server/master/form-submission-handler.js"></script>
139139
```
140140

141141
Esto ahora va a mostrar un *message* de "Gracias" cuando el formlario es enviado:
@@ -211,7 +211,7 @@ primer paso, pero podemos hacerlo mejor.
211211
![record_data example](https://cloud.githubusercontent.com/assets/194400/10581613/8b4f9ad4-767b-11e5-90cc-962a9d6acc91.png)
212212

213213
Esto grabará los datos recibidos desde el `POST` como una *fila* en la hoja de cálculo.
214-
Observa: [**google-apps-script.js**](https://github.com/nelsonic/html-form-send-email-via-google-script-without-server/blob/master/google-apps-script.js) para obtener el código completo puedes *copiar y pegar*.
214+
Observa: [**google-apps-script.js**](https://github.com/nelsonic/learn-to-send-email-via-google-script-html-no-server/blob/master/google-apps-script.js) para obtener el código completo puedes *copiar y pegar*.
215215

216216
### 15. Guarda una Nueva Versión y Re-Publicalo
217217

@@ -260,12 +260,12 @@ tu formulario porque automáticamente recarga la página cuando haces cambios en
260260

261261
# ¿*Quieres más*?
262262

263-
Si deseas seguir este tutorial, [***por favor déjanos saberlo***!](https://github.com/nelsonic/html-form-send-email-via-google-script-without-server/issues)
263+
Si deseas seguir este tutorial, [***por favor déjanos saberlo***!](https://github.com/nelsonic/learn-to-send-email-via-google-script-html-no-server/issues)
264264

265265

266266
## ¡Añade tus propios campos!
267267

268-
En respuesta a [ La solicitud de Henry Beary](https://github.com/dwyl/html-form-send-email-via-google-script-without-server/issues/9)
268+
En respuesta a [ La solicitud de Henry Beary](https://github.com/dwyl/learn-to-send-email-via-google-script-html-no-server/issues/9)
269269
hemos hecho el handler del formulario *genérico* lo que significa que ahora puedes agregar cualquier campo que desees al formulario.
270270

271271
recuerda incluir los campos *dentro* del formulario que tiene la id `gform`

README.ko.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
A 백엔드 서버 없이 HTML Form을 사용하여, "Contact Us" 메시지를 보내는 ***스텝-바이-스텝 예제*** 입니다.
44
- PHP, Python, Ruby, Java, Node.js 등은 필요없습니다.
55

6-
작동 예제는 이곳에서 : https://dwyl.github.io/html-form-send-email-via-google-script-without-server/
6+
작동 예제는 이곳에서 : https://dwyl.github.io/learn-to-send-email-via-google-script-html-no-server/
77

88
**_경고:_** Google의 API는 하루에 보낼 수 있는 메일 수에 제한이 있습니다.
99
Google 계정에 따라 다를 수 있습니다, [이곳에서](https://developers.google.com/apps-script/guides/services/quotas) 본인의 한도를 확인하세요.
@@ -54,7 +54,7 @@ Google 스프레드시트를 사용해 데이터를 추적하세요!
5454

5555
![2 script-editor](https://cloud.githubusercontent.com/assets/194400/10559732/8db2b9f6-74ef-11e5-8bf2-de286f079929.png)
5656

57-
필요한 스크립트의 스냅샷은 다음과 같습니다 : [google-script-just-email.js](https://raw.githubusercontent.com/nelsonic/html-form-send-email-via-google-script-without-server/1d1c6727f69dec64a6b7f6bd6ff0dd72d0374210/google-script-just-email.js)
57+
필요한 스크립트의 스냅샷은 다음과 같습니다 : [google-script-just-email.js](https://raw.githubusercontent.com/nelsonic/learn-to-send-email-via-google-script-html-no-server/1d1c6727f69dec64a6b7f6bd6ff0dd72d0374210/google-script-just-email.js)
5858

5959
### 3. 스크립트에서 `TO_ADDRESS` 를 설정합니다.
6060

@@ -152,7 +152,7 @@ Submit 하세요. 보내졌으면 아래와 같이 확인할 수 있습니다:
152152

153153
```js
154154
<script data-cfasync="false" type="text/javascript"
155-
src="https://cdn.rawgit.com/dwyl/html-form-send-email-via-google-script-without-server/master/form-submission-handler.js"></script>
155+
src="https://cdn.rawgit.com/dwyl/learn-to-send-email-via-google-script-html-no-server/master/form-submission-handler.js"></script>
156156
```
157157

158158
**경고:** 위의 3단계에서 `TO_ADDRESS` 변수를 설정하지 않은 경우, 메인 form 요소에 `data-email="[email protected]"`를 포함시켜야 됩니다.
@@ -239,7 +239,7 @@ https://developers.google.com/apps-script/reference/mail/mail-app
239239
![record_data example](https://cloud.githubusercontent.com/assets/194400/10581613/8b4f9ad4-767b-11e5-90cc-962a9d6acc91.png)
240240

241241
이렇게 하면 `POST`로 받은 데이터가 스프레드시트의 *행(row)*으로 기록됩니다.
242-
참고: 다음 파일을 이용해 full code를 복붙할 수도 있습니다. [**google-apps-script.js**](https://github.com/nelsonic/html-form-send-email-via-google-script-without-server/blob/master/google-apps-script.js)
242+
참고: 다음 파일을 이용해 full code를 복붙할 수도 있습니다. [**google-apps-script.js**](https://github.com/nelsonic/learn-to-send-email-via-google-script-html-no-server/blob/master/google-apps-script.js)
243243

244244
### 15. 새로운 버전 저장하고 재배포하기
245245

@@ -283,22 +283,22 @@ HTML / CSS / JavaScript를 제공하는 **_모든_ 웹 서버**에서 실행할
283283

284284
# *Want more*?
285285

286-
이 튜토리얼보다 더 많은 것을 알고 싶다면, [***알려주세요***!](https://github.com/nelsonic/html-form-send-email-via-google-script-without-server/issues)
286+
이 튜토리얼보다 더 많은 것을 알고 싶다면, [***알려주세요***!](https://github.com/nelsonic/learn-to-send-email-via-google-script-html-no-server/issues)
287287

288288
독자분의 편의를 위해 GitHub Pages에서 데모페이지를 호스트해 두었습니다.
289289
코드를 확인하고 작동 방식을 확인하세요 :
290-
https://dwyl.github.io/html-form-send-email-via-google-script-without-server/
290+
https://dwyl.github.io/learn-to-send-email-via-google-script-html-no-server/
291291

292292

293293
## 당신만의 필드를 추가하세요!
294294

295-
[Henry Beary의 요청](https://github.com/dwyl/html-form-send-email-via-google-script-without-server/issues/9)에 따라
295+
[Henry Beary의 요청](https://github.com/dwyl/learn-to-send-email-via-google-script-html-no-server/issues/9)에 따라
296296
form 처리기를 *제네릭*으로 만들어 원하는 필드를 추가할 수 있도록 했습니다..
297297

298298
또한 모든 종류의 form input 요소를 사용하는 `test.html`도 만들었으므로 원하는대로 요소를 복붙할 수 있습니다.
299299
요소의 name과 id 속성들만 업데이트하면 됩니다.
300300
이 테스트 양식의 작동예제는 이곳에서 확인할 수 있습니다:
301-
https://dwyl.github.io/html-form-send-email-via-google-script-without-server/test.html
301+
https://dwyl.github.io/learn-to-send-email-via-google-script-html-no-server/test.html
302302

303303
id가 gform 인 form태그 내에 필드를 포함시키고 양식 요소의 이름이 스프레드 시트의 새로운 열 제목과 일치하는지 확인하세요! 즉 :
304304

@@ -348,7 +348,7 @@ if (validateHuman(data.honeypot)) { //이 부분이 채워져 있으면, 제출
348348

349349
1. _이 자습서를 사용할 때 도움을 받으려면 어떻게 하나요?_
350350

351-
- 어떤 단계를 거쳤으며 어떤 단계가 효과적이지 않은지 상세하게 설명하는 [문제를 게시](https://github.com/dwyl/html-form-send-email-via-google-script-without-server/issues/new)하세요. 온라인으로 겪으신 문제를 재현하는 [예제](https://stackoverflow.com/help/mcve)가 가장 이상적입니다 (예 : GitHub Pages 또는 CodePen의 호스트). 예를 들어 콘솔 오류를 제공하면 도움이 되는 응답을 받을 가능성이 높아집니다.
351+
- 어떤 단계를 거쳤으며 어떤 단계가 효과적이지 않은지 상세하게 설명하는 [문제를 게시](https://github.com/dwyl/learn-to-send-email-via-google-script-html-no-server/issues/new)하세요. 온라인으로 겪으신 문제를 재현하는 [예제](https://stackoverflow.com/help/mcve)가 가장 이상적입니다 (예 : GitHub Pages 또는 CodePen의 호스트). 예를 들어 콘솔 오류를 제공하면 도움이 되는 응답을 받을 가능성이 높아집니다.
352352

353353

354354
2. _예제 스프레드시트에 대한 수정권한을 얻을 수 있을까요?_

index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h2 class="content-head is-center">Contact Us!</h2>
2121
<link rel="stylesheet" href="https://unpkg.com/[email protected]/build/pure-min.css">
2222
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
2323
<!-- Style The Contact Form How Ever You Prefer -->
24-
<link rel="stylesheet" href="https://cdn.rawgit.com/dwyl/html-form-send-email-via-google-script-without-server/master/style.css">
24+
<link rel="stylesheet" href="https://cdn.rawgit.com/dwyl/learn-to-send-email-via-google-script-html-no-server/master/style.css">
2525

2626
<form id="gform" method="POST" class="pure-form pure-form-stacked" data-email="[email protected]"
2727
action="https://script.google.com/macros/s/AKfycbwMxYDrufp73bKdU8gMvxFDdHRuzcR4IKQUB33B7GqwyfyZS04/exec">
@@ -64,7 +64,7 @@ <h2><em>Thanks</em> for contacting us!
6464

6565
<!-- Submit the Form to Google Using "AJAX" -->
6666
<script data-cfasync="false" type="text/javascript"
67-
src="https://cdn.rawgit.com/dwyl/html-form-send-email-via-google-script-without-server/master/form-submission-handler.js"></script>
67+
src="https://cdn.rawgit.com/dwyl/learn-to-send-email-via-google-script-html-no-server/master/form-submission-handler.js"></script>
6868
<!-- <script data-cfasync="false" type="text/javascript"
6969
src="/form-submission-handler.js"></script> -->
7070
<!-- END -->

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "html-form-send-email-via-google-script-without-server",
2+
"name": "learn-to-send-email-via-google-script-html-no-server",
33
"version": "2.1.0",
44
"description": "Tutorial showing how to save data to a google doc spreadsheet from any html form (including sending emails!)",
55
"main": "static-server.js",
@@ -8,7 +8,7 @@
88
},
99
"repository": {
1010
"type": "git",
11-
"url": "git+https://github.com/dwyl/html-form-send-email-via-google-script-without-server.git"
11+
"url": "git+https://github.com/dwyl/learn-to-send-email-via-google-script-html-no-server.git"
1212
},
1313
"keywords": [
1414
"tutorial",
@@ -20,9 +20,9 @@
2020
"author": "nelsonic @dwyl",
2121
"license": "GPL-2.0",
2222
"bugs": {
23-
"url": "https://github.com/dwyl/html-form-send-email-via-google-script-without-server/issues"
23+
"url": "https://github.com/dwyl/learn-to-send-email-via-google-script-html-no-server/issues"
2424
},
25-
"homepage": "https://github.com/dwyl/html-form-send-email-via-google-script-without-server#readme",
25+
"homepage": "https://github.com/dwyl/learn-to-send-email-via-google-script-html-no-server#readme",
2626
"devDependencies": {
2727
"live-server": "^1.2.0"
2828
}

test.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
<meta charset="utf-8">
66
<meta name="viewport" content="width=device-width, initial-scale=1">
77

8-
<title>test: html-form-send-email-via-google-script-without-server</title>
8+
<title>test: learn-to-send-email-via-google-script-html-no-server</title>
99

10-
<meta name="description" content="Test all HTML form and input elements for html-form-send-email-via-google-script-without-server." />
10+
<meta name="description" content="Test all HTML form and input elements for learn-to-send-email-via-google-script-html-no-server." />
1111
<meta name="author" content="dwyl">
1212

1313
<link rel="stylesheet" href="https://unpkg.com/[email protected]/build/pure-min.css">
1414
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
15-
<link rel="stylesheet" href="https://cdn.rawgit.com/dwyl/html-form-send-email-via-google-script-without-server/master/style.css">
15+
<link rel="stylesheet" href="https://cdn.rawgit.com/dwyl/learn-to-send-email-via-google-script-html-no-server/master/style.css">
1616
</head>
1717

1818
<body>
@@ -179,7 +179,7 @@ <h1>Test All Form and Input Elements</h1>
179179
<!--url-->
180180
<fieldset class="pure-group">
181181
<label for="url">URL</label>
182-
<input id="url" type="url" name="url" value="https://github.com/dwyl/html-form-send-email-via-google-script-without-server" />
182+
<input id="url" type="url" name="url" value="https://github.com/dwyl/learn-to-send-email-via-google-script-html-no-server" />
183183
</fieldset>
184184

185185
<!--week-->

0 commit comments

Comments
 (0)