* @author Robin Appelman * * @copyright Copyright (c) 2015, ownCloud, Inc. * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License, version 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License, version 3, * along with this program. If not, see * */ namespace OCP; /** * wrapper for server side events (http://en.wikipedia.org/wiki/Server-sent_events) * includes a fallback for older browsers and IE * * use server side events with caution, to many open requests can hang the server * * The event source will initialize the connection to the client when the first data is sent * @since 8.0.0 */ interface IEventSource { /** * send a message to the client * * @param string $type * @param mixed $data * * if only one parameter is given, a typeless message will be send with that parameter as data * @since 8.0.0 */ public function send($type, $data = null); /** * close the connection of the event source * @since 8.0.0 */ public function close(); } pp-menu-overflow Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
summaryrefslogtreecommitdiffstats
blob: 24b57789fdbbfdf52cb8f30b0514f78f51122957 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
OC.L10N.register(
    "files_trashbin",
    {
    "Couldn't delete %s permanently" : "Ne mogu zauvek da obrišem %s",
    "Couldn't restore %s" : "Ne mogu da vratim %s",
    "Deleted files" : "Obrisani fajlovi",
    "Restore" : "Vrati",
    "Delete permanently" : "Obriši zauvek",
    "Error" : "Greška",
    "restored" : "vraćeno",
    "No deleted files" : "Nema obrisanih fajlova",
    "You will be able to recover deleted files from here" : "Odavde ćete moći da povratite obrisane fajlove",
    "No entries found in this folder" : "Nema ničega u ovoj fascikli",
    "Select all" : "Označi sve",
    "Name" : "Naziv",
    "Deleted" : "Obrisano",
    "Delete" : "Obriši"
},
"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);");