From 64a0d8b77ebdbf8e3bc427f766389b11a41d488a Mon Sep 17 00:00:00 2001 From: amalija-ramljak Date: Fri, 10 Sep 2021 11:44:15 +0200 Subject: [PATCH] 01-01-03 add translation --- .../3-code-editors/article.md | 50 +++++++++---------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/1-js/01-getting-started/3-code-editors/article.md b/1-js/01-getting-started/3-code-editors/article.md index d03f03def..43caac815 100644 --- a/1-js/01-getting-started/3-code-editors/article.md +++ b/1-js/01-getting-started/3-code-editors/article.md @@ -1,46 +1,46 @@ -# Code editors +# Uređivači koda -A code editor is the place where programmers spend most of their time. +Uređivač koda je mjesto gdje programeri provode najviše vremena. -There are two main types of code editors: IDEs and lightweight editors. Many people use one tool of each type. +Postoje dvije glavne vrste uređivača koda: IDE i lagani uređivači. Mnogi koriste po jedan alat svake vrste. ## IDE -The term [IDE](https://en.wikipedia.org/wiki/Integrated_development_environment) (Integrated Development Environment) refers to a powerful editor with many features that usually operates on a "whole project." As the name suggests, it's not just an editor, but a full-scale "development environment." +Izraz [IDE](https://en.wikipedia.org/wiki/Integrated_development_environment) (Integrated Development Environment, integrirana razvojna okolina) označava snažan uređivač s mnogim značajkama koji obično radi na "cijelom projektu". Kao što ime sugerira, to nije samo uređivač već je potpuna "razvojna okolina". -An IDE loads the project (which can be many files), allows navigation between files, provides autocompletion based on the whole project (not just the open file), and integrates with a version management system (like [git](https://git-scm.com/)), a testing environment, and other "project-level" stuff. +IDE učitava projekt (koji se može sastojati od mnogo datoteka), omogućava nagivaciju između datoteka, nudi automatsko dovršavanje koda bazirano na cijelom projektu (ne samo na otvorenoj datoteci) te je integriran sa sustavom za verzioniranje (npr. [git](https://git-scm.com/)), okolinom za testiranje i drugim stvarima na razini projekta. -If you haven't selected an IDE yet, consider the following options: +Ako nemaš već neki IDE, razmisli o idućim: -- [Visual Studio Code](https://code.visualstudio.com/) (cross-platform, free). -- [WebStorm](http://www.jetbrains.com/webstorm/) (cross-platform, paid). +- [Visual Studio Code](https://code.visualstudio.com/) (višeplatformski, besplatan). +- [WebStorm](http://www.jetbrains.com/webstorm/) (višeplatformski, plaćen). -For Windows, there's also "Visual Studio", not to be confused with "Visual Studio Code". "Visual Studio" is a paid and mighty Windows-only editor, well-suited for the .NET platform. It's also good at JavaScript. There's also a free version [Visual Studio Community](https://www.visualstudio.com/vs/community/). +Za Windowse još postoji Visual Studio, a to nije Visual Studio Code. Visual Studio je plaćen i snažan uređivač samo za Windowse, prikladan za .NET platformu, a dobar je i za JavaScript. Postoji i besplatna verzija [Visual Studio Community](https://www.visualstudio.com/vs/community/). -Many IDEs are paid, but have a trial period. Their cost is usually negligible compared to a qualified developer's salary, so just choose the best one for you. +Mogu IDE-ovi su plaćeni, ali imaju period isprobavanja. Njihova cijena je obično zanemariva u usporedbi s plaćom kvalificiranog developera, pa samo odaberi onaj koji je najbolji za tebe. -## Lightweight editors +## Lagani uređivači -"Lightweight editors" are not as powerful as IDEs, but they're fast, elegant and simple. +"Lagani uređivači" nisu snažni poput IDE-ova, ali su brzi, elegantni i jednostavni -They are mainly used to open and edit a file instantly. +Uglavnom se koriste za trenutno otvaranje i uređivanje datoteke. -The main difference between a "lightweight editor" and an "IDE" is that an IDE works on a project-level, so it loads much more data on start, analyzes the project structure if needed and so on. A lightweight editor is much faster if we need only one file. +Glavna razlika laganih uređivača i IDE-ova je ta da IDE radi na razini projekta, pa tako učitava mnogo više podataka na početku, analizira projektnu strukturu ako treba, i sl. Lagani uređivač je mnogo brži ako trebamo samo jednu datoteku. -In practice, lightweight editors may have a lot of plugins including directory-level syntax analyzers and autocompleters, so there's no strict border between a lightweight editor and an IDE. +U praksi, lagani uređivači mogu imaju bezbroj plugin-ova, uključujući sintaksnu analizu i automatsko dovršavanje na razini direktorija, pa zapravo ne postoji neka stroga granica između laganih uređivača i IDE-ova. -The following options deserve your attention: +Iduće opcije zaslužuju pažnju: -- [Atom](https://atom.io/) (cross-platform, free). -- [Visual Studio Code](https://code.visualstudio.com/) (cross-platform, free). -- [Sublime Text](http://www.sublimetext.com) (cross-platform, shareware). -- [Notepad++](https://notepad-plus-plus.org/) (Windows, free). -- [Vim](http://www.vim.org/) and [Emacs](https://www.gnu.org/software/emacs/) are also cool if you know how to use them. +- [Atom](https://atom.io/) (višeplatformski, besplatan), +- [Visual Studio Code](https://code.visualstudio.com/) (višeplatformski, besplatan), +- [Sublime Text](http://www.sublimetext.com) (višeplatformski, shareware), +- [Notepad++](https://notepad-plus-plus.org/) (Windows, besplatan) i +- [Vim](http://www.vim.org/) i [Emacs](https://www.gnu.org/software/emacs/) su također fora ako ih znaš koristiti. -## Let's not argue +## Nemojmo se svađati -The editors in the lists above are those that either I or my friends whom I consider good developers have been using for a long time and are happy with. +Uređivači na gornjim popisima su oni koje ili ja ili moji prijatelji koje smatram dobrim developerima koristimo već dugo i kojima smo zadovoljni. -There are other great editors in our big world. Please choose the one you like the most. +Postoje mnogi drugi odlični uređivači u našem velikom svijetu, pa, molim te, odaberi onaj koji se tebi najviše sviđa. -The choice of an editor, like any other tool, is individual and depends on your projects, habits, and personal preferences. +Izbor uređivača, kao i svakog drugog alata, je individualan i ovisi o tvom projektu, navikama, i osobnim preferencama. pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy