Changeset 45ae1b754ba80def6823e0f0d93787e7953601f0
- Timestamp:
- 09/06/08 23:13:20
(6 months ago)
- Author:
- Christophe Mutricy <xtophe@videolan.org>
- git-committer:
- Christophe Mutricy <xtophe@videolan.org> 1213046000 +0100
- git-parent:
[a77080d567d0ba6598a06af6f02c7ef24bfbadcb]
- git-author:
- Christophe Mutricy <xtophe@videolan.org> 1213046000 +0100
- Message:
Typo (pointed by Bruno Queirós)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r3561b9b |
r45ae1b7 |
|
| 1 | 1 | /***************************************************************************** |
|---|
| 2 | | * configuration.c: Generic lua<->vlc config inteface |
|---|
| | 2 | * configuration.c: Generic lua<->vlc config interface |
|---|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2007 the VideoLAN team |
|---|
| r3561b9b |
r45ae1b7 |
|
| 1 | 1 | /***************************************************************************** |
|---|
| 2 | | * intf.c: Generic lua inteface functions |
|---|
| | 2 | * intf.c: Generic lua interface functions |
|---|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2007 the VideoLAN team |
|---|
| r3561b9b |
r45ae1b7 |
|
| 1 | 1 | /***************************************************************************** |
|---|
| 2 | | * variables.c: Generic lua<->vlc variables inteface |
|---|
| | 2 | * variables.c: Generic lua<->vlc variables interface |
|---|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2007 the VideoLAN team |
|---|
| r3561b9b |
r45ae1b7 |
|
| 1 | 1 | /***************************************************************************** |
|---|
| 2 | | * vlc.c: Generic lua inteface functions |
|---|
| | 2 | * vlc.c: Generic lua interface functions |
|---|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2007 the VideoLAN team |
|---|
| … | … | |
| 53 | 53 | #define INTF_LONGTEXT N_("Lua interface module to load") |
|---|
| 54 | 54 | |
|---|
| 55 | | #define CONFIG_TEXT N_("Lua inteface configuration") |
|---|
| | 55 | #define CONFIG_TEXT N_("Lua interface configuration") |
|---|
| 56 | 56 | #define CONFIG_LONGTEXT N_("Lua interface configuration string. Format is: '[\"<interface module name>\"] = { <option> = <value>, ...}, ...'.") |
|---|
| 57 | 57 | |
|---|