Skip to content

Commit 9e3336f

Browse files
committed
Merge pull request jquery#12 from oguzhantasci/master
jquery#11 tamamlandı.
2 parents ff91fe4 + 32b1a6d commit 9e3336f

File tree

2 files changed

+23
-26
lines changed

2 files changed

+23
-26
lines changed

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25,33 +25,33 @@ Sitenin bütün içeriği [Markdown](http://daringfireball.net/projects/markdown
2525

2626
### Site Organizasyonu
2727

28-
All of the content lives inside of the subdirectories of the `page` directory. Each of these subdirectories is considered a **chapter**, and contains one or more **articles**, and there is also a top level file that corresponds to each chapter, which contains the chapter's human-readable title and an overview, which will appear on the chapter's landing page.
28+
Tüm içerikler `page` dizini altında yer almaktadır. `page` dizini altında yer alan dosyaların her biri bir **konu** olarak kabul edilir ve bir çok **makaleyi** içinde bulundurur. Ayrıca bu durum üst düzey dosyalar içinde geçerlidir. Her konu dizininde insanlar tarafından okunabilir konu başlıkları ve kısa bir özeti mevcuttur. Bu konu başlıkları açılış sayfasında görünecek başlıkları oluşturmuş olur.
2929

30-
The [`order.yml`](https://github.com/okulbilisim/learn.jquery.com/blob/master/order.yml) file controls the order that chapters and articles appear in the site.
30+
[`order.yml`](https://github.com/okulbilisim/learn.jquery.com/blob/master/order.yml) dosyası bölümleri ve makaleleri sitede görünen dosya sırasını kontrol eder.
3131

3232

33-
### YAML Conventions
33+
### YAML Kuralları
3434

35-
Each of the articles on the site has some YAML "Front Matter" that contains metadata. All articles should include the following:
35+
Makalelerde bir karmaşa olamaması için belli standartlar getirilmiştir. Bir makalede olması gereken şartlar şunlardır.
3636

37-
* `title` - The title of the article as it will appear in the site. If it contains special characters, put the string in quotes.
37+
* `title` - Sayfada makale başlığı olarak çıkacak olan kısımdır. Özel karakter içeriyor ise tırnak işareti kullanılmalıdır.
3838

39-
`title: "jQuery Event Extensions"`
39+
`title: "jQuery Olay Uzantıları"`
4040

41-
* `level` - The approximate level of jQuery experience required to find the article useful. Options: `beginner`, `intermediate`, or `advanced`.
41+
* `level` - Makalelerin anlaşılabilmesi için gerekli olan bilgi seviyelerini belirterek okuyucunun faydalı makaleye yönelmesini sağlamak için kullanılır. Örnek olarak: `başlangıç`, `orta`, or `ileri`.
4242

43-
`level: advanced`
43+
`level: ileri`
4444

4545

46-
## Building & Working Locally
46+
## Kurulum ve Yerel Ağ Üzerinde Çalışma
4747

48-
As this site is part of the jQuery network of sites, its presentation is controlled by [jquery-wp-content](https://github.com/jquery/jquery-wp-content). To preview the site locally, first follow the [instructions there](https://github.com/jquery/jquery-wp-content) to set up a local version of the jQuery WordPress network. Then, clone this repo and run the following steps (node.js required).
48+
Bu site jQuery ağının bir sitesidir ve [jquery-wp-content](https://github.com/jquery/jquery-wp-content) tarafından kontrol edilir. Yerel ağ üzerinde çalışmak için ilk olarak jQuery Wordpress ağı kurulur. [başlangıç](https://github.com/jquery/jquery-wp-content) Sonra, repo klonlanır ve aşağıda yer alan adımlar takip edilir. (node.js gereklidir.).
4949

5050
1. `npm install`
5151
2. `cp config-sample.json config.json`
52-
3. Edit config.json to use the username and password for your local WordPress network
52+
3. config.json dosyası yerel ağ üzerinde çalışacak wordpress ağı için kullanıcı adı ve şifre düzeltilir.
5353
4. `grunt`
5454

55-
## How Can I Help?
55+
## Nasıl yardımcı olabilirim?
5656

57-
We encourage contribution from anyone. For more comprehensive documentation on how to get involved, please read our [contributing guide](http://learn.jquery.com/contributing).
57+
Herkes learn.jquery.com'a yardımcı olabilir. Daha kapsamlı belgelerle katkı sağlamak için lütfen [katkıda bulunma rehberini](http://learn.jquery.com/contributing) okuyunuz.

page/events/triggering-event-handlers.md

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,25 @@
11
---
2-
title : Triggering Event Handlers
3-
level: intermediate
2+
title : Olay işleyicileri tetikleme
3+
level: orta
44
source: http://jqfundamentals.com/legacy
55
attribution:
6-
- jQuery Fundamentals
6+
- jQuery Temelleri
77
---
88

9-
jQuery provides a way to trigger the event handlers bound to an element without any user interaction via the
10-
`.trigger()` method.
9+
jQuery kullanıcıyla bir etkileşim sağlamadan bir öğeye bağlı olay işleyicileri tetiklemek için bir yol sağlar.
10+
`.trigger()` yöntemi.
1111

12-
## What handlers can be .trigger()'d?
12+
## Hangi işleyiciler .trigger() olabilir?
1313

14-
jQuery's event handling system is a layer on top of native browser events. When an event handler is added using
15-
`.on( "click", function() {...} )`, it can be triggered using jQuery's `.trigger( "click" )` because jQuery stores a
16-
reference to that handler when it is originally added. Additionally, it will trigger the JavaScript inside the
17-
`onclick` attribute. The `.trigger()` function cannot be used to mimic native browser events, such as
18-
clicking on a file input box or an anchor tag. This is because, there is no event handler attached using jQuery's
19-
event system that corresponds to these events.
14+
JQuery olay işleme sistemi yerli tarayıcı olayları için üst bir tabakadır. Bir olay işleyicisi kullanılarak `.on( "click", function() {...} )` eklendiğinde, bu jQuery'e ait `.trigger( "click" )` ile tetiklenebilir çünkü orjinal olarak ilave edildiği zaman, jQuery işleyicisi bu referansı depolar.
15+
16+
Ayrıca, bu JavaScript içinde yer alan `onclick` elementini de tetikleyecektir. `.trigger()` fonksiyonu yerel tarayıcıyı taklit etmek için kullanılamaz, bir dosya giriş kutusunu veya bir tutturucu etiketi tıklamak gibi. Bunun nedeni, burada bu olaylara karşılık jQuery olay sistemini kullanacak bağlı bir olay işleyicisi yoktur.
2017

2118
```
2219
<a href="http://learn.jquery.com">Learn jQuery</a>
2320
```
2421
```
25-
// This will not change the current page
22+
// Bu işlem geçerli sayfanızı değiştirmeyecektir.
2623
$( "a" ).trigger( "click" );
2724
```
2825

0 commit comments

Comments
 (0)