Skip to content

Commit ab2935b

Browse files
authored
chore: update origin to 2ddf26e69906a09dfcc915cc44c3a0bcecd3af67 (#1110)
* fix: migrate markdown translation changes * fix: migrate source code translation changes * chore: update origin to 2ddf26e69906a09dfcc915cc44c3a0bcecd3af67 * fix: update environment.ts patch for upstream indexName changes
1 parent b49a2d9 commit ab2935b

File tree

8 files changed

+16
-18
lines changed

8 files changed

+16
-18
lines changed

adev-ja/src/app/features/update/recommendations.en.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2752,7 +2752,7 @@ export const RECOMMENDATIONS: Step[] = [
27522752
},
27532753
{
27542754
action:
2755-
"In the application's project directory, run `ng update @angular/core@20 @angular/cli@21` to update your application to Angular v21.",
2755+
"In the application's project directory, run `ng update @angular/core@21 @angular/cli@21` to update your application to Angular v21.",
27562756
level: ApplicationComplexity.Basic,
27572757
necessaryAsOf: 2100,
27582758
possibleIn: 2100,

adev-ja/src/app/features/update/recommendations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2752,7 +2752,7 @@ export const RECOMMENDATIONS: Step[] = [
27522752
},
27532753
{
27542754
action:
2755-
"アプリケーションのプロジェクトディレクトリで、`ng update @angular/core@20 @angular/cli@21` を実行して、アプリケーションを Angular v21 に更新します。",
2755+
"アプリケーションのプロジェクトディレクトリで、`ng update @angular/core@21 @angular/cli@21` を実行して、アプリケーションを Angular v21 に更新します。",
27562756
level: ApplicationComplexity.Basic,
27572757
necessaryAsOf: 2100,
27582758
possibleIn: 2100,

adev-ja/src/content/guide/forms/signals/models.en.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Form models solve this by centralizing form data in a single writable signal. Wh
1414

1515
A form model is a writable signal created with Angular's `signal()` function. The signal holds an object that represents your form's data structure.
1616

17-
```ts
17+
```angular-ts
1818
import { Component, signal } from '@angular/core'
1919
import { form, Field } from '@angular/forms/signals'
2020
@@ -150,7 +150,7 @@ Each field in the field tree is a function. Calling a field returns a `FieldStat
150150

151151
Access field state when working with individual fields in templates or reactive computations:
152152

153-
```ts
153+
```angular-ts
154154
@Component({
155155
template: `
156156
<p>Current email: {{ loginForm.email().value() }}</p>
@@ -292,7 +292,7 @@ This synchronization happens automatically. You don't write subscriptions or eve
292292

293293
### Example: Both directions
294294

295-
```ts
295+
```angular-ts
296296
@Component({
297297
template: `
298298
<input type="text" [field]="userForm.name" />
@@ -386,7 +386,7 @@ userForm.settings.theme // FieldTree<string>
386386

387387
In templates, you bind nested fields the same way as top-level fields:
388388

389-
```ts
389+
```angular-ts
390390
@Component({
391391
template: `
392392
<input [field]="userForm.profile.firstName" />

adev-ja/src/content/guide/forms/signals/models.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ NOTE: フォームモデルは、コンポーネントの双方向バインデ
1414

1515
フォームモデルは、Angularの`signal()`関数で作成される書き込み可能なシグナルです。このシグナルは、フォームのデータ構造を表すオブジェクトを保持します。
1616

17-
```ts
17+
```angular-ts
1818
import { Component, signal } from '@angular/core'
1919
import { form, Field } from '@angular/forms/signals'
2020
@@ -150,7 +150,7 @@ onSubmit() {
150150

151151
テンプレートやリアクティブな計算で個々のフィールドを扱う場合は、フィールドの状態にアクセスします:
152152

153-
```ts
153+
```angular-ts
154154
@Component({
155155
template: `
156156
<p>Current email: {{ loginForm.email().value() }}</p>
@@ -292,7 +292,7 @@ export class UserProfileComponent {
292292

293293
### 例: 両方向 {#example-both-directions}
294294

295-
```ts
295+
```angular-ts
296296
@Component({
297297
template: `
298298
<input type="text" [field]="userForm.name" />
@@ -386,7 +386,7 @@ userForm.settings.theme // FieldTree<string>
386386

387387
テンプレートでは、トップレベルのフィールドと同じ方法でネストされたフィールドをバインドします:
388388

389-
```ts
389+
```angular-ts
390390
@Component({
391391
template: `
392392
<input [field]="userForm.profile.firstName" />

adev-ja/src/content/guide/routing/navigate-to-routes.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ The `router.navigateByUrl()` method provides a direct way to programmatically na
149149

150150
```ts
151151
// Standard route navigation
152-
router.navigateByUrl('/products);
152+
router.navigateByUrl('/products');
153153

154154
// Navigate to nested route
155155
router.navigateByUrl('/products/featured');

adev-ja/src/content/guide/routing/navigate-to-routes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ export class UserDetailComponent {
149149

150150
```ts
151151
// Standard route navigation
152-
router.navigateByUrl('/products);
152+
router.navigateByUrl('/products');
153153

154154
// Navigate to nested route
155155
router.navigateByUrl('/products/featured');

tools/adev-patches/replace-environment-values.patch

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
11
diff --git a/adev/src/app/environment.ts b/adev/src/app/environment.ts
2-
index 733b01d357..c84ac6bf7c 100644
2+
index 4a8b03193f..7491f820f7 100644
33
--- a/adev/src/app/environment.ts
44
+++ b/adev/src/app/environment.ts
5-
@@ -11,11 +11,11 @@ export default {
5+
@@ -21,9 +21,9 @@ export default {
66
// Those values are publicly visible in the search request headers, and presents search-only keys.
77
// https://www.algolia.com/doc/guides/security/api-keys/#search-only-api-key
88
algolia: {
99
- appId: 'L1XWT2UJ7F',
1010
- apiKey: 'dfca7ed184db27927a512e5c6668b968',
11+
- indexName: indexName,
1112
+ appId: 'D4RZISVST0',
1213
+ apiKey: '77e5a0684280325e2e1f313e0fcc11b8',
13-
// The indexName value must match the branch it's on.
14-
// So it needs to be updated on release of the new major on the patch branch.
15-
- indexName: 'angular_next_dev',
1614
+ indexName: 'angular_jp_v19',
1715
},
1816
- googleAnalyticsId: 'G-XB6NEVW32B',

0 commit comments

Comments
 (0)