2004-12-06 09:15:46 +00:00
# Italian translation for gstreamer package of GStreamer project.
# Copyright (C) 2004 GStreamer core team
# This file is distributed under the same license as the gstreamer package.
2006-04-12 11:06:44 +00:00
# Luca Ferretti <elle.uca@infinito.it>, 2004-2006.
2004-12-06 09:15:46 +00:00
#
#
#
# Alcune note (essenzialmente una traduzione) dopo una lettura non troppo
# approfondita del manuale di GStreamer
#
# Tenete presente che, da un punto di vista dello sviluppatore, GStreamer
# è pesantemente influenzato dalla struttura di GLib, ed in particolare
# dei GObject, per cui le varie funzioni di libreria operano con il
# criterio della programmazione orientata agli oggetti.
#
# Per chi mi capisce, e tagliando via elementi qui non essenziali
#
# GObject
# GstObject
# GstPad
# GstElement
# GstBin
# GstPipeline
# GstThread
#
#
# --- Elements ---
#
# Un elemento è il blocco costruttivo di base per una "media pipeline".
# Tutti i differenti elementi di alto livello usati sono derivati da
# GstElement. Gli elementi sono "black boxes" con un numero di differenti
# aspetti. Uno di questi aspetti è la presenza di "pads", o punti di
# collegamento (link points). This terminology arises from soldering; pads
# are where wires can be attached.
#
# Tipi di elemento:
# * source - genera i dati da usare in una pipeline, ad es. leggendo
# da qualcosa (disco, rete, canale scheda audio...). Hanno solo un
# source pad
# * filter/codec - hanno dei pad di input ed output. Operano sui
# dati che ricevono nel sink pad e producono dati sul loro source
# pad. Un demuxer appartiene a questa categoria (1 in, 2 out)
# * sink - punto d'uscita di una pipeline, accettano dati senza
# produrne altri. Implementazioni di elementi sink sono la
# scrittura su file, la riproduzione audio o video.
#
# --- Pads ---
#
# Sono l'interfaccia di un elemento verso il mondo esterno. Permettono di
# esporre il tipo specifico di media che l'elemento può gestire.
#
# I pad possono essere source e sink: ciò dipende dal punto di vista
# dell'elemento cui appartengono
#
# Tipi di pad:
# * dinamici - l'elemento crea un pad se necessario, esempio: mpeg
# multiplexer crea pad a seconda dei differenti stream elementari
# rilevati nello stream mpeg
# * requested - pad creato on demand
#
# --- Capabilities ---
#
# Usate per descrivere i tipi di dati che possono "attraversare" il pad.
# Sono allegate al pad stesso. Capabilities sta per "capability chain"
#
# [Salto le parti complicate] Le capabilities sono usate per
# l'autoplugging (automatically finding plugins for a set of capabilities)
# ed il rilevamento di compatibilità (tra due pad collegati - "caps
# negotiation")
#
# --- Link ---
#
# Dati tre elementi (source, filter, sink) posso collegare in modo
# opportuno i relativi pad, creando una catena. Vedi allegato.
#
# --- Bins ---
#
# Un bin è un elemento contenitore. È possibile aggiungere elementi ad un
# bin, così come è possibile aggiungerlo ad un altro bin.
#
# Consente di combinare un gruppo di elementi collegati in un elemento
# logico. A questo punto non serve + ragionare in termini dei singoli
# elementi, ma del bin.
#
# Una pipeline è un elemento bin, un contenitore generico che consente la
# schedulazione degli elementi contenuti. Il "toplevel bin" deve essere
# una pipeline.
#
# Anche un thread è un elemento bin, che consente l'esecuzione separata.
#
# --- Buffers ---
#
# Contengono i dati che scorrono (flow) attraverso una pipeline.
# Tipicamente gli elementi source creano un nuovo buffer.
#
# --- Element states ---
#
# * NULL - predefinito, l'elemento è creato e non sta facendo
# alcunché
# * READY - pronto a fare qualcosa
# * PAUSED - in pausa
# * PLAYING - sta facendo qualcosa
#
# Si passa da NULL a PLAYING attraverso i due stati intermedi.
#
# ----------------------------------------
msgid ""
msgstr ""
2006-04-12 11:06:44 +00:00
"Project-Id-Version: gstreamer 0.10.4\n"
2004-12-06 09:15:46 +00:00
"Report-Msgid-Bugs-To: \n"
2006-07-13 19:47:14 +00:00
"POT-Creation-Date: 2006-07-13 21:32+0200\n"
2006-04-12 11:06:44 +00:00
"PO-Revision-Date: 2006-04-09 21:52+0000\n"
2004-12-06 09:15:46 +00:00
"Last-Translator: Luca Ferretti <elle.uca@infinito.it>\n"
"Language-Team: Italian <tp@lists.linux.it>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
2006-06-07 10:46:04 +00:00
#: gst/gst.c:275
2004-12-06 09:15:46 +00:00
msgid "Print the GStreamer version"
msgstr "Stampa la versione di GStreamer"
2006-06-07 10:46:04 +00:00
#: gst/gst.c:277
2004-12-06 09:15:46 +00:00
msgid "Make all warnings fatal"
msgstr "Rende tutti i warning fatali"
2006-06-07 10:46:04 +00:00
#: gst/gst.c:280
2004-12-06 09:15:46 +00:00
msgid "Print available debug categories and exit"
msgstr "Stampa le categorie di debug disponibili ed esce"
2006-06-07 10:46:04 +00:00
#: gst/gst.c:283
2004-12-23 12:10:25 +00:00
msgid ""
"Default debug level from 1 (only error) to 5 (anything) or 0 for no output"
msgstr ""
"Livello di debug predefinito da 1 (solo errori) a 5 (tutto), oppure 0 per "
"nessun output"
2004-12-06 09:15:46 +00:00
2006-06-07 10:46:04 +00:00
#: gst/gst.c:285
2004-12-06 09:15:46 +00:00
msgid "LEVEL"
msgstr "LIVELLO"
2006-06-07 10:46:04 +00:00
#: gst/gst.c:287
2004-12-23 12:10:25 +00:00
msgid ""
"Comma-separated list of category_name:level pairs to set specific levels for "
"the individual categories. Example: GST_AUTOPLUG:5,GST_ELEMENT_*:3"
msgstr ""
"Elenco di coppie \"nome_categoria=livello\" separate da virgole per "
"impostare i livelli specifici per ogni singola categoria. Esempio: "
"GST_AUTOPLUG:5,GST_ELEMENT_*:3"
2004-12-06 09:15:46 +00:00
2006-06-07 10:46:04 +00:00
#: gst/gst.c:290
2004-12-06 09:15:46 +00:00
msgid "LIST"
msgstr "ELENCO"
2006-06-07 10:46:04 +00:00
#: gst/gst.c:292
2004-12-06 09:15:46 +00:00
msgid "Disable colored debugging output"
msgstr "Disabilita output di debug colorato"
2006-06-07 10:46:04 +00:00
#: gst/gst.c:294
2004-12-06 09:15:46 +00:00
msgid "Disable debugging"
msgstr "Disabilita debug"
2006-06-07 10:46:04 +00:00
#: gst/gst.c:297
2004-12-06 09:15:46 +00:00
msgid "Enable verbose plugin loading diagnostics"
msgstr "Abilita diagnostica prolissa del caricamento plugin"
2006-06-07 10:46:04 +00:00
#: gst/gst.c:300
2005-10-23 22:30:17 +00:00
msgid "Colon-separated paths containing plugins"
2005-12-05 13:10:44 +00:00
msgstr "Percorsi che contengono i plugin separati da due punti (:)"
2005-10-23 22:30:17 +00:00
2006-06-07 10:46:04 +00:00
#: gst/gst.c:300
2004-12-06 09:15:46 +00:00
msgid "PATHS"
msgstr "PERCORSI"
2006-06-07 10:46:04 +00:00
#: gst/gst.c:302
2004-12-23 12:10:25 +00:00
msgid ""
"Comma-separated list of plugins to preload in addition to the list stored in "
2005-02-08 10:11:41 +00:00
"environment variable GST_PLUGIN_PATH"
2004-12-23 12:10:25 +00:00
msgstr ""
"Elenco separato da virgole dei plugin da pre-caricare in aggiunta all'elenco "
"memorizzato nella variabile d'ambiente GST_PLUGIN_PATH"
2004-12-06 09:15:46 +00:00
2006-06-07 10:46:04 +00:00
#: gst/gst.c:304
2004-12-06 09:15:46 +00:00
msgid "PLUGINS"
msgstr "PLUGIN"
2006-06-07 10:46:04 +00:00
#: gst/gst.c:307
2004-12-06 09:15:46 +00:00
msgid "Disable trapping of segmentation faults during plugin loading"
msgstr "Disabilita il trapping dei segfault durante il caricamento dei plugin"
2006-06-07 10:46:04 +00:00
#: gst/gst.c:312
2005-10-23 22:30:17 +00:00
msgid "GStreamer Options"
2005-12-05 13:10:44 +00:00
msgstr "Opzioni GStreamer"
2005-10-23 22:30:17 +00:00
2006-06-07 10:46:04 +00:00
#: gst/gst.c:313
2005-10-23 22:30:17 +00:00
msgid "Show GStreamer Options"
2005-12-05 13:10:44 +00:00
msgstr "Mostra le opzioni di GStreamer"
2005-10-23 22:30:17 +00:00
2006-07-11 22:55:40 +00:00
#: gst/gst.c:941
2005-10-23 22:30:17 +00:00
msgid "Unknown option"
2005-12-05 13:10:44 +00:00
msgstr "Opzione sconosciuta"
2004-12-06 09:15:46 +00:00
2006-07-11 22:55:40 +00:00
#: gst/gstelement.c:279 gst/gstutils.c:2118
2004-12-06 09:15:46 +00:00
#, c-format
msgid "ERROR: from element %s: %s\n"
msgstr "ERRORE: dall'elemento %s: %s\n"
2006-07-11 22:55:40 +00:00
#: gst/gstelement.c:281 gst/gstutils.c:2120
2004-12-06 09:15:46 +00:00
#, c-format
msgid ""
"Additional debug info:\n"
"%s\n"
msgstr ""
"Informazioni di debug aggiuntive:\n"
"%s\n"
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:131
2004-12-06 09:15:46 +00:00
msgid "GStreamer encountered a general core library error."
msgstr "GStreamer ha incontrato un errore generale delle librerie di base."
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:133 gst/gsterror.c:170 gst/gsterror.c:190 gst/gsterror.c:221
2004-12-23 12:10:25 +00:00
msgid ""
2005-11-23 18:07:18 +00:00
"GStreamer developers were too lazy to assign an error code to this error."
2004-12-23 12:10:25 +00:00
msgstr ""
"Gli sviluppatori di GStreamer sono stati troppo pigri per assegnare un "
2005-12-05 13:10:44 +00:00
"codice d'errore a questo errore."
2004-12-06 09:15:46 +00:00
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:136
2005-11-23 18:07:18 +00:00
msgid "Internal GStreamer error: code not implemented."
2005-12-05 13:10:44 +00:00
msgstr "Errore interno di GStreamer: codice non implementato."
2004-12-06 09:15:46 +00:00
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:138
2005-11-23 18:07:18 +00:00
msgid "Internal GStreamer error: state change failed."
2005-12-05 13:10:44 +00:00
msgstr "Errore interno di GStreamer: cambio di stato fallito."
2004-12-06 09:15:46 +00:00
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:139
2005-11-23 18:07:18 +00:00
msgid "Internal GStreamer error: pad problem."
2005-12-05 13:10:44 +00:00
msgstr "Errore interno di GStreamer: problema di pad."
2004-12-06 09:15:46 +00:00
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:141
2005-11-23 18:07:18 +00:00
msgid "Internal GStreamer error: thread problem."
2005-12-05 13:10:44 +00:00
msgstr "Errore interno di GStreamer: problema di thread."
2004-12-06 09:15:46 +00:00
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:143
2005-11-23 18:07:18 +00:00
msgid "Internal GStreamer error: negotiation problem."
2005-12-05 13:10:44 +00:00
msgstr "Errore interno di GStreamer: problema di negoziazione."
2004-12-06 09:15:46 +00:00
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:145
2005-11-23 18:07:18 +00:00
msgid "Internal GStreamer error: event problem."
2005-12-05 13:10:44 +00:00
msgstr "Errore interno di GStreamer: problema di evento."
2004-12-06 09:15:46 +00:00
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:147
2005-11-23 18:07:18 +00:00
msgid "Internal GStreamer error: seek problem."
2005-12-05 13:10:44 +00:00
msgstr "Errore interno di GStreamer: problema nel seek."
2004-12-06 09:15:46 +00:00
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:149
2005-11-23 18:07:18 +00:00
msgid "Internal GStreamer error: caps problem."
2005-12-05 13:10:44 +00:00
msgstr "Errore interno di GStreamer: problema di pad."
2004-12-06 09:15:46 +00:00
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:150
2005-11-23 18:07:18 +00:00
msgid "Internal GStreamer error: tag problem."
2005-12-05 13:10:44 +00:00
msgstr "Errore interno di GStreamer: problema di tag."
2004-12-06 09:15:46 +00:00
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:152
2005-11-23 18:07:18 +00:00
msgid "Your GStreamer installation is missing a plug-in."
2005-12-05 13:10:44 +00:00
msgstr "L'installazione di GStreamer in uso è carente di un plugin."
2005-11-23 18:07:18 +00:00
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:154
2005-11-23 18:07:18 +00:00
msgid "Internal GStreamer error: clock problem."
2005-12-05 13:10:44 +00:00
msgstr "Errore interno di GStreamer: problema di clock."
2005-11-23 18:07:18 +00:00
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:168
2004-12-06 09:15:46 +00:00
msgid "GStreamer encountered a general supporting library error."
msgstr "GStreamer ha incontrato un errore generale nelle librerie di supporto."
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:172
2004-12-06 09:15:46 +00:00
msgid "Could not initialize supporting library."
msgstr "Impossibile inizializzare la libreria di supporto."
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:173 gst/gsterror.c:174
2004-12-06 09:15:46 +00:00
msgid "Could not close supporting library."
msgstr "Impossibile chiudere la libreria di supporto."
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:188
2005-02-08 10:11:41 +00:00
msgid "GStreamer encountered a general resource error."
2005-12-05 13:10:44 +00:00
msgstr "GStreamer ha incontrato un errore generale di risorse."
2005-02-08 10:11:41 +00:00
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:192
2004-12-06 09:15:46 +00:00
msgid "Resource not found."
msgstr "Risorsa non trovata."
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:193
2004-12-06 09:15:46 +00:00
msgid "Resource busy or not available."
msgstr "Risorsa occupata o non disponibile."
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:194
2004-12-06 09:15:46 +00:00
msgid "Could not open resource for reading."
msgstr "Impossibile aprire la risorsa in lettura."
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:195
2004-12-06 09:15:46 +00:00
msgid "Could not open resource for writing."
msgstr "Impossibile aprire la risorsa in scrittura."
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:197
2004-12-06 09:15:46 +00:00
msgid "Could not open resource for reading and writing."
msgstr "Impossibile aprire la risorsa in lettura e scrittura."
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:198
2004-12-06 09:15:46 +00:00
msgid "Could not close resource."
msgstr "Impossibile chiudere la risorsa."
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:199
2004-12-06 09:15:46 +00:00
msgid "Could not read from resource."
msgstr "Impossibile leggere dalla risorsa."
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:200
2004-12-06 09:15:46 +00:00
msgid "Could not write to resource."
msgstr "Impossibile scrivere sulla risorsa."
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:201
2004-12-06 09:15:46 +00:00
msgid "Could not perform seek on resource."
msgstr "Impossibile effettuare un seek sulla risorsa."
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:202
2004-12-06 09:15:46 +00:00
msgid "Could not synchronize on resource."
msgstr "Impossibile effettuare una sincronizzazione sulla risorsa."
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:204
2004-12-06 09:15:46 +00:00
msgid "Could not get/set settings from/on resource."
msgstr "Impossibile impostare o ottenere le impostazioni dalla risorsa."
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:205
2006-03-09 19:00:21 +00:00
msgid "No space left on the resource."
2006-04-12 11:06:44 +00:00
msgstr "Niente spazio sulla risorsa."
2006-03-09 19:00:21 +00:00
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:219
2005-02-08 10:11:41 +00:00
msgid "GStreamer encountered a general stream error."
2005-12-05 13:10:44 +00:00
msgstr "GStreamer ha incontrato un errore generale di stream."
2005-02-08 10:11:41 +00:00
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:224
2004-12-06 09:15:46 +00:00
msgid "Element doesn't implement handling of this stream. Please file a bug."
2004-12-23 12:10:25 +00:00
msgstr ""
"L'elemento non implementa la gestione di questo stream. Si prega di "
"notificare un bug."
2004-12-06 09:15:46 +00:00
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:226
2004-12-06 09:15:46 +00:00
msgid "Could not determine type of stream."
msgstr "Impossibile determinare in tipo di stream."
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:228
2004-12-06 09:15:46 +00:00
msgid "The stream is of a different type than handled by this element."
2004-12-23 12:10:25 +00:00
msgstr ""
"Lo stream è di un tipo differente da quello gestito da questo elemento."
2004-12-06 09:15:46 +00:00
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:230
2004-12-06 09:15:46 +00:00
msgid "There is no codec present that can handle the stream's type."
msgstr "Non vi è alcun codec presente che possa gestire questo tipo di stream."
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:231
2004-12-06 09:15:46 +00:00
msgid "Could not decode stream."
msgstr "Impossibile decodificare lo stream."
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:232
2004-12-06 09:15:46 +00:00
msgid "Could not encode stream."
msgstr "Impossibile fare l'encoding dello stream."
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:233
2004-12-06 09:15:46 +00:00
msgid "Could not demultiplex stream."
msgstr "Impossibile de-multiplare lo stream."
2006-04-12 11:04:36 +00:00
#: gst/gsterror.c:234
2004-12-06 09:15:46 +00:00
msgid "Could not multiplex stream."
msgstr "Impossibile multiplare lo stream."
2006-05-14 15:18:02 +00:00
#: gst/gsterror.c:235
msgid "The stream is in the wrong format."
msgstr ""
#: gst/gsterror.c:286
2004-12-06 09:15:46 +00:00
#, c-format
msgid "No error message for domain %s."
msgstr "Nessun messaggio d'errore per il dominio %s."
2006-05-14 15:18:02 +00:00
#: gst/gsterror.c:294
2004-12-06 09:15:46 +00:00
#, c-format
msgid "No standard error message for domain %s and code %d."
msgstr "Nessun messaggio d'errore standard per il dominio %s ed il codice %d."
2006-07-11 22:55:40 +00:00
#: gst/gstpipeline.c:558
msgid "Selected clock cannot be used in pipeline."
msgstr ""
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:93
2004-12-06 09:15:46 +00:00
msgid "title"
msgstr "titolo"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:93
2004-12-06 09:15:46 +00:00
msgid "commonly used title"
msgstr "il titolo usato comunemente"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:96
2004-12-06 09:15:46 +00:00
msgid "artist"
msgstr "artista"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:97
2004-12-06 09:15:46 +00:00
msgid "person(s) responsible for the recording"
msgstr "la o le persone responsabili della registrazione"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:101
2004-12-06 09:15:46 +00:00
msgid "album"
msgstr "album"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:102
2004-12-06 09:15:46 +00:00
msgid "album containing this data"
msgstr "l'album che contiene questi dati"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:104
2004-12-06 09:15:46 +00:00
msgid "date"
msgstr "data"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:104
2005-10-23 22:30:17 +00:00
msgid "date the data was created (as a GDate structure)"
2005-12-05 13:10:44 +00:00
msgstr "la data in cui i dati sono stati creati (come struttura GDate)"
2004-12-06 09:15:46 +00:00
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:107
2004-12-06 09:15:46 +00:00
msgid "genre"
msgstr "genere"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:108
2004-12-06 09:15:46 +00:00
msgid "genre this data belongs to"
msgstr "il genere a cui appartengono questi dati"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:111
2004-12-06 09:15:46 +00:00
msgid "comment"
msgstr "commento"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:112
2004-12-06 09:15:46 +00:00
msgid "free text commenting the data"
msgstr "del testo libero a commento dei dati"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:115
2004-12-06 09:15:46 +00:00
msgid "track number"
msgstr "numero di traccia"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:116
2004-12-06 09:15:46 +00:00
msgid "track number inside a collection"
msgstr "il numero della traccia all'interno di una collezione"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:119
2004-12-06 09:15:46 +00:00
msgid "track count"
msgstr "totale tracce"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:120
2004-12-06 09:15:46 +00:00
msgid "count of tracks inside collection this track belongs to"
2004-12-23 12:10:25 +00:00
msgstr ""
"il totale delle tracce all'interno della collezione a cui questa traccia "
"appartiene"
2004-12-06 09:15:46 +00:00
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:124
2004-12-06 09:15:46 +00:00
msgid "disc number"
msgstr "numero del disco"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:125
2004-12-06 09:15:46 +00:00
msgid "disc number inside a collection"
msgstr "il numero del disco all'interno di una collezione"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:128
2004-12-06 09:15:46 +00:00
msgid "disc count"
msgstr "totale dischi"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:129
2004-12-06 09:15:46 +00:00
msgid "count of discs inside collection this disc belongs to"
2004-12-23 12:10:25 +00:00
msgstr ""
"il totale dei dischi all'interno della collezione a cui questo disco "
"appartiene"
2004-12-06 09:15:46 +00:00
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:133
2004-12-06 09:15:46 +00:00
msgid "location"
msgstr "posizione"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:134
2004-12-06 09:15:46 +00:00
msgid "original location of file as a URI"
msgstr "la posizione originale del file come URI"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:138
2004-12-06 09:15:46 +00:00
msgid "description"
msgstr "descrizione"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:139
2004-12-06 09:15:46 +00:00
msgid "short text describing the content of the data"
msgstr "un breve testo che descrive il contenuto dei dati"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:142
2004-12-06 09:15:46 +00:00
msgid "version"
msgstr "versione"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:142
2004-12-06 09:15:46 +00:00
msgid "version of this data"
msgstr "la versione di questi dati"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:145
2004-12-06 09:15:46 +00:00
msgid "ISRC"
msgstr "ISRC"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:147
2004-12-06 09:15:46 +00:00
msgid "International Standard Recording Code - see http://www.ifpi.org/isrc/"
2004-12-23 12:10:25 +00:00
msgstr ""
"International Standard Recording Code - consultare http://www.ifpi.org/isrc"
2004-12-06 09:15:46 +00:00
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:149
2004-12-06 09:15:46 +00:00
msgid "organization"
msgstr "organizzazione"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:152
2004-12-06 09:15:46 +00:00
msgid "copyright"
msgstr "copyright"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:152
2004-12-06 09:15:46 +00:00
msgid "copyright notice of the data"
msgstr "l'avviso sul copyright dei dati"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:155
2004-12-06 09:15:46 +00:00
msgid "contact"
msgstr "contatto"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:155
2004-12-06 09:15:46 +00:00
msgid "contact information"
msgstr "le informazioni sul contatto"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:157
2004-12-06 09:15:46 +00:00
msgid "license"
msgstr "licenza"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:157
2004-12-06 09:15:46 +00:00
msgid "license of data"
msgstr "la licenza dei dati"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:160
2004-12-06 09:15:46 +00:00
msgid "performer"
msgstr "interprete"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:161
2004-12-06 09:15:46 +00:00
msgid "person(s) performing"
msgstr "la o le persone che hanno interpretato"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:164
2004-12-06 09:15:46 +00:00
msgid "duration"
msgstr "durata"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:164
2004-12-06 09:15:46 +00:00
msgid "length in GStreamer time units (nanoseconds)"
msgstr "la lunghezza in unità di tempo di GStreamer (nanosecondi)"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:167
2004-12-06 09:15:46 +00:00
msgid "codec"
msgstr "codec"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:168
2004-12-06 09:15:46 +00:00
msgid "codec the data is stored in"
msgstr "il codec con cui di dati sono memorizzati"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:171
2004-12-06 09:15:46 +00:00
msgid "video codec"
msgstr "codec video"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:171
2004-12-06 09:15:46 +00:00
msgid "codec the video data is stored in"
msgstr "il codec con cui i dati video sono memorizzati"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:174
2004-12-06 09:15:46 +00:00
msgid "audio codec"
msgstr "codec audio"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:174
2004-12-06 09:15:46 +00:00
msgid "codec the audio data is stored in"
msgstr "il codec con cui i dati audio sono memorizzati"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:176
2004-12-06 09:15:46 +00:00
msgid "bitrate"
msgstr "bitrate"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:176
2004-12-06 09:15:46 +00:00
msgid "exact or average bitrate in bits/s"
msgstr "il bitrate esatto o medio in bit/s"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:178
2004-12-06 09:15:46 +00:00
msgid "nominal bitrate"
msgstr "bitrate nominale"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:178
2004-12-06 09:15:46 +00:00
msgid "nominal bitrate in bits/s"
msgstr "il bitrate nominale in bit/s"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:180
2004-12-06 09:15:46 +00:00
msgid "minimum bitrate"
msgstr "bitrate minimo"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:180
2004-12-06 09:15:46 +00:00
msgid "minimum bitrate in bits/s"
msgstr "il bitrate minimo in bit/s"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:182
2004-12-06 09:15:46 +00:00
msgid "maximum bitrate"
msgstr "bitrate massimo"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:182
2004-12-06 09:15:46 +00:00
msgid "maximum bitrate in bits/s"
msgstr "il bitrate massimo in bit/s"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:185
2004-12-06 09:15:46 +00:00
msgid "encoder"
msgstr "encoder"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:185
2004-12-06 09:15:46 +00:00
msgid "encoder used to encode this stream"
msgstr "l'encoder usato per codificare questo stream"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:188
2004-12-06 09:15:46 +00:00
msgid "encoder version"
msgstr "versione encoder"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:189
2004-12-06 09:15:46 +00:00
msgid "version of the encoder used to encode this stream"
msgstr "la versione dell'encoder usato per codificare questo stream"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:191
2004-12-06 09:15:46 +00:00
msgid "serial"
msgstr "seriale"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:191
2004-12-06 09:15:46 +00:00
msgid "serial number of track"
msgstr "il numero seriale della traccia"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:193
2004-12-06 09:15:46 +00:00
msgid "replaygain track gain"
msgstr "guadagno traccia replaygain"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:193
2004-12-06 09:15:46 +00:00
msgid "track gain in db"
msgstr "il guadagno della traccia in dB"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:195
2004-12-06 09:15:46 +00:00
msgid "replaygain track peak"
msgstr "picco traccia replaygain"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:195
2004-12-06 09:15:46 +00:00
msgid "peak of the track"
msgstr "il picco della traccia"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:197
2004-12-06 09:15:46 +00:00
msgid "replaygain album gain"
msgstr "guadagno album replaygain"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:197
2004-12-06 09:15:46 +00:00
msgid "album gain in db"
msgstr "il guadagno dell'album in dB"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:199
2004-12-06 09:15:46 +00:00
msgid "replaygain album peak"
msgstr "picco album replaygain"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:199
2004-12-06 09:15:46 +00:00
msgid "peak of the album"
msgstr "il picco dell'album"
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:201
2005-09-03 13:49:49 +00:00
msgid "language code"
2005-12-05 13:10:44 +00:00
msgstr "codice lingua"
2005-09-03 13:49:49 +00:00
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:202
2005-09-03 13:49:49 +00:00
msgid "language code for this stream, conforming to ISO-639-1"
2005-12-05 13:10:44 +00:00
msgstr "codice della lingua per questo stream, conforme a ISO-639-1"
2005-09-03 13:49:49 +00:00
2006-05-14 15:18:02 +00:00
#: gst/gsttaglist.c:204
msgid "image"
msgstr ""
#: gst/gsttaglist.c:204
#, fuzzy
msgid "image related to this stream"
msgstr "l'encoder usato per codificare questo stream"
2006-05-30 14:41:15 +00:00
#: gst/gsttaglist.c:206
msgid "preview image"
msgstr ""
#: gst/gsttaglist.c:206
#, fuzzy
msgid "preview image related to this stream"
msgstr "l'encoder usato per codificare questo stream"
#: gst/gsttaglist.c:245
2004-12-06 09:15:46 +00:00
msgid ", "
msgstr ", "
2005-10-23 22:30:17 +00:00
#: gst/parse/grammar.y:206
2004-12-06 09:15:46 +00:00
#, c-format
msgid "specified empty bin \"%s\", not allowed"
msgstr "specificato il bin vuoto «%s», non consentito"
2005-10-23 22:30:17 +00:00
#: gst/parse/grammar.y:212
2004-12-06 09:15:46 +00:00
#, c-format
msgid "no bin \"%s\", skipping"
msgstr "nessun bin «%s», omesso"
2005-10-23 22:30:17 +00:00
#: gst/parse/grammar.y:294
2004-12-06 09:15:46 +00:00
#, c-format
msgid "no property \"%s\" in element \"%s\""
msgstr "nessuna proprietà «%s» nell'elemento «%s»"
2005-10-23 22:30:17 +00:00
#: gst/parse/grammar.y:309
2004-12-06 09:15:46 +00:00
#, c-format
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
msgstr "impossibile impostare la proprietà «%s» nell'elemento «%s» a «%s»"
2005-10-23 22:30:17 +00:00
#: gst/parse/grammar.y:532
2004-12-06 09:15:46 +00:00
#, c-format
msgid "could not link %s to %s"
msgstr "impossibile collegare %s a %s"
2005-10-23 22:30:17 +00:00
#: gst/parse/grammar.y:578
2004-12-06 09:15:46 +00:00
#, c-format
msgid "no element \"%s\""
msgstr "nessun elemento «%s»"
2005-12-20 16:01:09 +00:00
#: gst/parse/grammar.y:624
2004-12-06 09:15:46 +00:00
#, c-format
msgid "could not parse caps \"%s\""
2005-12-05 13:10:44 +00:00
msgstr "impossibile analizzare i caps «%s»"
2004-12-06 09:15:46 +00:00
2005-12-20 16:01:09 +00:00
#: gst/parse/grammar.y:646 gst/parse/grammar.y:694 gst/parse/grammar.y:710
#: gst/parse/grammar.y:768
2004-12-06 09:15:46 +00:00
msgid "link without source element"
msgstr "collegamento senza elemento d'origine"
2005-12-20 16:01:09 +00:00
#: gst/parse/grammar.y:652 gst/parse/grammar.y:691 gst/parse/grammar.y:777
2004-12-06 09:15:46 +00:00
msgid "link without sink element"
msgstr "collegamento senza elemento sink"
2005-12-20 16:01:09 +00:00
#: gst/parse/grammar.y:728
2004-12-06 09:15:46 +00:00
#, c-format
msgid "no source element for URI \"%s\""
msgstr "elemento d'origine mancante per l'URI «%s»"
2005-12-20 16:01:09 +00:00
#: gst/parse/grammar.y:738
2004-12-06 09:15:46 +00:00
#, c-format
msgid "no element to link URI \"%s\" to"
msgstr "elemento mancante per collegare l'URI «%s» a"
2005-12-20 16:01:09 +00:00
#: gst/parse/grammar.y:746
2004-12-06 09:15:46 +00:00
#, c-format
msgid "no sink element for URI \"%s\""
msgstr "elemento sink mancante per l'URI «%s»"
2005-12-20 16:01:09 +00:00
#: gst/parse/grammar.y:750
2004-12-06 09:15:46 +00:00
#, c-format
msgid "could not link sink element for URI \"%s\""
msgstr "impossibile collegare l'elemento sink per l'URI «%s»"
2005-12-20 16:01:09 +00:00
#: gst/parse/grammar.y:762
2004-12-06 09:15:46 +00:00
msgid "empty pipeline not allowed"
msgstr "pipeline vuota non consentito"
2006-07-13 19:47:14 +00:00
#: libs/gst/base/gstbasesrc.c:1568 libs/gst/base/gstbasesrc.c:1579
2005-11-30 16:17:23 +00:00
msgid "Internal data flow error."
2005-12-05 13:10:44 +00:00
msgstr "Errore interno nel flusso di dati."
2005-11-30 16:17:23 +00:00
2006-07-11 22:55:40 +00:00
#: libs/gst/base/gstbasesink.c:1875
2005-11-29 20:16:40 +00:00
msgid "Internal data flow problem."
2005-12-05 13:10:44 +00:00
msgstr "Problema interno nel flusso di dati."
2005-11-29 20:16:40 +00:00
2006-05-14 15:18:02 +00:00
#: libs/gst/base/gstbasesink.c:2007
2006-02-06 21:53:05 +00:00
msgid "Internal data stream error."
msgstr "Errore interno nel flusso di dati."
2006-07-11 22:55:40 +00:00
#: plugins/elements/gstcapsfilter.c:133
msgid "Filter caps"
msgstr ""
#: plugins/elements/gstcapsfilter.c:134
msgid "Restrict the possible allowed capabilities (NULL means ANY)"
msgstr ""
#: plugins/elements/gstfdsink.c:343
#, fuzzy, c-format
msgid "Error while writing to file descriptor \"%d\"."
msgstr "Errore durante la scrittura sul file «%s»."
#: plugins/elements/gstfdsink.c:383
#, c-format
msgid "File descriptor \"%d\" is not valid."
msgstr ""
#: plugins/elements/gstfilesink.c:252
2005-11-29 20:16:40 +00:00
msgid "No file name specified for writing."
msgstr "Nessun nome di file specificato per la scrittura."
2006-07-11 22:55:40 +00:00
#: plugins/elements/gstfilesink.c:258
2005-11-29 20:16:40 +00:00
#, c-format
msgid "Could not open file \"%s\" for writing."
msgstr "Impossibile aprire il file «%s» in scrittura."
2006-07-11 22:55:40 +00:00
#: plugins/elements/gstfilesink.c:279
2005-11-29 20:16:40 +00:00
#, c-format
msgid "Error closing file \"%s\"."
msgstr "Errore nel chiudere il file «%s»."
2006-07-11 22:55:40 +00:00
#: plugins/elements/gstfilesink.c:400
#, fuzzy, c-format
msgid "Error while seeking in file \"%s\"."
msgstr "Errore durante la scrittura sul file «%s»."
#: plugins/elements/gstfilesink.c:407 plugins/elements/gstfilesink.c:478
2005-11-29 20:16:40 +00:00
#, c-format
msgid "Error while writing to file \"%s\"."
msgstr "Errore durante la scrittura sul file «%s»."
2006-07-11 22:55:40 +00:00
#: plugins/elements/gstfilesrc.c:947
2005-11-29 20:16:40 +00:00
msgid "No file name specified for reading."
msgstr "Nessun nome di file specificato per la lettura."
2006-07-11 22:55:40 +00:00
#: plugins/elements/gstfilesrc.c:959
2005-12-05 13:10:44 +00:00
#, c-format
2005-11-29 20:16:40 +00:00
msgid "Could not open file \"%s\" for reading: %s."
2005-12-05 13:10:44 +00:00
msgstr "Impossibile aprire il file «%s» in lettura: %s."
2005-11-29 20:16:40 +00:00
2006-07-11 22:55:40 +00:00
#: plugins/elements/gstfilesrc.c:968
#, fuzzy, c-format
msgid "Could not get info on \"%s\"."
2005-12-05 13:10:44 +00:00
msgstr "impossibile ottenere informazion su «%s»."
2005-11-29 20:16:40 +00:00
2006-07-11 22:55:40 +00:00
#: plugins/elements/gstfilesrc.c:975
2005-11-29 20:16:40 +00:00
#, c-format
msgid "\"%s\" is a directory."
msgstr "«%s» è una directory."
2006-07-11 22:55:40 +00:00
#: plugins/elements/gstfilesrc.c:982
2005-11-29 20:16:40 +00:00
#, c-format
msgid "File \"%s\" is a socket."
msgstr "Il file «%s» è un socket."
2006-05-14 15:18:02 +00:00
#: plugins/elements/gstidentity.c:360
2005-11-29 20:16:40 +00:00
msgid "Failed after iterations as requested."
msgstr "Fallito dopo le iterazioni come richiesto."
2006-04-12 11:04:36 +00:00
#: plugins/elements/gsttypefindelement.c:192
2005-11-29 20:16:40 +00:00
msgid "caps"
msgstr "caps"
2006-04-12 11:04:36 +00:00
#: plugins/elements/gsttypefindelement.c:193
2005-11-29 20:16:40 +00:00
msgid "detected capabilities in stream"
2005-12-05 13:10:44 +00:00
msgstr "rilevate capabilites nello stream"
2005-11-29 20:16:40 +00:00
2006-04-12 11:04:36 +00:00
#: plugins/elements/gsttypefindelement.c:196
2005-11-29 20:16:40 +00:00
msgid "minimum"
msgstr "minimo"
2006-04-12 11:04:36 +00:00
#: plugins/elements/gsttypefindelement.c:200
2005-11-29 20:16:40 +00:00
msgid "maximum"
msgstr "massimo"
2006-07-11 22:55:40 +00:00
#: tools/gst-inspect.c:250
2006-05-30 14:41:15 +00:00
msgid "Implemented Interfaces:\n"
msgstr ""
2006-07-11 22:55:40 +00:00
#: tools/gst-inspect.c:292
2006-05-30 14:41:15 +00:00
msgid "readable"
msgstr ""
2006-07-11 22:55:40 +00:00
#: tools/gst-inspect.c:297
2006-05-30 14:41:15 +00:00
#, fuzzy
msgid "writable"
msgstr "titolo"
2006-07-11 22:55:40 +00:00
#: tools/gst-inspect.c:302
2006-05-30 14:41:15 +00:00
msgid "controllable"
msgstr ""
2006-07-11 22:55:40 +00:00
#: tools/gst-inspect.c:925
2006-05-30 14:41:15 +00:00
#, fuzzy
msgid "Total count: "
msgstr "totale tracce"
2006-07-11 22:55:40 +00:00
#: tools/gst-inspect.c:926
2006-05-30 14:41:15 +00:00
#, c-format
msgid "%d plugin"
msgid_plural "%d plugins"
msgstr[0] ""
msgstr[1] ""
2006-07-11 22:55:40 +00:00
#: tools/gst-inspect.c:928
2006-05-30 14:41:15 +00:00
#, c-format
msgid "%d feature"
msgid_plural "%d features"
msgstr[0] ""
msgstr[1] ""
2006-07-11 22:55:40 +00:00
#: tools/gst-inspect.c:1109
2004-12-06 09:15:46 +00:00
msgid "Print all elements"
msgstr "Stampa tutti gli elementi"
2006-07-11 22:55:40 +00:00
#: tools/gst-inspect.c:1175
2006-05-30 14:41:15 +00:00
#, fuzzy, c-format
msgid "Could not load plugin file: %s\n"
msgstr "Impossibile aprire il file «%s» in scrittura."
2006-07-11 22:55:40 +00:00
#: tools/gst-inspect.c:1180
2006-05-30 14:41:15 +00:00
#, fuzzy, c-format
msgid "No such element or plugin '%s'\n"
msgstr "elemento d'origine mancante per l'URI «%s»"
2006-05-14 15:18:02 +00:00
#: tools/gst-launch.c:79
2004-12-06 09:15:46 +00:00
msgid "Usage: gst-xmllaunch <file.xml> [ element.property=value ... ]\n"
msgstr "Uso: gst-xmllaunch <FILE.XML> [ ELEMENTO.PROPRIETA=VALORE ... ]\n"
2006-05-14 15:18:02 +00:00
#: tools/gst-launch.c:88
2004-12-06 09:15:46 +00:00
#, c-format
msgid "ERROR: parse of xml file '%s' failed.\n"
msgstr "ERRORE: analisi del file xml «%s» fallita.\n"
2006-05-14 15:18:02 +00:00
#: tools/gst-launch.c:94
2004-12-06 09:15:46 +00:00
#, c-format
msgid "ERROR: no toplevel pipeline element in file '%s'.\n"
msgstr "ERRORE: nessun elemento pipeline toplevel nel file «%s».\n"
2006-05-14 15:18:02 +00:00
#: tools/gst-launch.c:101
2004-12-06 09:15:46 +00:00
#, c-format
msgid "WARNING: only one toplevel element is supported at this time."
msgstr "AVVISO: al momento è supportato sono un elemento toplevel."
2006-05-14 15:18:02 +00:00
#: tools/gst-launch.c:112
2004-12-06 09:15:46 +00:00
#, c-format
msgid "ERROR: could not parse command line argument %d: %s.\n"
2004-12-23 12:10:25 +00:00
msgstr ""
"ERRORE: impossibile analizzare l'argomento %d della riga di comando: %s.\n"
2004-12-06 09:15:46 +00:00
2006-05-14 15:18:02 +00:00
#: tools/gst-launch.c:123
2004-12-06 09:15:46 +00:00
#, c-format
msgid "WARNING: element named '%s' not found.\n"
msgstr "AVVISO: elemento di nome «%s» non trovato.\n"
2006-05-14 15:18:02 +00:00
#: tools/gst-launch.c:392
2005-12-05 13:10:44 +00:00
#, c-format
2005-10-23 22:30:17 +00:00
msgid "Got Message from element \"%s\" (%s): "
2005-12-05 13:10:44 +00:00
msgstr "Ottenuto Message dall'elemento «%s» (%s): "
2005-06-28 09:59:01 +00:00
2006-05-14 15:18:02 +00:00
#: tools/gst-launch.c:419
2005-12-05 13:10:44 +00:00
#, c-format
2005-08-05 12:59:46 +00:00
msgid "Got EOS from element \"%s\".\n"
2005-12-05 13:10:44 +00:00
msgstr "Ottenuto EOS dall'elemento «%s».\n"
2005-08-05 12:59:46 +00:00
2006-05-14 15:18:02 +00:00
#: tools/gst-launch.c:429
2004-12-06 09:15:46 +00:00
#, c-format
msgid "FOUND TAG : found by element \"%s\".\n"
msgstr "TAG TROVATO : trovato dall'elemento «%s».\n"
2006-05-14 15:18:02 +00:00
#: tools/gst-launch.c:481
2005-03-29 10:55:39 +00:00
#, c-format
msgid "Element \"%s\" has gone from PLAYING to PAUSED, quitting.\n"
2005-12-05 13:10:44 +00:00
msgstr "L'elemento «%s» è passato da PLAYING a PAUSED, uscita in corso.\n"
2005-03-29 10:55:39 +00:00
2006-05-14 15:18:02 +00:00
#: tools/gst-launch.c:512
2004-12-06 09:15:46 +00:00
msgid "Output tags (also known as metadata)"
msgstr "Stampa i tag (anche noti come metadati)"
2006-05-14 15:18:02 +00:00
#: tools/gst-launch.c:514
2004-12-06 09:15:46 +00:00
msgid "Output status information and property notifications"
msgstr "Stampa informazioni di stato e notifiche delle proprietà"
2006-05-14 15:18:02 +00:00
#: tools/gst-launch.c:516
2005-10-23 22:30:17 +00:00
msgid "Output messages"
2005-12-05 13:10:44 +00:00
msgstr "Messaggi di output"
2005-10-23 22:30:17 +00:00
2006-05-14 15:18:02 +00:00
#: tools/gst-launch.c:518
2004-12-06 09:15:46 +00:00
msgid "Do not output status information of TYPE"
msgstr "Non fornisce informazioni di stato per TIPO"
2006-05-14 15:18:02 +00:00
#: tools/gst-launch.c:518
2004-12-06 09:15:46 +00:00
msgid "TYPE1,TYPE2,..."
msgstr "TIPO1,TIPO2,..."
2006-05-14 15:18:02 +00:00
#: tools/gst-launch.c:521
2004-12-06 09:15:46 +00:00
msgid "Save xml representation of pipeline to FILE and exit"
msgstr "Salva su FILE una rappresentazione xml della pipeline ed esce"
2006-05-14 15:18:02 +00:00
#: tools/gst-launch.c:521
2004-12-06 09:15:46 +00:00
msgid "FILE"
msgstr "FILE"
2006-05-14 15:18:02 +00:00
#: tools/gst-launch.c:524
2004-12-06 09:15:46 +00:00
msgid "Do not install a fault handler"
msgstr "Non installa un gestore di fault"
2006-05-14 15:18:02 +00:00
#: tools/gst-launch.c:526
2004-12-06 09:15:46 +00:00
msgid "Print alloc trace (if enabled at compile time)"
msgstr "Stampa traccia di alloc (se abilitato in compilazione)"
2006-07-11 22:55:40 +00:00
#: tools/gst-launch.c:610
2004-12-06 09:15:46 +00:00
#, c-format
msgid "ERROR: pipeline could not be constructed: %s.\n"
msgstr "ERRORE: impossibile costruire la pipeline: %s.\n"
2006-07-11 22:55:40 +00:00
#: tools/gst-launch.c:614
2004-12-06 09:15:46 +00:00
#, c-format
msgid "ERROR: pipeline could not be constructed.\n"
msgstr "ERRORE: impossibile costruire la pipeline.\n"
2006-07-11 22:55:40 +00:00
#: tools/gst-launch.c:618
2004-12-06 09:15:46 +00:00
#, c-format
msgid "WARNING: erroneous pipeline: %s\n"
msgstr "AVVISO: pipeline errata: %s.\n"
2006-07-11 22:55:40 +00:00
#: tools/gst-launch.c:644
2004-12-06 09:15:46 +00:00
#, c-format
msgid "ERROR: the 'pipeline' element wasn't found.\n"
msgstr "ERRORE: l'elemento «pipeline» non è stato trovato.\n"
2006-07-11 22:55:40 +00:00
#: tools/gst-launch.c:650 tools/gst-launch.c:702
2006-04-12 11:06:44 +00:00
#, c-format
2005-11-29 20:16:40 +00:00
msgid "Setting pipeline to PAUSED ...\n"
2006-04-12 11:06:44 +00:00
msgstr "Impostazione della pipeline a PAUSED ...\n"
2005-03-29 10:55:39 +00:00
2006-07-11 22:55:40 +00:00
#: tools/gst-launch.c:655
2006-04-12 11:06:44 +00:00
#, c-format
2005-11-29 20:16:40 +00:00
msgid "ERROR: Pipeline doesn't want to pause.\n"
2005-12-05 13:10:44 +00:00
msgstr "ERRORE: la pipeline non vuole mettersi in pausa.\n"
2005-03-29 10:55:39 +00:00
2006-04-12 11:06:44 +00:00
# Sinks are special elements in GStreamer. This is because sink elements have to take care of preroll, which is the process that takes care that elements going into the GST_STATE_PAUSED state will have buffers ready after the state change. The result of this is that such elements can start processing data immediately after going into the GST_STATE_PLAYING state, without requiring to take some time to initialize outputs or set up decoders; all that is done already before the state-change to GST_STATE_PAUSED successfully completes.
#
# Preroll, however, is a complex process that would require the same code in many elements. Therefore, sink elements can derive from the GstBaseSink base-class, which does preroll and a few other utility functions automatically. The derived class only needs to implement a bunch of virtual functions and will work automatically.
2006-07-11 22:55:40 +00:00
#: tools/gst-launch.c:660
2006-04-12 11:06:44 +00:00
#, c-format
2006-03-09 19:00:21 +00:00
msgid "Pipeline is live and does not need PREROLL ...\n"
2006-04-12 11:06:44 +00:00
msgstr "La pipeline è viva e non necessita il PREROLL ...\n"
2005-06-28 09:59:01 +00:00
2006-07-11 22:55:40 +00:00
#: tools/gst-launch.c:663
2005-11-29 20:16:40 +00:00
#, c-format
msgid "Pipeline is PREROLLING ...\n"
2006-04-12 11:06:44 +00:00
msgstr "La pipeline è in PREROLLING ...\n"
2005-06-28 09:59:01 +00:00
2006-07-11 22:55:40 +00:00
#: tools/gst-launch.c:666 tools/gst-launch.c:679
2006-04-12 11:06:44 +00:00
#, c-format
2005-03-29 10:55:39 +00:00
msgid "ERROR: pipeline doesn't want to preroll.\n"
2005-12-05 13:10:44 +00:00
msgstr "ERRORE: la pipeline non vuole fare il preroll.\n"
2005-03-29 10:55:39 +00:00
2006-07-11 22:55:40 +00:00
#: tools/gst-launch.c:672
2006-02-06 21:53:05 +00:00
#, c-format
msgid "Pipeline is PREROLLED ...\n"
2006-04-12 11:06:44 +00:00
msgstr "La pipeline è in PREROLLED ...\n"
2006-02-06 21:53:05 +00:00
2006-07-11 22:55:40 +00:00
#: tools/gst-launch.c:684
2004-12-06 09:15:46 +00:00
#, c-format
2005-11-29 20:16:40 +00:00
msgid "Setting pipeline to PLAYING ...\n"
2006-04-12 11:06:44 +00:00
msgstr "Impostazione della pipeline a PLAYING ...\n"
2004-12-06 09:15:46 +00:00
2006-07-11 22:55:40 +00:00
#: tools/gst-launch.c:687
2004-12-06 09:15:46 +00:00
#, c-format
msgid "ERROR: pipeline doesn't want to play.\n"
msgstr "ERRORE: la pipeline non vuole riprodurre.\n"
2005-12-05 13:10:44 +00:00
# secondo me quel % è un errore... magari dovrebbe
# essere %d o %s
2006-07-11 22:55:40 +00:00
#: tools/gst-launch.c:698
2005-03-29 10:55:39 +00:00
msgid "Execution ended after %"
msgstr "Esecuzione terminata dopo %"
2006-07-11 22:55:40 +00:00
#: tools/gst-launch.c:698
2005-03-29 10:55:39 +00:00
msgid " ns.\n"
2005-12-05 13:10:44 +00:00
msgstr " ns.\n"
2005-03-29 10:55:39 +00:00
2006-07-11 22:55:40 +00:00
#: tools/gst-launch.c:705
2006-04-12 11:06:44 +00:00
#, c-format
2005-11-29 20:16:40 +00:00
msgid "Setting pipeline to READY ...\n"
2006-04-12 11:06:44 +00:00
msgstr "Impostazione della pipeline a READY ...\n"
2005-03-29 10:55:39 +00:00
2006-07-11 22:55:40 +00:00
#: tools/gst-launch.c:710
2006-04-12 11:06:44 +00:00
#, c-format
2005-11-29 20:16:40 +00:00
msgid "Setting pipeline to NULL ...\n"
2006-04-12 11:06:44 +00:00
msgstr "Impostazione della pipeline a NULL ...\n"
2005-03-29 10:55:39 +00:00
2006-07-11 22:55:40 +00:00
#: tools/gst-launch.c:715
2006-04-12 11:06:44 +00:00
#, c-format
2005-03-29 10:55:39 +00:00
msgid "FREEING pipeline ...\n"
2006-04-12 11:06:44 +00:00
msgstr "Esecuzione FREE su pipeline ...\n"